2025-07-24T03:42:00.4163542Z Current runner version: '2.327.0' 2025-07-24T03:42:00.4174668Z Runner name: 'i-0f5ed0981f3f5cb82' 2025-07-24T03:42:00.4175540Z Runner group name: 'default' 2025-07-24T03:42:00.4176464Z Machine name: 'EC2AMAZ-IFQ8336' 2025-07-24T03:42:00.4179406Z ##[group]GITHUB_TOKEN Permissions 2025-07-24T03:42:00.4182099Z Contents: read 2025-07-24T03:42:00.4182646Z Metadata: read 2025-07-24T03:42:00.4183260Z ##[endgroup] 2025-07-24T03:42:00.4185644Z Secret source: Actions 2025-07-24T03:42:00.4186377Z Prepare workflow directory 2025-07-24T03:42:00.4712144Z Prepare all required actions 2025-07-24T03:42:00.4753889Z Getting action download info 2025-07-24T03:42:00.6805266Z Download action repository 'pytorch/test-infra@main' (SHA:e32c622fbd62d34f173b9f131f1eca78782b2be2) 2025-07-24T03:43:57.5406371Z Download action repository 'pytorch/pytorch@main' (SHA:07df6ba7f5597488a93b3855d52d2ead55675125) 2025-07-24T03:46:21.6074517Z Download action repository 'seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-07-24T03:46:21.9020323Z Getting action download info 2025-07-24T03:46:22.0091404Z Download action repository 'actions/checkout@v4' (SHA:11bd71901bbe5b1630ceea73d27597364c9af683) 2025-07-24T03:46:22.2379373Z Uses: pytorch/pytorch/.github/workflows/_win-build.yml@refs/tags/ciflow/trunk/149961 (27c8ef1839e0747b36769efb192befc9308ff93c) 2025-07-24T03:46:22.2383640Z ##[group] Inputs 2025-07-24T03:46:22.2383967Z build-environment: win-vs2022-cpu-py3 2025-07-24T03:46:22.2384261Z cuda-version: cpu 2025-07-24T03:46:22.2384850Z use-xpu: false 2025-07-24T03:46:22.2385058Z xpu-version: 2025-07-24T03:46:22.2385240Z vc-year: 2022 2025-07-24T03:46:22.2385442Z build-with-debug: false 2025-07-24T03:46:22.2385659Z sync-tag: 2025-07-24T03:46:22.2386759Z 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-07-24T03:46:22.2387911Z runner: windows.4xlarge.nonephemeral 2025-07-24T03:46:22.2388196Z ##[endgroup] 2025-07-24T03:46:22.2388423Z Complete job name: win-vs2022-cpu-py3 / build 2025-07-24T03:46:22.3057526Z ##[group]Run git config --global core.longpaths true 2025-07-24T03:46:22.3058076Z git config --global core.longpaths true 2025-07-24T03:46:22.3058421Z git config --global core.symlinks true 2025-07-24T03:46:22.3058705Z  2025-07-24T03:46:22.3059048Z # https://git-scm.com/docs/git-fsmonitor--daemon. The daemon could lock 2025-07-24T03:46:22.3059595Z # the directory on Windows and prevent GHA from checking out as reported 2025-07-24T03:46:22.3060077Z # in https://github.com/actions/checkout/issues/1018 2025-07-24T03:46:22.3060448Z git config --global core.fsmonitor false 2025-07-24T03:46:22.3084164Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:46:22.3085006Z env: 2025-07-24T03:46:22.3085199Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:46:22.3085422Z ##[endgroup] 2025-07-24T03:46:22.8687140Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-07-24T03:46:22.8687636Z env: 2025-07-24T03:46:22.8687837Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:46:22.8688058Z ##[endgroup] 2025-07-24T03:46:22.8839858Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-07-24T03:46:22.8840601Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-07-24T03:46:22.8841257Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-07-24T03:46:22.8841715Z # handle tool 2025-07-24T03:46:22.8842038Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-07-24T03:46:22.8844332Z Foreach ($process In $processes) { 2025-07-24T03:46:22.8844604Z  Try { 2025-07-24T03:46:22.8845133Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-07-24T03:46:22.8845823Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-07-24T03:46:22.8846224Z  } 2025-07-24T03:46:22.8846403Z  Catch { 2025-07-24T03:46:22.8846699Z  Write-Output "No leftover $process process, continuing" 2025-07-24T03:46:22.8847053Z  Write-Output $_ 2025-07-24T03:46:22.8847278Z  } 2025-07-24T03:46:22.8847446Z } 2025-07-24T03:46:22.8847607Z  2025-07-24T03:46:22.8848067Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-07-24T03:46:22.8848608Z # for hung processes 2025-07-24T03:46:22.8848878Z Foreach ($process In $processes) { 2025-07-24T03:46:22.8849162Z  Try { 2025-07-24T03:46:22.8849540Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-07-24T03:46:22.8849981Z  } 2025-07-24T03:46:22.8850155Z  Catch { 2025-07-24T03:46:22.8850370Z  Write-Output $_ 2025-07-24T03:46:22.8850589Z  } 2025-07-24T03:46:22.8850766Z } 2025-07-24T03:46:22.8850926Z  2025-07-24T03:46:22.8851096Z Try { 2025-07-24T03:46:22.8851317Z  # Print all the processes for debugging 2025-07-24T03:46:22.8851861Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-07-24T03:46:22.8852273Z } 2025-07-24T03:46:22.8852438Z Catch { 2025-07-24T03:46:22.8852821Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-07-24T03:46:22.8853332Z  Write-Output $_ 2025-07-24T03:46:22.8853577Z } 2025-07-24T03:46:22.8869418Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-24T03:46:22.8869884Z env: 2025-07-24T03:46:22.8870080Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:46:22.8870302Z ##[endgroup] 2025-07-24T03:46:23.2497364Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-24T03:46:23.2564975Z Finished 2025-07-24T03:46:23.5576172Z No leftover python process, continuing 2025-07-24T03:46:23.6086671Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-07-24T03:46:23.6087395Z At C:\actions-runner\_work\_temp\db567be8-e34f-41e9-aa9d-dd046a16b18a.ps1:9 char:5 2025-07-24T03:46:23.6088000Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T03:46:23.6088412Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:23.6088887Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-07-24T03:46:23.6089754Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T03:46:23.6090358Z 2025-07-24T03:46:23.6105678Z No leftover ninja process, continuing 2025-07-24T03:46:23.6114777Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-07-24T03:46:23.6115510Z At C:\actions-runner\_work\_temp\db567be8-e34f-41e9-aa9d-dd046a16b18a.ps1:9 char:5 2025-07-24T03:46:23.6116059Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T03:46:23.6116477Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:23.6116965Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-07-24T03:46:23.6117833Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T03:46:23.6118413Z 2025-07-24T03:46:23.6129894Z No leftover cl process, continuing 2025-07-24T03:46:23.6139670Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-07-24T03:46:23.6140336Z At C:\actions-runner\_work\_temp\db567be8-e34f-41e9-aa9d-dd046a16b18a.ps1:9 char:5 2025-07-24T03:46:23.6140883Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T03:46:23.6141280Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:23.6141734Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-07-24T03:46:23.6142512Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T03:46:23.6143151Z 2025-07-24T03:46:23.6154515Z No leftover nvcc process, continuing 2025-07-24T03:46:23.6164791Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-07-24T03:46:23.6165532Z At C:\actions-runner\_work\_temp\db567be8-e34f-41e9-aa9d-dd046a16b18a.ps1:9 char:5 2025-07-24T03:46:23.6166372Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T03:46:23.6166787Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:23.6167258Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-07-24T03:46:23.6168116Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T03:46:23.6168714Z 2025-07-24T03:46:23.6199064Z No leftover sccache process, continuing 2025-07-24T03:46:23.6208933Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-07-24T03:46:23.6209673Z At C:\actions-runner\_work\_temp\db567be8-e34f-41e9-aa9d-dd046a16b18a.ps1:9 char:5 2025-07-24T03:46:23.6210222Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T03:46:23.6210635Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:23.6211146Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-07-24T03:46:23.6211999Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T03:46:23.6212593Z 2025-07-24T03:46:23.6221693Z No leftover git process, continuing 2025-07-24T03:46:23.6231277Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-07-24T03:46:23.6231993Z At C:\actions-runner\_work\_temp\db567be8-e34f-41e9-aa9d-dd046a16b18a.ps1:9 char:5 2025-07-24T03:46:23.6232552Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T03:46:23.6232958Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:23.6233432Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-07-24T03:46:23.6234221Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T03:46:23.6234819Z 2025-07-24T03:46:23.8458303Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-07-24T03:46:23.8459230Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-07-24T03:46:23.8459850Z deletion. (Exception from HRESULT: 0x800703FA). 2025-07-24T03:46:23.8460315Z At C:\actions-runner\_work\_temp\db567be8-e34f-41e9-aa9d-dd046a16b18a.ps1:21 char:6 2025-07-24T03:46:23.8460861Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T03:46:23.8461290Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:23.8461707Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-07-24T03:46:23.8462457Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-07-24T03:46:23.8463223Z 2025-07-24T03:46:23.8487519Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-07-24T03:46:23.8488440Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-07-24T03:46:23.8489017Z deletion. (Exception from HRESULT: 0x800703FA). 2025-07-24T03:46:23.8489493Z At C:\actions-runner\_work\_temp\db567be8-e34f-41e9-aa9d-dd046a16b18a.ps1:21 char:6 2025-07-24T03:46:23.8490051Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T03:46:23.8490468Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:23.8490891Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-07-24T03:46:23.8491568Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-07-24T03:46:23.8492115Z 2025-07-24T03:46:23.8518480Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-07-24T03:46:23.8519471Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-07-24T03:46:23.8520049Z deletion. (Exception from HRESULT: 0x800703FA). 2025-07-24T03:46:23.8520542Z At C:\actions-runner\_work\_temp\db567be8-e34f-41e9-aa9d-dd046a16b18a.ps1:21 char:6 2025-07-24T03:46:23.8521099Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T03:46:23.8521516Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:23.8521947Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-07-24T03:46:23.8523199Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-07-24T03:46:23.8523822Z 2025-07-24T03:46:23.8549071Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-07-24T03:46:23.8549951Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-07-24T03:46:23.8550562Z deletion. (Exception from HRESULT: 0x800703FA). 2025-07-24T03:46:23.8551045Z At C:\actions-runner\_work\_temp\db567be8-e34f-41e9-aa9d-dd046a16b18a.ps1:21 char:6 2025-07-24T03:46:23.8551598Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T03:46:23.8552070Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:23.8552532Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-07-24T03:46:23.8553223Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-07-24T03:46:23.8553774Z 2025-07-24T03:46:23.8579661Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-07-24T03:46:23.8580527Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-07-24T03:46:23.8581379Z deletion. (Exception from HRESULT: 0x800703FA). 2025-07-24T03:46:23.8581863Z At C:\actions-runner\_work\_temp\db567be8-e34f-41e9-aa9d-dd046a16b18a.ps1:21 char:6 2025-07-24T03:46:23.8582420Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T03:46:23.8582835Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:23.8583261Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-07-24T03:46:23.8583941Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-07-24T03:46:23.8584495Z 2025-07-24T03:46:23.8607697Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-07-24T03:46:23.8608555Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-07-24T03:46:23.8609343Z deletion. (Exception from HRESULT: 0x800703FA). 2025-07-24T03:46:23.8609807Z At C:\actions-runner\_work\_temp\db567be8-e34f-41e9-aa9d-dd046a16b18a.ps1:21 char:6 2025-07-24T03:46:23.8610423Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T03:46:23.8610895Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:23.8611310Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-07-24T03:46:23.8611990Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-07-24T03:46:23.8612540Z 2025-07-24T03:46:23.8637223Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-07-24T03:46:23.8638044Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-07-24T03:46:23.8638626Z deletion. (Exception from HRESULT: 0x800703FA). 2025-07-24T03:46:23.8639138Z At C:\actions-runner\_work\_temp\db567be8-e34f-41e9-aa9d-dd046a16b18a.ps1:21 char:6 2025-07-24T03:46:23.8639723Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T03:46:23.8640147Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:23.8640558Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-07-24T03:46:23.8641239Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-07-24T03:46:23.8641790Z 2025-07-24T03:46:24.1203085Z Caption CommandLine ProcessId 2025-07-24T03:46:24.1203689Z 2025-07-24T03:46:24.1204031Z System Idle Process 0 2025-07-24T03:46:24.1204488Z 2025-07-24T03:46:24.1204945Z System 4 2025-07-24T03:46:24.1205342Z 2025-07-24T03:46:24.1206924Z Registry 168 2025-07-24T03:46:24.1207299Z 2025-07-24T03:46:24.1208195Z smss.exe 408 2025-07-24T03:46:24.1209437Z 2025-07-24T03:46:24.1209931Z csrss.exe 520 2025-07-24T03:46:24.1210304Z 2025-07-24T03:46:24.1211056Z csrss.exe 596 2025-07-24T03:46:24.1211440Z 2025-07-24T03:46:24.1212727Z wininit.exe 648 2025-07-24T03:46:24.1213185Z 2025-07-24T03:46:24.1213548Z winlogon.exe winlogon.exe 668 2025-07-24T03:46:24.1214041Z 2025-07-24T03:46:24.1214793Z services.exe 740 2025-07-24T03:46:24.1215268Z 2025-07-24T03:46:24.1217004Z lsass.exe C:\Windows\system32\lsass.exe 760 2025-07-24T03:46:24.1217501Z 2025-07-24T03:46:24.1218013Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 888 2025-07-24T03:46:24.1218590Z 2025-07-24T03:46:24.1219039Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 912 2025-07-24T03:46:24.1219730Z 2025-07-24T03:46:24.1220096Z fontdrvhost.exe "fontdrvhost.exe" 936 2025-07-24T03:46:24.1220600Z 2025-07-24T03:46:24.1220959Z fontdrvhost.exe "fontdrvhost.exe" 944 2025-07-24T03:46:24.1221452Z 2025-07-24T03:46:24.1222133Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 128 2025-07-24T03:46:24.1222654Z 2025-07-24T03:46:24.1223277Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 476 2025-07-24T03:46:24.1223839Z 2025-07-24T03:46:24.1224123Z dwm.exe "dwm.exe" 832 2025-07-24T03:46:24.1224510Z 2025-07-24T03:46:24.1225647Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 1032 2025-07-24T03:46:24.1226286Z 2025-07-24T03:46:24.1226854Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1128 2025-07-24T03:46:24.1227603Z 2025-07-24T03:46:24.1228292Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1212 2025-07-24T03:46:24.1229036Z 2025-07-24T03:46:24.1229666Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1332 2025-07-24T03:46:24.1230229Z 2025-07-24T03:46:24.1231274Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1340 2025-07-24T03:46:24.1231899Z 2025-07-24T03:46:24.1232626Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1380 2025-07-24T03:46:24.1233284Z 2025-07-24T03:46:24.1233762Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1432 2025-07-24T03:46:24.1234345Z 2025-07-24T03:46:24.1235591Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1464 2025-07-24T03:46:24.1236340Z 2025-07-24T03:46:24.1238315Z 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 1516 2025-07-24T03:46:24.1240212Z 2025-07-24T03:46:24.1240699Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1544 2025-07-24T03:46:24.1241370Z 2025-07-24T03:46:24.1241963Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1596 2025-07-24T03:46:24.1242639Z 2025-07-24T03:46:24.1243105Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1716 2025-07-24T03:46:24.1243793Z 2025-07-24T03:46:24.1244277Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1724 2025-07-24T03:46:24.1244814Z 2025-07-24T03:46:24.1245322Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1732 2025-07-24T03:46:24.1245910Z 2025-07-24T03:46:24.1246355Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1832 2025-07-24T03:46:24.1246907Z 2025-07-24T03:46:24.1247484Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 1872 2025-07-24T03:46:24.1248071Z 2025-07-24T03:46:24.1248589Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 1880 2025-07-24T03:46:24.1249261Z 2025-07-24T03:46:24.1249913Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 1952 2025-07-24T03:46:24.1251290Z 2025-07-24T03:46:24.1251785Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 2004 2025-07-24T03:46:24.1252397Z 2025-07-24T03:46:24.1252878Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 1376 2025-07-24T03:46:24.1253459Z 2025-07-24T03:46:24.1253980Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 2052 2025-07-24T03:46:24.1254596Z 2025-07-24T03:46:24.1255317Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 2112 2025-07-24T03:46:24.1256032Z 2025-07-24T03:46:24.1256501Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2152 2025-07-24T03:46:24.1257073Z 2025-07-24T03:46:24.1257972Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2304 2025-07-24T03:46:24.1258558Z 2025-07-24T03:46:24.1259092Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2352 2025-07-24T03:46:24.1259715Z 2025-07-24T03:46:24.1260232Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2436 2025-07-24T03:46:24.1261036Z 2025-07-24T03:46:24.1261991Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2572 2025-07-24T03:46:24.1262986Z 2025-07-24T03:46:24.1263940Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2656 2025-07-24T03:46:24.1265098Z 2025-07-24T03:46:24.1266195Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2672 2025-07-24T03:46:24.1267504Z 2025-07-24T03:46:24.1268373Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2680 2025-07-24T03:46:24.1269382Z 2025-07-24T03:46:24.1270282Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2688 2025-07-24T03:46:24.1271420Z 2025-07-24T03:46:24.1272489Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2704 2025-07-24T03:46:24.1273738Z 2025-07-24T03:46:24.1274688Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2712 2025-07-24T03:46:24.1276078Z 2025-07-24T03:46:24.1277014Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2720 2025-07-24T03:46:24.1278184Z 2025-07-24T03:46:24.1279301Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2728 2025-07-24T03:46:24.1280662Z 2025-07-24T03:46:24.1281612Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 2972 2025-07-24T03:46:24.1282778Z 2025-07-24T03:46:24.1283992Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 3020 2025-07-24T03:46:24.1285351Z 2025-07-24T03:46:24.1286114Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 2896 2025-07-24T03:46:24.1286975Z 2025-07-24T03:46:24.1288137Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe 3096 2025-07-24T03:46:24.1289663Z 2025-07-24T03:46:24.1290767Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3112 2025-07-24T03:46:24.1291796Z 2025-07-24T03:46:24.1292920Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3588 2025-07-24T03:46:24.1294436Z 2025-07-24T03:46:24.1295334Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 3700 2025-07-24T03:46:24.1296353Z 2025-07-24T03:46:24.1297451Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 3796 2025-07-24T03:46:24.1298717Z 2025-07-24T03:46:24.1299601Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a71055 /state1:0x41c64e6d 4324 2025-07-24T03:46:24.1300687Z 2025-07-24T03:46:24.1303962Z 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 4864 2025-07-24T03:46:24.1307299Z 2025-07-24T03:46:24.1308707Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe -spawnprovider 5024 2025-07-24T03:46:24.1310228Z 2025-07-24T03:46:24.1311040Z vds.exe C:\Windows\System32\vds.exe 4492 2025-07-24T03:46:24.1311884Z 2025-07-24T03:46:24.1312829Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 1472 2025-07-24T03:46:24.1313943Z 2025-07-24T03:46:24.1315039Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 2020 2025-07-24T03:46:24.1316576Z 2025-07-24T03:46:24.1317272Z msdtc.exe C:\Windows\System32\msdtc.exe 2128 2025-07-24T03:46:24.1318131Z 2025-07-24T03:46:24.1319240Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 3768 2025-07-24T03:46:24.1320480Z 2025-07-24T03:46:24.1321671Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s WdiSystemHost 656 2025-07-24T03:46:24.1322960Z 2025-07-24T03:46:24.1324027Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 4692 2025-07-24T03:46:24.1325248Z 2025-07-24T03:46:24.1326082Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 2880 2025-07-24T03:46:24.1327077Z 2025-07-24T03:46:24.1328159Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 1140 2025-07-24T03:46:24.1329243Z 2025-07-24T03:46:24.1330158Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 3716 2025-07-24T03:46:24.1331459Z 2025-07-24T03:46:24.1332791Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 2016 2025-07-24T03:46:24.1334301Z 2025-07-24T03:46:24.1337381Z 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 1164 2025-07-24T03:46:24.1340517Z 2025-07-24T03:46:24.1341301Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4748 2025-07-24T03:46:24.1342228Z 2025-07-24T03:46:24.1343210Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p 3860 2025-07-24T03:46:24.1344378Z 2025-07-24T03:46:24.1345329Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 3968 2025-07-24T03:46:24.1346442Z 2025-07-24T03:46:24.1347165Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3444 2025-07-24T03:46:24.1348057Z 2025-07-24T03:46:24.1349097Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 780 2025-07-24T03:46:24.1350140Z 2025-07-24T03:46:24.1351023Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 3168 2025-07-24T03:46:24.1352260Z 2025-07-24T03:46:24.1353204Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 4716 2025-07-24T03:46:24.1354250Z 2025-07-24T03:46:24.1354978Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1680 2025-07-24T03:46:24.1355878Z 2025-07-24T03:46:24.1356869Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2160 2224 4232 2025-07-24T03:46:24.1357951Z 2025-07-24T03:46:24.1358674Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 732 2025-07-24T03:46:24.1359583Z 2025-07-24T03:46:24.1360290Z taskhostw.exe taskhostw.exe /RuntimeWide 3596 2025-07-24T03:46:24.1361180Z 2025-07-24T03:46:24.1362397Z ngentask.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:524 3316 2025-07-24T03:46:24.1364220Z 2025-07-24T03:46:24.1364986Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4900 2025-07-24T03:46:24.1365964Z 2025-07-24T03:46:24.1367231Z ngentask.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:1020 4956 2025-07-24T03:46:24.1368760Z 2025-07-24T03:46:24.1369533Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 616 2025-07-24T03:46:24.1370489Z 2025-07-24T03:46:24.1371452Z TrustedInstaller.exe C:\Windows\servicing\TrustedInstaller.exe 4160 2025-07-24T03:46:24.1372589Z 2025-07-24T03:46:24.1374108Z TiWorker.exe C:\Windows\winsxs\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.17763.7313_none_56ed2c2b9919af2f\TiWorker.exe -Embedding 1136 2025-07-24T03:46:24.1375874Z 2025-07-24T03:46:24.1376979Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 3568 2025-07-24T03:46:24.1378255Z 2025-07-24T03:46:24.1379478Z ngen.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 1804 2025-07-24T03:46:24.1380856Z 2025-07-24T03:46:24.1382159Z ngen.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 1156 2025-07-24T03:46:24.1383526Z 2025-07-24T03:46:24.1385095Z mscorsvw.exe C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorsvw.exe -StartupEvent 3c0 -InterruptEvent 0 -NGENProcess 334 -Pipe 34c -Comment "NGen Worker Process" 868 2025-07-24T03:46:24.1386827Z 2025-07-24T03:46:24.1388380Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\db567be8-e34f-41e9-aa9d-dd046a16b18a.ps1'" 2160 2025-07-24T03:46:24.1390983Z 2025-07-24T03:46:24.1392094Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 2840 2025-07-24T03:46:24.1393385Z 2025-07-24T03:46:24.1394149Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 2828 2025-07-24T03:46:24.1395073Z 2025-07-24T03:46:24.1395084Z 2025-07-24T03:46:24.1395093Z 2025-07-24T03:46:24.1604827Z ##[group]Run pytorch/test-infra/.github/actions/setup-ssh@main 2025-07-24T03:46:24.1605225Z with: 2025-07-24T03:46:24.1605745Z github-secret: *** 2025-07-24T03:46:24.1607640Z instructions: To forward remote desktop on your local machine ssh as follows: ssh -L 3389:localhost:3389 %%username%%@%%hostname%% And then change password using `passwd` command. To start build locally, change working folder to \actions-runner\_work\pytorch\pytorch, Activate miniconda and Visual Studio environment, by running: call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x64 2025-07-24T03:46:24.1609656Z activate-with-label: false 2025-07-24T03:46:24.1609904Z label: with-ssh 2025-07-24T03:46:24.1610116Z remove-existing-keys: true 2025-07-24T03:46:24.1610343Z fail-silently: true 2025-07-24T03:46:24.1610550Z env: 2025-07-24T03:46:24.1610758Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:46:24.1610968Z ##[endgroup] 2025-07-24T03:46:24.3167376Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-07-24T03:46:24.3169631Z ciflow reference detected, attempting to extract PR number 2025-07-24T03:46:24.7373650Z Grabbing public ssh keys from https://github.com/pytorch-bot[bot].keys 2025-07-24T03:46:24.8174947Z No SSH keys found for user pytorch-bot[bot] 2025-07-24T03:46:24.8175455Z Grabbing public ssh keys from https://github.com/benjaminglass1.keys 2025-07-24T03:46:24.9033764Z Public keys pulled and installed to C:\Users\runneruser\.ssh\authorized_keys 2025-07-24T03:46:24.9080525Z Login using: ssh runneruser@ec2-3-239-109-185.compute-1.amazonaws.com 2025-07-24T03:46:24.9081095Z To forward remote desktop on your local machine ssh as follows: 2025-07-24T03:46:24.9081667Z ssh -L 3389:localhost:3389 runneruser@ec2-3-239-109-185.compute-1.amazonaws.com 2025-07-24T03:46:24.9082201Z And then change password using `passwd` command. 2025-07-24T03:46:24.9082439Z 2025-07-24T03:46:24.9082694Z To start build locally, change working folder to \actions-runner\_work\pytorch\pytorch, 2025-07-24T03:46:24.9083232Z Activate miniconda and Visual Studio environment, by running: 2025-07-24T03:46:24.9083696Z call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-07-24T03:46:24.9084309Z call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x64 2025-07-24T03:46:24.9327143Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-07-24T03:46:24.9327565Z with: 2025-07-24T03:46:24.9327804Z no-sudo: true 2025-07-24T03:46:24.9328045Z submodules: recursive 2025-07-24T03:46:24.9328328Z fetch-depth: 0 2025-07-24T03:46:24.9328566Z env: 2025-07-24T03:46:24.9328768Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:46:24.9329051Z ##[endgroup] 2025-07-24T03:46:24.9435314Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-07-24T03:46:24.9436151Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-07-24T03:46:24.9456933Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:46:24.9457357Z env: 2025-07-24T03:46:24.9457535Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:46:24.9457760Z ##[endgroup] 2025-07-24T03:46:24.9849968Z ##[group]Run # Use all available CPUs for fetching 2025-07-24T03:46:24.9850336Z # Use all available CPUs for fetching 2025-07-24T03:46:24.9850629Z cd "${GITHUB_WORKSPACE}" 2025-07-24T03:46:24.9850927Z git config --global fetch.parallel 0 2025-07-24T03:46:24.9851261Z git config --global submodule.fetchJobs 0 2025-07-24T03:46:24.9851564Z  2025-07-24T03:46:24.9851910Z # Clean workspace. The default checkout action should also do this, but 2025-07-24T03:46:24.9852369Z # do it here as well just in case 2025-07-24T03:46:24.9852680Z if [[ -d .git ]]; then 2025-07-24T03:46:24.9852928Z  if [ -z "${NO_SUDO}" ]; then 2025-07-24T03:46:24.9853239Z  sudo git clean -ffdx 2025-07-24T03:46:24.9853501Z  else 2025-07-24T03:46:24.9853700Z  git clean -ffdx 2025-07-24T03:46:24.9853949Z  fi 2025-07-24T03:46:24.9854130Z fi 2025-07-24T03:46:24.9874463Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:46:24.9874926Z env: 2025-07-24T03:46:24.9875134Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:46:24.9875362Z NO_SUDO: true 2025-07-24T03:46:24.9875540Z ##[endgroup] 2025-07-24T03:46:25.0758988Z ##[group]Run actions/checkout@v4 2025-07-24T03:46:25.0759259Z with: 2025-07-24T03:46:25.0759467Z ref: 27c8ef1839e0747b36769efb192befc9308ff93c 2025-07-24T03:46:25.0760883Z fetch-depth: 0 2025-07-24T03:46:25.0761086Z submodules: recursive 2025-07-24T03:46:25.0761311Z show-progress: false 2025-07-24T03:46:25.0761529Z repository: pytorch/pytorch 2025-07-24T03:46:25.0761904Z token: *** 2025-07-24T03:46:25.0762089Z ssh-strict: true 2025-07-24T03:46:25.0762273Z ssh-user: git 2025-07-24T03:46:25.0762476Z persist-credentials: true 2025-07-24T03:46:25.0762701Z clean: true 2025-07-24T03:46:25.0762916Z sparse-checkout-cone-mode: true 2025-07-24T03:46:25.0763169Z fetch-tags: false 2025-07-24T03:46:25.0763387Z lfs: false 2025-07-24T03:46:25.0763568Z set-safe-directory: true 2025-07-24T03:46:25.0763790Z env: 2025-07-24T03:46:25.0763952Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:46:25.0764168Z ##[endgroup] 2025-07-24T03:46:25.2210676Z Syncing repository: pytorch/pytorch 2025-07-24T03:46:25.2211922Z ##[group]Getting Git version info 2025-07-24T03:46:25.2212349Z Working directory is 'C:\actions-runner\_work\pytorch\pytorch' 2025-07-24T03:46:25.2301213Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-07-24T03:46:25.2509988Z git version 2.49.0.windows.1 2025-07-24T03:46:25.2553719Z ##[endgroup] 2025-07-24T03:46:25.2565300Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\50b84441-8815-40c1-b0aa-4dfa6ab834cb\.gitconfig' 2025-07-24T03:46:25.2583036Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\50b84441-8815-40c1-b0aa-4dfa6ab834cb' before making global git config changes 2025-07-24T03:46:25.2585431Z Adding repository directory to the temporary git global config as a safe directory 2025-07-24T03:46:25.2592934Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-07-24T03:46:25.2826444Z Deleting the contents of 'C:\actions-runner\_work\pytorch\pytorch' 2025-07-24T03:46:25.2831912Z ##[group]Initializing the repository 2025-07-24T03:46:25.2842944Z [command]"C:\Program Files\Git\cmd\git.exe" init C:\actions-runner\_work\pytorch\pytorch 2025-07-24T03:46:25.3197600Z Initialized empty Git repository in C:/actions-runner/_work/pytorch/pytorch/.git/ 2025-07-24T03:46:25.3239608Z [command]"C:\Program Files\Git\cmd\git.exe" remote add origin https://github.com/pytorch/pytorch 2025-07-24T03:46:25.3504564Z ##[endgroup] 2025-07-24T03:46:25.3504965Z ##[group]Disabling automatic garbage collection 2025-07-24T03:46:25.3516772Z [command]"C:\Program Files\Git\cmd\git.exe" config --local gc.auto 0 2025-07-24T03:46:25.3758894Z ##[endgroup] 2025-07-24T03:46:25.3759315Z ##[group]Setting up auth 2025-07-24T03:46:25.3774211Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-07-24T03:46:25.4022272Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2025-07-24T03:46:25.9287973Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-07-24T03:46:25.9544719Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2025-07-24T03:46:26.3211167Z [command]"C:\Program Files\Git\cmd\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-07-24T03:46:26.3456530Z ##[endgroup] 2025-07-24T03:46:26.3456973Z ##[group]Fetching the repository 2025-07-24T03:46:26.3471165Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* 2025-07-24T03:47:21.0122229Z From https://github.com/pytorch/pytorch 2025-07-24T03:47:21.0122772Z * [new branch] 2.6.0.dev20241004+ -> origin/2.6.0.dev20241004+ 2025-07-24T03:47:21.0123340Z * [new branch] HDCharles-2.6.0-release-notes -> origin/HDCharles-2.6.0-release-notes 2025-07-24T03:47:21.0124022Z * [new branch] JackCaoG/dynamo_make_fx_non_core_aten_ops -> origin/JackCaoG/dynamo_make_fx_non_core_aten_ops 2025-07-24T03:47:21.0124810Z * [new branch] PR-AOTInductorNoneBug -> origin/PR-AOTInductorNoneBug 2025-07-24T03:47:21.0125377Z * [new branch] PR-AOTInductorNoneBugFix -> origin/PR-AOTInductorNoneBugFix 2025-07-24T03:47:21.0125955Z * [new branch] PR-FixConfigsIssue -> origin/PR-FixConfigsIssue 2025-07-24T03:47:21.0126495Z * [new branch] PR-NoneBugFix-viable -> origin/PR-NoneBugFix-viable 2025-07-24T03:47:21.0126985Z * [new branch] PR-ResetToZero -> origin/PR-ResetToZero 2025-07-24T03:47:21.0127502Z * [new branch] Update-Flash-Packaging -> origin/Update-Flash-Packaging 2025-07-24T03:47:21.0128022Z * [new branch] ZainRizvi-patch-1 -> origin/ZainRizvi-patch-1 2025-07-24T03:47:21.0128621Z * [new branch] add-missing-args-normalization -> origin/add-missing-args-normalization 2025-07-24T03:47:21.0129262Z * [new branch] addVllmPin -> origin/addVllmPin 2025-07-24T03:47:21.0129738Z * [new branch] add_windows_testing_back -> origin/add_windows_testing_back 2025-07-24T03:47:21.0130250Z * [new branch] addbuildvllm -> origin/addbuildvllm 2025-07-24T03:47:21.0131774Z * [new branch] addmm-heuristic -> origin/addmm-heuristic 2025-07-24T03:47:21.0132315Z * [new branch] addsimde -> origin/addsimde 2025-07-24T03:47:21.0132780Z * [new branch] addvllpinnedfile -> origin/addvllpinnedfile 2025-07-24T03:47:21.0133268Z * [new branch] adi/skip_slow_tests -> origin/adi/skip_slow_tests 2025-07-24T03:47:21.0133729Z * [new branch] adi/test -> origin/adi/test 2025-07-24T03:47:21.0134163Z * [new branch] adi/test_fusions -> origin/adi/test_fusions 2025-07-24T03:47:21.0134659Z * [new branch] adi/test_presve_change -> origin/adi/test_presve_change 2025-07-24T03:47:21.0135131Z * [new branch] adi/test_timm -> origin/adi/test_timm 2025-07-24T03:47:21.0135622Z * [new branch] adi/testpresve_change -> origin/adi/testpresve_change 2025-07-24T03:47:21.0136152Z * [new branch] adi/update_openblas -> origin/adi/update_openblas 2025-07-24T03:47:21.0136703Z * [new branch] aditew01/test/vec_bf16 -> origin/aditew01/test/vec_bf16 2025-07-24T03:47:21.0137241Z * [new branch] ah-globalfeedback-hook -> origin/ah-globalfeedback-hook 2025-07-24T03:47:21.0137746Z * [new branch] albanD-patch-1 -> origin/albanD-patch-1 2025-07-24T03:47:21.0138213Z * [new branch] alt-disable -> origin/alt-disable 2025-07-24T03:47:21.0138675Z * [new branch] angelayi/155426 -> origin/angelayi/155426 2025-07-24T03:47:21.0139119Z * [new branch] angelayi/157183 -> origin/angelayi/157183 2025-07-24T03:47:21.0139668Z * [new branch] angelayi/aoti_additional_files -> origin/angelayi/aoti_additional_files 2025-07-24T03:47:21.0140242Z * [new branch] angelayi/aoti_custom_op -> origin/angelayi/aoti_custom_op 2025-07-24T03:47:21.0140786Z * [new branch] angelayi/benchmark -> origin/angelayi/benchmark 2025-07-24T03:47:21.0141295Z * [new branch] angelayi/benchmark2 -> origin/angelayi/benchmark2 2025-07-24T03:47:21.0141900Z * [new branch] angelayi/change_pytree_serialization -> origin/angelayi/change_pytree_serialization 2025-07-24T03:47:21.0142516Z * [new branch] angelayi/cpp_loader -> origin/angelayi/cpp_loader 2025-07-24T03:47:21.0143013Z * [new branch] angelayi/customop -> origin/angelayi/customop 2025-07-24T03:47:21.0143505Z * [new branch] angelayi/del_lib -> origin/angelayi/del_lib 2025-07-24T03:47:21.0143972Z * [new branch] angelayi/docs -> origin/angelayi/docs 2025-07-24T03:47:21.0144417Z * [new branch] angelayi/docs2 -> origin/angelayi/docs2 2025-07-24T03:47:21.0144935Z * [new branch] angelayi/dynamo_fake_input -> origin/angelayi/dynamo_fake_input 2025-07-24T03:47:21.0145466Z * [new branch] angelayi/fake_device -> origin/angelayi/fake_device 2025-07-24T03:47:21.0146011Z * [new branch] angelayi/int_lift_constants -> origin/angelayi/int_lift_constants 2025-07-24T03:47:21.0146547Z * [new branch] angelayi/logging.bak -> origin/angelayi/logging.bak 2025-07-24T03:47:21.0147059Z * [new branch] angelayi/logging2 -> origin/angelayi/logging2 2025-07-24T03:47:21.0147563Z * [new branch] angelayi/no_so_weight -> origin/angelayi/no_so_weight 2025-07-24T03:47:21.9685428Z * [new branch] angelayi/pytree -> origin/angelayi/pytree 2025-07-24T03:47:21.9685994Z * [new branch] angelayi/scan_layers -> origin/angelayi/scan_layers 2025-07-24T03:47:21.9686507Z * [new branch] angelayi/symint_input -> origin/angelayi/symint_input 2025-07-24T03:47:21.9687386Z * [new branch] angelayi/torch_size -> origin/angelayi/torch_size 2025-07-24T03:47:21.9687913Z * [new branch] angelayi/update_schema_msg -> origin/angelayi/update_schema_msg 2025-07-24T03:47:21.9688447Z * [new branch] aoti_static_linkage -> origin/aoti_static_linkage 2025-07-24T03:47:21.9688943Z * [new branch] aoti_weight_sharing -> origin/aoti_weight_sharing 2025-07-24T03:47:21.9689521Z * [new branch] arsh/symint_mm_ind_decomp -> origin/arsh/symint_mm_ind_decomp 2025-07-24T03:47:21.9690105Z * [new branch] atalman-inductor-perf-cu124 -> origin/atalman-inductor-perf-cu124 2025-07-24T03:47:21.9690726Z * [new branch] atalman-inductor-perf-cu124.1 -> origin/atalman-inductor-perf-cu124.1 2025-07-24T03:47:21.9691302Z * [new branch] atalman-patch-1 -> origin/atalman-patch-1 2025-07-24T03:47:21.9691783Z * [new branch] atalman-patch-2 -> origin/atalman-patch-2 2025-07-24T03:47:21.9692261Z * [new branch] atalman-patch-3 -> origin/atalman-patch-3 2025-07-24T03:47:21.9692743Z * [new branch] atalman-patch-4 -> origin/atalman-patch-4 2025-07-24T03:47:21.9693204Z * [new branch] atalman-patch-5 -> origin/atalman-patch-5 2025-07-24T03:47:21.9693682Z * [new branch] atalman-patch-6 -> origin/atalman-patch-6 2025-07-24T03:47:21.9694139Z * [new branch] atalman-patch-7 -> origin/atalman-patch-7 2025-07-24T03:47:21.9694612Z * [new branch] atalman-patch-8 -> origin/atalman-patch-8 2025-07-24T03:47:21.9695112Z * [new branch] atalman_inductor_2.3.0 -> origin/atalman_inductor_2.3.0 2025-07-24T03:47:21.9695683Z * [new branch] atalman_inductor_2.3.1 -> origin/atalman_inductor_2.3.1 2025-07-24T03:47:21.9696205Z * [new branch] atalman_inductor_2.4.0 -> origin/atalman_inductor_2.4.0 2025-07-24T03:47:21.9696716Z * [new branch] atalman_inductor_2.4.x -> origin/atalman_inductor_2.4.x 2025-07-24T03:47:21.9697206Z * [new branch] backupvllm -> origin/backupvllm 2025-07-24T03:47:21.9697654Z * [new branch] base/1.5 -> origin/base/1.5 2025-07-24T03:47:21.9698181Z * [new branch] batching_sdpa_efficient_attention -> origin/batching_sdpa_efficient_attention 2025-07-24T03:47:21.9698775Z * [new branch] benchmark-updates -> origin/benchmark-updates 2025-07-24T03:47:21.9699282Z * [new branch] benchmarking-script -> origin/benchmarking-script 2025-07-24T03:47:21.9700033Z * [new branch] benjaminglass1/mark-large-tensor-tests-serial -> origin/benjaminglass1/mark-large-tensor-tests-serial 2025-07-24T03:47:21.9700763Z * [new branch] bertmaher/pinbump26 -> origin/bertmaher/pinbump26 2025-07-24T03:47:21.9701265Z * [new branch] bertrand/cutlass -> origin/bertrand/cutlass 2025-07-24T03:47:21.9701755Z * [new branch] bf/cg-capture-size -> origin/bf/cg-capture-size 2025-07-24T03:47:21.9702237Z * [new branch] bf/cg-remove-check -> origin/bf/cg-remove-check 2025-07-24T03:47:21.9702713Z * [new branch] bf/cudagraph -> origin/bf/cudagraph 2025-07-24T03:47:21.9703330Z * [new branch] bf/cudagraph-disable-input-mutation -> origin/bf/cudagraph-disable-input-mutation 2025-07-24T03:47:21.9704275Z * [new branch] bf/cudagraph-enable-input-mutation-support-benchmark -> origin/bf/cudagraph-enable-input-mutation-support-benchmark 2025-07-24T03:47:21.9705137Z * [new branch] bf/cudagraph-partition -> origin/bf/cudagraph-partition 2025-07-24T03:47:21.9705690Z * [new branch] bf/donated-buffer-bench -> origin/bf/donated-buffer-bench 2025-07-24T03:47:21.9706468Z * [new branch] bf/improve-kernel-bench -> origin/bf/improve-kernel-bench 2025-07-24T03:47:21.9707004Z * [new branch] bf/kernel-benchmark -> origin/bf/kernel-benchmark 2025-07-24T03:47:21.9707524Z * [new branch] bf/partition-move-cpu -> origin/bf/partition-move-cpu 2025-07-24T03:47:21.9708059Z * [new branch] bf/partition-turn-on -> origin/bf/partition-turn-on 2025-07-24T03:47:21.9708565Z * [new branch] bf/recompile-context -> origin/bf/recompile-context 2025-07-24T03:47:21.9709128Z * [new branch] bf/reduce-scatter-copy-in -> origin/bf/reduce-scatter-copy-in 2025-07-24T03:47:21.9709696Z * [new branch] bf/remove-check-55b0c39d -> origin/bf/remove-check-55b0c39d 2025-07-24T03:47:21.9710186Z * [new branch] bf16adamw -> origin/bf16adamw 2025-07-24T03:47:22.2820292Z * [new branch] bisect_perf_hf_T5_3acc6eac492 -> origin/bisect_perf_hf_T5_3acc6eac492 2025-07-24T03:47:22.2820928Z * [new branch] bisect_perf_hf_T5_3fcf66f61fb -> origin/bisect_perf_hf_T5_3fcf66f61fb 2025-07-24T03:47:22.2821497Z * [new branch] bisect_perf_hf_T5_4009d154129 -> origin/bisect_perf_hf_T5_4009d154129 2025-07-24T03:47:22.2822057Z * [new branch] bisect_perf_hf_T5_40d0740e73d -> origin/bisect_perf_hf_T5_40d0740e73d 2025-07-24T03:47:22.2822595Z * [new branch] bisect_perf_hf_T5_5268754e -> origin/bisect_perf_hf_T5_5268754e 2025-07-24T03:47:22.2823141Z * [new branch] bisect_perf_hf_T5_7d89a8d385c -> origin/bisect_perf_hf_T5_7d89a8d385c 2025-07-24T03:47:22.2823687Z * [new branch] bisect_perf_hf_T5_b7a25c1ee7c -> origin/bisect_perf_hf_T5_b7a25c1ee7c 2025-07-24T03:47:22.2824247Z * [new branch] bisect_perf_hf_T5_c25b201583f -> origin/bisect_perf_hf_T5_c25b201583f 2025-07-24T03:47:22.2824807Z * [new branch] bisect_perf_hf_T5_c93e57efac0 -> origin/bisect_perf_hf_T5_c93e57efac0 2025-07-24T03:47:22.2825362Z * [new branch] bisect_perf_hf_T5_ca9813ea149 -> origin/bisect_perf_hf_T5_ca9813ea149 2025-07-24T03:47:22.2825904Z * [new branch] bisect_perf_hf_T5_d65f194a -> origin/bisect_perf_hf_T5_d65f194a 2025-07-24T03:47:22.2826424Z * [new branch] bisect_perf_hf_T5_da94ab0b -> origin/bisect_perf_hf_T5_da94ab0b 2025-07-24T03:47:22.2826978Z * [new branch] bisect_perf_hf_T5_da94ab0b_new -> origin/bisect_perf_hf_T5_da94ab0b_new 2025-07-24T03:47:22.2827552Z * [new branch] bisect_perf_hf_T5_db4e8a1d8a8 -> origin/bisect_perf_hf_T5_db4e8a1d8a8 2025-07-24T03:47:22.2828095Z * [new branch] bisect_perf_hf_T5_e0d97e936a2 -> origin/bisect_perf_hf_T5_e0d97e936a2 2025-07-24T03:47:22.2828653Z * [new branch] bisect_perf_hf_T5_f23621ec563 -> origin/bisect_perf_hf_T5_f23621ec563 2025-07-24T03:47:22.2829181Z * [new branch] bit8_transpose_pack -> origin/bit8_transpose_pack 2025-07-24T03:47:22.2829712Z * [new branch] bowbao/bench_updates_stage -> origin/bowbao/bench_updates_stage 2025-07-24T03:47:22.2830243Z * [new branch] bowbao/dort_rewriter -> origin/bowbao/dort_rewriter 2025-07-24T03:47:22.2830718Z * [new branch] bowbao/wip_prs -> origin/bowbao/wip_prs 2025-07-24T03:47:22.2831275Z * [new branch] bowenbao/partial_min_max_reduce -> origin/bowenbao/partial_min_max_reduce 2025-07-24T03:47:22.2831856Z * [new branch] brister/always_wrapper_ir -> origin/brister/always_wrapper_ir 2025-07-24T03:47:22.2832414Z * [new branch] brister/test_block_ptr_same -> origin/brister/test_block_ptr_same 2025-07-24T03:47:22.2833058Z * [new branch] brister/tiled_reduction_no_numel_check -> origin/brister/tiled_reduction_no_numel_check 2025-07-24T03:47:22.2834385Z * [new branch] brister/wrapper_fx_precomputed_size -> origin/brister/wrapper_fx_precomputed_size 2025-07-24T03:47:22.2835097Z * [new branch] ca_0431d47eaa -> origin/ca_0431d47eaa 2025-07-24T03:47:22.2835535Z * [new branch] ca_fix_0431d47eaa -> origin/ca_fix_0431d47eaa 2025-07-24T03:47:22.2836497Z * [new branch] camyll/revert-94bc900da97ad7f3c35b3b819bb53b23c74b581a-for-release-2.8 -> origin/camyll/revert-94bc900da97ad7f3c35b3b819bb53b23c74b581a-for-release-2.8 2025-07-24T03:47:22.2837559Z * [new branch] camyll/test_precommit_hooks_lintrunner -> origin/camyll/test_precommit_hooks_lintrunner 2025-07-24T03:47:22.2838378Z * [new branch] camyllh/cherry-pick-155109-revert-to-release2.8 -> origin/camyllh/cherry-pick-155109-revert-to-release2.8 2025-07-24T03:47:22.2839248Z * [new branch] camyllh/cherrypick-151547-for-release28 -> origin/camyllh/cherrypick-151547-for-release28 2025-07-24T03:47:22.2840025Z * [new branch] camyllh/cherrypick_152932_for_release_2.8 -> origin/camyllh/cherrypick_152932_for_release_2.8 2025-07-24T03:47:22.2840745Z * [new branch] camyllh/revert-138222-in-release-2.8 -> origin/camyllh/revert-138222-in-release-2.8 2025-07-24T03:47:22.2841491Z * [new branch] camyllh/revert-155412-on-release-branch -> origin/camyllh/revert-155412-on-release-branch 2025-07-24T03:47:22.2842217Z * [new branch] camyllh/revert-156552-on-release-2.8 -> origin/camyllh/revert-156552-on-release-2.8 2025-07-24T03:47:22.2842896Z * [new branch] camyllh/revert_156517_on_release_2.8 -> origin/camyllh/revert_156517_on_release_2.8 2025-07-24T03:47:22.2843523Z * [new branch] camyllh/test_setup_hooks_push -> origin/camyllh/test_setup_hooks_push 2025-07-24T03:47:22.2844334Z * [new branch] cherry-pick-147095-by-pytorch_bot_bot_ -> origin/cherry-pick-147095-by-pytorch_bot_bot_ 2025-07-24T03:47:22.2845113Z * [new branch] cherry-pick-149654-by-pytorch_bot_bot_ -> origin/cherry-pick-149654-by-pytorch_bot_bot_ 2025-07-24T03:47:23.3979612Z * [new branch] cherry-pick-151939-by-pytorch_bot_bot_ -> origin/cherry-pick-151939-by-pytorch_bot_bot_ 2025-07-24T03:47:23.3980425Z * [new branch] cherry-pick-154174-by-pytorch_bot_bot_ -> origin/cherry-pick-154174-by-pytorch_bot_bot_ 2025-07-24T03:47:23.3981168Z * [new branch] cherry-pick-155214-by-pytorch_bot_bot_ -> origin/cherry-pick-155214-by-pytorch_bot_bot_ 2025-07-24T03:47:23.3981939Z * [new branch] cherry-pick-155255-by-pytorch_bot_bot_ -> origin/cherry-pick-155255-by-pytorch_bot_bot_ 2025-07-24T03:47:23.3982684Z * [new branch] cherry-pick-155896-by-pytorch_bot_bot_ -> origin/cherry-pick-155896-by-pytorch_bot_bot_ 2025-07-24T03:47:23.3983411Z * [new branch] cherry-pick-156260-by-pytorch_bot_bot_ -> origin/cherry-pick-156260-by-pytorch_bot_bot_ 2025-07-24T03:47:23.3984262Z * [new branch] cherry-pick-156499-by-pytorch_bot_bot_ -> origin/cherry-pick-156499-by-pytorch_bot_bot_ 2025-07-24T03:47:23.3985028Z * [new branch] cherry-pick-156664-by-pytorch_bot_bot_ -> origin/cherry-pick-156664-by-pytorch_bot_bot_ 2025-07-24T03:47:23.3985758Z * [new branch] cherry-pick-156708-by-pytorch_bot_bot_ -> origin/cherry-pick-156708-by-pytorch_bot_bot_ 2025-07-24T03:47:23.3986496Z * [new branch] cherry-pick-156719-by-pytorch_bot_bot_ -> origin/cherry-pick-156719-by-pytorch_bot_bot_ 2025-07-24T03:47:23.3987422Z * [new branch] cherry-pick-156731-by-pytorch_bot_bot_ -> origin/cherry-pick-156731-by-pytorch_bot_bot_ 2025-07-24T03:47:23.3988775Z * [new branch] cherry-pick-156783-by-pytorch_bot_bot_ -> origin/cherry-pick-156783-by-pytorch_bot_bot_ 2025-07-24T03:47:23.3990014Z * [new branch] cherry-pick-156847-by-pytorch_bot_bot_ -> origin/cherry-pick-156847-by-pytorch_bot_bot_ 2025-07-24T03:47:23.3991539Z * [new branch] cherry-pick-156876-by-pytorch_bot_bot_ -> origin/cherry-pick-156876-by-pytorch_bot_bot_ 2025-07-24T03:47:23.3992929Z * [new branch] cherry-pick-156888-by-pytorch_bot_bot_ -> origin/cherry-pick-156888-by-pytorch_bot_bot_ 2025-07-24T03:47:23.3994165Z * [new branch] cherry-pick-156898-by-pytorch_bot_bot_ -> origin/cherry-pick-156898-by-pytorch_bot_bot_ 2025-07-24T03:47:23.3995303Z * [new branch] cherry-pick-156910-by-pytorch_bot_bot_ -> origin/cherry-pick-156910-by-pytorch_bot_bot_ 2025-07-24T03:47:23.3996544Z * [new branch] cherry-pick-157014-by-pytorch_bot_bot_ -> origin/cherry-pick-157014-by-pytorch_bot_bot_ 2025-07-24T03:47:23.3999826Z * [new branch] cherry-pick-157017-by-pytorch_bot_bot_ -> origin/cherry-pick-157017-by-pytorch_bot_bot_ 2025-07-24T03:47:23.4000832Z * [new branch] cherry-pick-157023-by-pytorch_bot_bot_ -> origin/cherry-pick-157023-by-pytorch_bot_bot_ 2025-07-24T03:47:23.4001597Z * [new branch] cherry-pick-157130-by-pytorch_bot_bot_ -> origin/cherry-pick-157130-by-pytorch_bot_bot_ 2025-07-24T03:47:23.4002407Z * [new branch] cherry-pick-157179-by-pytorch_bot_bot_ -> origin/cherry-pick-157179-by-pytorch_bot_bot_ 2025-07-24T03:47:23.4003195Z * [new branch] cherry-pick-157292-by-pytorch_bot_bot_ -> origin/cherry-pick-157292-by-pytorch_bot_bot_ 2025-07-24T03:47:23.4003917Z * [new branch] cherry-pick-157322-by-pytorch_bot_bot_ -> origin/cherry-pick-157322-by-pytorch_bot_bot_ 2025-07-24T03:47:23.4004660Z * [new branch] cherry-pick-157453-by-pytorch_bot_bot_ -> origin/cherry-pick-157453-by-pytorch_bot_bot_ 2025-07-24T03:47:23.4005397Z * [new branch] cherry-pick-157466-by-pytorch_bot_bot_ -> origin/cherry-pick-157466-by-pytorch_bot_bot_ 2025-07-24T03:47:23.4006122Z * [new branch] cherry-pick-157467-by-pytorch_bot_bot_ -> origin/cherry-pick-157467-by-pytorch_bot_bot_ 2025-07-24T03:47:23.4006865Z * [new branch] cherry-pick-157503-by-pytorch_bot_bot_ -> origin/cherry-pick-157503-by-pytorch_bot_bot_ 2025-07-24T03:47:23.4007587Z * [new branch] cherry-pick-157513-by-pytorch_bot_bot_ -> origin/cherry-pick-157513-by-pytorch_bot_bot_ 2025-07-24T03:47:23.4008372Z * [new branch] cherry-pick-157516-by-pytorch_bot_bot_ -> origin/cherry-pick-157516-by-pytorch_bot_bot_ 2025-07-24T03:47:23.4009235Z * [new branch] cherry-pick-157558-by-pytorch_bot_bot_ -> origin/cherry-pick-157558-by-pytorch_bot_bot_ 2025-07-24T03:47:23.4009956Z * [new branch] cherry-pick-157598-by-pytorch_bot_bot_ -> origin/cherry-pick-157598-by-pytorch_bot_bot_ 2025-07-24T03:47:23.4010683Z * [new branch] cherry-pick-157600-by-pytorch_bot_bot_ -> origin/cherry-pick-157600-by-pytorch_bot_bot_ 2025-07-24T03:47:23.4011419Z * [new branch] cherry-pick-157630-by-pytorch_bot_bot_ -> origin/cherry-pick-157630-by-pytorch_bot_bot_ 2025-07-24T03:47:23.4012154Z * [new branch] cherry-pick-157695-by-pytorch_bot_bot_ -> origin/cherry-pick-157695-by-pytorch_bot_bot_ 2025-07-24T03:47:24.2903595Z * [new branch] cherry-pick-157732-by-pytorch_bot_bot_ -> origin/cherry-pick-157732-by-pytorch_bot_bot_ 2025-07-24T03:47:24.2904399Z * [new branch] cherry-pick-157733-by-pytorch_bot_bot_ -> origin/cherry-pick-157733-by-pytorch_bot_bot_ 2025-07-24T03:47:24.2905162Z * [new branch] cherry-pick-157843-by-pytorch_bot_bot_ -> origin/cherry-pick-157843-by-pytorch_bot_bot_ 2025-07-24T03:47:24.2905902Z * [new branch] cherry-pick-157993-by-pytorch_bot_bot_ -> origin/cherry-pick-157993-by-pytorch_bot_bot_ 2025-07-24T03:47:24.2906664Z * [new branch] cherry-pick-158064-by-pytorch_bot_bot_ -> origin/cherry-pick-158064-by-pytorch_bot_bot_ 2025-07-24T03:47:24.2907402Z * [new branch] cherry-pick-158126-by-pytorch_bot_bot_ -> origin/cherry-pick-158126-by-pytorch_bot_bot_ 2025-07-24T03:47:24.2908344Z * [new branch] cherry-pick-158152-by-pytorch_bot_bot_ -> origin/cherry-pick-158152-by-pytorch_bot_bot_ 2025-07-24T03:47:24.2909231Z * [new branch] cherry-pick-158295-by-pytorch_bot_bot_ -> origin/cherry-pick-158295-by-pytorch_bot_bot_ 2025-07-24T03:47:24.2909962Z * [new branch] cherry-pick-158301-by-pytorch_bot_bot_ -> origin/cherry-pick-158301-by-pytorch_bot_bot_ 2025-07-24T03:47:24.2910682Z * [new branch] cherry-pick-158537-by-pytorch_bot_bot_ -> origin/cherry-pick-158537-by-pytorch_bot_bot_ 2025-07-24T03:47:24.2911417Z * [new branch] cherry-pick-158572-by-pytorch_bot_bot_ -> origin/cherry-pick-158572-by-pytorch_bot_bot_ 2025-07-24T03:47:24.2912040Z * [new branch] cherry-pick-158595 -> origin/cherry-pick-158595 2025-07-24T03:47:24.2912566Z * [new branch] cherry-pick-PR-158746 -> origin/cherry-pick-PR-158746 2025-07-24T03:47:24.2913082Z * [new branch] chilli/flex_vllm -> origin/chilli/flex_vllm 2025-07-24T03:47:24.2913563Z * [new branch] ck-epilogue-fix -> origin/ck-epilogue-fix 2025-07-24T03:47:24.2914091Z * [new branch] ckluk2-compileThread-1 -> origin/ckluk2-compileThread-1 2025-07-24T03:47:24.2914640Z * [new branch] ckluk2-compileThread-2 -> origin/ckluk2-compileThread-2 2025-07-24T03:47:24.2915200Z * [new branch] ckluk2-compileThread-64 -> origin/ckluk2-compileThread-64 2025-07-24T03:47:24.2915712Z * [new branch] ckluk2-test-1 -> origin/ckluk2-test-1 2025-07-24T03:47:24.2916149Z * [new branch] cleantest1 -> origin/cleantest1 2025-07-24T03:47:24.2916934Z * [new branch] codex/create-test-for-tensor-memory-leak-in-cudagraph -> origin/codex/create-test-for-tensor-memory-leak-in-cudagraph 2025-07-24T03:47:24.2917924Z * [new branch] codex/update-default-size_hint-fallback-value -> origin/codex/update-default-size_hint-fallback-value 2025-07-24T03:47:24.2918630Z * [new branch] collective_c_shim -> origin/collective_c_shim 2025-07-24T03:47:24.2919239Z * [new branch] compile_fsdp2_disable_stream_and_event -> origin/compile_fsdp2_disable_stream_and_event 2025-07-24T03:47:24.2919865Z * [new branch] comply-with-setuptools -> origin/comply-with-setuptools 2025-07-24T03:47:24.2920372Z * [new branch] context_test -> origin/context_test 2025-07-24T03:47:24.2920839Z * [new branch] copilot/fix-157446 -> origin/copilot/fix-157446 2025-07-24T03:47:24.2921307Z * [new branch] copy_graph -> origin/copy_graph 2025-07-24T03:47:24.2921779Z * [new branch] cpio/fix_new_ami_tests -> origin/cpio/fix_new_ami_tests 2025-07-24T03:47:24.2922249Z * [new branch] csl/3_proc_sm -> origin/csl/3_proc_sm 2025-07-24T03:47:24.2922777Z * [new branch] csl/add_file_merge_conflict_csv -> origin/csl/add_file_merge_conflict_csv 2025-07-24T03:47:24.2923332Z * [new branch] csl/always_produce_xml -> origin/csl/always_produce_xml 2025-07-24T03:47:24.2923865Z * [new branch] csl/build_test_more_procs -> origin/csl/build_test_more_procs 2025-07-24T03:47:24.2924397Z * [new branch] csl/build_test_more_procs2 -> origin/csl/build_test_more_procs2 2025-07-24T03:47:24.2925016Z * [new branch] csl/ci_upload_artifacts_with_running -> origin/csl/ci_upload_artifacts_with_running 2025-07-24T03:47:24.2925649Z * [new branch] csl/clean_up_max_jobs_override -> origin/csl/clean_up_max_jobs_override 2025-07-24T03:47:24.2926190Z * [new branch] csl/clean_up_more_tags -> origin/csl/clean_up_more_tags 2025-07-24T03:47:24.2926729Z * [new branch] csl/disable_periodic_tests -> origin/csl/disable_periodic_tests 2025-07-24T03:47:24.2927362Z * [new branch] csl/docker_instru_ssh -> origin/csl/docker_instru_ssh 2025-07-24T03:47:24.2928056Z * [new branch] csl/faketensortest_super_setup -> origin/csl/faketensortest_super_setup 2025-07-24T03:47:24.2928671Z * [new branch] csl/fix_docker_imgs_for_release -> origin/csl/fix_docker_imgs_for_release 2025-07-24T03:47:24.8058044Z * [new branch] csl/fix_flaky_dist_test -> origin/csl/fix_flaky_dist_test 2025-07-24T03:47:24.8058584Z * [new branch] csl/katex -> origin/csl/katex 2025-07-24T03:47:24.8059058Z * [new branch] csl/keep_going_main -> origin/csl/keep_going_main 2025-07-24T03:47:24.8059554Z * [new branch] csl/larger_runner -> origin/csl/larger_runner 2025-07-24T03:47:24.8060146Z * [new branch] csl/lintrunner_changed_files_removed -> origin/csl/lintrunner_changed_files_removed 2025-07-24T03:47:24.8060891Z * [new branch] csl/lintrunner_changed_files_removed_test -> origin/csl/lintrunner_changed_files_removed_test 2025-07-24T03:47:24.8061559Z * [new branch] csl/lintrunner_stuff -> origin/csl/lintrunner_stuff 2025-07-24T03:47:24.8062043Z * [new branch] csl/mps_sharding -> origin/csl/mps_sharding 2025-07-24T03:47:24.8062544Z * [new branch] csl/multistage_docker -> origin/csl/multistage_docker 2025-07-24T03:47:24.8063069Z * [new branch] csl/print_set_output -> origin/csl/print_set_output 2025-07-24T03:47:24.8063548Z * [new branch] csl/revert_open -> origin/csl/revert_open 2025-07-24T03:47:24.8064019Z * [new branch] csl/rocm_binary -> origin/csl/rocm_binary 2025-07-24T03:47:24.8064480Z * [new branch] csl/rocm_inductor -> origin/csl/rocm_inductor 2025-07-24T03:47:24.8065085Z * [new branch] csl/rocm_upload_artifacts_while_running -> origin/csl/rocm_upload_artifacts_while_running 2025-07-24T03:47:24.8065675Z * [new branch] csl/skip_build -> origin/csl/skip_build 2025-07-24T03:47:24.8066134Z * [new branch] csl/td_dynamo -> origin/csl/td_dynamo 2025-07-24T03:47:24.8066665Z * [new branch] csl/test_cuda_build_large_runner -> origin/csl/test_cuda_build_large_runner 2025-07-24T03:47:24.8067212Z * [new branch] csl/unused_docker -> origin/csl/unused_docker 2025-07-24T03:47:24.8067776Z * [new branch] csl/update_mobile_build_docker_img -> origin/csl/update_mobile_build_docker_img 2025-07-24T03:47:24.8068432Z * [new branch] csl/viable_strict_concurrency_group -> origin/csl/viable_strict_concurrency_group 2025-07-24T03:47:24.8069008Z * [new branch] csl/win_sccache -> origin/csl/win_sccache 2025-07-24T03:47:24.8069486Z * [new branch] cublasltrelax2 -> origin/cublasltrelax2 2025-07-24T03:47:24.8069945Z * [new branch] cublasrelax2 -> origin/cublasrelax2 2025-07-24T03:47:24.8070429Z * [new branch] cudnnsdparefactor -> origin/cudnnsdparefactor 2025-07-24T03:47:24.8070921Z * [new branch] custom_lowering_dict -> origin/custom_lowering_dict 2025-07-24T03:47:24.8071412Z * [new branch] d4l3k/delete_hook -> origin/d4l3k/delete_hook 2025-07-24T03:47:24.8071892Z * [new branch] d4l3k/dist_queue -> origin/d4l3k/dist_queue 2025-07-24T03:47:24.8072345Z * [new branch] d4l3k/fix_h100_ci -> origin/d4l3k/fix_h100_ci 2025-07-24T03:47:24.8072813Z * [new branch] d4l3k/wait_stream -> origin/d4l3k/wait_stream 2025-07-24T03:47:24.8073326Z * [new branch] dcp-safetensor-test-fix -> origin/dcp-safetensor-test-fix 2025-07-24T03:47:24.8073823Z * [new branch] dcp_zoc -> origin/dcp_zoc 2025-07-24T03:47:24.8075039Z * [new branch] delete-quant-docs -> origin/delete-quant-docs 2025-07-24T03:47:24.8075882Z * [new branch] dependabot/pip/dot-ci/docker/protobuf-5.29.5 -> origin/dependabot/pip/dot-ci/docker/protobuf-5.29.5 2025-07-24T03:47:24.8076573Z * [new branch] deprecation_decorator -> origin/deprecation_decorator 2025-07-24T03:47:24.8077127Z * [new branch] desertfire/test_cpp_wrapper -> origin/desertfire/test_cpp_wrapper 2025-07-24T03:47:24.8077760Z * [new branch] desertfire/triton-cpu-for-aarch64 -> origin/desertfire/triton-cpu-for-aarch64 2025-07-24T03:47:24.8078386Z * [new branch] dev/joona/MPSNDArrayAdd -> origin/dev/joona/MPSNDArrayAdd 2025-07-24T03:47:24.8078903Z * [new branch] dev/joona/Unranked -> origin/dev/joona/Unranked 2025-07-24T03:47:24.8079388Z * [new branch] dev/joona/cat -> origin/dev/joona/cat 2025-07-24T03:47:24.8079879Z * [new branch] dev/joona/cat_remove_graph -> origin/dev/joona/cat_remove_graph 2025-07-24T03:47:24.8080442Z * [new branch] dev/joona/embeddingbag -> origin/dev/joona/embeddingbag 2025-07-24T03:47:24.8081007Z * [new branch] dev/joona/getTensorsString -> origin/dev/joona/getTensorsString 2025-07-24T03:47:24.8081675Z * [new branch] dev/joona/maxpool2dwithindices_errmsg -> origin/dev/joona/maxpool2dwithindices_errmsg 2025-07-24T03:47:24.8082349Z * [new branch] dev/joona/mps_linear_macos14 -> origin/dev/joona/mps_linear_macos14 2025-07-24T03:47:24.8082860Z * [new branch] dev/joona/sdpa -> origin/dev/joona/sdpa 2025-07-24T03:47:25.0459116Z * [new branch] dev/joona/sdpa_nans -> origin/dev/joona/sdpa_nans 2025-07-24T03:47:25.0459753Z * [new branch] dev/joona/synchronize_benchmark -> origin/dev/joona/synchronize_benchmark 2025-07-24T03:47:25.0460350Z * [new branch] dev/joona/topk_newapi -> origin/dev/joona/topk_newapi 2025-07-24T03:47:25.0460910Z * [new branch] dev/joona/type_inf -> origin/dev/joona/type_inf 2025-07-24T03:47:25.0461399Z * [new branch] dev/joona/upsize3d -> origin/dev/joona/upsize3d 2025-07-24T03:47:25.0461869Z * [new branch] disable -> origin/disable 2025-07-24T03:47:25.0462275Z * [new branch] divup -> origin/divup 2025-07-24T03:47:25.0462874Z * [new branch] divyanshk-log-api-usage-datapipes-1 -> origin/divyanshk-log-api-usage-datapipes-1 2025-07-24T03:47:25.0463498Z * [new branch] e2e-baseline -> origin/e2e-baseline 2025-07-24T03:47:25.0463987Z * [new branch] embg/test_inductor_ci_128B -> origin/embg/test_inductor_ci_128B 2025-07-24T03:47:25.0464539Z * [new branch] embg/test_inductor_ci_base -> origin/embg/test_inductor_ci_base 2025-07-24T03:47:25.0465099Z * [new branch] embg/test_inductor_ci_control -> origin/embg/test_inductor_ci_control 2025-07-24T03:47:25.0465686Z * [new branch] embg/triton_l2_prefetch_128B -> origin/embg/triton_l2_prefetch_128B 2025-07-24T03:47:25.0466267Z * [new branch] embg/triton_l2_prefetch_256B -> origin/embg/triton_l2_prefetch_256B 2025-07-24T03:47:25.0466806Z * [new branch] enable-b200-benchmark -> origin/enable-b200-benchmark 2025-07-24T03:47:25.0467300Z * [new branch] enable_td_rocm -> origin/enable_td_rocm 2025-07-24T03:47:25.0467756Z * [new branch] eqy-patch-1 -> origin/eqy-patch-1 2025-07-24T03:47:25.0468210Z * [new branch] eqy-patch-10 -> origin/eqy-patch-10 2025-07-24T03:47:25.0468738Z * [new branch] example-convert-torch.nn -> origin/example-convert-torch.nn 2025-07-24T03:47:25.0469282Z * [new branch] exclamaforte/amd-ma -> origin/exclamaforte/amd-ma 2025-07-24T03:47:25.0470132Z * [new branch] exclamaforte/bump-transformer-version -> origin/exclamaforte/bump-transformer-version 2025-07-24T03:47:25.0471005Z * [new branch] exclamaforte/combo-kernels-perf-run -> origin/exclamaforte/combo-kernels-perf-run 2025-07-24T03:47:25.0471749Z * [new branch] exclamaforte/debug-autotuner-profile -> origin/exclamaforte/debug-autotuner-profile 2025-07-24T03:47:25.0472439Z * [new branch] exclamaforte/do_bench_refactor -> origin/exclamaforte/do_bench_refactor 2025-07-24T03:47:25.0473091Z * [new branch] exclamaforte/enable-mem-dep-fusion -> origin/exclamaforte/enable-mem-dep-fusion 2025-07-24T03:47:25.0473829Z * [new branch] exclamaforte/fix-trace-parsing-fx-svg -> origin/exclamaforte/fix-trace-parsing-fx-svg 2025-07-24T03:47:25.0474619Z * [new branch] exclamaforte/force-pointwise-cat-perf-run -> origin/exclamaforte/force-pointwise-cat-perf-run 2025-07-24T03:47:25.0475330Z * [new branch] exclamaforte/fusion-data -> origin/exclamaforte/fusion-data 2025-07-24T03:47:25.0475952Z * [new branch] exclamaforte/gemm-benchmark-run -> origin/exclamaforte/gemm-benchmark-run 2025-07-24T03:47:25.0476591Z * [new branch] exclamaforte/gemm-export-model -> origin/exclamaforte/gemm-export-model 2025-07-24T03:47:25.0477195Z * [new branch] exclamaforte/gemm-model -> origin/exclamaforte/gemm-model 2025-07-24T03:47:25.0477901Z * [new branch] exclamaforte/gemm-model-all-data-collection -> origin/exclamaforte/gemm-model-all-data-collection 2025-07-24T03:47:25.0478623Z * [new branch] exclamaforte/gemm-to-amd -> origin/exclamaforte/gemm-to-amd 2025-07-24T03:47:25.0479236Z * [new branch] exclamaforte/heuristic-choices -> origin/exclamaforte/heuristic-choices 2025-07-24T03:47:25.0479860Z * [new branch] exclamaforte/just-gemm-model -> origin/exclamaforte/just-gemm-model 2025-07-24T03:47:25.0480428Z * [new branch] exclamaforte/log_mul -> origin/exclamaforte/log_mul 2025-07-24T03:47:25.0480984Z * [new branch] exclamaforte/memory-counter -> origin/exclamaforte/memory-counter 2025-07-24T03:47:25.0481625Z * [new branch] exclamaforte/scheduler-refactor -> origin/exclamaforte/scheduler-refactor 2025-07-24T03:47:25.0482299Z * [new branch] exclamaforte/test_cpp_wrapper_mode -> origin/exclamaforte/test_cpp_wrapper_mode 2025-07-24T03:47:25.0483002Z * [new branch] exclamaforte/update-autotune-configs -> origin/exclamaforte/update-autotune-configs 2025-07-24T03:47:25.0483776Z * [new branch] exclamaforte/update-autotune-configs-2 -> origin/exclamaforte/update-autotune-configs-2 2025-07-24T03:47:25.0484531Z * [new branch] exclamaforte/update-pandas-numpy-ci -> origin/exclamaforte/update-pandas-numpy-ci 2025-07-24T03:47:25.0879223Z * [new branch] exclamforte/gemm-model-final -> origin/exclamforte/gemm-model-final 2025-07-24T03:47:25.0879783Z * [new branch] exec -> origin/exec 2025-07-24T03:47:25.0880259Z * [new branch] experimental-mosaic -> origin/experimental-mosaic 2025-07-24T03:47:25.0880792Z * [new branch] export-D58091437 -> origin/export-D58091437 2025-07-24T03:47:25.0881276Z * [new branch] export-D61047529 -> origin/export-D61047529 2025-07-24T03:47:25.0881740Z * [new branch] export-D68846308 -> origin/export-D68846308 2025-07-24T03:47:25.0882216Z * [new branch] export-D71412006 -> origin/export-D71412006 2025-07-24T03:47:25.0882675Z * [new branch] export-D71446522 -> origin/export-D71446522 2025-07-24T03:47:25.0883147Z * [new branch] export-D72391401 -> origin/export-D72391401 2025-07-24T03:47:25.0883617Z * [new branch] export-D72483950 -> origin/export-D72483950 2025-07-24T03:47:25.0884338Z * [new branch] export-D73042989 -> origin/export-D73042989 2025-07-24T03:47:25.0884813Z * [new branch] export-D73287751 -> origin/export-D73287751 2025-07-24T03:47:25.0885268Z * [new branch] export-D75183591 -> origin/export-D75183591 2025-07-24T03:47:25.0885745Z * [new branch] export-D75605373 -> origin/export-D75605373 2025-07-24T03:47:25.0886206Z * [new branch] export-D75617432 -> origin/export-D75617432 2025-07-24T03:47:25.0886675Z * [new branch] export-D75659965 -> origin/export-D75659965 2025-07-24T03:47:25.0887149Z * [new branch] export-D76080931 -> origin/export-D76080931 2025-07-24T03:47:25.0887605Z * [new branch] export-D76463347 -> origin/export-D76463347 2025-07-24T03:47:25.0888087Z * [new branch] export-D76797250 -> origin/export-D76797250 2025-07-24T03:47:25.0888551Z * [new branch] export-D76885271 -> origin/export-D76885271 2025-07-24T03:47:25.0889108Z * [new branch] export-D76885620 -> origin/export-D76885620 2025-07-24T03:47:25.0889584Z * [new branch] export-D76936623 -> origin/export-D76936623 2025-07-24T03:47:25.0890041Z * [new branch] export-D76958268 -> origin/export-D76958268 2025-07-24T03:47:25.0890514Z * [new branch] export-D77639021 -> origin/export-D77639021 2025-07-24T03:47:25.0890968Z * [new branch] export-D78047846 -> origin/export-D78047846 2025-07-24T03:47:25.0891440Z * [new branch] export-D78308105 -> origin/export-D78308105 2025-07-24T03:47:25.0891902Z * [new branch] export-D78363609 -> origin/export-D78363609 2025-07-24T03:47:25.0892381Z * [new branch] export-D78375400 -> origin/export-D78375400 2025-07-24T03:47:25.0892865Z * [new branch] export-D78431075 -> origin/export-D78431075 2025-07-24T03:47:25.0893324Z * [new branch] export-D78431305 -> origin/export-D78431305 2025-07-24T03:47:25.0893795Z * [new branch] export-D78524147 -> origin/export-D78524147 2025-07-24T03:47:25.0894252Z * [new branch] export-D78580107 -> origin/export-D78580107 2025-07-24T03:47:25.0894730Z * [new branch] export-D78588406 -> origin/export-D78588406 2025-07-24T03:47:25.0895182Z * [new branch] export-D78691422 -> origin/export-D78691422 2025-07-24T03:47:25.0895630Z * [new branch] export-D78758466 -> origin/export-D78758466 2025-07-24T03:47:25.0896079Z * [new branch] export-D78822171 -> origin/export-D78822171 2025-07-24T03:47:25.0896525Z * [new branch] export-D78822351 -> origin/export-D78822351 2025-07-24T03:47:25.0896985Z * [new branch] export-D78822507 -> origin/export-D78822507 2025-07-24T03:47:25.0897435Z * [new branch] export-D78826994 -> origin/export-D78826994 2025-07-24T03:47:25.0898002Z * [new branch] exported-model-train-idempotent -> origin/exported-model-train-idempotent 2025-07-24T03:47:25.0898636Z * [new branch] ezyang/wip-aot-descriptors -> origin/ezyang/wip-aot-descriptors 2025-07-24T03:47:25.0899130Z * [new branch] fa_u8_brgemm -> origin/fa_u8_brgemm 2025-07-24T03:47:25.0899712Z * [new branch] fastmath_baseline -> origin/fastmath_baseline 2025-07-24T03:47:25.0900154Z * [new branch] fbcode/warm -> origin/fbcode/warm 2025-07-24T03:47:25.0900572Z * [new branch] fca -> origin/fca 2025-07-24T03:47:25.0900965Z * [new branch] fca2_ca5984c -> origin/fca2_ca5984c 2025-07-24T03:47:25.0901583Z * [new branch] fca5 -> origin/fca5 2025-07-24T03:47:25.0902080Z * [new branch] fengyuan/external-proj -> origin/fengyuan/external-proj 2025-07-24T03:47:25.1326983Z * [new branch] fengyuan/out-of-tree-xpu-ops-improve-test -> origin/fengyuan/out-of-tree-xpu-ops-improve-test 2025-07-24T03:47:25.1327965Z * [new branch] fengyuan/out-of-tree-xpu-ops-remove-dtype -> origin/fengyuan/out-of-tree-xpu-ops-remove-dtype 2025-07-24T03:47:25.1328730Z * [new branch] fengyuan/test-xpu -> origin/fengyuan/test-xpu 2025-07-24T03:47:25.1329228Z * [new branch] ffast_math_baseline -> origin/ffast_math_baseline 2025-07-24T03:47:25.1329708Z * [new branch] ffast_math_target -> origin/ffast_math_target 2025-07-24T03:47:25.1330178Z * [new branch] findhao/base_commit -> origin/findhao/base_commit 2025-07-24T03:47:25.1330691Z * [new branch] findhao/base_commit1 -> origin/findhao/base_commit1 2025-07-24T03:47:25.1331221Z * [new branch] findhao/fix-indirect-access -> origin/findhao/fix-indirect-access 2025-07-24T03:47:25.1331775Z * [new branch] findhao/multistream2 -> origin/findhao/multistream2 2025-07-24T03:47:25.1332283Z * [new branch] findhao/multistream5 -> origin/findhao/multistream5 2025-07-24T03:47:25.1332776Z * [new branch] findhao/multistream6 -> origin/findhao/multistream6 2025-07-24T03:47:25.1333295Z * [new branch] findhao/operatorbench3 -> origin/findhao/operatorbench3 2025-07-24T03:47:25.1333829Z * [new branch] findhao/operatorbench5 -> origin/findhao/operatorbench5 2025-07-24T03:47:25.1334351Z * [new branch] findhao/tritonparse -> origin/findhao/tritonparse 2025-07-24T03:47:25.1334796Z * [new branch] fix -> origin/fix 2025-07-24T03:47:25.1335287Z * [new branch] fix-ck-gemm-template-format -> origin/fix-ck-gemm-template-format 2025-07-24T03:47:25.1335822Z * [new branch] fix-config-ignore -> origin/fix-config-ignore 2025-07-24T03:47:25.1336283Z * [new branch] fix-dict-guard -> origin/fix-dict-guard 2025-07-24T03:47:25.1336816Z * [new branch] fix-inductor-periodic-0528 -> origin/fix-inductor-periodic-0528 2025-07-24T03:47:25.1337388Z * [new branch] fix-issue-149534-attempt-1 -> origin/fix-issue-149534-attempt-1 2025-07-24T03:47:25.1337968Z * [new branch] fix-rlease-feature-template -> origin/fix-rlease-feature-template 2025-07-24T03:47:25.1338477Z * [new branch] fix_153389 -> origin/fix_153389 2025-07-24T03:47:25.1338932Z * [new branch] fix_allow_train_eval_msg -> origin/fix_allow_train_eval_msg 2025-07-24T03:47:25.1339441Z * [new branch] fix_fake_tensor_issue -> origin/fix_fake_tensor_issue 2025-07-24T03:47:25.1339907Z * [new branch] fix_sbgemm_bf16 -> origin/fix_sbgemm_bf16 2025-07-24T03:47:25.1340361Z * [new branch] fixes-triage -> origin/fixes-triage 2025-07-24T03:47:25.1340813Z * [new branch] flex-lowering -> origin/flex-lowering 2025-07-24T03:47:25.1341319Z * [new branch] flex_attention_functorch_grad -> origin/flex_attention_functorch_grad 2025-07-24T03:47:25.1341921Z * [new branch] fmassa/fix_memeff_sharding_rule -> origin/fmassa/fix_memeff_sharding_rule 2025-07-24T03:47:25.1342448Z * [new branch] fsdp-qps-drop -> origin/fsdp-qps-drop 2025-07-24T03:47:25.1342907Z * [new branch] fsdp2_trace_rules -> origin/fsdp2_trace_rules 2025-07-24T03:47:25.1343351Z * [new branch] fsdpv2_3d -> origin/fsdpv2_3d 2025-07-24T03:47:25.1343935Z * [new branch] fsdpv2_3d_m1 -> origin/fsdpv2_3d_m1 2025-07-24T03:47:25.1344458Z * [new branch] fused_qkv -> origin/fused_qkv 2025-07-24T03:47:25.1344856Z * [new branch] fx_cpp -> origin/fx_cpp 2025-07-24T03:47:25.1345276Z * [new branch] fy/fix-win -> origin/fy/fix-win 2025-07-24T03:47:25.1345717Z * [new branch] gh/AlnisM/1/base -> origin/gh/AlnisM/1/base 2025-07-24T03:47:25.1346182Z * [new branch] gh/AlnisM/1/head -> origin/gh/AlnisM/1/head 2025-07-24T03:47:25.1346630Z * [new branch] gh/CaoE/1/base -> origin/gh/CaoE/1/base 2025-07-24T03:47:25.1347061Z * [new branch] gh/CaoE/1/head -> origin/gh/CaoE/1/head 2025-07-24T03:47:25.1347492Z * [new branch] gh/CaoE/1/orig -> origin/gh/CaoE/1/orig 2025-07-24T03:47:25.1347921Z * [new branch] gh/CaoE/2/base -> origin/gh/CaoE/2/base 2025-07-24T03:47:25.1348369Z * [new branch] gh/CaoE/2/head -> origin/gh/CaoE/2/head 2025-07-24T03:47:25.1348805Z * [new branch] gh/CaoE/2/orig -> origin/gh/CaoE/2/orig 2025-07-24T03:47:25.1349239Z * [new branch] gh/CaoE/3/base -> origin/gh/CaoE/3/base 2025-07-24T03:47:25.1349682Z * [new branch] gh/CaoE/3/head -> origin/gh/CaoE/3/head 2025-07-24T03:47:25.1350112Z * [new branch] gh/CaoE/3/orig -> origin/gh/CaoE/3/orig 2025-07-24T03:47:25.1807269Z * [new branch] gh/ColinPeppler/72/base -> origin/gh/ColinPeppler/72/base 2025-07-24T03:47:25.1807860Z * [new branch] gh/ColinPeppler/72/head -> origin/gh/ColinPeppler/72/head 2025-07-24T03:47:25.1808420Z * [new branch] gh/ColinPeppler/72/orig -> origin/gh/ColinPeppler/72/orig 2025-07-24T03:47:25.1809014Z * [new branch] gh/ColinPeppler/75/base -> origin/gh/ColinPeppler/75/base 2025-07-24T03:47:25.1809556Z * [new branch] gh/ColinPeppler/75/head -> origin/gh/ColinPeppler/75/head 2025-07-24T03:47:25.1810081Z * [new branch] gh/ColinPeppler/75/orig -> origin/gh/ColinPeppler/75/orig 2025-07-24T03:47:25.1810617Z * [new branch] gh/ColinPeppler/76/base -> origin/gh/ColinPeppler/76/base 2025-07-24T03:47:25.1811148Z * [new branch] gh/ColinPeppler/76/head -> origin/gh/ColinPeppler/76/head 2025-07-24T03:47:25.1811674Z * [new branch] gh/ColinPeppler/76/orig -> origin/gh/ColinPeppler/76/orig 2025-07-24T03:47:25.1812213Z * [new branch] gh/ColinPeppler/77/base -> origin/gh/ColinPeppler/77/base 2025-07-24T03:47:25.1812735Z * [new branch] gh/ColinPeppler/77/head -> origin/gh/ColinPeppler/77/head 2025-07-24T03:47:25.1813268Z * [new branch] gh/ColinPeppler/77/orig -> origin/gh/ColinPeppler/77/orig 2025-07-24T03:47:25.1813815Z * [new branch] gh/EikanWang/67/base -> origin/gh/EikanWang/67/base 2025-07-24T03:47:25.1814309Z * [new branch] gh/EikanWang/67/head -> origin/gh/EikanWang/67/head 2025-07-24T03:47:25.1814804Z * [new branch] gh/EikanWang/80/base -> origin/gh/EikanWang/80/base 2025-07-24T03:47:25.1815287Z * [new branch] gh/EikanWang/80/head -> origin/gh/EikanWang/80/head 2025-07-24T03:47:25.1815779Z * [new branch] gh/EikanWang/80/orig -> origin/gh/EikanWang/80/orig 2025-07-24T03:47:25.1816273Z * [new branch] gh/EikanWang/81/base -> origin/gh/EikanWang/81/base 2025-07-24T03:47:25.1816750Z * [new branch] gh/EikanWang/81/head -> origin/gh/EikanWang/81/head 2025-07-24T03:47:25.1817242Z * [new branch] gh/EikanWang/81/orig -> origin/gh/EikanWang/81/orig 2025-07-24T03:47:25.1817891Z * [new branch] gh/Gasoonjia/1/base -> origin/gh/Gasoonjia/1/base 2025-07-24T03:47:25.1818483Z * [new branch] gh/Gasoonjia/1/head -> origin/gh/Gasoonjia/1/head 2025-07-24T03:47:25.1819015Z * [new branch] gh/H-Huang/131/base -> origin/gh/H-Huang/131/base 2025-07-24T03:47:25.1819514Z * [new branch] gh/H-Huang/131/head -> origin/gh/H-Huang/131/head 2025-07-24T03:47:25.1820075Z * [new branch] gh/H-Huang/131/orig -> origin/gh/H-Huang/131/orig 2025-07-24T03:47:25.1820545Z * [new branch] gh/H-Huang/132/base -> origin/gh/H-Huang/132/base 2025-07-24T03:47:25.1821015Z * [new branch] gh/H-Huang/132/head -> origin/gh/H-Huang/132/head 2025-07-24T03:47:25.1821484Z * [new branch] gh/H-Huang/132/orig -> origin/gh/H-Huang/132/orig 2025-07-24T03:47:25.1821939Z * [new branch] gh/H-Huang/172/base -> origin/gh/H-Huang/172/base 2025-07-24T03:47:25.1822406Z * [new branch] gh/H-Huang/172/head -> origin/gh/H-Huang/172/head 2025-07-24T03:47:25.1822865Z * [new branch] gh/H-Huang/172/orig -> origin/gh/H-Huang/172/orig 2025-07-24T03:47:25.1823329Z * [new branch] gh/H-Huang/177/base -> origin/gh/H-Huang/177/base 2025-07-24T03:47:25.1823789Z * [new branch] gh/H-Huang/177/head -> origin/gh/H-Huang/177/head 2025-07-24T03:47:25.1824244Z * [new branch] gh/H-Huang/177/orig -> origin/gh/H-Huang/177/orig 2025-07-24T03:47:25.1824709Z * [new branch] gh/H-Huang/180/base -> origin/gh/H-Huang/180/base 2025-07-24T03:47:25.1825163Z * [new branch] gh/H-Huang/180/head -> origin/gh/H-Huang/180/head 2025-07-24T03:47:25.1825622Z * [new branch] gh/H-Huang/180/orig -> origin/gh/H-Huang/180/orig 2025-07-24T03:47:25.1826074Z * [new branch] gh/H-Huang/182/base -> origin/gh/H-Huang/182/base 2025-07-24T03:47:25.1826540Z * [new branch] gh/H-Huang/182/head -> origin/gh/H-Huang/182/head 2025-07-24T03:47:25.1827007Z * [new branch] gh/H-Huang/182/orig -> origin/gh/H-Huang/182/orig 2025-07-24T03:47:25.1827463Z * [new branch] gh/H-Huang/183/base -> origin/gh/H-Huang/183/base 2025-07-24T03:47:25.1827925Z * [new branch] gh/H-Huang/183/head -> origin/gh/H-Huang/183/head 2025-07-24T03:47:25.1828378Z * [new branch] gh/H-Huang/183/orig -> origin/gh/H-Huang/183/orig 2025-07-24T03:47:25.1828839Z * [new branch] gh/H-Huang/185/base -> origin/gh/H-Huang/185/base 2025-07-24T03:47:25.1829298Z * [new branch] gh/H-Huang/185/head -> origin/gh/H-Huang/185/head 2025-07-24T03:47:25.1829751Z * [new branch] gh/H-Huang/185/orig -> origin/gh/H-Huang/185/orig 2025-07-24T03:47:25.1830211Z * [new branch] gh/H-Huang/187/base -> origin/gh/H-Huang/187/base 2025-07-24T03:47:25.2254139Z * [new branch] gh/H-Huang/187/head -> origin/gh/H-Huang/187/head 2025-07-24T03:47:25.2254700Z * [new branch] gh/H-Huang/187/orig -> origin/gh/H-Huang/187/orig 2025-07-24T03:47:25.2255225Z * [new branch] gh/H-Huang/191/base -> origin/gh/H-Huang/191/base 2025-07-24T03:47:25.2255750Z * [new branch] gh/H-Huang/191/head -> origin/gh/H-Huang/191/head 2025-07-24T03:47:25.2256258Z * [new branch] gh/H-Huang/191/orig -> origin/gh/H-Huang/191/orig 2025-07-24T03:47:25.2256774Z * [new branch] gh/H-Huang/192/base -> origin/gh/H-Huang/192/base 2025-07-24T03:47:25.2257287Z * [new branch] gh/H-Huang/192/head -> origin/gh/H-Huang/192/head 2025-07-24T03:47:25.2257807Z * [new branch] gh/H-Huang/192/orig -> origin/gh/H-Huang/192/orig 2025-07-24T03:47:25.2258427Z * [new branch] gh/H-Huang/193/base -> origin/gh/H-Huang/193/base 2025-07-24T03:47:25.2259574Z * [new branch] gh/H-Huang/193/head -> origin/gh/H-Huang/193/head 2025-07-24T03:47:25.2260043Z * [new branch] gh/H-Huang/193/orig -> origin/gh/H-Huang/193/orig 2025-07-24T03:47:25.2260511Z * [new branch] gh/H-Huang/194/base -> origin/gh/H-Huang/194/base 2025-07-24T03:47:25.2260979Z * [new branch] gh/H-Huang/194/head -> origin/gh/H-Huang/194/head 2025-07-24T03:47:25.2261449Z * [new branch] gh/H-Huang/194/orig -> origin/gh/H-Huang/194/orig 2025-07-24T03:47:25.2261905Z * [new branch] gh/H-Huang/195/base -> origin/gh/H-Huang/195/base 2025-07-24T03:47:25.2262382Z * [new branch] gh/H-Huang/195/head -> origin/gh/H-Huang/195/head 2025-07-24T03:47:25.2262902Z * [new branch] gh/H-Huang/195/orig -> origin/gh/H-Huang/195/orig 2025-07-24T03:47:25.2263436Z * [new branch] gh/H-Huang/196/base -> origin/gh/H-Huang/196/base 2025-07-24T03:47:25.2263953Z * [new branch] gh/H-Huang/196/head -> origin/gh/H-Huang/196/head 2025-07-24T03:47:25.2264431Z * [new branch] gh/H-Huang/196/orig -> origin/gh/H-Huang/196/orig 2025-07-24T03:47:25.2264904Z * [new branch] gh/H-Huang/197/base -> origin/gh/H-Huang/197/base 2025-07-24T03:47:25.2265371Z * [new branch] gh/H-Huang/197/head -> origin/gh/H-Huang/197/head 2025-07-24T03:47:25.2265836Z * [new branch] gh/H-Huang/197/orig -> origin/gh/H-Huang/197/orig 2025-07-24T03:47:25.2266334Z * [new branch] gh/IvanKobzarev/107/base -> origin/gh/IvanKobzarev/107/base 2025-07-24T03:47:25.2266881Z * [new branch] gh/IvanKobzarev/107/head -> origin/gh/IvanKobzarev/107/head 2025-07-24T03:47:25.2267423Z * [new branch] gh/IvanKobzarev/107/orig -> origin/gh/IvanKobzarev/107/orig 2025-07-24T03:47:25.2267962Z * [new branch] gh/IvanKobzarev/109/base -> origin/gh/IvanKobzarev/109/base 2025-07-24T03:47:25.2268495Z * [new branch] gh/IvanKobzarev/109/head -> origin/gh/IvanKobzarev/109/head 2025-07-24T03:47:25.2269073Z * [new branch] gh/IvanKobzarev/109/orig -> origin/gh/IvanKobzarev/109/orig 2025-07-24T03:47:25.2269718Z * [new branch] gh/IvanKobzarev/110/base -> origin/gh/IvanKobzarev/110/base 2025-07-24T03:47:25.2270258Z * [new branch] gh/IvanKobzarev/110/head -> origin/gh/IvanKobzarev/110/head 2025-07-24T03:47:25.2270780Z * [new branch] gh/IvanKobzarev/110/orig -> origin/gh/IvanKobzarev/110/orig 2025-07-24T03:47:25.2271321Z * [new branch] gh/IvanKobzarev/111/base -> origin/gh/IvanKobzarev/111/base 2025-07-24T03:47:25.2271846Z * [new branch] gh/IvanKobzarev/111/head -> origin/gh/IvanKobzarev/111/head 2025-07-24T03:47:25.2272390Z * [new branch] gh/IvanKobzarev/111/orig -> origin/gh/IvanKobzarev/111/orig 2025-07-24T03:47:25.2272925Z * [new branch] gh/IvanKobzarev/112/base -> origin/gh/IvanKobzarev/112/base 2025-07-24T03:47:25.2273446Z * [new branch] gh/IvanKobzarev/112/head -> origin/gh/IvanKobzarev/112/head 2025-07-24T03:47:25.2273982Z * [new branch] gh/IvanKobzarev/112/orig -> origin/gh/IvanKobzarev/112/orig 2025-07-24T03:47:25.2274503Z * [new branch] gh/IvanKobzarev/114/base -> origin/gh/IvanKobzarev/114/base 2025-07-24T03:47:25.2275088Z * [new branch] gh/IvanKobzarev/114/head -> origin/gh/IvanKobzarev/114/head 2025-07-24T03:47:25.2275703Z * [new branch] gh/IvanKobzarev/114/orig -> origin/gh/IvanKobzarev/114/orig 2025-07-24T03:47:25.2276248Z * [new branch] gh/IvanKobzarev/115/base -> origin/gh/IvanKobzarev/115/base 2025-07-24T03:47:25.2276780Z * [new branch] gh/IvanKobzarev/115/head -> origin/gh/IvanKobzarev/115/head 2025-07-24T03:47:25.2277776Z * [new branch] gh/IvanKobzarev/115/orig -> origin/gh/IvanKobzarev/115/orig 2025-07-24T03:47:25.2278315Z * [new branch] gh/IvanKobzarev/116/base -> origin/gh/IvanKobzarev/116/base 2025-07-24T03:47:25.2278857Z * [new branch] gh/IvanKobzarev/116/head -> origin/gh/IvanKobzarev/116/head 2025-07-24T03:47:25.2721378Z * [new branch] gh/IvanKobzarev/116/orig -> origin/gh/IvanKobzarev/116/orig 2025-07-24T03:47:25.2722195Z * [new branch] gh/IvanKobzarev/118/base -> origin/gh/IvanKobzarev/118/base 2025-07-24T03:47:25.2722790Z * [new branch] gh/IvanKobzarev/118/head -> origin/gh/IvanKobzarev/118/head 2025-07-24T03:47:25.2723420Z * [new branch] gh/IvanKobzarev/118/orig -> origin/gh/IvanKobzarev/118/orig 2025-07-24T03:47:25.2723955Z * [new branch] gh/IvanKobzarev/119/base -> origin/gh/IvanKobzarev/119/base 2025-07-24T03:47:25.2724511Z * [new branch] gh/IvanKobzarev/119/head -> origin/gh/IvanKobzarev/119/head 2025-07-24T03:47:25.2725048Z * [new branch] gh/IvanKobzarev/119/orig -> origin/gh/IvanKobzarev/119/orig 2025-07-24T03:47:25.2725592Z * [new branch] gh/IvanKobzarev/120/base -> origin/gh/IvanKobzarev/120/base 2025-07-24T03:47:25.2726119Z * [new branch] gh/IvanKobzarev/120/head -> origin/gh/IvanKobzarev/120/head 2025-07-24T03:47:25.2726654Z * [new branch] gh/IvanKobzarev/120/orig -> origin/gh/IvanKobzarev/120/orig 2025-07-24T03:47:25.2727229Z * [new branch] gh/IvanKobzarev/121/base -> origin/gh/IvanKobzarev/121/base 2025-07-24T03:47:25.2727815Z * [new branch] gh/IvanKobzarev/121/head -> origin/gh/IvanKobzarev/121/head 2025-07-24T03:47:25.2728457Z * [new branch] gh/IvanKobzarev/121/orig -> origin/gh/IvanKobzarev/121/orig 2025-07-24T03:47:25.2729138Z * [new branch] gh/IvanKobzarev/122/base -> origin/gh/IvanKobzarev/122/base 2025-07-24T03:47:25.2729736Z * [new branch] gh/IvanKobzarev/122/head -> origin/gh/IvanKobzarev/122/head 2025-07-24T03:47:25.2730354Z * [new branch] gh/IvanKobzarev/122/orig -> origin/gh/IvanKobzarev/122/orig 2025-07-24T03:47:25.2730991Z * [new branch] gh/IvanKobzarev/123/base -> origin/gh/IvanKobzarev/123/base 2025-07-24T03:47:25.2731608Z * [new branch] gh/IvanKobzarev/123/head -> origin/gh/IvanKobzarev/123/head 2025-07-24T03:47:25.2732331Z * [new branch] gh/IvanKobzarev/123/orig -> origin/gh/IvanKobzarev/123/orig 2025-07-24T03:47:25.2733329Z * [new branch] gh/IvanKobzarev/124/base -> origin/gh/IvanKobzarev/124/base 2025-07-24T03:47:25.2733959Z * [new branch] gh/IvanKobzarev/124/head -> origin/gh/IvanKobzarev/124/head 2025-07-24T03:47:25.2734584Z * [new branch] gh/IvanKobzarev/124/orig -> origin/gh/IvanKobzarev/124/orig 2025-07-24T03:47:25.2735189Z * [new branch] gh/IvanKobzarev/125/base -> origin/gh/IvanKobzarev/125/base 2025-07-24T03:47:25.2735793Z * [new branch] gh/IvanKobzarev/125/head -> origin/gh/IvanKobzarev/125/head 2025-07-24T03:47:25.2736337Z * [new branch] gh/IvanKobzarev/125/orig -> origin/gh/IvanKobzarev/125/orig 2025-07-24T03:47:25.2736865Z * [new branch] gh/IvanKobzarev/126/base -> origin/gh/IvanKobzarev/126/base 2025-07-24T03:47:25.2737480Z * [new branch] gh/IvanKobzarev/126/head -> origin/gh/IvanKobzarev/126/head 2025-07-24T03:47:25.2738009Z * [new branch] gh/IvanKobzarev/126/orig -> origin/gh/IvanKobzarev/126/orig 2025-07-24T03:47:25.2738549Z * [new branch] gh/IvanKobzarev/127/base -> origin/gh/IvanKobzarev/127/base 2025-07-24T03:47:25.2739077Z * [new branch] gh/IvanKobzarev/127/head -> origin/gh/IvanKobzarev/127/head 2025-07-24T03:47:25.2741303Z * [new branch] gh/IvanKobzarev/127/orig -> origin/gh/IvanKobzarev/127/orig 2025-07-24T03:47:25.2742657Z * [new branch] gh/IvanKobzarev/128/base -> origin/gh/IvanKobzarev/128/base 2025-07-24T03:47:25.2743204Z * [new branch] gh/IvanKobzarev/128/head -> origin/gh/IvanKobzarev/128/head 2025-07-24T03:47:25.2743753Z * [new branch] gh/IvanKobzarev/128/orig -> origin/gh/IvanKobzarev/128/orig 2025-07-24T03:47:25.2744290Z * [new branch] gh/IvanKobzarev/129/base -> origin/gh/IvanKobzarev/129/base 2025-07-24T03:47:25.2744819Z * [new branch] gh/IvanKobzarev/129/head -> origin/gh/IvanKobzarev/129/head 2025-07-24T03:47:25.2745360Z * [new branch] gh/IvanKobzarev/129/orig -> origin/gh/IvanKobzarev/129/orig 2025-07-24T03:47:25.2746015Z * [new branch] gh/IvanKobzarev/130/base -> origin/gh/IvanKobzarev/130/base 2025-07-24T03:47:25.2746781Z * [new branch] gh/IvanKobzarev/130/head -> origin/gh/IvanKobzarev/130/head 2025-07-24T03:47:25.2747369Z * [new branch] gh/IvanKobzarev/130/orig -> origin/gh/IvanKobzarev/130/orig 2025-07-24T03:47:25.2747948Z * [new branch] gh/IvanKobzarev/131/base -> origin/gh/IvanKobzarev/131/base 2025-07-24T03:47:25.2748529Z * [new branch] gh/IvanKobzarev/131/head -> origin/gh/IvanKobzarev/131/head 2025-07-24T03:47:25.2749105Z * [new branch] gh/IvanKobzarev/131/orig -> origin/gh/IvanKobzarev/131/orig 2025-07-24T03:47:25.2749686Z * [new branch] gh/NikhilAPatel/1/base -> origin/gh/NikhilAPatel/1/base 2025-07-24T03:47:25.3477670Z * [new branch] gh/NikhilAPatel/1/head -> origin/gh/NikhilAPatel/1/head 2025-07-24T03:47:25.3478260Z * [new branch] gh/NikhilAPatel/16/base -> origin/gh/NikhilAPatel/16/base 2025-07-24T03:47:25.3478815Z * [new branch] gh/NikhilAPatel/16/head -> origin/gh/NikhilAPatel/16/head 2025-07-24T03:47:25.3479366Z * [new branch] gh/NikhilAPatel/16/orig -> origin/gh/NikhilAPatel/16/orig 2025-07-24T03:47:25.3479905Z * [new branch] gh/NikhilAPatel/17/base -> origin/gh/NikhilAPatel/17/base 2025-07-24T03:47:25.3480441Z * [new branch] gh/NikhilAPatel/17/head -> origin/gh/NikhilAPatel/17/head 2025-07-24T03:47:25.3480956Z * [new branch] gh/NikhilAPatel/17/orig -> origin/gh/NikhilAPatel/17/orig 2025-07-24T03:47:25.3481481Z * [new branch] gh/NikhilAPatel/18/base -> origin/gh/NikhilAPatel/18/base 2025-07-24T03:47:25.3482000Z * [new branch] gh/NikhilAPatel/18/head -> origin/gh/NikhilAPatel/18/head 2025-07-24T03:47:25.3482528Z * [new branch] gh/NikhilAPatel/18/orig -> origin/gh/NikhilAPatel/18/orig 2025-07-24T03:47:25.3483067Z * [new branch] gh/NikhilAPatel/2/base -> origin/gh/NikhilAPatel/2/base 2025-07-24T03:47:25.3483590Z * [new branch] gh/NikhilAPatel/2/head -> origin/gh/NikhilAPatel/2/head 2025-07-24T03:47:25.3484115Z * [new branch] gh/NikhilAPatel/4/base -> origin/gh/NikhilAPatel/4/base 2025-07-24T03:47:25.3484630Z * [new branch] gh/NikhilAPatel/4/head -> origin/gh/NikhilAPatel/4/head 2025-07-24T03:47:25.3485157Z * [new branch] gh/NikhilAPatel/8/base -> origin/gh/NikhilAPatel/8/base 2025-07-24T03:47:25.3485674Z * [new branch] gh/NikhilAPatel/8/head -> origin/gh/NikhilAPatel/8/head 2025-07-24T03:47:25.3486203Z * [new branch] gh/NikhilAPatel/8/orig -> origin/gh/NikhilAPatel/8/orig 2025-07-24T03:47:25.3486720Z * [new branch] gh/NikhilAPatel/9/base -> origin/gh/NikhilAPatel/9/base 2025-07-24T03:47:25.3487233Z * [new branch] gh/NikhilAPatel/9/head -> origin/gh/NikhilAPatel/9/head 2025-07-24T03:47:25.3487757Z * [new branch] gh/NikhilAPatel/9/orig -> origin/gh/NikhilAPatel/9/orig 2025-07-24T03:47:25.3488399Z * [new branch] gh/PaliC/1/base -> origin/gh/PaliC/1/base 2025-07-24T03:47:25.3489364Z * [new branch] gh/PaliC/1/head -> origin/gh/PaliC/1/head 2025-07-24T03:47:25.3489833Z * [new branch] gh/PaliC/1/orig -> origin/gh/PaliC/1/orig 2025-07-24T03:47:25.3490290Z * [new branch] gh/PaliC/10/base -> origin/gh/PaliC/10/base 2025-07-24T03:47:25.3490756Z * [new branch] gh/PaliC/10/head -> origin/gh/PaliC/10/head 2025-07-24T03:47:25.3491218Z * [new branch] gh/PaliC/11/base -> origin/gh/PaliC/11/base 2025-07-24T03:47:25.3491682Z * [new branch] gh/PaliC/11/head -> origin/gh/PaliC/11/head 2025-07-24T03:47:25.3492147Z * [new branch] gh/PaliC/12/base -> origin/gh/PaliC/12/base 2025-07-24T03:47:25.3492602Z * [new branch] gh/PaliC/12/head -> origin/gh/PaliC/12/head 2025-07-24T03:47:25.3493065Z * [new branch] gh/PaliC/12/orig -> origin/gh/PaliC/12/orig 2025-07-24T03:47:25.3493520Z * [new branch] gh/PaliC/13/base -> origin/gh/PaliC/13/base 2025-07-24T03:47:25.3493974Z * [new branch] gh/PaliC/13/head -> origin/gh/PaliC/13/head 2025-07-24T03:47:25.3494426Z * [new branch] gh/PaliC/13/orig -> origin/gh/PaliC/13/orig 2025-07-24T03:47:25.3494871Z * [new branch] gh/PaliC/14/base -> origin/gh/PaliC/14/base 2025-07-24T03:47:25.3495323Z * [new branch] gh/PaliC/14/head -> origin/gh/PaliC/14/head 2025-07-24T03:47:25.3495771Z * [new branch] gh/PaliC/14/orig -> origin/gh/PaliC/14/orig 2025-07-24T03:47:25.3496225Z * [new branch] gh/PaliC/15/base -> origin/gh/PaliC/15/base 2025-07-24T03:47:25.3496681Z * [new branch] gh/PaliC/15/head -> origin/gh/PaliC/15/head 2025-07-24T03:47:25.3497133Z * [new branch] gh/PaliC/15/orig -> origin/gh/PaliC/15/orig 2025-07-24T03:47:25.3497587Z * [new branch] gh/PaliC/16/base -> origin/gh/PaliC/16/base 2025-07-24T03:47:25.3498034Z * [new branch] gh/PaliC/16/head -> origin/gh/PaliC/16/head 2025-07-24T03:47:25.3498494Z * [new branch] gh/PaliC/16/orig -> origin/gh/PaliC/16/orig 2025-07-24T03:47:25.3498953Z * [new branch] gh/PaliC/17/base -> origin/gh/PaliC/17/base 2025-07-24T03:47:25.3499415Z * [new branch] gh/PaliC/17/head -> origin/gh/PaliC/17/head 2025-07-24T03:47:25.3499862Z * [new branch] gh/PaliC/17/orig -> origin/gh/PaliC/17/orig 2025-07-24T03:47:25.3500322Z * [new branch] gh/PaliC/18/base -> origin/gh/PaliC/18/base 2025-07-24T03:47:25.3500766Z * [new branch] gh/PaliC/18/head -> origin/gh/PaliC/18/head 2025-07-24T03:47:25.3501236Z * [new branch] gh/PaliC/18/orig -> origin/gh/PaliC/18/orig 2025-07-24T03:47:25.3959298Z * [new branch] gh/PaliC/19/base -> origin/gh/PaliC/19/base 2025-07-24T03:47:25.3959801Z * [new branch] gh/PaliC/19/head -> origin/gh/PaliC/19/head 2025-07-24T03:47:25.3960266Z * [new branch] gh/PaliC/19/orig -> origin/gh/PaliC/19/orig 2025-07-24T03:47:25.3960719Z * [new branch] gh/PaliC/2/base -> origin/gh/PaliC/2/base 2025-07-24T03:47:25.3961241Z * [new branch] gh/PaliC/2/head -> origin/gh/PaliC/2/head 2025-07-24T03:47:25.3961702Z * [new branch] gh/PaliC/2/orig -> origin/gh/PaliC/2/orig 2025-07-24T03:47:25.3962198Z * [new branch] gh/PaliC/20/base -> origin/gh/PaliC/20/base 2025-07-24T03:47:25.3962647Z * [new branch] gh/PaliC/20/head -> origin/gh/PaliC/20/head 2025-07-24T03:47:25.3963760Z * [new branch] gh/PaliC/20/orig -> origin/gh/PaliC/20/orig 2025-07-24T03:47:25.3964219Z * [new branch] gh/PaliC/21/base -> origin/gh/PaliC/21/base 2025-07-24T03:47:25.3964672Z * [new branch] gh/PaliC/21/head -> origin/gh/PaliC/21/head 2025-07-24T03:47:25.3965122Z * [new branch] gh/PaliC/21/orig -> origin/gh/PaliC/21/orig 2025-07-24T03:47:25.3965582Z * [new branch] gh/PaliC/22/base -> origin/gh/PaliC/22/base 2025-07-24T03:47:25.3966033Z * [new branch] gh/PaliC/22/head -> origin/gh/PaliC/22/head 2025-07-24T03:47:25.3966484Z * [new branch] gh/PaliC/22/orig -> origin/gh/PaliC/22/orig 2025-07-24T03:47:25.3966930Z * [new branch] gh/PaliC/23/base -> origin/gh/PaliC/23/base 2025-07-24T03:47:25.3967446Z * [new branch] gh/PaliC/23/head -> origin/gh/PaliC/23/head 2025-07-24T03:47:25.3967948Z * [new branch] gh/PaliC/23/orig -> origin/gh/PaliC/23/orig 2025-07-24T03:47:25.3968408Z * [new branch] gh/PaliC/3/base -> origin/gh/PaliC/3/base 2025-07-24T03:47:25.3968941Z * [new branch] gh/PaliC/3/head -> origin/gh/PaliC/3/head 2025-07-24T03:47:25.3969382Z * [new branch] gh/PaliC/4/base -> origin/gh/PaliC/4/base 2025-07-24T03:47:25.3969834Z * [new branch] gh/PaliC/4/head -> origin/gh/PaliC/4/head 2025-07-24T03:47:25.3970286Z * [new branch] gh/PaliC/5/base -> origin/gh/PaliC/5/base 2025-07-24T03:47:25.3970726Z * [new branch] gh/PaliC/5/head -> origin/gh/PaliC/5/head 2025-07-24T03:47:25.3971183Z * [new branch] gh/PaliC/6/base -> origin/gh/PaliC/6/base 2025-07-24T03:47:25.3971630Z * [new branch] gh/PaliC/6/head -> origin/gh/PaliC/6/head 2025-07-24T03:47:25.3972086Z * [new branch] gh/PaliC/7/base -> origin/gh/PaliC/7/base 2025-07-24T03:47:25.3972544Z * [new branch] gh/PaliC/7/head -> origin/gh/PaliC/7/head 2025-07-24T03:47:25.3972994Z * [new branch] gh/PaliC/8/base -> origin/gh/PaliC/8/base 2025-07-24T03:47:25.3973484Z * [new branch] gh/PaliC/8/head -> origin/gh/PaliC/8/head 2025-07-24T03:47:25.3973927Z * [new branch] gh/PaliC/9/base -> origin/gh/PaliC/9/base 2025-07-24T03:47:25.3974425Z * [new branch] gh/PaliC/9/head -> origin/gh/PaliC/9/head 2025-07-24T03:47:25.3974917Z * [new branch] gh/PaulZhang12/1/base -> origin/gh/PaulZhang12/1/base 2025-07-24T03:47:25.3975438Z * [new branch] gh/PaulZhang12/1/head -> origin/gh/PaulZhang12/1/head 2025-07-24T03:47:25.3975947Z * [new branch] gh/PaulZhang12/1/orig -> origin/gh/PaulZhang12/1/orig 2025-07-24T03:47:25.3976465Z * [new branch] gh/PaulZhang12/17/base -> origin/gh/PaulZhang12/17/base 2025-07-24T03:47:25.3976982Z * [new branch] gh/PaulZhang12/17/head -> origin/gh/PaulZhang12/17/head 2025-07-24T03:47:25.3977491Z * [new branch] gh/PaulZhang12/18/base -> origin/gh/PaulZhang12/18/base 2025-07-24T03:47:25.3977999Z * [new branch] gh/PaulZhang12/18/head -> origin/gh/PaulZhang12/18/head 2025-07-24T03:47:25.3978509Z * [new branch] gh/PaulZhang12/18/orig -> origin/gh/PaulZhang12/18/orig 2025-07-24T03:47:25.3979016Z * [new branch] gh/PaulZhang12/19/base -> origin/gh/PaulZhang12/19/base 2025-07-24T03:47:25.3979557Z * [new branch] gh/PaulZhang12/19/head -> origin/gh/PaulZhang12/19/head 2025-07-24T03:47:25.3980076Z * [new branch] gh/PaulZhang12/19/orig -> origin/gh/PaulZhang12/19/orig 2025-07-24T03:47:25.3980758Z * [new branch] gh/PaulZhang12/4/base -> origin/gh/PaulZhang12/4/base 2025-07-24T03:47:25.3981378Z * [new branch] gh/PaulZhang12/4/head -> origin/gh/PaulZhang12/4/head 2025-07-24T03:47:25.3981879Z * [new branch] gh/PaulZhang12/4/orig -> origin/gh/PaulZhang12/4/orig 2025-07-24T03:47:25.3982398Z * [new branch] gh/SamGinzburg/11/base -> origin/gh/SamGinzburg/11/base 2025-07-24T03:47:25.4440721Z * [new branch] gh/SamGinzburg/11/head -> origin/gh/SamGinzburg/11/head 2025-07-24T03:47:25.4441333Z * [new branch] gh/Sidharth123-cpu/24/base -> origin/gh/Sidharth123-cpu/24/base 2025-07-24T03:47:25.4441908Z * [new branch] gh/Sidharth123-cpu/25/base -> origin/gh/Sidharth123-cpu/25/base 2025-07-24T03:47:25.4442456Z * [new branch] gh/Sidharth123-cpu/26/base -> origin/gh/Sidharth123-cpu/26/base 2025-07-24T03:47:25.4443007Z * [new branch] gh/Sidharth123-cpu/27/base -> origin/gh/Sidharth123-cpu/27/base 2025-07-24T03:47:25.4443572Z * [new branch] gh/Sidharth123-cpu/28/base -> origin/gh/Sidharth123-cpu/28/base 2025-07-24T03:47:25.4444119Z * [new branch] gh/Sidharth123-cpu/28/head -> origin/gh/Sidharth123-cpu/28/head 2025-07-24T03:47:25.4444682Z * [new branch] gh/Sidharth123-cpu/28/orig -> origin/gh/Sidharth123-cpu/28/orig 2025-07-24T03:47:25.4445221Z * [new branch] gh/Sidharth123-cpu/34/base -> origin/gh/Sidharth123-cpu/34/base 2025-07-24T03:47:25.4445755Z * [new branch] gh/Sidharth123-cpu/34/head -> origin/gh/Sidharth123-cpu/34/head 2025-07-24T03:47:25.4446299Z * [new branch] gh/Sidharth123-cpu/34/orig -> origin/gh/Sidharth123-cpu/34/orig 2025-07-24T03:47:25.4446839Z * [new branch] gh/Sidharth123-cpu/35/base -> origin/gh/Sidharth123-cpu/35/base 2025-07-24T03:47:25.4447369Z * [new branch] gh/Sidharth123-cpu/35/head -> origin/gh/Sidharth123-cpu/35/head 2025-07-24T03:47:25.4447915Z * [new branch] gh/Sidharth123-cpu/35/orig -> origin/gh/Sidharth123-cpu/35/orig 2025-07-24T03:47:25.4448455Z * [new branch] gh/Sidharth123-cpu/36/base -> origin/gh/Sidharth123-cpu/36/base 2025-07-24T03:47:25.4449067Z * [new branch] gh/Sidharth123-cpu/36/head -> origin/gh/Sidharth123-cpu/36/head 2025-07-24T03:47:25.4449603Z * [new branch] gh/Sidharth123-cpu/36/orig -> origin/gh/Sidharth123-cpu/36/orig 2025-07-24T03:47:25.4450149Z * [new branch] gh/Sidharth123-cpu/38/base -> origin/gh/Sidharth123-cpu/38/base 2025-07-24T03:47:25.4450688Z * [new branch] gh/Sidharth123-cpu/38/head -> origin/gh/Sidharth123-cpu/38/head 2025-07-24T03:47:25.4451229Z * [new branch] gh/Sidharth123-cpu/38/orig -> origin/gh/Sidharth123-cpu/38/orig 2025-07-24T03:47:25.4451780Z * [new branch] gh/Sidharth123-cpu/39/base -> origin/gh/Sidharth123-cpu/39/base 2025-07-24T03:47:25.4452346Z * [new branch] gh/Sidharth123-cpu/39/head -> origin/gh/Sidharth123-cpu/39/head 2025-07-24T03:47:25.4452888Z * [new branch] gh/Sidharth123-cpu/39/orig -> origin/gh/Sidharth123-cpu/39/orig 2025-07-24T03:47:25.4453429Z * [new branch] gh/Sidharth123-cpu/40/base -> origin/gh/Sidharth123-cpu/40/base 2025-07-24T03:47:25.4453965Z * [new branch] gh/Sidharth123-cpu/40/head -> origin/gh/Sidharth123-cpu/40/head 2025-07-24T03:47:25.4454603Z * [new branch] gh/Sidharth123-cpu/40/orig -> origin/gh/Sidharth123-cpu/40/orig 2025-07-24T03:47:25.4455146Z * [new branch] gh/Sidharth123-cpu/41/base -> origin/gh/Sidharth123-cpu/41/base 2025-07-24T03:47:25.4455683Z * [new branch] gh/Sidharth123-cpu/41/head -> origin/gh/Sidharth123-cpu/41/head 2025-07-24T03:47:25.4456230Z * [new branch] gh/Sidharth123-cpu/41/orig -> origin/gh/Sidharth123-cpu/41/orig 2025-07-24T03:47:25.4456768Z * [new branch] gh/Sidharth123-cpu/42/base -> origin/gh/Sidharth123-cpu/42/base 2025-07-24T03:47:25.4457602Z * [new branch] gh/Sidharth123-cpu/42/head -> origin/gh/Sidharth123-cpu/42/head 2025-07-24T03:47:25.4458150Z * [new branch] gh/Sidharth123-cpu/42/orig -> origin/gh/Sidharth123-cpu/42/orig 2025-07-24T03:47:25.4458692Z * [new branch] gh/Sidharth123-cpu/43/base -> origin/gh/Sidharth123-cpu/43/base 2025-07-24T03:47:25.4459242Z * [new branch] gh/Sidharth123-cpu/43/head -> origin/gh/Sidharth123-cpu/43/head 2025-07-24T03:47:25.4459775Z * [new branch] gh/Sidharth123-cpu/43/orig -> origin/gh/Sidharth123-cpu/43/orig 2025-07-24T03:47:25.4460326Z * [new branch] gh/Sidharth123-cpu/44/base -> origin/gh/Sidharth123-cpu/44/base 2025-07-24T03:47:25.4460872Z * [new branch] gh/Sidharth123-cpu/44/head -> origin/gh/Sidharth123-cpu/44/head 2025-07-24T03:47:25.4461411Z * [new branch] gh/Sidharth123-cpu/44/orig -> origin/gh/Sidharth123-cpu/44/orig 2025-07-24T03:47:25.4461969Z * [new branch] gh/Sidharth123-cpu/45/base -> origin/gh/Sidharth123-cpu/45/base 2025-07-24T03:47:25.4462508Z * [new branch] gh/Sidharth123-cpu/45/head -> origin/gh/Sidharth123-cpu/45/head 2025-07-24T03:47:25.4463048Z * [new branch] gh/Sidharth123-cpu/45/orig -> origin/gh/Sidharth123-cpu/45/orig 2025-07-24T03:47:25.4463576Z * [new branch] gh/StrongerXi/1/base -> origin/gh/StrongerXi/1/base 2025-07-24T03:47:25.4464082Z * [new branch] gh/StrongerXi/1/head -> origin/gh/StrongerXi/1/head 2025-07-24T03:47:25.4464596Z * [new branch] gh/StrongerXi/103/base -> origin/gh/StrongerXi/103/base 2025-07-24T03:47:25.4898410Z * [new branch] gh/StrongerXi/103/head -> origin/gh/StrongerXi/103/head 2025-07-24T03:47:25.4899097Z * [new branch] gh/StrongerXi/103/orig -> origin/gh/StrongerXi/103/orig 2025-07-24T03:47:25.4899634Z * [new branch] gh/StrongerXi/127/base -> origin/gh/StrongerXi/127/base 2025-07-24T03:47:25.4900150Z * [new branch] gh/StrongerXi/127/head -> origin/gh/StrongerXi/127/head 2025-07-24T03:47:25.4900656Z * [new branch] gh/StrongerXi/127/orig -> origin/gh/StrongerXi/127/orig 2025-07-24T03:47:25.4901157Z * [new branch] gh/StrongerXi/128/base -> origin/gh/StrongerXi/128/base 2025-07-24T03:47:25.4901669Z * [new branch] gh/StrongerXi/128/head -> origin/gh/StrongerXi/128/head 2025-07-24T03:47:25.4902177Z * [new branch] gh/StrongerXi/128/orig -> origin/gh/StrongerXi/128/orig 2025-07-24T03:47:25.4902674Z * [new branch] gh/StrongerXi/129/base -> origin/gh/StrongerXi/129/base 2025-07-24T03:47:25.4903180Z * [new branch] gh/StrongerXi/129/head -> origin/gh/StrongerXi/129/head 2025-07-24T03:47:25.4903677Z * [new branch] gh/StrongerXi/129/orig -> origin/gh/StrongerXi/129/orig 2025-07-24T03:47:25.4904198Z * [new branch] gh/StrongerXi/130/base -> origin/gh/StrongerXi/130/base 2025-07-24T03:47:25.4904705Z * [new branch] gh/StrongerXi/130/head -> origin/gh/StrongerXi/130/head 2025-07-24T03:47:25.4905207Z * [new branch] gh/StrongerXi/130/orig -> origin/gh/StrongerXi/130/orig 2025-07-24T03:47:25.4905710Z * [new branch] gh/StrongerXi/131/base -> origin/gh/StrongerXi/131/base 2025-07-24T03:47:25.4906212Z * [new branch] gh/StrongerXi/131/head -> origin/gh/StrongerXi/131/head 2025-07-24T03:47:25.4906716Z * [new branch] gh/StrongerXi/131/orig -> origin/gh/StrongerXi/131/orig 2025-07-24T03:47:25.4907222Z * [new branch] gh/StrongerXi/132/base -> origin/gh/StrongerXi/132/base 2025-07-24T03:47:25.4907725Z * [new branch] gh/StrongerXi/132/head -> origin/gh/StrongerXi/132/head 2025-07-24T03:47:25.4908397Z * [new branch] gh/StrongerXi/132/orig -> origin/gh/StrongerXi/132/orig 2025-07-24T03:47:25.4909003Z * [new branch] gh/StrongerXi/133/base -> origin/gh/StrongerXi/133/base 2025-07-24T03:47:25.4909510Z * [new branch] gh/StrongerXi/133/head -> origin/gh/StrongerXi/133/head 2025-07-24T03:47:25.4910009Z * [new branch] gh/StrongerXi/133/orig -> origin/gh/StrongerXi/133/orig 2025-07-24T03:47:25.4910518Z * [new branch] gh/StrongerXi/134/base -> origin/gh/StrongerXi/134/base 2025-07-24T03:47:25.4911030Z * [new branch] gh/StrongerXi/134/head -> origin/gh/StrongerXi/134/head 2025-07-24T03:47:25.4911530Z * [new branch] gh/StrongerXi/134/orig -> origin/gh/StrongerXi/134/orig 2025-07-24T03:47:25.4912041Z * [new branch] gh/StrongerXi/135/base -> origin/gh/StrongerXi/135/base 2025-07-24T03:47:25.4912537Z * [new branch] gh/StrongerXi/135/head -> origin/gh/StrongerXi/135/head 2025-07-24T03:47:25.4913046Z * [new branch] gh/StrongerXi/135/orig -> origin/gh/StrongerXi/135/orig 2025-07-24T03:47:25.4913555Z * [new branch] gh/StrongerXi/136/base -> origin/gh/StrongerXi/136/base 2025-07-24T03:47:25.4914053Z * [new branch] gh/StrongerXi/136/head -> origin/gh/StrongerXi/136/head 2025-07-24T03:47:25.4914558Z * [new branch] gh/StrongerXi/136/orig -> origin/gh/StrongerXi/136/orig 2025-07-24T03:47:25.4915057Z * [new branch] gh/StrongerXi/137/base -> origin/gh/StrongerXi/137/base 2025-07-24T03:47:25.4915557Z * [new branch] gh/StrongerXi/137/head -> origin/gh/StrongerXi/137/head 2025-07-24T03:47:25.4916059Z * [new branch] gh/StrongerXi/137/orig -> origin/gh/StrongerXi/137/orig 2025-07-24T03:47:25.4916557Z * [new branch] gh/StrongerXi/138/base -> origin/gh/StrongerXi/138/base 2025-07-24T03:47:25.4917064Z * [new branch] gh/StrongerXi/138/head -> origin/gh/StrongerXi/138/head 2025-07-24T03:47:25.4917568Z * [new branch] gh/StrongerXi/138/orig -> origin/gh/StrongerXi/138/orig 2025-07-24T03:47:25.4918074Z * [new branch] gh/StrongerXi/71/base -> origin/gh/StrongerXi/71/base 2025-07-24T03:47:25.4918577Z * [new branch] gh/StrongerXi/71/head -> origin/gh/StrongerXi/71/head 2025-07-24T03:47:25.4919072Z * [new branch] gh/StrongerXi/72/base -> origin/gh/StrongerXi/72/base 2025-07-24T03:47:25.4919570Z * [new branch] gh/StrongerXi/72/head -> origin/gh/StrongerXi/72/head 2025-07-24T03:47:25.4920062Z * [new branch] gh/XilunWu/110/base -> origin/gh/XilunWu/110/base 2025-07-24T03:47:25.4920551Z * [new branch] gh/XilunWu/110/head -> origin/gh/XilunWu/110/head 2025-07-24T03:47:25.4921035Z * [new branch] gh/XilunWu/110/orig -> origin/gh/XilunWu/110/orig 2025-07-24T03:47:25.4921517Z * [new branch] gh/XilunWu/115/base -> origin/gh/XilunWu/115/base 2025-07-24T03:47:25.5371576Z * [new branch] gh/XilunWu/115/head -> origin/gh/XilunWu/115/head 2025-07-24T03:47:25.5372123Z * [new branch] gh/XilunWu/115/orig -> origin/gh/XilunWu/115/orig 2025-07-24T03:47:25.5372632Z * [new branch] gh/XilunWu/116/base -> origin/gh/XilunWu/116/base 2025-07-24T03:47:25.5373121Z * [new branch] gh/XilunWu/116/head -> origin/gh/XilunWu/116/head 2025-07-24T03:47:25.5373594Z * [new branch] gh/XilunWu/116/orig -> origin/gh/XilunWu/116/orig 2025-07-24T03:47:25.5374094Z * [new branch] gh/XilunWu/117/base -> origin/gh/XilunWu/117/base 2025-07-24T03:47:25.5374564Z * [new branch] gh/XilunWu/117/head -> origin/gh/XilunWu/117/head 2025-07-24T03:47:25.5375045Z * [new branch] gh/XilunWu/117/orig -> origin/gh/XilunWu/117/orig 2025-07-24T03:47:25.5375870Z * [new branch] gh/XilunWu/118/base -> origin/gh/XilunWu/118/base 2025-07-24T03:47:25.5376349Z * [new branch] gh/XilunWu/118/head -> origin/gh/XilunWu/118/head 2025-07-24T03:47:25.5376832Z * [new branch] gh/XilunWu/118/orig -> origin/gh/XilunWu/118/orig 2025-07-24T03:47:25.5377299Z * [new branch] gh/XilunWu/119/base -> origin/gh/XilunWu/119/base 2025-07-24T03:47:25.5377778Z * [new branch] gh/XilunWu/119/head -> origin/gh/XilunWu/119/head 2025-07-24T03:47:25.5378269Z * [new branch] gh/XilunWu/119/orig -> origin/gh/XilunWu/119/orig 2025-07-24T03:47:25.5378739Z * [new branch] gh/XilunWu/129/base -> origin/gh/XilunWu/129/base 2025-07-24T03:47:25.5379223Z * [new branch] gh/XilunWu/129/head -> origin/gh/XilunWu/129/head 2025-07-24T03:47:25.5379694Z * [new branch] gh/XilunWu/129/orig -> origin/gh/XilunWu/129/orig 2025-07-24T03:47:25.5380178Z * [new branch] gh/XilunWu/130/base -> origin/gh/XilunWu/130/base 2025-07-24T03:47:25.5380653Z * [new branch] gh/XilunWu/130/head -> origin/gh/XilunWu/130/head 2025-07-24T03:47:25.5381121Z * [new branch] gh/XilunWu/130/orig -> origin/gh/XilunWu/130/orig 2025-07-24T03:47:25.5381597Z * [new branch] gh/XilunWu/131/base -> origin/gh/XilunWu/131/base 2025-07-24T03:47:25.5382076Z * [new branch] gh/XilunWu/131/head -> origin/gh/XilunWu/131/head 2025-07-24T03:47:25.5382630Z * [new branch] gh/XilunWu/131/orig -> origin/gh/XilunWu/131/orig 2025-07-24T03:47:25.5383149Z * [new branch] gh/XilunWu/133/base -> origin/gh/XilunWu/133/base 2025-07-24T03:47:25.5383630Z * [new branch] gh/XilunWu/133/head -> origin/gh/XilunWu/133/head 2025-07-24T03:47:25.5384113Z * [new branch] gh/XilunWu/133/orig -> origin/gh/XilunWu/133/orig 2025-07-24T03:47:25.5384589Z * [new branch] gh/XilunWu/136/base -> origin/gh/XilunWu/136/base 2025-07-24T03:47:25.5385065Z * [new branch] gh/XilunWu/136/head -> origin/gh/XilunWu/136/head 2025-07-24T03:47:25.5385536Z * [new branch] gh/XilunWu/136/orig -> origin/gh/XilunWu/136/orig 2025-07-24T03:47:25.5386016Z * [new branch] gh/XilunWu/139/base -> origin/gh/XilunWu/139/base 2025-07-24T03:47:25.5386493Z * [new branch] gh/XilunWu/139/head -> origin/gh/XilunWu/139/head 2025-07-24T03:47:25.5386960Z * [new branch] gh/XilunWu/139/orig -> origin/gh/XilunWu/139/orig 2025-07-24T03:47:25.5387436Z * [new branch] gh/XilunWu/143/base -> origin/gh/XilunWu/143/base 2025-07-24T03:47:25.5387907Z * [new branch] gh/XilunWu/143/head -> origin/gh/XilunWu/143/head 2025-07-24T03:47:25.5388390Z * [new branch] gh/XilunWu/143/orig -> origin/gh/XilunWu/143/orig 2025-07-24T03:47:25.5388867Z * [new branch] gh/XilunWu/144/base -> origin/gh/XilunWu/144/base 2025-07-24T03:47:25.5389332Z * [new branch] gh/XilunWu/144/head -> origin/gh/XilunWu/144/head 2025-07-24T03:47:25.5389807Z * [new branch] gh/XilunWu/144/orig -> origin/gh/XilunWu/144/orig 2025-07-24T03:47:25.5390276Z * [new branch] gh/XilunWu/145/base -> origin/gh/XilunWu/145/base 2025-07-24T03:47:25.5390752Z * [new branch] gh/XilunWu/145/head -> origin/gh/XilunWu/145/head 2025-07-24T03:47:25.5391236Z * [new branch] gh/XilunWu/145/orig -> origin/gh/XilunWu/145/orig 2025-07-24T03:47:25.5391706Z * [new branch] gh/XilunWu/146/base -> origin/gh/XilunWu/146/base 2025-07-24T03:47:25.5392185Z * [new branch] gh/XilunWu/146/head -> origin/gh/XilunWu/146/head 2025-07-24T03:47:25.5392869Z * [new branch] gh/XilunWu/146/orig -> origin/gh/XilunWu/146/orig 2025-07-24T03:47:25.5393353Z * [new branch] gh/XilunWu/147/base -> origin/gh/XilunWu/147/base 2025-07-24T03:47:25.5393826Z * [new branch] gh/XilunWu/147/head -> origin/gh/XilunWu/147/head 2025-07-24T03:47:25.5394304Z * [new branch] gh/XilunWu/147/orig -> origin/gh/XilunWu/147/orig 2025-07-24T03:47:25.5821413Z * [new branch] gh/XilunWu/148/base -> origin/gh/XilunWu/148/base 2025-07-24T03:47:25.5821951Z * [new branch] gh/XilunWu/148/head -> origin/gh/XilunWu/148/head 2025-07-24T03:47:25.5822457Z * [new branch] gh/XilunWu/148/orig -> origin/gh/XilunWu/148/orig 2025-07-24T03:47:25.5822932Z * [new branch] gh/XilunWu/149/base -> origin/gh/XilunWu/149/base 2025-07-24T03:47:25.5823410Z * [new branch] gh/XilunWu/149/head -> origin/gh/XilunWu/149/head 2025-07-24T03:47:25.5823980Z * [new branch] gh/XilunWu/149/orig -> origin/gh/XilunWu/149/orig 2025-07-24T03:47:25.5824502Z * [new branch] gh/XilunWu/150/base -> origin/gh/XilunWu/150/base 2025-07-24T03:47:25.5825031Z * [new branch] gh/XilunWu/150/head -> origin/gh/XilunWu/150/head 2025-07-24T03:47:25.5825517Z * [new branch] gh/XilunWu/150/orig -> origin/gh/XilunWu/150/orig 2025-07-24T03:47:25.5825993Z * [new branch] gh/XilunWu/151/base -> origin/gh/XilunWu/151/base 2025-07-24T03:47:25.5826476Z * [new branch] gh/XilunWu/151/head -> origin/gh/XilunWu/151/head 2025-07-24T03:47:25.5826946Z * [new branch] gh/XilunWu/151/orig -> origin/gh/XilunWu/151/orig 2025-07-24T03:47:25.5827422Z * [new branch] gh/XilunWu/152/base -> origin/gh/XilunWu/152/base 2025-07-24T03:47:25.5827905Z * [new branch] gh/XilunWu/152/head -> origin/gh/XilunWu/152/head 2025-07-24T03:47:25.5828385Z * [new branch] gh/XilunWu/152/orig -> origin/gh/XilunWu/152/orig 2025-07-24T03:47:25.5828873Z * [new branch] gh/XilunWu/153/base -> origin/gh/XilunWu/153/base 2025-07-24T03:47:25.5829343Z * [new branch] gh/XilunWu/153/head -> origin/gh/XilunWu/153/head 2025-07-24T03:47:25.5829818Z * [new branch] gh/XilunWu/153/orig -> origin/gh/XilunWu/153/orig 2025-07-24T03:47:25.5830283Z * [new branch] gh/XilunWu/154/base -> origin/gh/XilunWu/154/base 2025-07-24T03:47:25.5830760Z * [new branch] gh/XilunWu/154/head -> origin/gh/XilunWu/154/head 2025-07-24T03:47:25.5831239Z * [new branch] gh/XilunWu/154/orig -> origin/gh/XilunWu/154/orig 2025-07-24T03:47:25.5831711Z * [new branch] gh/XilunWu/155/base -> origin/gh/XilunWu/155/base 2025-07-24T03:47:25.5832187Z * [new branch] gh/XilunWu/155/head -> origin/gh/XilunWu/155/head 2025-07-24T03:47:25.5832657Z * [new branch] gh/XilunWu/155/orig -> origin/gh/XilunWu/155/orig 2025-07-24T03:47:25.5833135Z * [new branch] gh/XilunWu/156/base -> origin/gh/XilunWu/156/base 2025-07-24T03:47:25.5833609Z * [new branch] gh/XilunWu/156/head -> origin/gh/XilunWu/156/head 2025-07-24T03:47:25.5834079Z * [new branch] gh/XilunWu/156/orig -> origin/gh/XilunWu/156/orig 2025-07-24T03:47:25.5834550Z * [new branch] gh/XilunWu/157/base -> origin/gh/XilunWu/157/base 2025-07-24T03:47:25.5835015Z * [new branch] gh/XilunWu/157/head -> origin/gh/XilunWu/157/head 2025-07-24T03:47:25.5835489Z * [new branch] gh/XilunWu/157/orig -> origin/gh/XilunWu/157/orig 2025-07-24T03:47:25.5835963Z * [new branch] gh/XilunWu/158/base -> origin/gh/XilunWu/158/base 2025-07-24T03:47:25.5836730Z * [new branch] gh/XilunWu/158/head -> origin/gh/XilunWu/158/head 2025-07-24T03:47:25.5837220Z * [new branch] gh/XilunWu/158/orig -> origin/gh/XilunWu/158/orig 2025-07-24T03:47:25.5837691Z * [new branch] gh/XilunWu/159/base -> origin/gh/XilunWu/159/base 2025-07-24T03:47:25.5838178Z * [new branch] gh/XilunWu/159/head -> origin/gh/XilunWu/159/head 2025-07-24T03:47:25.5838666Z * [new branch] gh/XilunWu/159/orig -> origin/gh/XilunWu/159/orig 2025-07-24T03:47:25.5839148Z * [new branch] gh/XilunWu/160/base -> origin/gh/XilunWu/160/base 2025-07-24T03:47:25.5839633Z * [new branch] gh/XilunWu/160/head -> origin/gh/XilunWu/160/head 2025-07-24T03:47:25.5840104Z * [new branch] gh/XilunWu/160/orig -> origin/gh/XilunWu/160/orig 2025-07-24T03:47:25.5840599Z * [new branch] gh/XuehaiPan/14/base -> origin/gh/XuehaiPan/14/base 2025-07-24T03:47:25.5841103Z * [new branch] gh/XuehaiPan/14/head -> origin/gh/XuehaiPan/14/head 2025-07-24T03:47:25.5841605Z * [new branch] gh/XuehaiPan/14/orig -> origin/gh/XuehaiPan/14/orig 2025-07-24T03:47:25.5842106Z * [new branch] gh/XuehaiPan/179/base -> origin/gh/XuehaiPan/179/base 2025-07-24T03:47:25.5842606Z * [new branch] gh/XuehaiPan/179/head -> origin/gh/XuehaiPan/179/head 2025-07-24T03:47:25.5843104Z * [new branch] gh/XuehaiPan/179/orig -> origin/gh/XuehaiPan/179/orig 2025-07-24T03:47:25.5843592Z * [new branch] gh/XuehaiPan/189/base -> origin/gh/XuehaiPan/189/base 2025-07-24T03:47:25.5844093Z * [new branch] gh/XuehaiPan/189/head -> origin/gh/XuehaiPan/189/head 2025-07-24T03:47:25.6263145Z * [new branch] gh/XuehaiPan/189/orig -> origin/gh/XuehaiPan/189/orig 2025-07-24T03:47:25.6263680Z * [new branch] gh/XuehaiPan/226/base -> origin/gh/XuehaiPan/226/base 2025-07-24T03:47:25.6264192Z * [new branch] gh/XuehaiPan/226/head -> origin/gh/XuehaiPan/226/head 2025-07-24T03:47:25.6264680Z * [new branch] gh/XuehaiPan/226/orig -> origin/gh/XuehaiPan/226/orig 2025-07-24T03:47:25.6265184Z * [new branch] gh/XuehaiPan/227/base -> origin/gh/XuehaiPan/227/base 2025-07-24T03:47:25.6265685Z * [new branch] gh/XuehaiPan/227/head -> origin/gh/XuehaiPan/227/head 2025-07-24T03:47:25.6266176Z * [new branch] gh/XuehaiPan/227/orig -> origin/gh/XuehaiPan/227/orig 2025-07-24T03:47:25.6266689Z * [new branch] gh/XuehaiPan/229/base -> origin/gh/XuehaiPan/229/base 2025-07-24T03:47:25.6267179Z * [new branch] gh/XuehaiPan/229/head -> origin/gh/XuehaiPan/229/head 2025-07-24T03:47:25.6267679Z * [new branch] gh/XuehaiPan/229/orig -> origin/gh/XuehaiPan/229/orig 2025-07-24T03:47:25.6268196Z * [new branch] gh/XuehaiPan/230/base -> origin/gh/XuehaiPan/230/base 2025-07-24T03:47:25.6268689Z * [new branch] gh/XuehaiPan/230/head -> origin/gh/XuehaiPan/230/head 2025-07-24T03:47:25.6269194Z * [new branch] gh/XuehaiPan/230/orig -> origin/gh/XuehaiPan/230/orig 2025-07-24T03:47:25.6269682Z * [new branch] gh/XuehaiPan/231/base -> origin/gh/XuehaiPan/231/base 2025-07-24T03:47:25.6270198Z * [new branch] gh/XuehaiPan/231/head -> origin/gh/XuehaiPan/231/head 2025-07-24T03:47:25.6270700Z * [new branch] gh/XuehaiPan/231/orig -> origin/gh/XuehaiPan/231/orig 2025-07-24T03:47:25.6271203Z * [new branch] gh/XuehaiPan/232/base -> origin/gh/XuehaiPan/232/base 2025-07-24T03:47:25.6271706Z * [new branch] gh/XuehaiPan/232/head -> origin/gh/XuehaiPan/232/head 2025-07-24T03:47:25.6272333Z * [new branch] gh/XuehaiPan/232/orig -> origin/gh/XuehaiPan/232/orig 2025-07-24T03:47:25.6272943Z * [new branch] gh/XuehaiPan/249/base -> origin/gh/XuehaiPan/249/base 2025-07-24T03:47:25.6273446Z * [new branch] gh/XuehaiPan/249/head -> origin/gh/XuehaiPan/249/head 2025-07-24T03:47:25.6273935Z * [new branch] gh/XuehaiPan/249/orig -> origin/gh/XuehaiPan/249/orig 2025-07-24T03:47:25.6274442Z * [new branch] gh/XuehaiPan/251/base -> origin/gh/XuehaiPan/251/base 2025-07-24T03:47:25.6274935Z * [new branch] gh/XuehaiPan/251/head -> origin/gh/XuehaiPan/251/head 2025-07-24T03:47:25.6275429Z * [new branch] gh/XuehaiPan/251/orig -> origin/gh/XuehaiPan/251/orig 2025-07-24T03:47:25.6275924Z * [new branch] gh/XuehaiPan/253/base -> origin/gh/XuehaiPan/253/base 2025-07-24T03:47:25.6276412Z * [new branch] gh/XuehaiPan/253/head -> origin/gh/XuehaiPan/253/head 2025-07-24T03:47:25.6276910Z * [new branch] gh/XuehaiPan/253/orig -> origin/gh/XuehaiPan/253/orig 2025-07-24T03:47:25.6277400Z * [new branch] gh/XuehaiPan/254/base -> origin/gh/XuehaiPan/254/base 2025-07-24T03:47:25.6277900Z * [new branch] gh/XuehaiPan/254/head -> origin/gh/XuehaiPan/254/head 2025-07-24T03:47:25.6278393Z * [new branch] gh/XuehaiPan/254/orig -> origin/gh/XuehaiPan/254/orig 2025-07-24T03:47:25.6278884Z * [new branch] gh/XuehaiPan/255/base -> origin/gh/XuehaiPan/255/base 2025-07-24T03:47:25.6279378Z * [new branch] gh/XuehaiPan/255/head -> origin/gh/XuehaiPan/255/head 2025-07-24T03:47:25.6279861Z * [new branch] gh/XuehaiPan/255/orig -> origin/gh/XuehaiPan/255/orig 2025-07-24T03:47:25.6280361Z * [new branch] gh/XuehaiPan/257/base -> origin/gh/XuehaiPan/257/base 2025-07-24T03:47:25.6280849Z * [new branch] gh/XuehaiPan/257/head -> origin/gh/XuehaiPan/257/head 2025-07-24T03:47:25.6281356Z * [new branch] gh/XuehaiPan/257/orig -> origin/gh/XuehaiPan/257/orig 2025-07-24T03:47:25.6281853Z * [new branch] gh/XuehaiPan/271/base -> origin/gh/XuehaiPan/271/base 2025-07-24T03:47:25.6282339Z * [new branch] gh/XuehaiPan/271/head -> origin/gh/XuehaiPan/271/head 2025-07-24T03:47:25.6282834Z * [new branch] gh/XuehaiPan/271/orig -> origin/gh/XuehaiPan/271/orig 2025-07-24T03:47:25.6283320Z * [new branch] gh/XuehaiPan/279/base -> origin/gh/XuehaiPan/279/base 2025-07-24T03:47:25.6283824Z * [new branch] gh/XuehaiPan/279/head -> origin/gh/XuehaiPan/279/head 2025-07-24T03:47:25.6284326Z * [new branch] gh/XuehaiPan/279/orig -> origin/gh/XuehaiPan/279/orig 2025-07-24T03:47:25.6284815Z * [new branch] gh/XuehaiPan/281/base -> origin/gh/XuehaiPan/281/base 2025-07-24T03:47:25.6285312Z * [new branch] gh/XuehaiPan/281/head -> origin/gh/XuehaiPan/281/head 2025-07-24T03:47:25.6285809Z * [new branch] gh/XuehaiPan/281/orig -> origin/gh/XuehaiPan/281/orig 2025-07-24T03:47:25.6688257Z * [new branch] gh/XuehaiPan/283/base -> origin/gh/XuehaiPan/283/base 2025-07-24T03:47:25.6688849Z * [new branch] gh/XuehaiPan/283/head -> origin/gh/XuehaiPan/283/head 2025-07-24T03:47:25.6689355Z * [new branch] gh/XuehaiPan/283/orig -> origin/gh/XuehaiPan/283/orig 2025-07-24T03:47:25.6689854Z * [new branch] gh/XuehaiPan/284/base -> origin/gh/XuehaiPan/284/base 2025-07-24T03:47:25.6690343Z * [new branch] gh/XuehaiPan/284/head -> origin/gh/XuehaiPan/284/head 2025-07-24T03:47:25.6690840Z * [new branch] gh/XuehaiPan/284/orig -> origin/gh/XuehaiPan/284/orig 2025-07-24T03:47:25.6691343Z * [new branch] gh/XuehaiPan/287/base -> origin/gh/XuehaiPan/287/base 2025-07-24T03:47:25.6692146Z * [new branch] gh/XuehaiPan/287/head -> origin/gh/XuehaiPan/287/head 2025-07-24T03:47:25.6692701Z * [new branch] gh/XuehaiPan/287/orig -> origin/gh/XuehaiPan/287/orig 2025-07-24T03:47:25.6693192Z * [new branch] gh/XuehaiPan/288/base -> origin/gh/XuehaiPan/288/base 2025-07-24T03:47:25.6693689Z * [new branch] gh/XuehaiPan/288/head -> origin/gh/XuehaiPan/288/head 2025-07-24T03:47:25.6694173Z * [new branch] gh/XuehaiPan/288/orig -> origin/gh/XuehaiPan/288/orig 2025-07-24T03:47:25.6694663Z * [new branch] gh/XuehaiPan/290/base -> origin/gh/XuehaiPan/290/base 2025-07-24T03:47:25.6695157Z * [new branch] gh/XuehaiPan/290/head -> origin/gh/XuehaiPan/290/head 2025-07-24T03:47:25.6695652Z * [new branch] gh/XuehaiPan/290/orig -> origin/gh/XuehaiPan/290/orig 2025-07-24T03:47:25.6696153Z * [new branch] gh/XuehaiPan/299/base -> origin/gh/XuehaiPan/299/base 2025-07-24T03:47:25.6696649Z * [new branch] gh/XuehaiPan/299/head -> origin/gh/XuehaiPan/299/head 2025-07-24T03:47:25.6697159Z * [new branch] gh/XuehaiPan/299/orig -> origin/gh/XuehaiPan/299/orig 2025-07-24T03:47:25.6697658Z * [new branch] gh/XuehaiPan/311/base -> origin/gh/XuehaiPan/311/base 2025-07-24T03:47:25.6698193Z * [new branch] gh/XuehaiPan/311/head -> origin/gh/XuehaiPan/311/head 2025-07-24T03:47:25.6698740Z * [new branch] gh/XuehaiPan/311/orig -> origin/gh/XuehaiPan/311/orig 2025-07-24T03:47:25.6699227Z * [new branch] gh/XuehaiPan/312/base -> origin/gh/XuehaiPan/312/base 2025-07-24T03:47:25.6699732Z * [new branch] gh/XuehaiPan/312/head -> origin/gh/XuehaiPan/312/head 2025-07-24T03:47:25.6700229Z * [new branch] gh/XuehaiPan/312/orig -> origin/gh/XuehaiPan/312/orig 2025-07-24T03:47:25.6700720Z * [new branch] gh/XuehaiPan/318/base -> origin/gh/XuehaiPan/318/base 2025-07-24T03:47:25.6701219Z * [new branch] gh/XuehaiPan/318/head -> origin/gh/XuehaiPan/318/head 2025-07-24T03:47:25.6701708Z * [new branch] gh/XuehaiPan/318/orig -> origin/gh/XuehaiPan/318/orig 2025-07-24T03:47:25.6702207Z * [new branch] gh/XuehaiPan/320/base -> origin/gh/XuehaiPan/320/base 2025-07-24T03:47:25.6702704Z * [new branch] gh/XuehaiPan/320/head -> origin/gh/XuehaiPan/320/head 2025-07-24T03:47:25.6703193Z * [new branch] gh/XuehaiPan/320/orig -> origin/gh/XuehaiPan/320/orig 2025-07-24T03:47:25.6703694Z * [new branch] gh/XuehaiPan/325/base -> origin/gh/XuehaiPan/325/base 2025-07-24T03:47:25.6704230Z * [new branch] gh/XuehaiPan/325/head -> origin/gh/XuehaiPan/325/head 2025-07-24T03:47:25.6704776Z * [new branch] gh/XuehaiPan/325/orig -> origin/gh/XuehaiPan/325/orig 2025-07-24T03:47:25.6705286Z * [new branch] gh/XuehaiPan/326/base -> origin/gh/XuehaiPan/326/base 2025-07-24T03:47:25.6705778Z * [new branch] gh/XuehaiPan/326/head -> origin/gh/XuehaiPan/326/head 2025-07-24T03:47:25.6706278Z * [new branch] gh/XuehaiPan/326/orig -> origin/gh/XuehaiPan/326/orig 2025-07-24T03:47:25.6706772Z * [new branch] gh/XuehaiPan/327/base -> origin/gh/XuehaiPan/327/base 2025-07-24T03:47:25.6707273Z * [new branch] gh/XuehaiPan/327/head -> origin/gh/XuehaiPan/327/head 2025-07-24T03:47:25.6707781Z * [new branch] gh/XuehaiPan/327/orig -> origin/gh/XuehaiPan/327/orig 2025-07-24T03:47:25.6708271Z * [new branch] gh/XuehaiPan/328/base -> origin/gh/XuehaiPan/328/base 2025-07-24T03:47:25.6708771Z * [new branch] gh/XuehaiPan/328/head -> origin/gh/XuehaiPan/328/head 2025-07-24T03:47:25.6709366Z * [new branch] gh/XuehaiPan/328/orig -> origin/gh/XuehaiPan/328/orig 2025-07-24T03:47:25.6709967Z * [new branch] gh/XuehaiPan/329/base -> origin/gh/XuehaiPan/329/base 2025-07-24T03:47:25.6710512Z * [new branch] gh/XuehaiPan/329/head -> origin/gh/XuehaiPan/329/head 2025-07-24T03:47:25.6711070Z * [new branch] gh/XuehaiPan/329/orig -> origin/gh/XuehaiPan/329/orig 2025-07-24T03:47:25.6711579Z * [new branch] gh/XuehaiPan/330/base -> origin/gh/XuehaiPan/330/base 2025-07-24T03:47:25.7133156Z * [new branch] gh/XuehaiPan/330/head -> origin/gh/XuehaiPan/330/head 2025-07-24T03:47:25.7133772Z * [new branch] gh/XuehaiPan/330/orig -> origin/gh/XuehaiPan/330/orig 2025-07-24T03:47:25.7134296Z * [new branch] gh/XuehaiPan/331/base -> origin/gh/XuehaiPan/331/base 2025-07-24T03:47:25.7134796Z * [new branch] gh/XuehaiPan/331/head -> origin/gh/XuehaiPan/331/head 2025-07-24T03:47:25.7135338Z * [new branch] gh/XuehaiPan/331/orig -> origin/gh/XuehaiPan/331/orig 2025-07-24T03:47:25.7135831Z * [new branch] gh/XuehaiPan/332/base -> origin/gh/XuehaiPan/332/base 2025-07-24T03:47:25.7136331Z * [new branch] gh/XuehaiPan/332/head -> origin/gh/XuehaiPan/332/head 2025-07-24T03:47:25.7136833Z * [new branch] gh/XuehaiPan/332/orig -> origin/gh/XuehaiPan/332/orig 2025-07-24T03:47:25.7137316Z * [new branch] gh/XuehaiPan/333/base -> origin/gh/XuehaiPan/333/base 2025-07-24T03:47:25.7137812Z * [new branch] gh/XuehaiPan/333/head -> origin/gh/XuehaiPan/333/head 2025-07-24T03:47:25.7138296Z * [new branch] gh/XuehaiPan/333/orig -> origin/gh/XuehaiPan/333/orig 2025-07-24T03:47:25.7138789Z * [new branch] gh/XuehaiPan/334/base -> origin/gh/XuehaiPan/334/base 2025-07-24T03:47:25.7139294Z * [new branch] gh/XuehaiPan/334/head -> origin/gh/XuehaiPan/334/head 2025-07-24T03:47:25.7139788Z * [new branch] gh/XuehaiPan/334/orig -> origin/gh/XuehaiPan/334/orig 2025-07-24T03:47:25.7140286Z * [new branch] gh/XuehaiPan/335/base -> origin/gh/XuehaiPan/335/base 2025-07-24T03:47:25.7140778Z * [new branch] gh/XuehaiPan/335/head -> origin/gh/XuehaiPan/335/head 2025-07-24T03:47:25.7141277Z * [new branch] gh/XuehaiPan/335/orig -> origin/gh/XuehaiPan/335/orig 2025-07-24T03:47:25.7141765Z * [new branch] gh/XuehaiPan/336/base -> origin/gh/XuehaiPan/336/base 2025-07-24T03:47:25.7142416Z * [new branch] gh/XuehaiPan/336/head -> origin/gh/XuehaiPan/336/head 2025-07-24T03:47:25.7143191Z * [new branch] gh/XuehaiPan/336/orig -> origin/gh/XuehaiPan/336/orig 2025-07-24T03:47:25.7143682Z * [new branch] gh/XuehaiPan/337/base -> origin/gh/XuehaiPan/337/base 2025-07-24T03:47:25.7144186Z * [new branch] gh/XuehaiPan/337/head -> origin/gh/XuehaiPan/337/head 2025-07-24T03:47:25.7144681Z * [new branch] gh/XuehaiPan/337/orig -> origin/gh/XuehaiPan/337/orig 2025-07-24T03:47:25.7145182Z * [new branch] gh/XuehaiPan/338/base -> origin/gh/XuehaiPan/338/base 2025-07-24T03:47:25.7145682Z * [new branch] gh/XuehaiPan/338/head -> origin/gh/XuehaiPan/338/head 2025-07-24T03:47:25.7146169Z * [new branch] gh/XuehaiPan/338/orig -> origin/gh/XuehaiPan/338/orig 2025-07-24T03:47:25.7146668Z * [new branch] gh/XuehaiPan/339/base -> origin/gh/XuehaiPan/339/base 2025-07-24T03:47:25.7147158Z * [new branch] gh/XuehaiPan/339/head -> origin/gh/XuehaiPan/339/head 2025-07-24T03:47:25.7147656Z * [new branch] gh/XuehaiPan/339/orig -> origin/gh/XuehaiPan/339/orig 2025-07-24T03:47:25.7148161Z * [new branch] gh/XuehaiPan/340/base -> origin/gh/XuehaiPan/340/base 2025-07-24T03:47:25.7148910Z * [new branch] gh/XuehaiPan/340/head -> origin/gh/XuehaiPan/340/head 2025-07-24T03:47:25.7149414Z * [new branch] gh/XuehaiPan/340/orig -> origin/gh/XuehaiPan/340/orig 2025-07-24T03:47:25.7149902Z * [new branch] gh/XuehaiPan/341/base -> origin/gh/XuehaiPan/341/base 2025-07-24T03:47:25.7150404Z * [new branch] gh/XuehaiPan/341/head -> origin/gh/XuehaiPan/341/head 2025-07-24T03:47:25.7150906Z * [new branch] gh/XuehaiPan/341/orig -> origin/gh/XuehaiPan/341/orig 2025-07-24T03:47:25.7151407Z * [new branch] gh/XuehaiPan/342/base -> origin/gh/XuehaiPan/342/base 2025-07-24T03:47:25.7151905Z * [new branch] gh/XuehaiPan/342/head -> origin/gh/XuehaiPan/342/head 2025-07-24T03:47:25.7152390Z * [new branch] gh/XuehaiPan/342/orig -> origin/gh/XuehaiPan/342/orig 2025-07-24T03:47:25.7152891Z * [new branch] gh/XuehaiPan/343/base -> origin/gh/XuehaiPan/343/base 2025-07-24T03:47:25.7153391Z * [new branch] gh/XuehaiPan/343/head -> origin/gh/XuehaiPan/343/head 2025-07-24T03:47:25.7153883Z * [new branch] gh/XuehaiPan/343/orig -> origin/gh/XuehaiPan/343/orig 2025-07-24T03:47:25.7154387Z * [new branch] gh/XuehaiPan/344/base -> origin/gh/XuehaiPan/344/base 2025-07-24T03:47:25.7154878Z * [new branch] gh/XuehaiPan/344/head -> origin/gh/XuehaiPan/344/head 2025-07-24T03:47:25.7155374Z * [new branch] gh/XuehaiPan/344/orig -> origin/gh/XuehaiPan/344/orig 2025-07-24T03:47:25.7155863Z * [new branch] gh/XuehaiPan/345/base -> origin/gh/XuehaiPan/345/base 2025-07-24T03:47:25.7156363Z * [new branch] gh/XuehaiPan/345/head -> origin/gh/XuehaiPan/345/head 2025-07-24T03:47:25.7655769Z * [new branch] gh/XuehaiPan/345/orig -> origin/gh/XuehaiPan/345/orig 2025-07-24T03:47:25.7656350Z * [new branch] gh/XuehaiPan/346/base -> origin/gh/XuehaiPan/346/base 2025-07-24T03:47:25.7656876Z * [new branch] gh/XuehaiPan/346/head -> origin/gh/XuehaiPan/346/head 2025-07-24T03:47:25.7657377Z * [new branch] gh/XuehaiPan/346/orig -> origin/gh/XuehaiPan/346/orig 2025-07-24T03:47:25.7657869Z * [new branch] gh/XuehaiPan/347/base -> origin/gh/XuehaiPan/347/base 2025-07-24T03:47:25.7658433Z * [new branch] gh/XuehaiPan/347/head -> origin/gh/XuehaiPan/347/head 2025-07-24T03:47:25.7658977Z * [new branch] gh/XuehaiPan/347/orig -> origin/gh/XuehaiPan/347/orig 2025-07-24T03:47:25.7659478Z * [new branch] gh/XuehaiPan/348/base -> origin/gh/XuehaiPan/348/base 2025-07-24T03:47:25.7659971Z * [new branch] gh/XuehaiPan/348/head -> origin/gh/XuehaiPan/348/head 2025-07-24T03:47:25.7660463Z * [new branch] gh/XuehaiPan/348/orig -> origin/gh/XuehaiPan/348/orig 2025-07-24T03:47:25.7660978Z * [new branch] gh/XuehaiPan/349/base -> origin/gh/XuehaiPan/349/base 2025-07-24T03:47:25.7661468Z * [new branch] gh/XuehaiPan/349/head -> origin/gh/XuehaiPan/349/head 2025-07-24T03:47:25.7661962Z * [new branch] gh/XuehaiPan/349/orig -> origin/gh/XuehaiPan/349/orig 2025-07-24T03:47:25.7662466Z * [new branch] gh/XuehaiPan/350/base -> origin/gh/XuehaiPan/350/base 2025-07-24T03:47:25.7662954Z * [new branch] gh/XuehaiPan/350/head -> origin/gh/XuehaiPan/350/head 2025-07-24T03:47:25.7663456Z * [new branch] gh/XuehaiPan/350/orig -> origin/gh/XuehaiPan/350/orig 2025-07-24T03:47:25.7663947Z * [new branch] gh/XuehaiPan/351/base -> origin/gh/XuehaiPan/351/base 2025-07-24T03:47:25.7664495Z * [new branch] gh/XuehaiPan/351/head -> origin/gh/XuehaiPan/351/head 2025-07-24T03:47:25.7665178Z * [new branch] gh/XuehaiPan/351/orig -> origin/gh/XuehaiPan/351/orig 2025-07-24T03:47:25.7665778Z * [new branch] gh/XuehaiPan/352/base -> origin/gh/XuehaiPan/352/base 2025-07-24T03:47:25.7666281Z * [new branch] gh/XuehaiPan/352/head -> origin/gh/XuehaiPan/352/head 2025-07-24T03:47:25.7666777Z * [new branch] gh/XuehaiPan/352/orig -> origin/gh/XuehaiPan/352/orig 2025-07-24T03:47:25.7667277Z * [new branch] gh/XuehaiPan/353/base -> origin/gh/XuehaiPan/353/base 2025-07-24T03:47:25.7667769Z * [new branch] gh/XuehaiPan/353/head -> origin/gh/XuehaiPan/353/head 2025-07-24T03:47:25.7668271Z * [new branch] gh/XuehaiPan/353/orig -> origin/gh/XuehaiPan/353/orig 2025-07-24T03:47:25.7668781Z * [new branch] gh/XuehaiPan/354/base -> origin/gh/XuehaiPan/354/base 2025-07-24T03:47:25.7669270Z * [new branch] gh/XuehaiPan/354/head -> origin/gh/XuehaiPan/354/head 2025-07-24T03:47:25.7669778Z * [new branch] gh/XuehaiPan/354/orig -> origin/gh/XuehaiPan/354/orig 2025-07-24T03:47:25.7670321Z * [new branch] gh/XuehaiPan/355/base -> origin/gh/XuehaiPan/355/base 2025-07-24T03:47:25.7670866Z * [new branch] gh/XuehaiPan/355/head -> origin/gh/XuehaiPan/355/head 2025-07-24T03:47:25.7671365Z * [new branch] gh/XuehaiPan/355/orig -> origin/gh/XuehaiPan/355/orig 2025-07-24T03:47:25.7671855Z * [new branch] gh/XuehaiPan/356/base -> origin/gh/XuehaiPan/356/base 2025-07-24T03:47:25.7672364Z * [new branch] gh/XuehaiPan/356/head -> origin/gh/XuehaiPan/356/head 2025-07-24T03:47:25.7672850Z * [new branch] gh/XuehaiPan/356/orig -> origin/gh/XuehaiPan/356/orig 2025-07-24T03:47:25.7673347Z * [new branch] gh/XuehaiPan/357/base -> origin/gh/XuehaiPan/357/base 2025-07-24T03:47:25.7673838Z * [new branch] gh/XuehaiPan/357/head -> origin/gh/XuehaiPan/357/head 2025-07-24T03:47:25.7674340Z * [new branch] gh/XuehaiPan/357/orig -> origin/gh/XuehaiPan/357/orig 2025-07-24T03:47:25.7674847Z * [new branch] gh/XuehaiPan/358/base -> origin/gh/XuehaiPan/358/base 2025-07-24T03:47:25.7675338Z * [new branch] gh/XuehaiPan/358/head -> origin/gh/XuehaiPan/358/head 2025-07-24T03:47:25.7675838Z * [new branch] gh/XuehaiPan/358/orig -> origin/gh/XuehaiPan/358/orig 2025-07-24T03:47:25.7676372Z * [new branch] gh/XuehaiPan/359/base -> origin/gh/XuehaiPan/359/base 2025-07-24T03:47:25.7676912Z * [new branch] gh/XuehaiPan/359/head -> origin/gh/XuehaiPan/359/head 2025-07-24T03:47:25.7677430Z * [new branch] gh/XuehaiPan/359/orig -> origin/gh/XuehaiPan/359/orig 2025-07-24T03:47:25.7677919Z * [new branch] gh/XuehaiPan/360/base -> origin/gh/XuehaiPan/360/base 2025-07-24T03:47:25.7678425Z * [new branch] gh/XuehaiPan/360/head -> origin/gh/XuehaiPan/360/head 2025-07-24T03:47:25.7678923Z * [new branch] gh/XuehaiPan/360/orig -> origin/gh/XuehaiPan/360/orig 2025-07-24T03:47:25.8153467Z * [new branch] gh/XuehaiPan/361/base -> origin/gh/XuehaiPan/361/base 2025-07-24T03:47:25.8154099Z * [new branch] gh/XuehaiPan/361/head -> origin/gh/XuehaiPan/361/head 2025-07-24T03:47:25.8154618Z * [new branch] gh/XuehaiPan/361/orig -> origin/gh/XuehaiPan/361/orig 2025-07-24T03:47:25.8155144Z * [new branch] gh/XuehaiPan/362/base -> origin/gh/XuehaiPan/362/base 2025-07-24T03:47:25.8155639Z * [new branch] gh/XuehaiPan/362/head -> origin/gh/XuehaiPan/362/head 2025-07-24T03:47:25.8156140Z * [new branch] gh/XuehaiPan/362/orig -> origin/gh/XuehaiPan/362/orig 2025-07-24T03:47:25.8156640Z * [new branch] gh/XuehaiPan/363/base -> origin/gh/XuehaiPan/363/base 2025-07-24T03:47:25.8157809Z * [new branch] gh/XuehaiPan/363/head -> origin/gh/XuehaiPan/363/head 2025-07-24T03:47:25.8158320Z * [new branch] gh/XuehaiPan/363/orig -> origin/gh/XuehaiPan/363/orig 2025-07-24T03:47:25.8158840Z * [new branch] gh/XuehaiPan/364/base -> origin/gh/XuehaiPan/364/base 2025-07-24T03:47:25.8159415Z * [new branch] gh/XuehaiPan/364/head -> origin/gh/XuehaiPan/364/head 2025-07-24T03:47:25.8160019Z * [new branch] gh/XuehaiPan/364/orig -> origin/gh/XuehaiPan/364/orig 2025-07-24T03:47:25.8160571Z * [new branch] gh/XuehaiPan/365/base -> origin/gh/XuehaiPan/365/base 2025-07-24T03:47:25.8161089Z * [new branch] gh/XuehaiPan/365/head -> origin/gh/XuehaiPan/365/head 2025-07-24T03:47:25.8161591Z * [new branch] gh/XuehaiPan/365/orig -> origin/gh/XuehaiPan/365/orig 2025-07-24T03:47:25.8162103Z * [new branch] gh/XuehaiPan/366/base -> origin/gh/XuehaiPan/366/base 2025-07-24T03:47:25.8162617Z * [new branch] gh/XuehaiPan/366/head -> origin/gh/XuehaiPan/366/head 2025-07-24T03:47:25.8163114Z * [new branch] gh/XuehaiPan/367/base -> origin/gh/XuehaiPan/367/base 2025-07-24T03:47:25.8163614Z * [new branch] gh/XuehaiPan/367/head -> origin/gh/XuehaiPan/367/head 2025-07-24T03:47:25.8164100Z * [new branch] gh/XuehaiPan/368/base -> origin/gh/XuehaiPan/368/base 2025-07-24T03:47:25.8164599Z * [new branch] gh/XuehaiPan/368/head -> origin/gh/XuehaiPan/368/head 2025-07-24T03:47:25.8165091Z * [new branch] gh/XuehaiPan/368/orig -> origin/gh/XuehaiPan/368/orig 2025-07-24T03:47:25.8165638Z * [new branch] gh/XuehaiPan/369/base -> origin/gh/XuehaiPan/369/base 2025-07-24T03:47:25.8166201Z * [new branch] gh/XuehaiPan/369/head -> origin/gh/XuehaiPan/369/head 2025-07-24T03:47:25.8166753Z * [new branch] gh/XuehaiPan/369/orig -> origin/gh/XuehaiPan/369/orig 2025-07-24T03:47:25.8167360Z * [new branch] gh/XuehaiPan/370/base -> origin/gh/XuehaiPan/370/base 2025-07-24T03:47:25.8167902Z * [new branch] gh/XuehaiPan/370/head -> origin/gh/XuehaiPan/370/head 2025-07-24T03:47:25.8168501Z * [new branch] gh/XuehaiPan/370/orig -> origin/gh/XuehaiPan/370/orig 2025-07-24T03:47:25.8169171Z * [new branch] gh/XuehaiPan/371/base -> origin/gh/XuehaiPan/371/base 2025-07-24T03:47:25.8169740Z * [new branch] gh/XuehaiPan/371/head -> origin/gh/XuehaiPan/371/head 2025-07-24T03:47:25.8170320Z * [new branch] gh/XuehaiPan/371/orig -> origin/gh/XuehaiPan/371/orig 2025-07-24T03:47:25.8170882Z * [new branch] gh/XuehaiPan/372/base -> origin/gh/XuehaiPan/372/base 2025-07-24T03:47:25.8171443Z * [new branch] gh/XuehaiPan/372/head -> origin/gh/XuehaiPan/372/head 2025-07-24T03:47:25.8172046Z * [new branch] gh/XuehaiPan/372/orig -> origin/gh/XuehaiPan/372/orig 2025-07-24T03:47:25.8172590Z * [new branch] gh/XuehaiPan/373/base -> origin/gh/XuehaiPan/373/base 2025-07-24T03:47:25.8173190Z * [new branch] gh/XuehaiPan/373/head -> origin/gh/XuehaiPan/373/head 2025-07-24T03:47:25.8173732Z * [new branch] gh/XuehaiPan/373/orig -> origin/gh/XuehaiPan/373/orig 2025-07-24T03:47:25.8174352Z * [new branch] gh/ZhiweiYan-96/39/base -> origin/gh/ZhiweiYan-96/39/base 2025-07-24T03:47:25.8174927Z * [new branch] gh/ZhiweiYan-96/39/head -> origin/gh/ZhiweiYan-96/39/head 2025-07-24T03:47:25.8175537Z * [new branch] gh/ZhiweiYan-96/39/orig -> origin/gh/ZhiweiYan-96/39/orig 2025-07-24T03:47:25.8176057Z * [new branch] gh/ZhiweiYan-96/44/base -> origin/gh/ZhiweiYan-96/44/base 2025-07-24T03:47:25.8176776Z * [new branch] gh/ZhiweiYan-96/44/head -> origin/gh/ZhiweiYan-96/44/head 2025-07-24T03:47:25.8177312Z * [new branch] gh/ZhiweiYan-96/45/base -> origin/gh/ZhiweiYan-96/45/base 2025-07-24T03:47:25.8177838Z * [new branch] gh/ZhiweiYan-96/45/head -> origin/gh/ZhiweiYan-96/45/head 2025-07-24T03:47:25.8178357Z * [new branch] gh/ZhiweiYan-96/49/base -> origin/gh/ZhiweiYan-96/49/base 2025-07-24T03:47:25.8178883Z * [new branch] gh/ZhiweiYan-96/49/head -> origin/gh/ZhiweiYan-96/49/head 2025-07-24T03:47:25.8601503Z * [new branch] gh/ZhiweiYan-96/62/base -> origin/gh/ZhiweiYan-96/62/base 2025-07-24T03:47:25.8602103Z * [new branch] gh/ZhiweiYan-96/62/head -> origin/gh/ZhiweiYan-96/62/head 2025-07-24T03:47:25.8602641Z * [new branch] gh/ZhiweiYan-96/64/base -> origin/gh/ZhiweiYan-96/64/base 2025-07-24T03:47:25.8603170Z * [new branch] gh/ZhiweiYan-96/64/head -> origin/gh/ZhiweiYan-96/64/head 2025-07-24T03:47:25.8603709Z * [new branch] gh/ZhiweiYan-96/64/orig -> origin/gh/ZhiweiYan-96/64/orig 2025-07-24T03:47:25.8604222Z * [new branch] gh/aakhundov/1/base -> origin/gh/aakhundov/1/base 2025-07-24T03:47:25.8604715Z * [new branch] gh/aakhundov/1/head -> origin/gh/aakhundov/1/head 2025-07-24T03:47:25.8605199Z * [new branch] gh/aakhundov/2/base -> origin/gh/aakhundov/2/base 2025-07-24T03:47:25.8605678Z * [new branch] gh/aakhundov/2/head -> origin/gh/aakhundov/2/head 2025-07-24T03:47:25.8606181Z * [new branch] gh/aditew01/openblas -> origin/gh/aditew01/openblas 2025-07-24T03:47:25.8606721Z * [new branch] gh/aditew01/sbgemm -> origin/gh/aditew01/sbgemm 2025-07-24T03:47:25.8607263Z * [new branch] gh/aditew01/vecbf16 -> origin/gh/aditew01/vecbf16 2025-07-24T03:47:25.8607748Z * [new branch] gh/albanD/3/base -> origin/gh/albanD/3/base 2025-07-24T03:47:25.8608201Z * [new branch] gh/albanD/3/head -> origin/gh/albanD/3/head 2025-07-24T03:47:25.8608748Z * [new branch] gh/albanD/3/orig -> origin/gh/albanD/3/orig 2025-07-24T03:47:25.8609446Z * [new branch] gh/alexbrauckmann/paddedtensor_faketensor_init -> origin/gh/alexbrauckmann/paddedtensor_faketensor_init 2025-07-24T03:47:25.8610259Z * [new branch] gh/alexbrauckmann/paddedtensor_init -> origin/gh/alexbrauckmann/paddedtensor_init 2025-07-24T03:47:25.8611021Z * [new branch] gh/alexbrauckmann/paddedtensor_meta_init -> origin/gh/alexbrauckmann/paddedtensor_meta_init 2025-07-24T03:47:25.8611681Z * [new branch] gh/alexsamardzic/5/base -> origin/gh/alexsamardzic/5/base 2025-07-24T03:47:25.8612220Z * [new branch] gh/alexsamardzic/5/head -> origin/gh/alexsamardzic/5/head 2025-07-24T03:47:25.8612794Z * [new branch] gh/alexsamardzic/5/orig -> origin/gh/alexsamardzic/5/orig 2025-07-24T03:47:25.8613378Z * [new branch] gh/alexsamardzic/6/base -> origin/gh/alexsamardzic/6/base 2025-07-24T03:47:25.8613905Z * [new branch] gh/alexsamardzic/6/head -> origin/gh/alexsamardzic/6/head 2025-07-24T03:47:25.8614425Z * [new branch] gh/alexsamardzic/6/orig -> origin/gh/alexsamardzic/6/orig 2025-07-24T03:47:25.8614956Z * [new branch] gh/alexsamardzic/7/base -> origin/gh/alexsamardzic/7/base 2025-07-24T03:47:25.8615473Z * [new branch] gh/alexsamardzic/7/head -> origin/gh/alexsamardzic/7/head 2025-07-24T03:47:25.8616005Z * [new branch] gh/alexsamardzic/7/orig -> origin/gh/alexsamardzic/7/orig 2025-07-24T03:47:25.8616513Z * [new branch] gh/amjames/18/base -> origin/gh/amjames/18/base 2025-07-24T03:47:25.8617691Z * [new branch] gh/amjames/18/head -> origin/gh/amjames/18/head 2025-07-24T03:47:25.8618291Z * [new branch] gh/amjames/18/orig -> origin/gh/amjames/18/orig 2025-07-24T03:47:25.8618852Z * [new branch] gh/andrewor14/35/base -> origin/gh/andrewor14/35/base 2025-07-24T03:47:25.8619408Z * [new branch] gh/andrewor14/35/head -> origin/gh/andrewor14/35/head 2025-07-24T03:47:25.8619904Z * [new branch] gh/andrewor14/35/orig -> origin/gh/andrewor14/35/orig 2025-07-24T03:47:25.8620402Z * [new branch] gh/andrewor14/50/base -> origin/gh/andrewor14/50/base 2025-07-24T03:47:25.8620907Z * [new branch] gh/andrewor14/50/head -> origin/gh/andrewor14/50/head 2025-07-24T03:47:25.8621393Z * [new branch] gh/andrewor14/50/orig -> origin/gh/andrewor14/50/orig 2025-07-24T03:47:25.8621898Z * [new branch] gh/andyanwang/1/base -> origin/gh/andyanwang/1/base 2025-07-24T03:47:25.8622395Z * [new branch] gh/andyanwang/1/head -> origin/gh/andyanwang/1/head 2025-07-24T03:47:25.8622903Z * [new branch] gh/andyanwang/1/orig -> origin/gh/andyanwang/1/orig 2025-07-24T03:47:25.8623401Z * [new branch] gh/andyanwang/13/base -> origin/gh/andyanwang/13/base 2025-07-24T03:47:25.8623899Z * [new branch] gh/andyanwang/13/head -> origin/gh/andyanwang/13/head 2025-07-24T03:47:25.8624405Z * [new branch] gh/andyanwang/13/orig -> origin/gh/andyanwang/13/orig 2025-07-24T03:47:25.8624942Z * [new branch] gh/andyanwang/2/base -> origin/gh/andyanwang/2/base 2025-07-24T03:47:25.8625482Z * [new branch] gh/andyanwang/2/head -> origin/gh/andyanwang/2/head 2025-07-24T03:47:25.8625975Z * [new branch] gh/andyanwang/2/orig -> origin/gh/andyanwang/2/orig 2025-07-24T03:47:25.9076375Z * [new branch] gh/andyanwang/28/base -> origin/gh/andyanwang/28/base 2025-07-24T03:47:25.9076974Z * [new branch] gh/andyanwang/28/head -> origin/gh/andyanwang/28/head 2025-07-24T03:47:25.9077488Z * [new branch] gh/andyanwang/28/orig -> origin/gh/andyanwang/28/orig 2025-07-24T03:47:25.9078023Z * [new branch] gh/andyanwang/29/base -> origin/gh/andyanwang/29/base 2025-07-24T03:47:25.9078585Z * [new branch] gh/andyanwang/29/head -> origin/gh/andyanwang/29/head 2025-07-24T03:47:25.9079132Z * [new branch] gh/andyanwang/29/orig -> origin/gh/andyanwang/29/orig 2025-07-24T03:47:25.9079641Z * [new branch] gh/andyanwang/3/base -> origin/gh/andyanwang/3/base 2025-07-24T03:47:25.9080133Z * [new branch] gh/andyanwang/3/head -> origin/gh/andyanwang/3/head 2025-07-24T03:47:25.9080631Z * [new branch] gh/andyanwang/3/orig -> origin/gh/andyanwang/3/orig 2025-07-24T03:47:25.9081136Z * [new branch] gh/andyanwang/30/base -> origin/gh/andyanwang/30/base 2025-07-24T03:47:25.9081635Z * [new branch] gh/andyanwang/30/orig -> origin/gh/andyanwang/30/orig 2025-07-24T03:47:25.9082136Z * [new branch] gh/andyanwang/31/base -> origin/gh/andyanwang/31/base 2025-07-24T03:47:25.9082626Z * [new branch] gh/andyanwang/31/orig -> origin/gh/andyanwang/31/orig 2025-07-24T03:47:25.9083125Z * [new branch] gh/andyanwang/32/base -> origin/gh/andyanwang/32/base 2025-07-24T03:47:25.9083623Z * [new branch] gh/andyanwang/32/head -> origin/gh/andyanwang/32/head 2025-07-24T03:47:25.9084117Z * [new branch] gh/andyanwang/32/orig -> origin/gh/andyanwang/32/orig 2025-07-24T03:47:25.9084669Z * [new branch] gh/andyanwang/33/base -> origin/gh/andyanwang/33/base 2025-07-24T03:47:25.9085213Z * [new branch] gh/andyanwang/33/head -> origin/gh/andyanwang/33/head 2025-07-24T03:47:25.9085878Z * [new branch] gh/andyanwang/33/orig -> origin/gh/andyanwang/33/orig 2025-07-24T03:47:25.9086466Z * [new branch] gh/andyanwang/34/base -> origin/gh/andyanwang/34/base 2025-07-24T03:47:25.9086960Z * [new branch] gh/andyanwang/34/head -> origin/gh/andyanwang/34/head 2025-07-24T03:47:25.9087466Z * [new branch] gh/andyanwang/34/orig -> origin/gh/andyanwang/34/orig 2025-07-24T03:47:25.9087957Z * [new branch] gh/andyanwang/4/base -> origin/gh/andyanwang/4/base 2025-07-24T03:47:25.9088453Z * [new branch] gh/andyanwang/4/head -> origin/gh/andyanwang/4/head 2025-07-24T03:47:25.9089033Z * [new branch] gh/andyanwang/4/orig -> origin/gh/andyanwang/4/orig 2025-07-24T03:47:25.9089519Z * [new branch] gh/angelayi/100/base -> origin/gh/angelayi/100/base 2025-07-24T03:47:25.9090012Z * [new branch] gh/angelayi/100/head -> origin/gh/angelayi/100/head 2025-07-24T03:47:25.9090498Z * [new branch] gh/angelayi/100/orig -> origin/gh/angelayi/100/orig 2025-07-24T03:47:25.9091041Z * [new branch] gh/angelayi/101/base -> origin/gh/angelayi/101/base 2025-07-24T03:47:25.9091571Z * [new branch] gh/angelayi/101/head -> origin/gh/angelayi/101/head 2025-07-24T03:47:25.9092053Z * [new branch] gh/angelayi/101/orig -> origin/gh/angelayi/101/orig 2025-07-24T03:47:25.9092534Z * [new branch] gh/angelayi/102/base -> origin/gh/angelayi/102/base 2025-07-24T03:47:25.9093016Z * [new branch] gh/angelayi/102/head -> origin/gh/angelayi/102/head 2025-07-24T03:47:25.9093499Z * [new branch] gh/angelayi/102/orig -> origin/gh/angelayi/102/orig 2025-07-24T03:47:25.9093976Z * [new branch] gh/angelayi/103/base -> origin/gh/angelayi/103/base 2025-07-24T03:47:25.9094461Z * [new branch] gh/angelayi/103/head -> origin/gh/angelayi/103/head 2025-07-24T03:47:25.9094946Z * [new branch] gh/angelayi/103/orig -> origin/gh/angelayi/103/orig 2025-07-24T03:47:25.9095424Z * [new branch] gh/angelayi/104/base -> origin/gh/angelayi/104/base 2025-07-24T03:47:25.9095907Z * [new branch] gh/angelayi/104/head -> origin/gh/angelayi/104/head 2025-07-24T03:47:25.9096383Z * [new branch] gh/angelayi/104/orig -> origin/gh/angelayi/104/orig 2025-07-24T03:47:25.9096917Z * [new branch] gh/angelayi/105/base -> origin/gh/angelayi/105/base 2025-07-24T03:47:25.9097442Z * [new branch] gh/angelayi/105/head -> origin/gh/angelayi/105/head 2025-07-24T03:47:25.9097917Z * [new branch] gh/angelayi/105/orig -> origin/gh/angelayi/105/orig 2025-07-24T03:47:25.9098407Z * [new branch] gh/angelayi/82/base -> origin/gh/angelayi/82/base 2025-07-24T03:47:25.9098893Z * [new branch] gh/angelayi/82/head -> origin/gh/angelayi/82/head 2025-07-24T03:47:25.9099375Z * [new branch] gh/angelayi/82/orig -> origin/gh/angelayi/82/orig 2025-07-24T03:47:25.9521081Z * [new branch] gh/angelayi/97/base -> origin/gh/angelayi/97/base 2025-07-24T03:47:25.9521621Z * [new branch] gh/angelayi/97/head -> origin/gh/angelayi/97/head 2025-07-24T03:47:25.9522134Z * [new branch] gh/angelayi/97/orig -> origin/gh/angelayi/97/orig 2025-07-24T03:47:25.9522612Z * [new branch] gh/ani300/1/base -> origin/gh/ani300/1/base 2025-07-24T03:47:25.9523067Z * [new branch] gh/ani300/1/head -> origin/gh/ani300/1/head 2025-07-24T03:47:25.9523522Z * [new branch] gh/ani300/1/orig -> origin/gh/ani300/1/orig 2025-07-24T03:47:25.9524005Z * [new branch] gh/anijain2305/162/base -> origin/gh/anijain2305/162/base 2025-07-24T03:47:25.9524849Z * [new branch] gh/anijain2305/162/head -> origin/gh/anijain2305/162/head 2025-07-24T03:47:25.9525358Z * [new branch] gh/anijain2305/710/base -> origin/gh/anijain2305/710/base 2025-07-24T03:47:25.9525883Z * [new branch] gh/anijain2305/710/head -> origin/gh/anijain2305/710/head 2025-07-24T03:47:25.9526406Z * [new branch] gh/anijain2305/710/orig -> origin/gh/anijain2305/710/orig 2025-07-24T03:47:25.9526916Z * [new branch] gh/anijain2305/753/base -> origin/gh/anijain2305/753/base 2025-07-24T03:47:25.9527432Z * [new branch] gh/anijain2305/753/head -> origin/gh/anijain2305/753/head 2025-07-24T03:47:25.9527941Z * [new branch] gh/anijain2305/753/orig -> origin/gh/anijain2305/753/orig 2025-07-24T03:47:25.9528456Z * [new branch] gh/anijain2305/766/base -> origin/gh/anijain2305/766/base 2025-07-24T03:47:25.9529038Z * [new branch] gh/anijain2305/766/head -> origin/gh/anijain2305/766/head 2025-07-24T03:47:25.9529548Z * [new branch] gh/anijain2305/766/orig -> origin/gh/anijain2305/766/orig 2025-07-24T03:47:25.9530063Z * [new branch] gh/anijain2305/790/base -> origin/gh/anijain2305/790/base 2025-07-24T03:47:25.9530570Z * [new branch] gh/anijain2305/790/head -> origin/gh/anijain2305/790/head 2025-07-24T03:47:25.9531086Z * [new branch] gh/anijain2305/790/orig -> origin/gh/anijain2305/790/orig 2025-07-24T03:47:25.9531596Z * [new branch] gh/anijain2305/792/base -> origin/gh/anijain2305/792/base 2025-07-24T03:47:25.9532094Z * [new branch] gh/anijain2305/792/head -> origin/gh/anijain2305/792/head 2025-07-24T03:47:25.9532599Z * [new branch] gh/anijain2305/792/orig -> origin/gh/anijain2305/792/orig 2025-07-24T03:47:25.9533099Z * [new branch] gh/anijain2305/794/base -> origin/gh/anijain2305/794/base 2025-07-24T03:47:25.9533623Z * [new branch] gh/anijain2305/794/head -> origin/gh/anijain2305/794/head 2025-07-24T03:47:25.9534128Z * [new branch] gh/anijain2305/794/orig -> origin/gh/anijain2305/794/orig 2025-07-24T03:47:25.9534634Z * [new branch] gh/anijain2305/803/base -> origin/gh/anijain2305/803/base 2025-07-24T03:47:25.9535149Z * [new branch] gh/anijain2305/803/head -> origin/gh/anijain2305/803/head 2025-07-24T03:47:25.9535649Z * [new branch] gh/anijain2305/803/orig -> origin/gh/anijain2305/803/orig 2025-07-24T03:47:25.9536163Z * [new branch] gh/anijain2305/804/base -> origin/gh/anijain2305/804/base 2025-07-24T03:47:25.9536664Z * [new branch] gh/anijain2305/804/head -> origin/gh/anijain2305/804/head 2025-07-24T03:47:25.9537173Z * [new branch] gh/anijain2305/804/orig -> origin/gh/anijain2305/804/orig 2025-07-24T03:47:25.9537696Z * [new branch] gh/anijain2305/805/base -> origin/gh/anijain2305/805/base 2025-07-24T03:47:25.9538204Z * [new branch] gh/anijain2305/805/head -> origin/gh/anijain2305/805/head 2025-07-24T03:47:25.9538717Z * [new branch] gh/anijain2305/805/orig -> origin/gh/anijain2305/805/orig 2025-07-24T03:47:25.9539221Z * [new branch] gh/anijain2305/806/base -> origin/gh/anijain2305/806/base 2025-07-24T03:47:25.9539739Z * [new branch] gh/anijain2305/806/head -> origin/gh/anijain2305/806/head 2025-07-24T03:47:25.9540242Z * [new branch] gh/anijain2305/806/orig -> origin/gh/anijain2305/806/orig 2025-07-24T03:47:25.9540746Z * [new branch] gh/anijain2305/807/base -> origin/gh/anijain2305/807/base 2025-07-24T03:47:25.9541256Z * [new branch] gh/anijain2305/807/head -> origin/gh/anijain2305/807/head 2025-07-24T03:47:25.9541760Z * [new branch] gh/anijain2305/807/orig -> origin/gh/anijain2305/807/orig 2025-07-24T03:47:25.9542496Z * [new branch] gh/anijain2305/808/base -> origin/gh/anijain2305/808/base 2025-07-24T03:47:25.9543016Z * [new branch] gh/anijain2305/808/head -> origin/gh/anijain2305/808/head 2025-07-24T03:47:25.9543526Z * [new branch] gh/anijain2305/808/orig -> origin/gh/anijain2305/808/orig 2025-07-24T03:47:25.9544047Z * [new branch] gh/anijain2305/809/base -> origin/gh/anijain2305/809/base 2025-07-24T03:47:25.9544558Z * [new branch] gh/anijain2305/809/head -> origin/gh/anijain2305/809/head 2025-07-24T03:47:25.9937588Z * [new branch] gh/anijain2305/809/orig -> origin/gh/anijain2305/809/orig 2025-07-24T03:47:25.9938170Z * [new branch] gh/anijain2305/810/base -> origin/gh/anijain2305/810/base 2025-07-24T03:47:25.9938694Z * [new branch] gh/anijain2305/810/head -> origin/gh/anijain2305/810/head 2025-07-24T03:47:25.9939230Z * [new branch] gh/anijain2305/810/orig -> origin/gh/anijain2305/810/orig 2025-07-24T03:47:25.9939762Z * [new branch] gh/anijain2305/811/base -> origin/gh/anijain2305/811/base 2025-07-24T03:47:25.9940283Z * [new branch] gh/anijain2305/811/head -> origin/gh/anijain2305/811/head 2025-07-24T03:47:25.9940802Z * [new branch] gh/anijain2305/811/orig -> origin/gh/anijain2305/811/orig 2025-07-24T03:47:25.9941304Z * [new branch] gh/anijain2305/812/base -> origin/gh/anijain2305/812/base 2025-07-24T03:47:25.9941825Z * [new branch] gh/anijain2305/812/head -> origin/gh/anijain2305/812/head 2025-07-24T03:47:25.9942325Z * [new branch] gh/anijain2305/812/orig -> origin/gh/anijain2305/812/orig 2025-07-24T03:47:25.9942895Z * [new branch] gh/anijain2305/813/base -> origin/gh/anijain2305/813/base 2025-07-24T03:47:25.9943464Z * [new branch] gh/anijain2305/813/head -> origin/gh/anijain2305/813/head 2025-07-24T03:47:25.9943980Z * [new branch] gh/anijain2305/813/orig -> origin/gh/anijain2305/813/orig 2025-07-24T03:47:25.9944487Z * [new branch] gh/anijain2305/814/base -> origin/gh/anijain2305/814/base 2025-07-24T03:47:25.9944990Z * [new branch] gh/anijain2305/814/head -> origin/gh/anijain2305/814/head 2025-07-24T03:47:25.9945504Z * [new branch] gh/anijain2305/814/orig -> origin/gh/anijain2305/814/orig 2025-07-24T03:47:25.9946024Z * [new branch] gh/anijain2305/815/base -> origin/gh/anijain2305/815/base 2025-07-24T03:47:25.9946528Z * [new branch] gh/anijain2305/815/head -> origin/gh/anijain2305/815/head 2025-07-24T03:47:25.9947040Z * [new branch] gh/anijain2305/815/orig -> origin/gh/anijain2305/815/orig 2025-07-24T03:47:25.9947545Z * [new branch] gh/anijain2305/816/base -> origin/gh/anijain2305/816/base 2025-07-24T03:47:25.9948080Z * [new branch] gh/anijain2305/816/head -> origin/gh/anijain2305/816/head 2025-07-24T03:47:25.9948599Z * [new branch] gh/anijain2305/817/base -> origin/gh/anijain2305/817/base 2025-07-24T03:47:25.9949104Z * [new branch] gh/anijain2305/817/head -> origin/gh/anijain2305/817/head 2025-07-24T03:47:25.9949616Z * [new branch] gh/anijain2305/817/orig -> origin/gh/anijain2305/817/orig 2025-07-24T03:47:25.9950118Z * [new branch] gh/anijain2305/818/base -> origin/gh/anijain2305/818/base 2025-07-24T03:47:25.9950635Z * [new branch] gh/anijain2305/818/head -> origin/gh/anijain2305/818/head 2025-07-24T03:47:25.9951150Z * [new branch] gh/anijain2305/818/orig -> origin/gh/anijain2305/818/orig 2025-07-24T03:47:25.9951650Z * [new branch] gh/anijain2305/819/base -> origin/gh/anijain2305/819/base 2025-07-24T03:47:25.9952324Z * [new branch] gh/anijain2305/819/head -> origin/gh/anijain2305/819/head 2025-07-24T03:47:25.9952918Z * [new branch] gh/anijain2305/819/orig -> origin/gh/anijain2305/819/orig 2025-07-24T03:47:25.9953436Z * [new branch] gh/anijain2305/820/base -> origin/gh/anijain2305/820/base 2025-07-24T03:47:25.9953962Z * [new branch] gh/anijain2305/820/head -> origin/gh/anijain2305/820/head 2025-07-24T03:47:25.9954462Z * [new branch] gh/anijain2305/820/orig -> origin/gh/anijain2305/820/orig 2025-07-24T03:47:25.9954972Z * [new branch] gh/anijain2305/821/base -> origin/gh/anijain2305/821/base 2025-07-24T03:47:25.9955476Z * [new branch] gh/anijain2305/821/head -> origin/gh/anijain2305/821/head 2025-07-24T03:47:25.9955992Z * [new branch] gh/anijain2305/821/orig -> origin/gh/anijain2305/821/orig 2025-07-24T03:47:25.9956508Z * [new branch] gh/anijain2305/822/base -> origin/gh/anijain2305/822/base 2025-07-24T03:47:25.9957014Z * [new branch] gh/anijain2305/822/head -> origin/gh/anijain2305/822/head 2025-07-24T03:47:25.9957528Z * [new branch] gh/anijain2305/822/orig -> origin/gh/anijain2305/822/orig 2025-07-24T03:47:25.9958030Z * [new branch] gh/anijain2305/823/base -> origin/gh/anijain2305/823/base 2025-07-24T03:47:25.9958535Z * [new branch] gh/anijain2305/823/head -> origin/gh/anijain2305/823/head 2025-07-24T03:47:25.9959045Z * [new branch] gh/anijain2305/823/orig -> origin/gh/anijain2305/823/orig 2025-07-24T03:47:25.9959545Z * [new branch] gh/anijain2305/824/base -> origin/gh/anijain2305/824/base 2025-07-24T03:47:25.9960052Z * [new branch] gh/anijain2305/824/head -> origin/gh/anijain2305/824/head 2025-07-24T03:47:25.9960549Z * [new branch] gh/anijain2305/824/orig -> origin/gh/anijain2305/824/orig 2025-07-24T03:47:26.0391217Z * [new branch] gh/anijain2305/825/base -> origin/gh/anijain2305/825/base 2025-07-24T03:47:26.0391762Z * [new branch] gh/anijain2305/825/head -> origin/gh/anijain2305/825/head 2025-07-24T03:47:26.0392275Z * [new branch] gh/anijain2305/825/orig -> origin/gh/anijain2305/825/orig 2025-07-24T03:47:26.0392795Z * [new branch] gh/anijain2305/826/base -> origin/gh/anijain2305/826/base 2025-07-24T03:47:26.0393300Z * [new branch] gh/anijain2305/826/head -> origin/gh/anijain2305/826/head 2025-07-24T03:47:26.0393816Z * [new branch] gh/anijain2305/826/orig -> origin/gh/anijain2305/826/orig 2025-07-24T03:47:26.0394319Z * [new branch] gh/anjali411/216/base -> origin/gh/anjali411/216/base 2025-07-24T03:47:26.0394806Z * [new branch] gh/anjali411/216/head -> origin/gh/anjali411/216/head 2025-07-24T03:47:26.0395311Z * [new branch] gh/anjali411/216/orig -> origin/gh/anjali411/216/orig 2025-07-24T03:47:26.0395824Z * [new branch] gh/ankitageorge/10/base -> origin/gh/ankitageorge/10/base 2025-07-24T03:47:26.0396366Z * [new branch] gh/ankitageorge/10/head -> origin/gh/ankitageorge/10/head 2025-07-24T03:47:26.0396885Z * [new branch] gh/ankitageorge/10/orig -> origin/gh/ankitageorge/10/orig 2025-07-24T03:47:26.0397418Z * [new branch] gh/ankitageorge/11/base -> origin/gh/ankitageorge/11/base 2025-07-24T03:47:26.0397960Z * [new branch] gh/ankitageorge/11/head -> origin/gh/ankitageorge/11/head 2025-07-24T03:47:26.0398476Z * [new branch] gh/ankitageorge/11/orig -> origin/gh/ankitageorge/11/orig 2025-07-24T03:47:26.0398998Z * [new branch] gh/ankitageorge/12/base -> origin/gh/ankitageorge/12/base 2025-07-24T03:47:26.0399523Z * [new branch] gh/ankitageorge/12/head -> origin/gh/ankitageorge/12/head 2025-07-24T03:47:26.0400173Z * [new branch] gh/ankitageorge/12/orig -> origin/gh/ankitageorge/12/orig 2025-07-24T03:47:26.0400810Z * [new branch] gh/ankitageorge/13/base -> origin/gh/ankitageorge/13/base 2025-07-24T03:47:26.0401338Z * [new branch] gh/ankitageorge/13/head -> origin/gh/ankitageorge/13/head 2025-07-24T03:47:26.0401866Z * [new branch] gh/ankitageorge/13/orig -> origin/gh/ankitageorge/13/orig 2025-07-24T03:47:26.0402391Z * [new branch] gh/ankitageorge/5/base -> origin/gh/ankitageorge/5/base 2025-07-24T03:47:26.0402919Z * [new branch] gh/ankitageorge/5/head -> origin/gh/ankitageorge/5/head 2025-07-24T03:47:26.0403442Z * [new branch] gh/ankitageorge/5/orig -> origin/gh/ankitageorge/5/orig 2025-07-24T03:47:26.0403951Z * [new branch] gh/ankitageorge/7/base -> origin/gh/ankitageorge/7/base 2025-07-24T03:47:26.0404465Z * [new branch] gh/ankitageorge/7/head -> origin/gh/ankitageorge/7/head 2025-07-24T03:47:26.0404979Z * [new branch] gh/ankitageorge/7/orig -> origin/gh/ankitageorge/7/orig 2025-07-24T03:47:26.0405494Z * [new branch] gh/ankitageorge/8/base -> origin/gh/ankitageorge/8/base 2025-07-24T03:47:26.0406005Z * [new branch] gh/ankitageorge/8/head -> origin/gh/ankitageorge/8/head 2025-07-24T03:47:26.0406513Z * [new branch] gh/ankitageorge/8/orig -> origin/gh/ankitageorge/8/orig 2025-07-24T03:47:26.0407025Z * [new branch] gh/ankitageorge/9/base -> origin/gh/ankitageorge/9/base 2025-07-24T03:47:26.0407533Z * [new branch] gh/ankitageorge/9/head -> origin/gh/ankitageorge/9/head 2025-07-24T03:47:26.0408048Z * [new branch] gh/ankitageorge/9/orig -> origin/gh/ankitageorge/9/orig 2025-07-24T03:47:26.0408552Z * [new branch] gh/anshul-si/1/base -> origin/gh/anshul-si/1/base 2025-07-24T03:47:26.0409113Z * [new branch] gh/anshul-si/1/head -> origin/gh/anshul-si/1/head 2025-07-24T03:47:26.0409604Z * [new branch] gh/anshul-si/2/base -> origin/gh/anshul-si/2/base 2025-07-24T03:47:26.0410079Z * [new branch] gh/anshul-si/2/head -> origin/gh/anshul-si/2/head 2025-07-24T03:47:26.0410560Z * [new branch] gh/anshul-si/3/base -> origin/gh/anshul-si/3/base 2025-07-24T03:47:26.0411037Z * [new branch] gh/anshul-si/3/head -> origin/gh/anshul-si/3/head 2025-07-24T03:47:26.0411506Z * [new branch] gh/anshul-si/4/base -> origin/gh/anshul-si/4/base 2025-07-24T03:47:26.0411990Z * [new branch] gh/anshul-si/4/head -> origin/gh/anshul-si/4/head 2025-07-24T03:47:26.0412455Z * [new branch] gh/anshul-si/5/base -> origin/gh/anshul-si/5/base 2025-07-24T03:47:26.0412931Z * [new branch] gh/anshul-si/5/head -> origin/gh/anshul-si/5/head 2025-07-24T03:47:26.0413416Z * [new branch] gh/anshul-si/6/base -> origin/gh/anshul-si/6/base 2025-07-24T03:47:26.0413893Z * [new branch] gh/anshul-si/6/head -> origin/gh/anshul-si/6/head 2025-07-24T03:47:26.0864899Z * [new branch] gh/anshul-si/6/orig -> origin/gh/anshul-si/6/orig 2025-07-24T03:47:26.0865399Z * [new branch] gh/aorenste/132/base -> origin/gh/aorenste/132/base 2025-07-24T03:47:26.0865905Z * [new branch] gh/aorenste/132/head -> origin/gh/aorenste/132/head 2025-07-24T03:47:26.0866403Z * [new branch] gh/aorenste/231/base -> origin/gh/aorenste/231/base 2025-07-24T03:47:26.0866889Z * [new branch] gh/aorenste/231/head -> origin/gh/aorenste/231/head 2025-07-24T03:47:26.0867389Z * [new branch] gh/aorenste/231/orig -> origin/gh/aorenste/231/orig 2025-07-24T03:47:26.0867871Z * [new branch] gh/aorenste/234/base -> origin/gh/aorenste/234/base 2025-07-24T03:47:26.0868508Z * [new branch] gh/aorenste/234/head -> origin/gh/aorenste/234/head 2025-07-24T03:47:26.0869094Z * [new branch] gh/aorenste/234/orig -> origin/gh/aorenste/234/orig 2025-07-24T03:47:26.0869575Z * [new branch] gh/aorenste/235/base -> origin/gh/aorenste/235/base 2025-07-24T03:47:26.0870065Z * [new branch] gh/aorenste/235/head -> origin/gh/aorenste/235/head 2025-07-24T03:47:26.0870546Z * [new branch] gh/aorenste/235/orig -> origin/gh/aorenste/235/orig 2025-07-24T03:47:26.0871045Z * [new branch] gh/aorenste/236/base -> origin/gh/aorenste/236/base 2025-07-24T03:47:26.0871524Z * [new branch] gh/aorenste/236/head -> origin/gh/aorenste/236/head 2025-07-24T03:47:26.0872015Z * [new branch] gh/aorenste/236/orig -> origin/gh/aorenste/236/orig 2025-07-24T03:47:26.0872507Z * [new branch] gh/aorenste/237/base -> origin/gh/aorenste/237/base 2025-07-24T03:47:26.0872993Z * [new branch] gh/aorenste/237/head -> origin/gh/aorenste/237/head 2025-07-24T03:47:26.0873479Z * [new branch] gh/aorenste/237/orig -> origin/gh/aorenste/237/orig 2025-07-24T03:47:26.0873958Z * [new branch] gh/bdhirsh/647/base -> origin/gh/bdhirsh/647/base 2025-07-24T03:47:26.0874448Z * [new branch] gh/bdhirsh/647/head -> origin/gh/bdhirsh/647/head 2025-07-24T03:47:26.0874931Z * [new branch] gh/bdhirsh/647/orig -> origin/gh/bdhirsh/647/orig 2025-07-24T03:47:26.0875406Z * [new branch] gh/bdhirsh/650/base -> origin/gh/bdhirsh/650/base 2025-07-24T03:47:26.0902091Z * [new branch] gh/bdhirsh/650/head -> origin/gh/bdhirsh/650/head 2025-07-24T03:47:26.0902625Z * [new branch] gh/bdhirsh/650/orig -> origin/gh/bdhirsh/650/orig 2025-07-24T03:47:26.0903135Z * [new branch] gh/bdhirsh/651/base -> origin/gh/bdhirsh/651/base 2025-07-24T03:47:26.0903636Z * [new branch] gh/bdhirsh/651/head -> origin/gh/bdhirsh/651/head 2025-07-24T03:47:26.0904114Z * [new branch] gh/bdhirsh/651/orig -> origin/gh/bdhirsh/651/orig 2025-07-24T03:47:26.0904592Z * [new branch] gh/bdhirsh/652/base -> origin/gh/bdhirsh/652/base 2025-07-24T03:47:26.0905064Z * [new branch] gh/bdhirsh/652/head -> origin/gh/bdhirsh/652/head 2025-07-24T03:47:26.0905558Z * [new branch] gh/bdhirsh/652/orig -> origin/gh/bdhirsh/652/orig 2025-07-24T03:47:26.0906039Z * [new branch] gh/bdhirsh/656/base -> origin/gh/bdhirsh/656/base 2025-07-24T03:47:26.0906526Z * [new branch] gh/bdhirsh/656/head -> origin/gh/bdhirsh/656/head 2025-07-24T03:47:26.0907009Z * [new branch] gh/bdhirsh/657/base -> origin/gh/bdhirsh/657/base 2025-07-24T03:47:26.0907492Z * [new branch] gh/bdhirsh/657/head -> origin/gh/bdhirsh/657/head 2025-07-24T03:47:26.0907976Z * [new branch] gh/bdhirsh/659/base -> origin/gh/bdhirsh/659/base 2025-07-24T03:47:26.0908449Z * [new branch] gh/bdhirsh/659/head -> origin/gh/bdhirsh/659/head 2025-07-24T03:47:26.0908933Z * [new branch] gh/bdhirsh/659/orig -> origin/gh/bdhirsh/659/orig 2025-07-24T03:47:26.0909417Z * [new branch] gh/bdhirsh/663/base -> origin/gh/bdhirsh/663/base 2025-07-24T03:47:26.0909894Z * [new branch] gh/bdhirsh/663/head -> origin/gh/bdhirsh/663/head 2025-07-24T03:47:26.0910393Z * [new branch] gh/bdhirsh/663/orig -> origin/gh/bdhirsh/663/orig 2025-07-24T03:47:26.0910865Z * [new branch] gh/bdhirsh/665/base -> origin/gh/bdhirsh/665/base 2025-07-24T03:47:26.0911360Z * [new branch] gh/bdhirsh/665/head -> origin/gh/bdhirsh/665/head 2025-07-24T03:47:26.0912098Z * [new branch] gh/bdhirsh/665/orig -> origin/gh/bdhirsh/665/orig 2025-07-24T03:47:26.0912581Z * [new branch] gh/bdhirsh/666/base -> origin/gh/bdhirsh/666/base 2025-07-24T03:47:26.0913066Z * [new branch] gh/bdhirsh/666/head -> origin/gh/bdhirsh/666/head 2025-07-24T03:47:26.0913535Z * [new branch] gh/bdhirsh/666/orig -> origin/gh/bdhirsh/666/orig 2025-07-24T03:47:26.0914068Z * [new branch] gh/benjaminglass1/79/base -> origin/gh/benjaminglass1/79/base 2025-07-24T03:47:26.1286232Z * [new branch] gh/benjaminglass1/79/head -> origin/gh/benjaminglass1/79/head 2025-07-24T03:47:26.1286841Z * [new branch] gh/benjaminglass1/79/orig -> origin/gh/benjaminglass1/79/orig 2025-07-24T03:47:26.1287385Z * [new branch] gh/benjaminglass1/83/base -> origin/gh/benjaminglass1/83/base 2025-07-24T03:47:26.1287934Z * [new branch] gh/benjaminglass1/83/head -> origin/gh/benjaminglass1/83/head 2025-07-24T03:47:26.1288492Z * [new branch] gh/benjaminglass1/83/orig -> origin/gh/benjaminglass1/83/orig 2025-07-24T03:47:26.1289106Z * [new branch] gh/benjaminglass1/86/base -> origin/gh/benjaminglass1/86/base 2025-07-24T03:47:26.1289645Z * [new branch] gh/benjaminglass1/86/head -> origin/gh/benjaminglass1/86/head 2025-07-24T03:47:26.1290193Z * [new branch] gh/benjaminglass1/86/orig -> origin/gh/benjaminglass1/86/orig 2025-07-24T03:47:26.1290731Z * [new branch] gh/benjaminglass1/89/base -> origin/gh/benjaminglass1/89/base 2025-07-24T03:47:26.1291274Z * [new branch] gh/benjaminglass1/89/head -> origin/gh/benjaminglass1/89/head 2025-07-24T03:47:26.1291828Z * [new branch] gh/benjaminglass1/89/orig -> origin/gh/benjaminglass1/89/orig 2025-07-24T03:47:26.1292419Z * [new branch] gh/benjaminglass1/90/base -> origin/gh/benjaminglass1/90/base 2025-07-24T03:47:26.1293068Z * [new branch] gh/benjaminglass1/90/head -> origin/gh/benjaminglass1/90/head 2025-07-24T03:47:26.1293648Z * [new branch] gh/benjaminglass1/90/orig -> origin/gh/benjaminglass1/90/orig 2025-07-24T03:47:26.1294233Z * [new branch] gh/benjaminglass1/91/base -> origin/gh/benjaminglass1/91/base 2025-07-24T03:47:26.1294816Z * [new branch] gh/benjaminglass1/91/head -> origin/gh/benjaminglass1/91/head 2025-07-24T03:47:26.1295432Z * [new branch] gh/benjaminglass1/91/orig -> origin/gh/benjaminglass1/91/orig 2025-07-24T03:47:26.1296039Z * [new branch] gh/benjaminglass1/92/base -> origin/gh/benjaminglass1/92/base 2025-07-24T03:47:26.1296620Z * [new branch] gh/benjaminglass1/92/head -> origin/gh/benjaminglass1/92/head 2025-07-24T03:47:26.1297210Z * [new branch] gh/benjaminglass1/92/orig -> origin/gh/benjaminglass1/92/orig 2025-07-24T03:47:26.1297818Z * [new branch] gh/benjaminglass1/93/base -> origin/gh/benjaminglass1/93/base 2025-07-24T03:47:26.1298428Z * [new branch] gh/benjaminglass1/93/head -> origin/gh/benjaminglass1/93/head 2025-07-24T03:47:26.1299030Z * [new branch] gh/benjaminglass1/93/orig -> origin/gh/benjaminglass1/93/orig 2025-07-24T03:47:26.1299610Z * [new branch] gh/benjaminglass1/94/base -> origin/gh/benjaminglass1/94/base 2025-07-24T03:47:26.1300204Z * [new branch] gh/benjaminglass1/94/head -> origin/gh/benjaminglass1/94/head 2025-07-24T03:47:26.1300793Z * [new branch] gh/benjaminglass1/94/orig -> origin/gh/benjaminglass1/94/orig 2025-07-24T03:47:26.1301413Z * [new branch] gh/benjaminglass1/95/base -> origin/gh/benjaminglass1/95/base 2025-07-24T03:47:26.1302005Z * [new branch] gh/benjaminglass1/95/head -> origin/gh/benjaminglass1/95/head 2025-07-24T03:47:26.1302719Z * [new branch] gh/benjaminglass1/95/orig -> origin/gh/benjaminglass1/95/orig 2025-07-24T03:47:26.1303451Z * [new branch] gh/benjaminglass1/96/base -> origin/gh/benjaminglass1/96/base 2025-07-24T03:47:26.1304037Z * [new branch] gh/benjaminglass1/96/head -> origin/gh/benjaminglass1/96/head 2025-07-24T03:47:26.1304633Z * [new branch] gh/benjaminglass1/96/orig -> origin/gh/benjaminglass1/96/orig 2025-07-24T03:47:26.1305228Z * [new branch] gh/bobrenjc93/439/base -> origin/gh/bobrenjc93/439/base 2025-07-24T03:47:26.1305810Z * [new branch] gh/bobrenjc93/439/head -> origin/gh/bobrenjc93/439/head 2025-07-24T03:47:26.1306383Z * [new branch] gh/bobrenjc93/439/orig -> origin/gh/bobrenjc93/439/orig 2025-07-24T03:47:26.1306925Z * [new branch] gh/bobrenjc93/460/base -> origin/gh/bobrenjc93/460/base 2025-07-24T03:47:26.1307490Z * [new branch] gh/bobrenjc93/460/head -> origin/gh/bobrenjc93/460/head 2025-07-24T03:47:26.1308044Z * [new branch] gh/bobrenjc93/460/orig -> origin/gh/bobrenjc93/460/orig 2025-07-24T03:47:26.1308589Z * [new branch] gh/bobrenjc93/464/base -> origin/gh/bobrenjc93/464/base 2025-07-24T03:47:26.1309152Z * [new branch] gh/bobrenjc93/464/head -> origin/gh/bobrenjc93/464/head 2025-07-24T03:47:26.1309734Z * [new branch] gh/bobrenjc93/464/orig -> origin/gh/bobrenjc93/464/orig 2025-07-24T03:47:26.1310284Z * [new branch] gh/bobrenjc93/465/base -> origin/gh/bobrenjc93/465/base 2025-07-24T03:47:26.1310845Z * [new branch] gh/bobrenjc93/465/head -> origin/gh/bobrenjc93/465/head 2025-07-24T03:47:26.1311392Z * [new branch] gh/bobrenjc93/465/orig -> origin/gh/bobrenjc93/465/orig 2025-07-24T03:47:26.1311943Z * [new branch] gh/bobrenjc93/466/base -> origin/gh/bobrenjc93/466/base 2025-07-24T03:47:26.1742254Z * [new branch] gh/bobrenjc93/466/head -> origin/gh/bobrenjc93/466/head 2025-07-24T03:47:26.1742836Z * [new branch] gh/bobrenjc93/466/orig -> origin/gh/bobrenjc93/466/orig 2025-07-24T03:47:26.1743357Z * [new branch] gh/bobrenjc93/467/base -> origin/gh/bobrenjc93/467/base 2025-07-24T03:47:26.1743862Z * [new branch] gh/bobrenjc93/467/head -> origin/gh/bobrenjc93/467/head 2025-07-24T03:47:26.1744371Z * [new branch] gh/bobrenjc93/467/orig -> origin/gh/bobrenjc93/467/orig 2025-07-24T03:47:26.1744872Z * [new branch] gh/bobrenjc93/469/base -> origin/gh/bobrenjc93/469/base 2025-07-24T03:47:26.1745385Z * [new branch] gh/bobrenjc93/469/head -> origin/gh/bobrenjc93/469/head 2025-07-24T03:47:26.1745895Z * [new branch] gh/bobrenjc93/469/orig -> origin/gh/bobrenjc93/469/orig 2025-07-24T03:47:26.1746445Z * [new branch] gh/bobrenjc93/471/base -> origin/gh/bobrenjc93/471/base 2025-07-24T03:47:26.1746964Z * [new branch] gh/bobrenjc93/471/head -> origin/gh/bobrenjc93/471/head 2025-07-24T03:47:26.1747514Z * [new branch] gh/bobrenjc93/471/orig -> origin/gh/bobrenjc93/471/orig 2025-07-24T03:47:26.1748015Z * [new branch] gh/bobrenjc93/473/base -> origin/gh/bobrenjc93/473/base 2025-07-24T03:47:26.1748530Z * [new branch] gh/bobrenjc93/473/head -> origin/gh/bobrenjc93/473/head 2025-07-24T03:47:26.1749021Z * [new branch] gh/bobrenjc93/473/orig -> origin/gh/bobrenjc93/473/orig 2025-07-24T03:47:26.1749523Z * [new branch] gh/bobrenjc93/474/base -> origin/gh/bobrenjc93/474/base 2025-07-24T03:47:26.1750026Z * [new branch] gh/bobrenjc93/474/head -> origin/gh/bobrenjc93/474/head 2025-07-24T03:47:26.1750522Z * [new branch] gh/bobrenjc93/474/orig -> origin/gh/bobrenjc93/474/orig 2025-07-24T03:47:26.1751175Z * [new branch] gh/bobrenjc93/475/base -> origin/gh/bobrenjc93/475/base 2025-07-24T03:47:26.1751774Z * [new branch] gh/bobrenjc93/475/head -> origin/gh/bobrenjc93/475/head 2025-07-24T03:47:26.1752287Z * [new branch] gh/bobrenjc93/475/orig -> origin/gh/bobrenjc93/475/orig 2025-07-24T03:47:26.1752830Z * [new branch] gh/bobrenjc93/477/base -> origin/gh/bobrenjc93/477/base 2025-07-24T03:47:26.1753375Z * [new branch] gh/bobrenjc93/477/head -> origin/gh/bobrenjc93/477/head 2025-07-24T03:47:26.1753880Z * [new branch] gh/bobrenjc93/477/orig -> origin/gh/bobrenjc93/477/orig 2025-07-24T03:47:26.1754375Z * [new branch] gh/bobrenjc93/478/base -> origin/gh/bobrenjc93/478/base 2025-07-24T03:47:26.1754876Z * [new branch] gh/bobrenjc93/478/head -> origin/gh/bobrenjc93/478/head 2025-07-24T03:47:26.1755371Z * [new branch] gh/bobrenjc93/478/orig -> origin/gh/bobrenjc93/478/orig 2025-07-24T03:47:26.1755884Z * [new branch] gh/bobrenjc93/479/base -> origin/gh/bobrenjc93/479/base 2025-07-24T03:47:26.1756395Z * [new branch] gh/bobrenjc93/479/head -> origin/gh/bobrenjc93/479/head 2025-07-24T03:47:26.1756891Z * [new branch] gh/bobrenjc93/479/orig -> origin/gh/bobrenjc93/479/orig 2025-07-24T03:47:26.1757394Z * [new branch] gh/bobrenjc93/480/base -> origin/gh/bobrenjc93/480/base 2025-07-24T03:47:26.1757897Z * [new branch] gh/bobrenjc93/480/head -> origin/gh/bobrenjc93/480/head 2025-07-24T03:47:26.1758446Z * [new branch] gh/bobrenjc93/480/orig -> origin/gh/bobrenjc93/480/orig 2025-07-24T03:47:26.1758985Z * [new branch] gh/bobrenjc93/481/base -> origin/gh/bobrenjc93/481/base 2025-07-24T03:47:26.1759493Z * [new branch] gh/bobrenjc93/481/head -> origin/gh/bobrenjc93/481/head 2025-07-24T03:47:26.1760001Z * [new branch] gh/bobrenjc93/481/orig -> origin/gh/bobrenjc93/481/orig 2025-07-24T03:47:26.1760504Z * [new branch] gh/bobrenjc93/482/base -> origin/gh/bobrenjc93/482/base 2025-07-24T03:47:26.1761011Z * [new branch] gh/bobrenjc93/482/head -> origin/gh/bobrenjc93/482/head 2025-07-24T03:47:26.1761528Z * [new branch] gh/bobrenjc93/482/orig -> origin/gh/bobrenjc93/482/orig 2025-07-24T03:47:26.1762025Z * [new branch] gh/bobrenjc93/483/base -> origin/gh/bobrenjc93/483/base 2025-07-24T03:47:26.1762528Z * [new branch] gh/bobrenjc93/483/head -> origin/gh/bobrenjc93/483/head 2025-07-24T03:47:26.1763021Z * [new branch] gh/bobrenjc93/483/orig -> origin/gh/bobrenjc93/483/orig 2025-07-24T03:47:26.1763527Z * [new branch] gh/bobrenjc93/484/base -> origin/gh/bobrenjc93/484/base 2025-07-24T03:47:26.1764020Z * [new branch] gh/bobrenjc93/484/head -> origin/gh/bobrenjc93/484/head 2025-07-24T03:47:26.1764579Z * [new branch] gh/bobrenjc93/484/orig -> origin/gh/bobrenjc93/484/orig 2025-07-24T03:47:26.1765138Z * [new branch] gh/bobrenjc93/485/base -> origin/gh/bobrenjc93/485/base 2025-07-24T03:47:26.2160269Z * [new branch] gh/bobrenjc93/485/head -> origin/gh/bobrenjc93/485/head 2025-07-24T03:47:26.2160878Z * [new branch] gh/bobrenjc93/485/orig -> origin/gh/bobrenjc93/485/orig 2025-07-24T03:47:26.2161391Z * [new branch] gh/bobrenjc93/486/base -> origin/gh/bobrenjc93/486/base 2025-07-24T03:47:26.2161896Z * [new branch] gh/bobrenjc93/486/head -> origin/gh/bobrenjc93/486/head 2025-07-24T03:47:26.2162402Z * [new branch] gh/bobrenjc93/486/orig -> origin/gh/bobrenjc93/486/orig 2025-07-24T03:47:26.2162908Z * [new branch] gh/bobrenjc93/487/base -> origin/gh/bobrenjc93/487/base 2025-07-24T03:47:26.2163404Z * [new branch] gh/bobrenjc93/487/head -> origin/gh/bobrenjc93/487/head 2025-07-24T03:47:26.2164196Z * [new branch] gh/bobrenjc93/487/orig -> origin/gh/bobrenjc93/487/orig 2025-07-24T03:47:26.2164754Z * [new branch] gh/bobrenjc93/488/base -> origin/gh/bobrenjc93/488/base 2025-07-24T03:47:26.2165254Z * [new branch] gh/bobrenjc93/488/head -> origin/gh/bobrenjc93/488/head 2025-07-24T03:47:26.2165758Z * [new branch] gh/bobrenjc93/488/orig -> origin/gh/bobrenjc93/488/orig 2025-07-24T03:47:26.2166255Z * [new branch] gh/bobrenjc93/489/base -> origin/gh/bobrenjc93/489/base 2025-07-24T03:47:26.2166760Z * [new branch] gh/bobrenjc93/489/head -> origin/gh/bobrenjc93/489/head 2025-07-24T03:47:26.2167264Z * [new branch] gh/bobrenjc93/489/orig -> origin/gh/bobrenjc93/489/orig 2025-07-24T03:47:26.2167755Z * [new branch] gh/bobrenjc93/490/base -> origin/gh/bobrenjc93/490/base 2025-07-24T03:47:26.2168258Z * [new branch] gh/bobrenjc93/490/head -> origin/gh/bobrenjc93/490/head 2025-07-24T03:47:26.2168844Z * [new branch] gh/bobrenjc93/490/orig -> origin/gh/bobrenjc93/490/orig 2025-07-24T03:47:26.2169348Z * [new branch] gh/bobrenjc93/491/base -> origin/gh/bobrenjc93/491/base 2025-07-24T03:47:26.2169888Z * [new branch] gh/bobrenjc93/491/head -> origin/gh/bobrenjc93/491/head 2025-07-24T03:47:26.2170437Z * [new branch] gh/bobrenjc93/491/orig -> origin/gh/bobrenjc93/491/orig 2025-07-24T03:47:26.2170936Z * [new branch] gh/bobrenjc93/492/base -> origin/gh/bobrenjc93/492/base 2025-07-24T03:47:26.2171424Z * [new branch] gh/bobrenjc93/492/head -> origin/gh/bobrenjc93/492/head 2025-07-24T03:47:26.2171929Z * [new branch] gh/bobrenjc93/492/orig -> origin/gh/bobrenjc93/492/orig 2025-07-24T03:47:26.2172418Z * [new branch] gh/bobrenjc93/493/base -> origin/gh/bobrenjc93/493/base 2025-07-24T03:47:26.2172927Z * [new branch] gh/bobrenjc93/493/head -> origin/gh/bobrenjc93/493/head 2025-07-24T03:47:26.2173423Z * [new branch] gh/bobrenjc93/493/orig -> origin/gh/bobrenjc93/493/orig 2025-07-24T03:47:26.2173911Z * [new branch] gh/bobrenjc93/494/base -> origin/gh/bobrenjc93/494/base 2025-07-24T03:47:26.2174419Z * [new branch] gh/bobrenjc93/494/head -> origin/gh/bobrenjc93/494/head 2025-07-24T03:47:26.2174914Z * [new branch] gh/bobrenjc93/494/orig -> origin/gh/bobrenjc93/494/orig 2025-07-24T03:47:26.2175425Z * [new branch] gh/bobrenjc93/495/base -> origin/gh/bobrenjc93/495/base 2025-07-24T03:47:26.2175972Z * [new branch] gh/bobrenjc93/495/head -> origin/gh/bobrenjc93/495/head 2025-07-24T03:47:26.2176510Z * [new branch] gh/bobrenjc93/495/orig -> origin/gh/bobrenjc93/495/orig 2025-07-24T03:47:26.2177035Z * [new branch] gh/bobrenjc93/496/base -> origin/gh/bobrenjc93/496/base 2025-07-24T03:47:26.2177531Z * [new branch] gh/bobrenjc93/496/head -> origin/gh/bobrenjc93/496/head 2025-07-24T03:47:26.2178034Z * [new branch] gh/bobrenjc93/496/orig -> origin/gh/bobrenjc93/496/orig 2025-07-24T03:47:26.2178533Z * [new branch] gh/bobrenjc93/497/base -> origin/gh/bobrenjc93/497/base 2025-07-24T03:47:26.2179031Z * [new branch] gh/bobrenjc93/497/head -> origin/gh/bobrenjc93/497/head 2025-07-24T03:47:26.2179531Z * [new branch] gh/bobrenjc93/497/orig -> origin/gh/bobrenjc93/497/orig 2025-07-24T03:47:26.2180031Z * [new branch] gh/bobrenjc93/498/base -> origin/gh/bobrenjc93/498/base 2025-07-24T03:47:26.2180537Z * [new branch] gh/bobrenjc93/498/head -> origin/gh/bobrenjc93/498/head 2025-07-24T03:47:26.2181034Z * [new branch] gh/bobrenjc93/498/orig -> origin/gh/bobrenjc93/498/orig 2025-07-24T03:47:26.2181750Z * [new branch] gh/bobrenjc93/499/base -> origin/gh/bobrenjc93/499/base 2025-07-24T03:47:26.2182305Z * [new branch] gh/bobrenjc93/499/head -> origin/gh/bobrenjc93/499/head 2025-07-24T03:47:26.2182803Z * [new branch] gh/bobrenjc93/499/orig -> origin/gh/bobrenjc93/499/orig 2025-07-24T03:47:26.2183307Z * [new branch] gh/bobrenjc93/500/base -> origin/gh/bobrenjc93/500/base 2025-07-24T03:47:26.2183811Z * [new branch] gh/bobrenjc93/500/head -> origin/gh/bobrenjc93/500/head 2025-07-24T03:47:26.2594638Z * [new branch] gh/bobrenjc93/500/orig -> origin/gh/bobrenjc93/500/orig 2025-07-24T03:47:26.2595220Z * [new branch] gh/bobrenjc93/501/base -> origin/gh/bobrenjc93/501/base 2025-07-24T03:47:26.2595727Z * [new branch] gh/bobrenjc93/501/head -> origin/gh/bobrenjc93/501/head 2025-07-24T03:47:26.2596266Z * [new branch] gh/bobrenjc93/501/orig -> origin/gh/bobrenjc93/501/orig 2025-07-24T03:47:26.2596785Z * [new branch] gh/bobrenjc93/502/base -> origin/gh/bobrenjc93/502/base 2025-07-24T03:47:26.2597280Z * [new branch] gh/bobrenjc93/502/head -> origin/gh/bobrenjc93/502/head 2025-07-24T03:47:26.2597784Z * [new branch] gh/bobrenjc93/502/orig -> origin/gh/bobrenjc93/502/orig 2025-07-24T03:47:26.2598282Z * [new branch] gh/bobrenjc93/503/base -> origin/gh/bobrenjc93/503/base 2025-07-24T03:47:26.2598788Z * [new branch] gh/bobrenjc93/503/head -> origin/gh/bobrenjc93/503/head 2025-07-24T03:47:26.2599289Z * [new branch] gh/bobrenjc93/503/orig -> origin/gh/bobrenjc93/503/orig 2025-07-24T03:47:26.2599844Z * [new branch] gh/bobrenjc93/504/base -> origin/gh/bobrenjc93/504/base 2025-07-24T03:47:26.2600392Z * [new branch] gh/bobrenjc93/504/head -> origin/gh/bobrenjc93/504/head 2025-07-24T03:47:26.2600903Z * [new branch] gh/bobrenjc93/504/orig -> origin/gh/bobrenjc93/504/orig 2025-07-24T03:47:26.2601427Z * [new branch] gh/bobrenjc93/505/base -> origin/gh/bobrenjc93/505/base 2025-07-24T03:47:26.2601924Z * [new branch] gh/bobrenjc93/505/head -> origin/gh/bobrenjc93/505/head 2025-07-24T03:47:26.2602426Z * [new branch] gh/bobrenjc93/505/orig -> origin/gh/bobrenjc93/505/orig 2025-07-24T03:47:26.2602920Z * [new branch] gh/bobrenjc93/506/base -> origin/gh/bobrenjc93/506/base 2025-07-24T03:47:26.2603417Z * [new branch] gh/bobrenjc93/506/head -> origin/gh/bobrenjc93/506/head 2025-07-24T03:47:26.2603907Z * [new branch] gh/bobrenjc93/506/orig -> origin/gh/bobrenjc93/506/orig 2025-07-24T03:47:26.2604407Z * [new branch] gh/bobrenjc93/507/base -> origin/gh/bobrenjc93/507/base 2025-07-24T03:47:26.2604918Z * [new branch] gh/bobrenjc93/507/head -> origin/gh/bobrenjc93/507/head 2025-07-24T03:47:26.2605414Z * [new branch] gh/bobrenjc93/507/orig -> origin/gh/bobrenjc93/507/orig 2025-07-24T03:47:26.2605956Z * [new branch] gh/bobrenjc93/508/base -> origin/gh/bobrenjc93/508/base 2025-07-24T03:47:26.2606489Z * [new branch] gh/bobrenjc93/508/head -> origin/gh/bobrenjc93/508/head 2025-07-24T03:47:26.2606991Z * [new branch] gh/bobrenjc93/508/orig -> origin/gh/bobrenjc93/508/orig 2025-07-24T03:47:26.2607491Z * [new branch] gh/bobrenjc93/509/base -> origin/gh/bobrenjc93/509/base 2025-07-24T03:47:26.2607985Z * [new branch] gh/bobrenjc93/509/head -> origin/gh/bobrenjc93/509/head 2025-07-24T03:47:26.2608483Z * [new branch] gh/bobrenjc93/509/orig -> origin/gh/bobrenjc93/509/orig 2025-07-24T03:47:26.2609032Z * [new branch] gh/bobrenjc93/510/base -> origin/gh/bobrenjc93/510/base 2025-07-24T03:47:26.2609790Z * [new branch] gh/bobrenjc93/510/head -> origin/gh/bobrenjc93/510/head 2025-07-24T03:47:26.2610292Z * [new branch] gh/bobrenjc93/510/orig -> origin/gh/bobrenjc93/510/orig 2025-07-24T03:47:26.2610789Z * [new branch] gh/bobrenjc93/511/base -> origin/gh/bobrenjc93/511/base 2025-07-24T03:47:26.2611291Z * [new branch] gh/bobrenjc93/511/head -> origin/gh/bobrenjc93/511/head 2025-07-24T03:47:26.2611783Z * [new branch] gh/bobrenjc93/511/orig -> origin/gh/bobrenjc93/511/orig 2025-07-24T03:47:26.2612337Z * [new branch] gh/bobrenjc93/512/base -> origin/gh/bobrenjc93/512/base 2025-07-24T03:47:26.2612889Z * [new branch] gh/bobrenjc93/512/head -> origin/gh/bobrenjc93/512/head 2025-07-24T03:47:26.2613379Z * [new branch] gh/bobrenjc93/512/orig -> origin/gh/bobrenjc93/512/orig 2025-07-24T03:47:26.2613883Z * [new branch] gh/bobrenjc93/513/base -> origin/gh/bobrenjc93/513/base 2025-07-24T03:47:26.2614379Z * [new branch] gh/bobrenjc93/513/head -> origin/gh/bobrenjc93/513/head 2025-07-24T03:47:26.2614882Z * [new branch] gh/bobrenjc93/513/orig -> origin/gh/bobrenjc93/513/orig 2025-07-24T03:47:26.2615382Z * [new branch] gh/bobrenjc93/514/base -> origin/gh/bobrenjc93/514/base 2025-07-24T03:47:26.2615875Z * [new branch] gh/bobrenjc93/514/head -> origin/gh/bobrenjc93/514/head 2025-07-24T03:47:26.2616383Z * [new branch] gh/bobrenjc93/514/orig -> origin/gh/bobrenjc93/514/orig 2025-07-24T03:47:26.2616879Z * [new branch] gh/bobrenjc93/515/base -> origin/gh/bobrenjc93/515/base 2025-07-24T03:47:26.2617380Z * [new branch] gh/bobrenjc93/515/head -> origin/gh/bobrenjc93/515/head 2025-07-24T03:47:26.3027223Z * [new branch] gh/bobrenjc93/515/orig -> origin/gh/bobrenjc93/515/orig 2025-07-24T03:47:26.3027775Z * [new branch] gh/bobrenjc93/516/base -> origin/gh/bobrenjc93/516/base 2025-07-24T03:47:26.3028283Z * [new branch] gh/bobrenjc93/516/head -> origin/gh/bobrenjc93/516/head 2025-07-24T03:47:26.3028782Z * [new branch] gh/bobrenjc93/516/orig -> origin/gh/bobrenjc93/516/orig 2025-07-24T03:47:26.3029291Z * [new branch] gh/bobrenjc93/517/base -> origin/gh/bobrenjc93/517/base 2025-07-24T03:47:26.3029787Z * [new branch] gh/bobrenjc93/517/head -> origin/gh/bobrenjc93/517/head 2025-07-24T03:47:26.3030284Z * [new branch] gh/bobrenjc93/517/orig -> origin/gh/bobrenjc93/517/orig 2025-07-24T03:47:26.3030784Z * [new branch] gh/bobrenjc93/518/base -> origin/gh/bobrenjc93/518/base 2025-07-24T03:47:26.3031278Z * [new branch] gh/bobrenjc93/518/head -> origin/gh/bobrenjc93/518/head 2025-07-24T03:47:26.3031784Z * [new branch] gh/bobrenjc93/518/orig -> origin/gh/bobrenjc93/518/orig 2025-07-24T03:47:26.3032293Z * [new branch] gh/bobrenjc93/519/base -> origin/gh/bobrenjc93/519/base 2025-07-24T03:47:26.3032789Z * [new branch] gh/bobrenjc93/519/head -> origin/gh/bobrenjc93/519/head 2025-07-24T03:47:26.3033298Z * [new branch] gh/bobrenjc93/519/orig -> origin/gh/bobrenjc93/519/orig 2025-07-24T03:47:26.3033792Z * [new branch] gh/bobrenjc93/520/base -> origin/gh/bobrenjc93/520/base 2025-07-24T03:47:26.3034295Z * [new branch] gh/bobrenjc93/520/head -> origin/gh/bobrenjc93/520/head 2025-07-24T03:47:26.3034792Z * [new branch] gh/bobrenjc93/520/orig -> origin/gh/bobrenjc93/520/orig 2025-07-24T03:47:26.3035293Z * [new branch] gh/bobrenjc93/521/base -> origin/gh/bobrenjc93/521/base 2025-07-24T03:47:26.3035798Z * [new branch] gh/bobrenjc93/521/head -> origin/gh/bobrenjc93/521/head 2025-07-24T03:47:26.3036434Z * [new branch] gh/bobrenjc93/521/orig -> origin/gh/bobrenjc93/521/orig 2025-07-24T03:47:26.3037035Z * [new branch] gh/bobrenjc93/522/base -> origin/gh/bobrenjc93/522/base 2025-07-24T03:47:26.3037533Z * [new branch] gh/bobrenjc93/522/head -> origin/gh/bobrenjc93/522/head 2025-07-24T03:47:26.3038046Z * [new branch] gh/bobrenjc93/522/orig -> origin/gh/bobrenjc93/522/orig 2025-07-24T03:47:26.3038549Z * [new branch] gh/bobrenjc93/523/base -> origin/gh/bobrenjc93/523/base 2025-07-24T03:47:26.3039054Z * [new branch] gh/bobrenjc93/523/head -> origin/gh/bobrenjc93/523/head 2025-07-24T03:47:26.3039551Z * [new branch] gh/bobrenjc93/523/orig -> origin/gh/bobrenjc93/523/orig 2025-07-24T03:47:26.3040042Z * [new branch] gh/bobrenjc93/524/base -> origin/gh/bobrenjc93/524/base 2025-07-24T03:47:26.3040548Z * [new branch] gh/bobrenjc93/524/head -> origin/gh/bobrenjc93/524/head 2025-07-24T03:47:26.3041063Z * [new branch] gh/bobrenjc93/524/orig -> origin/gh/bobrenjc93/524/orig 2025-07-24T03:47:26.3041561Z * [new branch] gh/bobrenjc93/525/base -> origin/gh/bobrenjc93/525/base 2025-07-24T03:47:26.3042058Z * [new branch] gh/bobrenjc93/525/head -> origin/gh/bobrenjc93/525/head 2025-07-24T03:47:26.3042552Z * [new branch] gh/bobrenjc93/525/orig -> origin/gh/bobrenjc93/525/orig 2025-07-24T03:47:26.3043049Z * [new branch] gh/bobrenjc93/526/base -> origin/gh/bobrenjc93/526/base 2025-07-24T03:47:26.3043557Z * [new branch] gh/bobrenjc93/526/head -> origin/gh/bobrenjc93/526/head 2025-07-24T03:47:26.3044058Z * [new branch] gh/bobrenjc93/526/orig -> origin/gh/bobrenjc93/526/orig 2025-07-24T03:47:26.3044561Z * [new branch] gh/bobrenjc93/527/base -> origin/gh/bobrenjc93/527/base 2025-07-24T03:47:26.3045056Z * [new branch] gh/bobrenjc93/527/head -> origin/gh/bobrenjc93/527/head 2025-07-24T03:47:26.3045563Z * [new branch] gh/bobrenjc93/527/orig -> origin/gh/bobrenjc93/527/orig 2025-07-24T03:47:26.3046064Z * [new branch] gh/bobrenjc93/528/base -> origin/gh/bobrenjc93/528/base 2025-07-24T03:47:26.3046557Z * [new branch] gh/bobrenjc93/528/head -> origin/gh/bobrenjc93/528/head 2025-07-24T03:47:26.3047060Z * [new branch] gh/bobrenjc93/528/orig -> origin/gh/bobrenjc93/528/orig 2025-07-24T03:47:26.3047553Z * [new branch] gh/bobrenjc93/529/base -> origin/gh/bobrenjc93/529/base 2025-07-24T03:47:26.3048057Z * [new branch] gh/bobrenjc93/529/head -> origin/gh/bobrenjc93/529/head 2025-07-24T03:47:26.3048647Z * [new branch] gh/bobrenjc93/529/orig -> origin/gh/bobrenjc93/529/orig 2025-07-24T03:47:26.3049160Z * [new branch] gh/bobrenjc93/530/base -> origin/gh/bobrenjc93/530/base 2025-07-24T03:47:26.3049681Z * [new branch] gh/bobrenjc93/530/head -> origin/gh/bobrenjc93/530/head 2025-07-24T03:47:26.3050178Z * [new branch] gh/bobrenjc93/530/orig -> origin/gh/bobrenjc93/530/orig 2025-07-24T03:47:26.3516353Z * [new branch] gh/bobrenjc93/531/base -> origin/gh/bobrenjc93/531/base 2025-07-24T03:47:26.3516907Z * [new branch] gh/bobrenjc93/531/head -> origin/gh/bobrenjc93/531/head 2025-07-24T03:47:26.3517426Z * [new branch] gh/bobrenjc93/531/orig -> origin/gh/bobrenjc93/531/orig 2025-07-24T03:47:26.3517930Z * [new branch] gh/bobrenjc93/532/base -> origin/gh/bobrenjc93/532/base 2025-07-24T03:47:26.3518430Z * [new branch] gh/bobrenjc93/532/head -> origin/gh/bobrenjc93/532/head 2025-07-24T03:47:26.3518930Z * [new branch] gh/bobrenjc93/532/orig -> origin/gh/bobrenjc93/532/orig 2025-07-24T03:47:26.3519575Z * [new branch] gh/bobrenjc93/533/base -> origin/gh/bobrenjc93/533/base 2025-07-24T03:47:26.3520730Z * [new branch] gh/bobrenjc93/533/head -> origin/gh/bobrenjc93/533/head 2025-07-24T03:47:26.3521259Z * [new branch] gh/bobrenjc93/533/orig -> origin/gh/bobrenjc93/533/orig 2025-07-24T03:47:26.3521749Z * [new branch] gh/bobrenjc93/534/base -> origin/gh/bobrenjc93/534/base 2025-07-24T03:47:26.3522257Z * [new branch] gh/bobrenjc93/534/head -> origin/gh/bobrenjc93/534/head 2025-07-24T03:47:26.3522756Z * [new branch] gh/bobrenjc93/534/orig -> origin/gh/bobrenjc93/534/orig 2025-07-24T03:47:26.3523260Z * [new branch] gh/bobrenjc93/535/base -> origin/gh/bobrenjc93/535/base 2025-07-24T03:47:26.3523757Z * [new branch] gh/bobrenjc93/535/head -> origin/gh/bobrenjc93/535/head 2025-07-24T03:47:26.3524247Z * [new branch] gh/bobrenjc93/535/orig -> origin/gh/bobrenjc93/535/orig 2025-07-24T03:47:26.3524761Z * [new branch] gh/bobrenjc93/536/base -> origin/gh/bobrenjc93/536/base 2025-07-24T03:47:26.3525252Z * [new branch] gh/bobrenjc93/536/head -> origin/gh/bobrenjc93/536/head 2025-07-24T03:47:26.3525758Z * [new branch] gh/bobrenjc93/536/orig -> origin/gh/bobrenjc93/536/orig 2025-07-24T03:47:26.3526288Z * [new branch] gh/briancoutinho/2/base -> origin/gh/briancoutinho/2/base 2025-07-24T03:47:26.3526817Z * [new branch] gh/briancoutinho/2/head -> origin/gh/briancoutinho/2/head 2025-07-24T03:47:26.3527305Z * [new branch] gh/c00w/23/base -> origin/gh/c00w/23/base 2025-07-24T03:47:26.3527742Z * [new branch] gh/c00w/23/head -> origin/gh/c00w/23/head 2025-07-24T03:47:26.3528189Z * [new branch] gh/c00w/38/base -> origin/gh/c00w/38/base 2025-07-24T03:47:26.3528708Z * [new branch] gh/c00w/38/head -> origin/gh/c00w/38/head 2025-07-24T03:47:26.3529142Z * [new branch] gh/c00w/38/orig -> origin/gh/c00w/38/orig 2025-07-24T03:47:26.3529585Z * [new branch] gh/c00w/48/base -> origin/gh/c00w/48/base 2025-07-24T03:47:26.3530016Z * [new branch] gh/c00w/48/head -> origin/gh/c00w/48/head 2025-07-24T03:47:26.3530462Z * [new branch] gh/c00w/48/orig -> origin/gh/c00w/48/orig 2025-07-24T03:47:26.3530902Z * [new branch] gh/c00w/50/base -> origin/gh/c00w/50/base 2025-07-24T03:47:26.3531326Z * [new branch] gh/c00w/50/head -> origin/gh/c00w/50/head 2025-07-24T03:47:26.3531758Z * [new branch] gh/c00w/50/orig -> origin/gh/c00w/50/orig 2025-07-24T03:47:26.3532187Z * [new branch] gh/c00w/51/base -> origin/gh/c00w/51/base 2025-07-24T03:47:26.3532623Z * [new branch] gh/c00w/51/head -> origin/gh/c00w/51/head 2025-07-24T03:47:26.3533057Z * [new branch] gh/c00w/51/orig -> origin/gh/c00w/51/orig 2025-07-24T03:47:26.3533514Z * [new branch] gh/clee2000/1/base -> origin/gh/clee2000/1/base 2025-07-24T03:47:26.3533987Z * [new branch] gh/clee2000/1/head -> origin/gh/clee2000/1/head 2025-07-24T03:47:26.3534448Z * [new branch] gh/clee2000/1/orig -> origin/gh/clee2000/1/orig 2025-07-24T03:47:26.3534908Z * [new branch] gh/clee2000/3/base -> origin/gh/clee2000/3/base 2025-07-24T03:47:26.3535365Z * [new branch] gh/clee2000/3/head -> origin/gh/clee2000/3/head 2025-07-24T03:47:26.3535828Z * [new branch] gh/clee2000/3/orig -> origin/gh/clee2000/3/orig 2025-07-24T03:47:26.3536327Z * [new branch] gh/coconutruben/1/base -> origin/gh/coconutruben/1/base 2025-07-24T03:47:26.3536945Z * [new branch] gh/coconutruben/1/head -> origin/gh/coconutruben/1/head 2025-07-24T03:47:26.3537550Z * [new branch] gh/coconutruben/11/base -> origin/gh/coconutruben/11/base 2025-07-24T03:47:26.3538066Z * [new branch] gh/coconutruben/11/head -> origin/gh/coconutruben/11/head 2025-07-24T03:47:26.3538591Z * [new branch] gh/coconutruben/11/orig -> origin/gh/coconutruben/11/orig 2025-07-24T03:47:26.3539115Z * [new branch] gh/coconutruben/12/base -> origin/gh/coconutruben/12/base 2025-07-24T03:47:26.3539634Z * [new branch] gh/coconutruben/12/head -> origin/gh/coconutruben/12/head 2025-07-24T03:47:26.3969894Z * [new branch] gh/coconutruben/12/orig -> origin/gh/coconutruben/12/orig 2025-07-24T03:47:26.3970476Z * [new branch] gh/coconutruben/13/base -> origin/gh/coconutruben/13/base 2025-07-24T03:47:26.3971013Z * [new branch] gh/coconutruben/13/head -> origin/gh/coconutruben/13/head 2025-07-24T03:47:26.3971559Z * [new branch] gh/coconutruben/13/orig -> origin/gh/coconutruben/13/orig 2025-07-24T03:47:26.3972076Z * [new branch] gh/coconutruben/14/base -> origin/gh/coconutruben/14/base 2025-07-24T03:47:26.3972594Z * [new branch] gh/coconutruben/14/head -> origin/gh/coconutruben/14/head 2025-07-24T03:47:26.3973112Z * [new branch] gh/coconutruben/14/orig -> origin/gh/coconutruben/14/orig 2025-07-24T03:47:26.3973634Z * [new branch] gh/coconutruben/15/base -> origin/gh/coconutruben/15/base 2025-07-24T03:47:26.3974208Z * [new branch] gh/coconutruben/15/head -> origin/gh/coconutruben/15/head 2025-07-24T03:47:26.3974768Z * [new branch] gh/coconutruben/15/orig -> origin/gh/coconutruben/15/orig 2025-07-24T03:47:26.3975287Z * [new branch] gh/coconutruben/16/base -> origin/gh/coconutruben/16/base 2025-07-24T03:47:26.3975801Z * [new branch] gh/coconutruben/16/head -> origin/gh/coconutruben/16/head 2025-07-24T03:47:26.3976331Z * [new branch] gh/coconutruben/16/orig -> origin/gh/coconutruben/16/orig 2025-07-24T03:47:26.3976851Z * [new branch] gh/coconutruben/17/base -> origin/gh/coconutruben/17/base 2025-07-24T03:47:26.3977364Z * [new branch] gh/coconutruben/17/head -> origin/gh/coconutruben/17/head 2025-07-24T03:47:26.3977883Z * [new branch] gh/coconutruben/17/orig -> origin/gh/coconutruben/17/orig 2025-07-24T03:47:26.3978392Z * [new branch] gh/coconutruben/18/base -> origin/gh/coconutruben/18/base 2025-07-24T03:47:26.3978911Z * [new branch] gh/coconutruben/18/head -> origin/gh/coconutruben/18/head 2025-07-24T03:47:26.3979429Z * [new branch] gh/coconutruben/18/orig -> origin/gh/coconutruben/18/orig 2025-07-24T03:47:26.3979945Z * [new branch] gh/coconutruben/19/base -> origin/gh/coconutruben/19/base 2025-07-24T03:47:26.3980522Z * [new branch] gh/coconutruben/19/head -> origin/gh/coconutruben/19/head 2025-07-24T03:47:26.3981081Z * [new branch] gh/coconutruben/19/orig -> origin/gh/coconutruben/19/orig 2025-07-24T03:47:26.3981600Z * [new branch] gh/coconutruben/20/base -> origin/gh/coconutruben/20/base 2025-07-24T03:47:26.3982122Z * [new branch] gh/coconutruben/20/head -> origin/gh/coconutruben/20/head 2025-07-24T03:47:26.3982632Z * [new branch] gh/coconutruben/20/orig -> origin/gh/coconutruben/20/orig 2025-07-24T03:47:26.3983154Z * [new branch] gh/coconutruben/21/base -> origin/gh/coconutruben/21/base 2025-07-24T03:47:26.3983672Z * [new branch] gh/coconutruben/21/head -> origin/gh/coconutruben/21/head 2025-07-24T03:47:26.3984196Z * [new branch] gh/coconutruben/21/orig -> origin/gh/coconutruben/21/orig 2025-07-24T03:47:26.3985274Z * [new branch] gh/coconutruben/22/base -> origin/gh/coconutruben/22/base 2025-07-24T03:47:26.3985894Z * [new branch] gh/coconutruben/22/head -> origin/gh/coconutruben/22/head 2025-07-24T03:47:26.3986475Z * [new branch] gh/coconutruben/22/orig -> origin/gh/coconutruben/22/orig 2025-07-24T03:47:26.3986988Z * [new branch] gh/coconutruben/23/base -> origin/gh/coconutruben/23/base 2025-07-24T03:47:26.3987560Z * [new branch] gh/coconutruben/23/head -> origin/gh/coconutruben/23/head 2025-07-24T03:47:26.3988081Z * [new branch] gh/coconutruben/23/orig -> origin/gh/coconutruben/23/orig 2025-07-24T03:47:26.3988592Z * [new branch] gh/coconutruben/24/base -> origin/gh/coconutruben/24/base 2025-07-24T03:47:26.3989118Z * [new branch] gh/coconutruben/24/head -> origin/gh/coconutruben/24/head 2025-07-24T03:47:26.3989630Z * [new branch] gh/coconutruben/24/orig -> origin/gh/coconutruben/24/orig 2025-07-24T03:47:26.3990160Z * [new branch] gh/coconutruben/25/base -> origin/gh/coconutruben/25/base 2025-07-24T03:47:26.3990672Z * [new branch] gh/coconutruben/25/head -> origin/gh/coconutruben/25/head 2025-07-24T03:47:26.3991195Z * [new branch] gh/coconutruben/25/orig -> origin/gh/coconutruben/25/orig 2025-07-24T03:47:26.3991737Z * [new branch] gh/codingwithsurya/10/base -> origin/gh/codingwithsurya/10/base 2025-07-24T03:47:26.3992300Z * [new branch] gh/codingwithsurya/10/head -> origin/gh/codingwithsurya/10/head 2025-07-24T03:47:26.3992911Z * [new branch] gh/codingwithsurya/10/orig -> origin/gh/codingwithsurya/10/orig 2025-07-24T03:47:26.3993505Z * [new branch] gh/codingwithsurya/11/base -> origin/gh/codingwithsurya/11/base 2025-07-24T03:47:26.4422069Z * [new branch] gh/codingwithsurya/11/head -> origin/gh/codingwithsurya/11/head 2025-07-24T03:47:26.4422738Z * [new branch] gh/codingwithsurya/11/orig -> origin/gh/codingwithsurya/11/orig 2025-07-24T03:47:26.4423358Z * [new branch] gh/codingwithsurya/12/base -> origin/gh/codingwithsurya/12/base 2025-07-24T03:47:26.4423971Z * [new branch] gh/codingwithsurya/12/head -> origin/gh/codingwithsurya/12/head 2025-07-24T03:47:26.4424534Z * [new branch] gh/codingwithsurya/12/orig -> origin/gh/codingwithsurya/12/orig 2025-07-24T03:47:26.4425081Z * [new branch] gh/codingwithsurya/13/base -> origin/gh/codingwithsurya/13/base 2025-07-24T03:47:26.4425636Z * [new branch] gh/codingwithsurya/13/head -> origin/gh/codingwithsurya/13/head 2025-07-24T03:47:26.4426188Z * [new branch] gh/codingwithsurya/13/orig -> origin/gh/codingwithsurya/13/orig 2025-07-24T03:47:26.4426752Z * [new branch] gh/codingwithsurya/14/base -> origin/gh/codingwithsurya/14/base 2025-07-24T03:47:26.4427311Z * [new branch] gh/codingwithsurya/14/head -> origin/gh/codingwithsurya/14/head 2025-07-24T03:47:26.4427866Z * [new branch] gh/codingwithsurya/14/orig -> origin/gh/codingwithsurya/14/orig 2025-07-24T03:47:26.4428426Z * [new branch] gh/codingwithsurya/6/base -> origin/gh/codingwithsurya/6/base 2025-07-24T03:47:26.4428979Z * [new branch] gh/codingwithsurya/6/head -> origin/gh/codingwithsurya/6/head 2025-07-24T03:47:26.4429531Z * [new branch] gh/codingwithsurya/6/orig -> origin/gh/codingwithsurya/6/orig 2025-07-24T03:47:26.4430090Z * [new branch] gh/codingwithsurya/7/base -> origin/gh/codingwithsurya/7/base 2025-07-24T03:47:26.4430637Z * [new branch] gh/codingwithsurya/7/head -> origin/gh/codingwithsurya/7/head 2025-07-24T03:47:26.4431193Z * [new branch] gh/codingwithsurya/7/orig -> origin/gh/codingwithsurya/7/orig 2025-07-24T03:47:26.4431862Z * [new branch] gh/codingwithsurya/8/base -> origin/gh/codingwithsurya/8/base 2025-07-24T03:47:26.4432513Z * [new branch] gh/codingwithsurya/8/head -> origin/gh/codingwithsurya/8/head 2025-07-24T03:47:26.4433074Z * [new branch] gh/codingwithsurya/8/orig -> origin/gh/codingwithsurya/8/orig 2025-07-24T03:47:26.4433619Z * [new branch] gh/codingwithsurya/9/base -> origin/gh/codingwithsurya/9/base 2025-07-24T03:47:26.4434176Z * [new branch] gh/codingwithsurya/9/head -> origin/gh/codingwithsurya/9/head 2025-07-24T03:47:26.4434719Z * [new branch] gh/codingwithsurya/9/orig -> origin/gh/codingwithsurya/9/orig 2025-07-24T03:47:26.4435269Z * [new branch] gh/davidberard98/347/base -> origin/gh/davidberard98/347/base 2025-07-24T03:47:26.4435814Z * [new branch] gh/davidberard98/347/head -> origin/gh/davidberard98/347/head 2025-07-24T03:47:26.4436355Z * [new branch] gh/davidberard98/347/orig -> origin/gh/davidberard98/347/orig 2025-07-24T03:47:26.4436898Z * [new branch] gh/davidberard98/351/base -> origin/gh/davidberard98/351/base 2025-07-24T03:47:26.4437428Z * [new branch] gh/davidberard98/351/head -> origin/gh/davidberard98/351/head 2025-07-24T03:47:26.4437966Z * [new branch] gh/davidberard98/351/orig -> origin/gh/davidberard98/351/orig 2025-07-24T03:47:26.4438489Z * [new branch] gh/davidberard98/353/base -> origin/gh/davidberard98/353/base 2025-07-24T03:47:26.4439030Z * [new branch] gh/davidberard98/353/head -> origin/gh/davidberard98/353/head 2025-07-24T03:47:26.4439562Z * [new branch] gh/davidberard98/353/orig -> origin/gh/davidberard98/353/orig 2025-07-24T03:47:26.4440088Z * [new branch] gh/davidberard98/356/base -> origin/gh/davidberard98/356/base 2025-07-24T03:47:26.4440629Z * [new branch] gh/davidberard98/356/head -> origin/gh/davidberard98/356/head 2025-07-24T03:47:26.4441158Z * [new branch] gh/davidberard98/356/orig -> origin/gh/davidberard98/356/orig 2025-07-24T03:47:26.4441699Z * [new branch] gh/davidberard98/378/base -> origin/gh/davidberard98/378/base 2025-07-24T03:47:26.4442234Z * [new branch] gh/davidberard98/378/head -> origin/gh/davidberard98/378/head 2025-07-24T03:47:26.4442755Z * [new branch] gh/davidberard98/378/orig -> origin/gh/davidberard98/378/orig 2025-07-24T03:47:26.4443286Z * [new branch] gh/davidberard98/380/base -> origin/gh/davidberard98/380/base 2025-07-24T03:47:26.4443817Z * [new branch] gh/davidberard98/380/head -> origin/gh/davidberard98/380/head 2025-07-24T03:47:26.4444364Z * [new branch] gh/davidberard98/380/orig -> origin/gh/davidberard98/380/orig 2025-07-24T03:47:26.4444906Z * [new branch] gh/davidberard98/382/base -> origin/gh/davidberard98/382/base 2025-07-24T03:47:26.4445435Z * [new branch] gh/davidberard98/382/head -> origin/gh/davidberard98/382/head 2025-07-24T03:47:26.4445980Z * [new branch] gh/davidberard98/382/orig -> origin/gh/davidberard98/382/orig 2025-07-24T03:47:26.5524718Z * [new branch] gh/davidberard98/383/base -> origin/gh/davidberard98/383/base 2025-07-24T03:47:26.5525337Z * [new branch] gh/davidberard98/383/head -> origin/gh/davidberard98/383/head 2025-07-24T03:47:26.5525937Z * [new branch] gh/davidberard98/383/orig -> origin/gh/davidberard98/383/orig 2025-07-24T03:47:26.5526524Z * [new branch] gh/davidberard98/384/base -> origin/gh/davidberard98/384/base 2025-07-24T03:47:26.5527065Z * [new branch] gh/davidberard98/384/head -> origin/gh/davidberard98/384/head 2025-07-24T03:47:26.5527602Z * [new branch] gh/davidberard98/384/orig -> origin/gh/davidberard98/384/orig 2025-07-24T03:47:26.5528126Z * [new branch] gh/davidberard98/385/base -> origin/gh/davidberard98/385/base 2025-07-24T03:47:26.5529036Z * [new branch] gh/davidberard98/385/head -> origin/gh/davidberard98/385/head 2025-07-24T03:47:26.5529571Z * [new branch] gh/davidberard98/385/orig -> origin/gh/davidberard98/385/orig 2025-07-24T03:47:26.5530108Z * [new branch] gh/davidberard98/386/base -> origin/gh/davidberard98/386/base 2025-07-24T03:47:26.5530646Z * [new branch] gh/davidberard98/386/head -> origin/gh/davidberard98/386/head 2025-07-24T03:47:26.5531174Z * [new branch] gh/davidberard98/386/orig -> origin/gh/davidberard98/386/orig 2025-07-24T03:47:26.5531711Z * [new branch] gh/davidberard98/387/base -> origin/gh/davidberard98/387/base 2025-07-24T03:47:26.5532297Z * [new branch] gh/davidberard98/387/head -> origin/gh/davidberard98/387/head 2025-07-24T03:47:26.5532890Z * [new branch] gh/davidberard98/387/orig -> origin/gh/davidberard98/387/orig 2025-07-24T03:47:26.5533425Z * [new branch] gh/davidberard98/388/base -> origin/gh/davidberard98/388/base 2025-07-24T03:47:26.5533965Z * [new branch] gh/davidberard98/388/head -> origin/gh/davidberard98/388/head 2025-07-24T03:47:26.5534501Z * [new branch] gh/davidberard98/388/orig -> origin/gh/davidberard98/388/orig 2025-07-24T03:47:26.5535037Z * [new branch] gh/davidberard98/389/base -> origin/gh/davidberard98/389/base 2025-07-24T03:47:26.5535573Z * [new branch] gh/davidberard98/389/head -> origin/gh/davidberard98/389/head 2025-07-24T03:47:26.5536107Z * [new branch] gh/davidberard98/389/orig -> origin/gh/davidberard98/389/orig 2025-07-24T03:47:26.5536644Z * [new branch] gh/davidberard98/390/base -> origin/gh/davidberard98/390/base 2025-07-24T03:47:26.5537179Z * [new branch] gh/davidberard98/390/head -> origin/gh/davidberard98/390/head 2025-07-24T03:47:26.5537708Z * [new branch] gh/davidberard98/390/orig -> origin/gh/davidberard98/390/orig 2025-07-24T03:47:26.5538292Z * [new branch] gh/desertfire/570/base -> origin/gh/desertfire/570/base 2025-07-24T03:47:26.5538848Z * [new branch] gh/desertfire/570/head -> origin/gh/desertfire/570/head 2025-07-24T03:47:26.5539351Z * [new branch] gh/desertfire/570/orig -> origin/gh/desertfire/570/orig 2025-07-24T03:47:26.5539858Z * [new branch] gh/desertfire/572/base -> origin/gh/desertfire/572/base 2025-07-24T03:47:26.5540354Z * [new branch] gh/desertfire/572/head -> origin/gh/desertfire/572/head 2025-07-24T03:47:26.5540865Z * [new branch] gh/desertfire/572/orig -> origin/gh/desertfire/572/orig 2025-07-24T03:47:26.5541364Z * [new branch] gh/desertfire/585/base -> origin/gh/desertfire/585/base 2025-07-24T03:47:26.5541864Z * [new branch] gh/desertfire/585/head -> origin/gh/desertfire/585/head 2025-07-24T03:47:26.5542375Z * [new branch] gh/desertfire/585/orig -> origin/gh/desertfire/585/orig 2025-07-24T03:47:26.5542869Z * [new branch] gh/desertfire/586/base -> origin/gh/desertfire/586/base 2025-07-24T03:47:26.5543374Z * [new branch] gh/desertfire/586/head -> origin/gh/desertfire/586/head 2025-07-24T03:47:26.5543875Z * [new branch] gh/desertfire/586/orig -> origin/gh/desertfire/586/orig 2025-07-24T03:47:26.5544427Z * [new branch] gh/desertfire/587/base -> origin/gh/desertfire/587/base 2025-07-24T03:47:26.5544982Z * [new branch] gh/desertfire/587/head -> origin/gh/desertfire/587/head 2025-07-24T03:47:26.5545479Z * [new branch] gh/desertfire/587/orig -> origin/gh/desertfire/587/orig 2025-07-24T03:47:26.5545989Z * [new branch] gh/desertfire/588/base -> origin/gh/desertfire/588/base 2025-07-24T03:47:26.5546575Z * [new branch] gh/desertfire/588/head -> origin/gh/desertfire/588/head 2025-07-24T03:47:26.5547164Z * [new branch] gh/desertfire/588/orig -> origin/gh/desertfire/588/orig 2025-07-24T03:47:26.5547664Z * [new branch] gh/desertfire/589/base -> origin/gh/desertfire/589/base 2025-07-24T03:47:26.5548170Z * [new branch] gh/desertfire/589/head -> origin/gh/desertfire/589/head 2025-07-24T03:47:26.5548680Z * [new branch] gh/desertfire/589/orig -> origin/gh/desertfire/589/orig 2025-07-24T03:47:26.5998486Z * [new branch] gh/desertfire/590/base -> origin/gh/desertfire/590/base 2025-07-24T03:47:26.5999052Z * [new branch] gh/desertfire/590/head -> origin/gh/desertfire/590/head 2025-07-24T03:47:26.5999574Z * [new branch] gh/desertfire/590/orig -> origin/gh/desertfire/590/orig 2025-07-24T03:47:26.6000100Z * [new branch] gh/dharakk/1/base -> origin/gh/dharakk/1/base 2025-07-24T03:47:26.6000656Z * [new branch] gh/dharakk/1/head -> origin/gh/dharakk/1/head 2025-07-24T03:47:26.6001132Z * [new branch] gh/dharakk/4/base -> origin/gh/dharakk/4/base 2025-07-24T03:47:26.6001603Z * [new branch] gh/dharakk/4/head -> origin/gh/dharakk/4/head 2025-07-24T03:47:26.6002117Z * [new branch] gh/dharakk/4/orig -> origin/gh/dharakk/4/orig 2025-07-24T03:47:26.6002643Z * [new branch] gh/drisspg/136/base -> origin/gh/drisspg/136/base 2025-07-24T03:47:26.6003128Z * [new branch] gh/drisspg/136/head -> origin/gh/drisspg/136/head 2025-07-24T03:47:26.6003600Z * [new branch] gh/drisspg/136/orig -> origin/gh/drisspg/136/orig 2025-07-24T03:47:26.6004076Z * [new branch] gh/drisspg/140/base -> origin/gh/drisspg/140/base 2025-07-24T03:47:26.6004557Z * [new branch] gh/drisspg/140/head -> origin/gh/drisspg/140/head 2025-07-24T03:47:26.6005038Z * [new branch] gh/drisspg/140/orig -> origin/gh/drisspg/140/orig 2025-07-24T03:47:26.6005520Z * [new branch] gh/drisspg/149/base -> origin/gh/drisspg/149/base 2025-07-24T03:47:26.6005989Z * [new branch] gh/drisspg/149/head -> origin/gh/drisspg/149/head 2025-07-24T03:47:26.6006464Z * [new branch] gh/drisspg/149/orig -> origin/gh/drisspg/149/orig 2025-07-24T03:47:26.6006935Z * [new branch] gh/drisspg/150/base -> origin/gh/drisspg/150/base 2025-07-24T03:47:26.6007420Z * [new branch] gh/drisspg/150/head -> origin/gh/drisspg/150/head 2025-07-24T03:47:26.6007900Z * [new branch] gh/drisspg/150/orig -> origin/gh/drisspg/150/orig 2025-07-24T03:47:26.6008372Z * [new branch] gh/drisspg/151/base -> origin/gh/drisspg/151/base 2025-07-24T03:47:26.6008923Z * [new branch] gh/drisspg/151/head -> origin/gh/drisspg/151/head 2025-07-24T03:47:26.6009403Z * [new branch] gh/drisspg/151/orig -> origin/gh/drisspg/151/orig 2025-07-24T03:47:26.6009898Z * [new branch] gh/drisspg/158/base -> origin/gh/drisspg/158/base 2025-07-24T03:47:26.6010391Z * [new branch] gh/drisspg/158/head -> origin/gh/drisspg/158/head 2025-07-24T03:47:26.6010864Z * [new branch] gh/drisspg/158/orig -> origin/gh/drisspg/158/orig 2025-07-24T03:47:26.6011356Z * [new branch] gh/drisspg/159/base -> origin/gh/drisspg/159/base 2025-07-24T03:47:26.6011824Z * [new branch] gh/drisspg/159/head -> origin/gh/drisspg/159/head 2025-07-24T03:47:26.6012307Z * [new branch] gh/drisspg/159/orig -> origin/gh/drisspg/159/orig 2025-07-24T03:47:26.6012785Z * [new branch] gh/drisspg/161/base -> origin/gh/drisspg/161/base 2025-07-24T03:47:26.6013398Z * [new branch] gh/drisspg/161/head -> origin/gh/drisspg/161/head 2025-07-24T03:47:26.6013968Z * [new branch] gh/drisspg/161/orig -> origin/gh/drisspg/161/orig 2025-07-24T03:47:26.6014450Z * [new branch] gh/drisspg/162/base -> origin/gh/drisspg/162/base 2025-07-24T03:47:26.6014944Z * [new branch] gh/drisspg/162/head -> origin/gh/drisspg/162/head 2025-07-24T03:47:26.6015425Z * [new branch] gh/drisspg/162/orig -> origin/gh/drisspg/162/orig 2025-07-24T03:47:26.6015896Z * [new branch] gh/drisspg/163/base -> origin/gh/drisspg/163/base 2025-07-24T03:47:26.6016385Z * [new branch] gh/drisspg/163/head -> origin/gh/drisspg/163/head 2025-07-24T03:47:26.6016855Z * [new branch] gh/drisspg/163/orig -> origin/gh/drisspg/163/orig 2025-07-24T03:47:26.6017329Z * [new branch] gh/drisspg/164/base -> origin/gh/drisspg/164/base 2025-07-24T03:47:26.6017803Z * [new branch] gh/drisspg/164/head -> origin/gh/drisspg/164/head 2025-07-24T03:47:26.6018294Z * [new branch] gh/drisspg/164/orig -> origin/gh/drisspg/164/orig 2025-07-24T03:47:26.6018772Z * [new branch] gh/drisspg/165/base -> origin/gh/drisspg/165/base 2025-07-24T03:47:26.6019248Z * [new branch] gh/drisspg/165/head -> origin/gh/drisspg/165/head 2025-07-24T03:47:26.6019719Z * [new branch] gh/drisspg/165/orig -> origin/gh/drisspg/165/orig 2025-07-24T03:47:26.6020185Z * [new branch] gh/drisspg/166/base -> origin/gh/drisspg/166/base 2025-07-24T03:47:26.6020658Z * [new branch] gh/drisspg/166/head -> origin/gh/drisspg/166/head 2025-07-24T03:47:26.6021133Z * [new branch] gh/drisspg/166/orig -> origin/gh/drisspg/166/orig 2025-07-24T03:47:26.6467638Z * [new branch] gh/drisspg/167/base -> origin/gh/drisspg/167/base 2025-07-24T03:47:26.6468197Z * [new branch] gh/drisspg/167/head -> origin/gh/drisspg/167/head 2025-07-24T03:47:26.6468679Z * [new branch] gh/drisspg/167/orig -> origin/gh/drisspg/167/orig 2025-07-24T03:47:26.6469165Z * [new branch] gh/drisspg/168/base -> origin/gh/drisspg/168/base 2025-07-24T03:47:26.6469652Z * [new branch] gh/drisspg/168/head -> origin/gh/drisspg/168/head 2025-07-24T03:47:26.6470170Z * [new branch] gh/drisspg/168/orig -> origin/gh/drisspg/168/orig 2025-07-24T03:47:26.6470655Z * [new branch] gh/drisspg/169/base -> origin/gh/drisspg/169/base 2025-07-24T03:47:26.6471177Z * [new branch] gh/drisspg/169/head -> origin/gh/drisspg/169/head 2025-07-24T03:47:26.6471653Z * [new branch] gh/drisspg/169/orig -> origin/gh/drisspg/169/orig 2025-07-24T03:47:26.6472128Z * [new branch] gh/drisspg/170/base -> origin/gh/drisspg/170/base 2025-07-24T03:47:26.6472608Z * [new branch] gh/drisspg/170/head -> origin/gh/drisspg/170/head 2025-07-24T03:47:26.6473090Z * [new branch] gh/drisspg/170/orig -> origin/gh/drisspg/170/orig 2025-07-24T03:47:26.6473561Z * [new branch] gh/drisspg/171/base -> origin/gh/drisspg/171/base 2025-07-24T03:47:26.6474043Z * [new branch] gh/drisspg/171/head -> origin/gh/drisspg/171/head 2025-07-24T03:47:26.6474515Z * [new branch] gh/drisspg/171/orig -> origin/gh/drisspg/171/orig 2025-07-24T03:47:26.6474989Z * [new branch] gh/drisspg/172/base -> origin/gh/drisspg/172/base 2025-07-24T03:47:26.6475479Z * [new branch] gh/drisspg/172/head -> origin/gh/drisspg/172/head 2025-07-24T03:47:26.6475948Z * [new branch] gh/drisspg/172/orig -> origin/gh/drisspg/172/orig 2025-07-24T03:47:26.6476631Z * [new branch] gh/drisspg/173/base -> origin/gh/drisspg/173/base 2025-07-24T03:47:26.6477251Z * [new branch] gh/drisspg/173/head -> origin/gh/drisspg/173/head 2025-07-24T03:47:26.6477732Z * [new branch] gh/drisspg/173/orig -> origin/gh/drisspg/173/orig 2025-07-24T03:47:26.6478210Z * [new branch] gh/drisspg/174/base -> origin/gh/drisspg/174/base 2025-07-24T03:47:26.6478683Z * [new branch] gh/drisspg/174/head -> origin/gh/drisspg/174/head 2025-07-24T03:47:26.6479164Z * [new branch] gh/drisspg/174/orig -> origin/gh/drisspg/174/orig 2025-07-24T03:47:26.6479655Z * [new branch] gh/dsjohns2/1/base -> origin/gh/dsjohns2/1/base 2025-07-24T03:47:26.6480124Z * [new branch] gh/dsjohns2/1/head -> origin/gh/dsjohns2/1/head 2025-07-24T03:47:26.6480610Z * [new branch] gh/eellison/779/base -> origin/gh/eellison/779/base 2025-07-24T03:47:26.6481095Z * [new branch] gh/eellison/779/head -> origin/gh/eellison/779/head 2025-07-24T03:47:26.6481589Z * [new branch] gh/eellison/779/orig -> origin/gh/eellison/779/orig 2025-07-24T03:47:26.6482065Z * [new branch] gh/eellison/781/base -> origin/gh/eellison/781/base 2025-07-24T03:47:26.6482595Z * [new branch] gh/eellison/781/head -> origin/gh/eellison/781/head 2025-07-24T03:47:26.6483127Z * [new branch] gh/eellison/781/orig -> origin/gh/eellison/781/orig 2025-07-24T03:47:26.6483604Z * [new branch] gh/eellison/784/base -> origin/gh/eellison/784/base 2025-07-24T03:47:26.6484083Z * [new branch] gh/eellison/784/head -> origin/gh/eellison/784/head 2025-07-24T03:47:26.6484567Z * [new branch] gh/eellison/784/orig -> origin/gh/eellison/784/orig 2025-07-24T03:47:26.6485051Z * [new branch] gh/eellison/785/base -> origin/gh/eellison/785/base 2025-07-24T03:47:26.6485547Z * [new branch] gh/eellison/785/head -> origin/gh/eellison/785/head 2025-07-24T03:47:26.6486028Z * [new branch] gh/eellison/785/orig -> origin/gh/eellison/785/orig 2025-07-24T03:47:26.6486514Z * [new branch] gh/eellison/789/base -> origin/gh/eellison/789/base 2025-07-24T03:47:26.6486990Z * [new branch] gh/eellison/789/head -> origin/gh/eellison/789/head 2025-07-24T03:47:26.6487471Z * [new branch] gh/eellison/789/orig -> origin/gh/eellison/789/orig 2025-07-24T03:47:26.6487952Z * [new branch] gh/eellison/800/base -> origin/gh/eellison/800/base 2025-07-24T03:47:26.6488468Z * [new branch] gh/eellison/800/head -> origin/gh/eellison/800/head 2025-07-24T03:47:26.6489032Z * [new branch] gh/eellison/800/orig -> origin/gh/eellison/800/orig 2025-07-24T03:47:26.6489563Z * [new branch] gh/eellison/801/base -> origin/gh/eellison/801/base 2025-07-24T03:47:26.6490058Z * [new branch] gh/eellison/801/head -> origin/gh/eellison/801/head 2025-07-24T03:47:26.6490536Z * [new branch] gh/eellison/801/orig -> origin/gh/eellison/801/orig 2025-07-24T03:47:26.7062008Z * [new branch] gh/eellison/802/base -> origin/gh/eellison/802/base 2025-07-24T03:47:26.7062542Z * [new branch] gh/eellison/802/head -> origin/gh/eellison/802/head 2025-07-24T03:47:26.7063057Z * [new branch] gh/eellison/802/orig -> origin/gh/eellison/802/orig 2025-07-24T03:47:26.7063545Z * [new branch] gh/eellison/805/base -> origin/gh/eellison/805/base 2025-07-24T03:47:26.7064023Z * [new branch] gh/eellison/805/head -> origin/gh/eellison/805/head 2025-07-24T03:47:26.7064503Z * [new branch] gh/eellison/805/orig -> origin/gh/eellison/805/orig 2025-07-24T03:47:26.7065147Z * [new branch] gh/eellison/808/base -> origin/gh/eellison/808/base 2025-07-24T03:47:26.7065731Z * [new branch] gh/eellison/808/head -> origin/gh/eellison/808/head 2025-07-24T03:47:26.7066219Z * [new branch] gh/eellison/808/orig -> origin/gh/eellison/808/orig 2025-07-24T03:47:26.7066694Z * [new branch] gh/eellison/809/base -> origin/gh/eellison/809/base 2025-07-24T03:47:26.7067176Z * [new branch] gh/eellison/809/head -> origin/gh/eellison/809/head 2025-07-24T03:47:26.7067652Z * [new branch] gh/eellison/809/orig -> origin/gh/eellison/809/orig 2025-07-24T03:47:26.7068132Z * [new branch] gh/etaf/132/base -> origin/gh/etaf/132/base 2025-07-24T03:47:26.7068594Z * [new branch] gh/etaf/132/head -> origin/gh/etaf/132/head 2025-07-24T03:47:26.7069035Z * [new branch] gh/etaf/132/orig -> origin/gh/etaf/132/orig 2025-07-24T03:47:26.7069495Z * [new branch] gh/etaf/138/base -> origin/gh/etaf/138/base 2025-07-24T03:47:26.7069941Z * [new branch] gh/etaf/138/head -> origin/gh/etaf/138/head 2025-07-24T03:47:26.7070390Z * [new branch] gh/etaf/138/orig -> origin/gh/etaf/138/orig 2025-07-24T03:47:26.7070839Z * [new branch] gh/etaf/139/base -> origin/gh/etaf/139/base 2025-07-24T03:47:26.7071274Z * [new branch] gh/etaf/139/head -> origin/gh/etaf/139/head 2025-07-24T03:47:26.7071735Z * [new branch] gh/etaf/139/orig -> origin/gh/etaf/139/orig 2025-07-24T03:47:26.7072172Z * [new branch] gh/etaf/140/base -> origin/gh/etaf/140/base 2025-07-24T03:47:26.7072617Z * [new branch] gh/etaf/140/head -> origin/gh/etaf/140/head 2025-07-24T03:47:26.7073054Z * [new branch] gh/etaf/140/orig -> origin/gh/etaf/140/orig 2025-07-24T03:47:26.7073515Z * [new branch] gh/etaf/141/base -> origin/gh/etaf/141/base 2025-07-24T03:47:26.7073958Z * [new branch] gh/etaf/141/head -> origin/gh/etaf/141/head 2025-07-24T03:47:26.7074392Z * [new branch] gh/etaf/141/orig -> origin/gh/etaf/141/orig 2025-07-24T03:47:26.7074841Z * [new branch] gh/etaf/142/base -> origin/gh/etaf/142/base 2025-07-24T03:47:26.7075274Z * [new branch] gh/etaf/142/head -> origin/gh/etaf/142/head 2025-07-24T03:47:26.7075720Z * [new branch] gh/etaf/143/base -> origin/gh/etaf/143/base 2025-07-24T03:47:26.7076163Z * [new branch] gh/etaf/143/head -> origin/gh/etaf/143/head 2025-07-24T03:47:26.7076597Z * [new branch] gh/etaf/143/orig -> origin/gh/etaf/143/orig 2025-07-24T03:47:26.7077039Z * [new branch] gh/etaf/144/base -> origin/gh/etaf/144/base 2025-07-24T03:47:26.7077484Z * [new branch] gh/etaf/144/head -> origin/gh/etaf/144/head 2025-07-24T03:47:26.7077929Z * [new branch] gh/etaf/144/orig -> origin/gh/etaf/144/orig 2025-07-24T03:47:26.7078367Z * [new branch] gh/etaf/145/base -> origin/gh/etaf/145/base 2025-07-24T03:47:26.7078816Z * [new branch] gh/etaf/145/head -> origin/gh/etaf/145/head 2025-07-24T03:47:26.7079254Z * [new branch] gh/etaf/146/base -> origin/gh/etaf/146/base 2025-07-24T03:47:26.7079694Z * [new branch] gh/etaf/146/head -> origin/gh/etaf/146/head 2025-07-24T03:47:26.7080143Z * [new branch] gh/etaf/147/base -> origin/gh/etaf/147/base 2025-07-24T03:47:26.7080582Z * [new branch] gh/etaf/147/head -> origin/gh/etaf/147/head 2025-07-24T03:47:26.7081037Z * [new branch] gh/etaf/148/base -> origin/gh/etaf/148/base 2025-07-24T03:47:26.7081644Z * [new branch] gh/etaf/148/head -> origin/gh/etaf/148/head 2025-07-24T03:47:26.7082082Z * [new branch] gh/etaf/148/orig -> origin/gh/etaf/148/orig 2025-07-24T03:47:26.7082555Z * [new branch] gh/ezyang/2374/base -> origin/gh/ezyang/2374/base 2025-07-24T03:47:26.7083032Z * [new branch] gh/ezyang/2374/head -> origin/gh/ezyang/2374/head 2025-07-24T03:47:26.7083508Z * [new branch] gh/ezyang/2374/orig -> origin/gh/ezyang/2374/orig 2025-07-24T03:47:26.7083985Z * [new branch] gh/ezyang/2973/base -> origin/gh/ezyang/2973/base 2025-07-24T03:47:26.7527233Z * [new branch] gh/ezyang/2973/head -> origin/gh/ezyang/2973/head 2025-07-24T03:47:26.7527776Z * [new branch] gh/ezyang/2973/orig -> origin/gh/ezyang/2973/orig 2025-07-24T03:47:26.7528260Z * [new branch] gh/ezyang/2974/base -> origin/gh/ezyang/2974/base 2025-07-24T03:47:26.7528819Z * [new branch] gh/ezyang/2974/head -> origin/gh/ezyang/2974/head 2025-07-24T03:47:26.7529292Z * [new branch] gh/ezyang/2974/orig -> origin/gh/ezyang/2974/orig 2025-07-24T03:47:26.7529775Z * [new branch] gh/ezyang/3068/base -> origin/gh/ezyang/3068/base 2025-07-24T03:47:26.7530248Z * [new branch] gh/ezyang/3068/head -> origin/gh/ezyang/3068/head 2025-07-24T03:47:26.7530711Z * [new branch] gh/ezyang/3068/orig -> origin/gh/ezyang/3068/orig 2025-07-24T03:47:26.7531187Z * [new branch] gh/ezyang/3071/base -> origin/gh/ezyang/3071/base 2025-07-24T03:47:26.7531661Z * [new branch] gh/ezyang/3071/head -> origin/gh/ezyang/3071/head 2025-07-24T03:47:26.7532125Z * [new branch] gh/ezyang/3071/orig -> origin/gh/ezyang/3071/orig 2025-07-24T03:47:26.7532602Z * [new branch] gh/ezyang/3074/base -> origin/gh/ezyang/3074/base 2025-07-24T03:47:26.7533072Z * [new branch] gh/ezyang/3074/head -> origin/gh/ezyang/3074/head 2025-07-24T03:47:26.7533549Z * [new branch] gh/ezyang/3074/orig -> origin/gh/ezyang/3074/orig 2025-07-24T03:47:26.7534019Z * [new branch] gh/ezyang/3082/base -> origin/gh/ezyang/3082/base 2025-07-24T03:47:26.7534481Z * [new branch] gh/ezyang/3082/head -> origin/gh/ezyang/3082/head 2025-07-24T03:47:26.7534957Z * [new branch] gh/ezyang/3082/orig -> origin/gh/ezyang/3082/orig 2025-07-24T03:47:26.7535418Z * [new branch] gh/ezyang/3083/base -> origin/gh/ezyang/3083/base 2025-07-24T03:47:26.7535893Z * [new branch] gh/ezyang/3083/head -> origin/gh/ezyang/3083/head 2025-07-24T03:47:26.7536362Z * [new branch] gh/ezyang/3083/orig -> origin/gh/ezyang/3083/orig 2025-07-24T03:47:26.7536833Z * [new branch] gh/ezyang/3084/base -> origin/gh/ezyang/3084/base 2025-07-24T03:47:26.7537305Z * [new branch] gh/ezyang/3084/head -> origin/gh/ezyang/3084/head 2025-07-24T03:47:26.7537770Z * [new branch] gh/ezyang/3084/orig -> origin/gh/ezyang/3084/orig 2025-07-24T03:47:26.7538241Z * [new branch] gh/ezyang/3085/base -> origin/gh/ezyang/3085/base 2025-07-24T03:47:26.7538712Z * [new branch] gh/ezyang/3085/head -> origin/gh/ezyang/3085/head 2025-07-24T03:47:26.7539172Z * [new branch] gh/ezyang/3085/orig -> origin/gh/ezyang/3085/orig 2025-07-24T03:47:26.7539640Z * [new branch] gh/ezyang/3086/base -> origin/gh/ezyang/3086/base 2025-07-24T03:47:26.7540108Z * [new branch] gh/ezyang/3086/head -> origin/gh/ezyang/3086/head 2025-07-24T03:47:26.7540575Z * [new branch] gh/ezyang/3086/orig -> origin/gh/ezyang/3086/orig 2025-07-24T03:47:26.7541311Z * [new branch] gh/ezyang/3087/base -> origin/gh/ezyang/3087/base 2025-07-24T03:47:26.7541782Z * [new branch] gh/ezyang/3087/head -> origin/gh/ezyang/3087/head 2025-07-24T03:47:26.7542261Z * [new branch] gh/ezyang/3087/orig -> origin/gh/ezyang/3087/orig 2025-07-24T03:47:26.7542725Z * [new branch] gh/ezyang/3088/base -> origin/gh/ezyang/3088/base 2025-07-24T03:47:26.7543197Z * [new branch] gh/ezyang/3088/head -> origin/gh/ezyang/3088/head 2025-07-24T03:47:26.7543660Z * [new branch] gh/ezyang/3088/orig -> origin/gh/ezyang/3088/orig 2025-07-24T03:47:26.7544135Z * [new branch] gh/ezyang/3089/base -> origin/gh/ezyang/3089/base 2025-07-24T03:47:26.7544623Z * [new branch] gh/ezyang/3089/head -> origin/gh/ezyang/3089/head 2025-07-24T03:47:26.7545086Z * [new branch] gh/ezyang/3089/orig -> origin/gh/ezyang/3089/orig 2025-07-24T03:47:26.7545571Z * [new branch] gh/ezyang/3090/base -> origin/gh/ezyang/3090/base 2025-07-24T03:47:26.7546034Z * [new branch] gh/ezyang/3090/head -> origin/gh/ezyang/3090/head 2025-07-24T03:47:26.7546505Z * [new branch] gh/ezyang/3090/orig -> origin/gh/ezyang/3090/orig 2025-07-24T03:47:26.7546983Z * [new branch] gh/ezyang/3091/base -> origin/gh/ezyang/3091/base 2025-07-24T03:47:26.7547446Z * [new branch] gh/ezyang/3091/head -> origin/gh/ezyang/3091/head 2025-07-24T03:47:26.7547917Z * [new branch] gh/ezyang/3091/orig -> origin/gh/ezyang/3091/orig 2025-07-24T03:47:26.7548383Z * [new branch] gh/ezyang/3092/base -> origin/gh/ezyang/3092/base 2025-07-24T03:47:26.7548859Z * [new branch] gh/ezyang/3092/head -> origin/gh/ezyang/3092/head 2025-07-24T03:47:26.7549335Z * [new branch] gh/ezyang/3092/orig -> origin/gh/ezyang/3092/orig 2025-07-24T03:47:26.7972601Z * [new branch] gh/ezyang/3093/base -> origin/gh/ezyang/3093/base 2025-07-24T03:47:26.7973144Z * [new branch] gh/ezyang/3093/head -> origin/gh/ezyang/3093/head 2025-07-24T03:47:26.7973632Z * [new branch] gh/ezyang/3093/orig -> origin/gh/ezyang/3093/orig 2025-07-24T03:47:26.7974173Z * [new branch] gh/ezyang/3094/base -> origin/gh/ezyang/3094/base 2025-07-24T03:47:26.7974649Z * [new branch] gh/ezyang/3094/head -> origin/gh/ezyang/3094/head 2025-07-24T03:47:26.7975115Z * [new branch] gh/ezyang/3094/orig -> origin/gh/ezyang/3094/orig 2025-07-24T03:47:26.7975586Z * [new branch] gh/ezyang/3095/base -> origin/gh/ezyang/3095/base 2025-07-24T03:47:26.7976051Z * [new branch] gh/ezyang/3095/head -> origin/gh/ezyang/3095/head 2025-07-24T03:47:26.7976536Z * [new branch] gh/ezyang/3095/orig -> origin/gh/ezyang/3095/orig 2025-07-24T03:47:26.7977016Z * [new branch] gh/ezyang/3096/base -> origin/gh/ezyang/3096/base 2025-07-24T03:47:26.7977482Z * [new branch] gh/ezyang/3096/head -> origin/gh/ezyang/3096/head 2025-07-24T03:47:26.7977949Z * [new branch] gh/ezyang/3096/orig -> origin/gh/ezyang/3096/orig 2025-07-24T03:47:26.7978417Z * [new branch] gh/ezyang/3097/base -> origin/gh/ezyang/3097/base 2025-07-24T03:47:26.7978893Z * [new branch] gh/ezyang/3097/head -> origin/gh/ezyang/3097/head 2025-07-24T03:47:26.7979364Z * [new branch] gh/ezyang/3097/orig -> origin/gh/ezyang/3097/orig 2025-07-24T03:47:26.7979850Z * [new branch] gh/ezyang/3098/base -> origin/gh/ezyang/3098/base 2025-07-24T03:47:26.7980322Z * [new branch] gh/ezyang/3098/head -> origin/gh/ezyang/3098/head 2025-07-24T03:47:26.7980926Z * [new branch] gh/ezyang/3098/orig -> origin/gh/ezyang/3098/orig 2025-07-24T03:47:26.7981513Z * [new branch] gh/ezyang/3099/base -> origin/gh/ezyang/3099/base 2025-07-24T03:47:26.7981992Z * [new branch] gh/ezyang/3099/head -> origin/gh/ezyang/3099/head 2025-07-24T03:47:26.7982460Z * [new branch] gh/ezyang/3099/orig -> origin/gh/ezyang/3099/orig 2025-07-24T03:47:26.7982939Z * [new branch] gh/ezyang/3100/base -> origin/gh/ezyang/3100/base 2025-07-24T03:47:26.7983410Z * [new branch] gh/ezyang/3100/head -> origin/gh/ezyang/3100/head 2025-07-24T03:47:26.7983887Z * [new branch] gh/ezyang/3100/orig -> origin/gh/ezyang/3100/orig 2025-07-24T03:47:26.7984359Z * [new branch] gh/ezyang/3101/base -> origin/gh/ezyang/3101/base 2025-07-24T03:47:26.7984833Z * [new branch] gh/ezyang/3101/head -> origin/gh/ezyang/3101/head 2025-07-24T03:47:26.7985314Z * [new branch] gh/ezyang/3101/orig -> origin/gh/ezyang/3101/orig 2025-07-24T03:47:26.7985776Z * [new branch] gh/ezyang/3102/base -> origin/gh/ezyang/3102/base 2025-07-24T03:47:26.7986244Z * [new branch] gh/ezyang/3102/head -> origin/gh/ezyang/3102/head 2025-07-24T03:47:26.7986707Z * [new branch] gh/ezyang/3102/orig -> origin/gh/ezyang/3102/orig 2025-07-24T03:47:26.7987181Z * [new branch] gh/ezyang/3103/base -> origin/gh/ezyang/3103/base 2025-07-24T03:47:26.7987656Z * [new branch] gh/ezyang/3103/head -> origin/gh/ezyang/3103/head 2025-07-24T03:47:26.7988118Z * [new branch] gh/ezyang/3103/orig -> origin/gh/ezyang/3103/orig 2025-07-24T03:47:26.7988596Z * [new branch] gh/ezyang/3104/base -> origin/gh/ezyang/3104/base 2025-07-24T03:47:26.7989065Z * [new branch] gh/ezyang/3104/head -> origin/gh/ezyang/3104/head 2025-07-24T03:47:26.7989539Z * [new branch] gh/ezyang/3104/orig -> origin/gh/ezyang/3104/orig 2025-07-24T03:47:26.7990013Z * [new branch] gh/ezyang/3105/base -> origin/gh/ezyang/3105/base 2025-07-24T03:47:26.7990478Z * [new branch] gh/ezyang/3105/head -> origin/gh/ezyang/3105/head 2025-07-24T03:47:26.7990950Z * [new branch] gh/ezyang/3105/orig -> origin/gh/ezyang/3105/orig 2025-07-24T03:47:26.7991412Z * [new branch] gh/ezyang/3106/base -> origin/gh/ezyang/3106/base 2025-07-24T03:47:26.7991882Z * [new branch] gh/ezyang/3106/head -> origin/gh/ezyang/3106/head 2025-07-24T03:47:26.7992347Z * [new branch] gh/ezyang/3106/orig -> origin/gh/ezyang/3106/orig 2025-07-24T03:47:26.7992807Z * [new branch] gh/ezyang/3107/base -> origin/gh/ezyang/3107/base 2025-07-24T03:47:26.7993281Z * [new branch] gh/ezyang/3107/head -> origin/gh/ezyang/3107/head 2025-07-24T03:47:26.7993756Z * [new branch] gh/ezyang/3107/orig -> origin/gh/ezyang/3107/orig 2025-07-24T03:47:26.7994226Z * [new branch] gh/ezyang/3108/base -> origin/gh/ezyang/3108/base 2025-07-24T03:47:26.7994689Z * [new branch] gh/ezyang/3108/head -> origin/gh/ezyang/3108/head 2025-07-24T03:47:26.8427436Z * [new branch] gh/ezyang/3108/orig -> origin/gh/ezyang/3108/orig 2025-07-24T03:47:26.8427940Z * [new branch] gh/ezyang/3109/base -> origin/gh/ezyang/3109/base 2025-07-24T03:47:26.8428418Z * [new branch] gh/ezyang/3109/head -> origin/gh/ezyang/3109/head 2025-07-24T03:47:26.8428899Z * [new branch] gh/ezyang/3109/orig -> origin/gh/ezyang/3109/orig 2025-07-24T03:47:26.8429374Z * [new branch] gh/ezyang/3110/base -> origin/gh/ezyang/3110/base 2025-07-24T03:47:26.8429964Z * [new branch] gh/ezyang/3110/head -> origin/gh/ezyang/3110/head 2025-07-24T03:47:26.8430534Z * [new branch] gh/ezyang/3110/orig -> origin/gh/ezyang/3110/orig 2025-07-24T03:47:26.8431016Z * [new branch] gh/ezyang/3111/base -> origin/gh/ezyang/3111/base 2025-07-24T03:47:26.8431501Z * [new branch] gh/ezyang/3111/head -> origin/gh/ezyang/3111/head 2025-07-24T03:47:26.8431975Z * [new branch] gh/ezyang/3111/orig -> origin/gh/ezyang/3111/orig 2025-07-24T03:47:26.8432440Z * [new branch] gh/ezyang/3112/base -> origin/gh/ezyang/3112/base 2025-07-24T03:47:26.8432912Z * [new branch] gh/ezyang/3112/head -> origin/gh/ezyang/3112/head 2025-07-24T03:47:26.8433377Z * [new branch] gh/ezyang/3112/orig -> origin/gh/ezyang/3112/orig 2025-07-24T03:47:26.8433852Z * [new branch] gh/ezyang/3113/base -> origin/gh/ezyang/3113/base 2025-07-24T03:47:26.8434334Z * [new branch] gh/ezyang/3113/head -> origin/gh/ezyang/3113/head 2025-07-24T03:47:26.8434800Z * [new branch] gh/ezyang/3113/orig -> origin/gh/ezyang/3113/orig 2025-07-24T03:47:26.8435279Z * [new branch] gh/ezyang/3114/base -> origin/gh/ezyang/3114/base 2025-07-24T03:47:26.8435742Z * [new branch] gh/ezyang/3114/head -> origin/gh/ezyang/3114/head 2025-07-24T03:47:26.8436216Z * [new branch] gh/ezyang/3114/orig -> origin/gh/ezyang/3114/orig 2025-07-24T03:47:26.8436689Z * [new branch] gh/ezyang/3115/base -> origin/gh/ezyang/3115/base 2025-07-24T03:47:26.8437155Z * [new branch] gh/ezyang/3115/head -> origin/gh/ezyang/3115/head 2025-07-24T03:47:26.8437625Z * [new branch] gh/ezyang/3115/orig -> origin/gh/ezyang/3115/orig 2025-07-24T03:47:26.8438095Z * [new branch] gh/ezyang/3116/base -> origin/gh/ezyang/3116/base 2025-07-24T03:47:26.8438572Z * [new branch] gh/ezyang/3116/head -> origin/gh/ezyang/3116/head 2025-07-24T03:47:26.8439036Z * [new branch] gh/ezyang/3116/orig -> origin/gh/ezyang/3116/orig 2025-07-24T03:47:26.8439523Z * [new branch] gh/fadara01/1/base -> origin/gh/fadara01/1/base 2025-07-24T03:47:26.8440002Z * [new branch] gh/fadara01/1/head -> origin/gh/fadara01/1/head 2025-07-24T03:47:26.8440462Z * [new branch] gh/fadara01/1/orig -> origin/gh/fadara01/1/orig 2025-07-24T03:47:26.8440927Z * [new branch] gh/fduwjj/146/base -> origin/gh/fduwjj/146/base 2025-07-24T03:47:26.8441386Z * [new branch] gh/fduwjj/146/head -> origin/gh/fduwjj/146/head 2025-07-24T03:47:26.8441849Z * [new branch] gh/fduwjj/146/orig -> origin/gh/fduwjj/146/orig 2025-07-24T03:47:26.8442324Z * [new branch] gh/fduwjj/151/base -> origin/gh/fduwjj/151/base 2025-07-24T03:47:26.8442783Z * [new branch] gh/fduwjj/151/head -> origin/gh/fduwjj/151/head 2025-07-24T03:47:26.8443246Z * [new branch] gh/fduwjj/151/orig -> origin/gh/fduwjj/151/orig 2025-07-24T03:47:26.8443700Z * [new branch] gh/fduwjj/152/base -> origin/gh/fduwjj/152/base 2025-07-24T03:47:26.8444167Z * [new branch] gh/fduwjj/152/head -> origin/gh/fduwjj/152/head 2025-07-24T03:47:26.8444631Z * [new branch] gh/fduwjj/152/orig -> origin/gh/fduwjj/152/orig 2025-07-24T03:47:26.8445085Z * [new branch] gh/fduwjj/153/base -> origin/gh/fduwjj/153/base 2025-07-24T03:47:26.8445553Z * [new branch] gh/fduwjj/153/head -> origin/gh/fduwjj/153/head 2025-07-24T03:47:26.8446009Z * [new branch] gh/fduwjj/153/orig -> origin/gh/fduwjj/153/orig 2025-07-24T03:47:26.8446556Z * [new branch] gh/fduwjj/154/base -> origin/gh/fduwjj/154/base 2025-07-24T03:47:26.8447090Z * [new branch] gh/fduwjj/154/head -> origin/gh/fduwjj/154/head 2025-07-24T03:47:26.8447575Z * [new branch] gh/fduwjj/154/orig -> origin/gh/fduwjj/154/orig 2025-07-24T03:47:26.8448053Z * [new branch] gh/fduwjj/155/base -> origin/gh/fduwjj/155/base 2025-07-24T03:47:26.8448584Z * [new branch] gh/fduwjj/155/head -> origin/gh/fduwjj/155/head 2025-07-24T03:47:26.8449067Z * [new branch] gh/fduwjj/155/orig -> origin/gh/fduwjj/155/orig 2025-07-24T03:47:26.8449531Z * [new branch] gh/fduwjj/156/base -> origin/gh/fduwjj/156/base 2025-07-24T03:47:26.8450013Z * [new branch] gh/fduwjj/156/head -> origin/gh/fduwjj/156/head 2025-07-24T03:47:26.8882297Z * [new branch] gh/fduwjj/156/orig -> origin/gh/fduwjj/156/orig 2025-07-24T03:47:26.8882862Z * [new branch] gh/fduwjj/157/base -> origin/gh/fduwjj/157/base 2025-07-24T03:47:26.8883345Z * [new branch] gh/fduwjj/157/head -> origin/gh/fduwjj/157/head 2025-07-24T03:47:26.8883822Z * [new branch] gh/fduwjj/157/orig -> origin/gh/fduwjj/157/orig 2025-07-24T03:47:26.8884284Z * [new branch] gh/fduwjj/158/base -> origin/gh/fduwjj/158/base 2025-07-24T03:47:26.8884752Z * [new branch] gh/fduwjj/158/head -> origin/gh/fduwjj/158/head 2025-07-24T03:47:26.8885213Z * [new branch] gh/fduwjj/158/orig -> origin/gh/fduwjj/158/orig 2025-07-24T03:47:26.8885688Z * [new branch] gh/fduwjj/159/base -> origin/gh/fduwjj/159/base 2025-07-24T03:47:26.8886214Z * [new branch] gh/fduwjj/159/head -> origin/gh/fduwjj/159/head 2025-07-24T03:47:26.8886728Z * [new branch] gh/fduwjj/159/orig -> origin/gh/fduwjj/159/orig 2025-07-24T03:47:26.8887254Z * [new branch] gh/fduwjj/160/base -> origin/gh/fduwjj/160/base 2025-07-24T03:47:26.8887721Z * [new branch] gh/fduwjj/160/head -> origin/gh/fduwjj/160/head 2025-07-24T03:47:26.8888189Z * [new branch] gh/fduwjj/160/orig -> origin/gh/fduwjj/160/orig 2025-07-24T03:47:26.8888704Z * [new branch] gh/fduwjj/161/base -> origin/gh/fduwjj/161/base 2025-07-24T03:47:26.8889172Z * [new branch] gh/fduwjj/161/head -> origin/gh/fduwjj/161/head 2025-07-24T03:47:26.8889633Z * [new branch] gh/fduwjj/161/orig -> origin/gh/fduwjj/161/orig 2025-07-24T03:47:26.8890088Z * [new branch] gh/fduwjj/162/base -> origin/gh/fduwjj/162/base 2025-07-24T03:47:26.8890555Z * [new branch] gh/fduwjj/162/head -> origin/gh/fduwjj/162/head 2025-07-24T03:47:26.8891008Z * [new branch] gh/fduwjj/162/orig -> origin/gh/fduwjj/162/orig 2025-07-24T03:47:26.8891484Z * [new branch] gh/fduwjj/163/base -> origin/gh/fduwjj/163/base 2025-07-24T03:47:26.8891951Z * [new branch] gh/fduwjj/163/head -> origin/gh/fduwjj/163/head 2025-07-24T03:47:26.8892460Z * [new branch] gh/fduwjj/163/orig -> origin/gh/fduwjj/163/orig 2025-07-24T03:47:26.8892974Z * [new branch] gh/fduwjj/164/base -> origin/gh/fduwjj/164/base 2025-07-24T03:47:26.8893491Z * [new branch] gh/fduwjj/164/head -> origin/gh/fduwjj/164/head 2025-07-24T03:47:26.8893968Z * [new branch] gh/fduwjj/164/orig -> origin/gh/fduwjj/164/orig 2025-07-24T03:47:26.8894433Z * [new branch] gh/fduwjj/165/base -> origin/gh/fduwjj/165/base 2025-07-24T03:47:26.8894894Z * [new branch] gh/fduwjj/165/head -> origin/gh/fduwjj/165/head 2025-07-24T03:47:26.8895496Z * [new branch] gh/fduwjj/165/orig -> origin/gh/fduwjj/165/orig 2025-07-24T03:47:26.8896040Z * [new branch] gh/fduwjj/166/base -> origin/gh/fduwjj/166/base 2025-07-24T03:47:26.8896517Z * [new branch] gh/fduwjj/166/head -> origin/gh/fduwjj/166/head 2025-07-24T03:47:26.8896975Z * [new branch] gh/fduwjj/166/orig -> origin/gh/fduwjj/166/orig 2025-07-24T03:47:26.8897444Z * [new branch] gh/fduwjj/167/base -> origin/gh/fduwjj/167/base 2025-07-24T03:47:26.8897915Z * [new branch] gh/fduwjj/167/head -> origin/gh/fduwjj/167/head 2025-07-24T03:47:26.8898374Z * [new branch] gh/fduwjj/167/orig -> origin/gh/fduwjj/167/orig 2025-07-24T03:47:26.8898871Z * [new branch] gh/fduwjj/168/base -> origin/gh/fduwjj/168/base 2025-07-24T03:47:26.8899356Z * [new branch] gh/fduwjj/168/head -> origin/gh/fduwjj/168/head 2025-07-24T03:47:26.8899911Z * [new branch] gh/fduwjj/168/orig -> origin/gh/fduwjj/168/orig 2025-07-24T03:47:26.8900396Z * [new branch] gh/fduwjj/169/base -> origin/gh/fduwjj/169/base 2025-07-24T03:47:26.8900857Z * [new branch] gh/fduwjj/169/head -> origin/gh/fduwjj/169/head 2025-07-24T03:47:26.8901318Z * [new branch] gh/fduwjj/169/orig -> origin/gh/fduwjj/169/orig 2025-07-24T03:47:26.8901774Z * [new branch] gh/fduwjj/170/base -> origin/gh/fduwjj/170/base 2025-07-24T03:47:26.8902239Z * [new branch] gh/fduwjj/170/head -> origin/gh/fduwjj/170/head 2025-07-24T03:47:26.8902703Z * [new branch] gh/fduwjj/170/orig -> origin/gh/fduwjj/170/orig 2025-07-24T03:47:26.8903159Z * [new branch] gh/fduwjj/171/base -> origin/gh/fduwjj/171/base 2025-07-24T03:47:26.8903625Z * [new branch] gh/fduwjj/171/head -> origin/gh/fduwjj/171/head 2025-07-24T03:47:26.8904085Z * [new branch] gh/fduwjj/171/orig -> origin/gh/fduwjj/171/orig 2025-07-24T03:47:26.8904555Z * [new branch] gh/fduwjj/172/base -> origin/gh/fduwjj/172/base 2025-07-24T03:47:26.9353143Z * [new branch] gh/fduwjj/172/head -> origin/gh/fduwjj/172/head 2025-07-24T03:47:26.9353685Z * [new branch] gh/fduwjj/172/orig -> origin/gh/fduwjj/172/orig 2025-07-24T03:47:26.9354187Z * [new branch] gh/fduwjj/173/base -> origin/gh/fduwjj/173/base 2025-07-24T03:47:26.9354760Z * [new branch] gh/fduwjj/173/head -> origin/gh/fduwjj/173/head 2025-07-24T03:47:26.9355245Z * [new branch] gh/fduwjj/173/orig -> origin/gh/fduwjj/173/orig 2025-07-24T03:47:26.9355710Z * [new branch] gh/fduwjj/174/base -> origin/gh/fduwjj/174/base 2025-07-24T03:47:26.9356172Z * [new branch] gh/fduwjj/174/head -> origin/gh/fduwjj/174/head 2025-07-24T03:47:26.9356667Z * [new branch] gh/fduwjj/174/orig -> origin/gh/fduwjj/174/orig 2025-07-24T03:47:26.9357129Z * [new branch] gh/fegin/306/base -> origin/gh/fegin/306/base 2025-07-24T03:47:26.9357594Z * [new branch] gh/fegin/306/head -> origin/gh/fegin/306/head 2025-07-24T03:47:26.9358057Z * [new branch] gh/fegin/306/orig -> origin/gh/fegin/306/orig 2025-07-24T03:47:26.9358511Z * [new branch] gh/fegin/307/base -> origin/gh/fegin/307/base 2025-07-24T03:47:26.9358973Z * [new branch] gh/fegin/307/head -> origin/gh/fegin/307/head 2025-07-24T03:47:26.9359425Z * [new branch] gh/fegin/307/orig -> origin/gh/fegin/307/orig 2025-07-24T03:47:26.9359888Z * [new branch] gh/fffrog/105/base -> origin/gh/fffrog/105/base 2025-07-24T03:47:26.9360407Z * [new branch] gh/fffrog/105/head -> origin/gh/fffrog/105/head 2025-07-24T03:47:26.9361137Z * [new branch] gh/fffrog/105/orig -> origin/gh/fffrog/105/orig 2025-07-24T03:47:26.9361666Z * [new branch] gh/fffrog/106/base -> origin/gh/fffrog/106/base 2025-07-24T03:47:26.9362126Z * [new branch] gh/fffrog/106/head -> origin/gh/fffrog/106/head 2025-07-24T03:47:26.9362598Z * [new branch] gh/fffrog/106/orig -> origin/gh/fffrog/106/orig 2025-07-24T03:47:26.9363058Z * [new branch] gh/fffrog/107/base -> origin/gh/fffrog/107/base 2025-07-24T03:47:26.9363524Z * [new branch] gh/fffrog/107/head -> origin/gh/fffrog/107/head 2025-07-24T03:47:26.9363994Z * [new branch] gh/fffrog/107/orig -> origin/gh/fffrog/107/orig 2025-07-24T03:47:26.9364452Z * [new branch] gh/fffrog/108/base -> origin/gh/fffrog/108/base 2025-07-24T03:47:26.9364916Z * [new branch] gh/fffrog/108/head -> origin/gh/fffrog/108/head 2025-07-24T03:47:26.9365387Z * [new branch] gh/fffrog/108/orig -> origin/gh/fffrog/108/orig 2025-07-24T03:47:26.9365860Z * [new branch] gh/fffrog/109/base -> origin/gh/fffrog/109/base 2025-07-24T03:47:26.9366320Z * [new branch] gh/fffrog/109/head -> origin/gh/fffrog/109/head 2025-07-24T03:47:26.9366824Z * [new branch] gh/fffrog/109/orig -> origin/gh/fffrog/109/orig 2025-07-24T03:47:26.9367336Z * [new branch] gh/fffrog/110/base -> origin/gh/fffrog/110/base 2025-07-24T03:47:26.9367844Z * [new branch] gh/fffrog/110/head -> origin/gh/fffrog/110/head 2025-07-24T03:47:26.9368306Z * [new branch] gh/fffrog/110/orig -> origin/gh/fffrog/110/orig 2025-07-24T03:47:26.9368845Z * [new branch] gh/fffrog/111/base -> origin/gh/fffrog/111/base 2025-07-24T03:47:26.9369315Z * [new branch] gh/fffrog/111/head -> origin/gh/fffrog/111/head 2025-07-24T03:47:26.9369792Z * [new branch] gh/fffrog/111/orig -> origin/gh/fffrog/111/orig 2025-07-24T03:47:26.9370253Z * [new branch] gh/fffrog/112/base -> origin/gh/fffrog/112/base 2025-07-24T03:47:26.9370721Z * [new branch] gh/fffrog/112/head -> origin/gh/fffrog/112/head 2025-07-24T03:47:26.9371196Z * [new branch] gh/fffrog/112/orig -> origin/gh/fffrog/112/orig 2025-07-24T03:47:26.9371653Z * [new branch] gh/fffrog/113/base -> origin/gh/fffrog/113/base 2025-07-24T03:47:26.9372121Z * [new branch] gh/fffrog/113/head -> origin/gh/fffrog/113/head 2025-07-24T03:47:26.9372576Z * [new branch] gh/fffrog/113/orig -> origin/gh/fffrog/113/orig 2025-07-24T03:47:26.9373045Z * [new branch] gh/fffrog/114/base -> origin/gh/fffrog/114/base 2025-07-24T03:47:26.9373513Z * [new branch] gh/fffrog/114/head -> origin/gh/fffrog/114/head 2025-07-24T03:47:26.9373989Z * [new branch] gh/fffrog/114/orig -> origin/gh/fffrog/114/orig 2025-07-24T03:47:26.9374463Z * [new branch] gh/fffrog/115/base -> origin/gh/fffrog/115/base 2025-07-24T03:47:26.9374920Z * [new branch] gh/fffrog/115/head -> origin/gh/fffrog/115/head 2025-07-24T03:47:26.9375388Z * [new branch] gh/fffrog/115/orig -> origin/gh/fffrog/115/orig 2025-07-24T03:47:26.9375847Z * [new branch] gh/fffrog/116/base -> origin/gh/fffrog/116/base 2025-07-24T03:47:26.9796250Z * [new branch] gh/fffrog/116/head -> origin/gh/fffrog/116/head 2025-07-24T03:47:26.9796768Z * [new branch] gh/fffrog/116/orig -> origin/gh/fffrog/116/orig 2025-07-24T03:47:26.9797244Z * [new branch] gh/fffrog/117/base -> origin/gh/fffrog/117/base 2025-07-24T03:47:26.9797854Z * [new branch] gh/fffrog/117/head -> origin/gh/fffrog/117/head 2025-07-24T03:47:26.9798992Z * [new branch] gh/fffrog/117/orig -> origin/gh/fffrog/117/orig 2025-07-24T03:47:26.9799478Z * [new branch] gh/fffrog/118/base -> origin/gh/fffrog/118/base 2025-07-24T03:47:26.9799959Z * [new branch] gh/fffrog/118/head -> origin/gh/fffrog/118/head 2025-07-24T03:47:26.9800425Z * [new branch] gh/fffrog/118/orig -> origin/gh/fffrog/118/orig 2025-07-24T03:47:26.9800889Z * [new branch] gh/fffrog/119/base -> origin/gh/fffrog/119/base 2025-07-24T03:47:26.9801348Z * [new branch] gh/fffrog/119/head -> origin/gh/fffrog/119/head 2025-07-24T03:47:26.9801892Z * [new branch] gh/fffrog/119/orig -> origin/gh/fffrog/119/orig 2025-07-24T03:47:26.9802403Z * [new branch] gh/fffrog/120/base -> origin/gh/fffrog/120/base 2025-07-24T03:47:26.9802877Z * [new branch] gh/fffrog/120/head -> origin/gh/fffrog/120/head 2025-07-24T03:47:26.9803353Z * [new branch] gh/fffrog/120/orig -> origin/gh/fffrog/120/orig 2025-07-24T03:47:26.9803815Z * [new branch] gh/fffrog/121/base -> origin/gh/fffrog/121/base 2025-07-24T03:47:26.9804283Z * [new branch] gh/fffrog/121/head -> origin/gh/fffrog/121/head 2025-07-24T03:47:26.9804754Z * [new branch] gh/fffrog/121/orig -> origin/gh/fffrog/121/orig 2025-07-24T03:47:26.9805236Z * [new branch] gh/fffrog/122/base -> origin/gh/fffrog/122/base 2025-07-24T03:47:26.9805702Z * [new branch] gh/fffrog/122/head -> origin/gh/fffrog/122/head 2025-07-24T03:47:26.9806164Z * [new branch] gh/fffrog/122/orig -> origin/gh/fffrog/122/orig 2025-07-24T03:47:26.9817359Z * [new branch] gh/fffrog/123/base -> origin/gh/fffrog/123/base 2025-07-24T03:47:26.9817882Z * [new branch] gh/fffrog/123/head -> origin/gh/fffrog/123/head 2025-07-24T03:47:26.9818366Z * [new branch] gh/fffrog/123/orig -> origin/gh/fffrog/123/orig 2025-07-24T03:47:26.9818841Z * [new branch] gh/fffrog/124/base -> origin/gh/fffrog/124/base 2025-07-24T03:47:26.9819309Z * [new branch] gh/fffrog/124/head -> origin/gh/fffrog/124/head 2025-07-24T03:47:26.9819777Z * [new branch] gh/fffrog/124/orig -> origin/gh/fffrog/124/orig 2025-07-24T03:47:26.9820309Z * [new branch] gh/fffrog/125/base -> origin/gh/fffrog/125/base 2025-07-24T03:47:26.9820833Z * [new branch] gh/fffrog/125/head -> origin/gh/fffrog/125/head 2025-07-24T03:47:26.9821315Z * [new branch] gh/fffrog/125/orig -> origin/gh/fffrog/125/orig 2025-07-24T03:47:26.9821783Z * [new branch] gh/fffrog/126/base -> origin/gh/fffrog/126/base 2025-07-24T03:47:26.9822267Z * [new branch] gh/fffrog/126/head -> origin/gh/fffrog/126/head 2025-07-24T03:47:26.9822728Z * [new branch] gh/fffrog/126/orig -> origin/gh/fffrog/126/orig 2025-07-24T03:47:26.9823200Z * [new branch] gh/fffrog/127/base -> origin/gh/fffrog/127/base 2025-07-24T03:47:26.9823663Z * [new branch] gh/fffrog/127/head -> origin/gh/fffrog/127/head 2025-07-24T03:47:26.9824137Z * [new branch] gh/fffrog/127/orig -> origin/gh/fffrog/127/orig 2025-07-24T03:47:26.9824609Z * [new branch] gh/fffrog/39/base -> origin/gh/fffrog/39/base 2025-07-24T03:47:26.9825066Z * [new branch] gh/fffrog/39/head -> origin/gh/fffrog/39/head 2025-07-24T03:47:26.9825536Z * [new branch] gh/fffrog/39/orig -> origin/gh/fffrog/39/orig 2025-07-24T03:47:26.9826183Z * [new branch] gh/fffrog/87/base -> origin/gh/fffrog/87/base 2025-07-24T03:47:26.9826778Z * [new branch] gh/fffrog/87/head -> origin/gh/fffrog/87/head 2025-07-24T03:47:26.9827248Z * [new branch] gh/fffrog/87/orig -> origin/gh/fffrog/87/orig 2025-07-24T03:47:26.9827709Z * [new branch] gh/fffrog/93/base -> origin/gh/fffrog/93/base 2025-07-24T03:47:26.9828184Z * [new branch] gh/fffrog/93/head -> origin/gh/fffrog/93/head 2025-07-24T03:47:26.9828640Z * [new branch] gh/fffrog/93/orig -> origin/gh/fffrog/93/orig 2025-07-24T03:47:26.9829135Z * [new branch] gh/gmagogsfm/1/base -> origin/gh/gmagogsfm/1/base 2025-07-24T03:47:26.9829623Z * [new branch] gh/gmagogsfm/1/head -> origin/gh/gmagogsfm/1/head 2025-07-24T03:47:26.9830096Z * [new branch] gh/gmagogsfm/1/orig -> origin/gh/gmagogsfm/1/orig 2025-07-24T03:47:26.9830579Z * [new branch] gh/gmagogsfm/2/base -> origin/gh/gmagogsfm/2/base 2025-07-24T03:47:27.0246659Z * [new branch] gh/gmagogsfm/2/head -> origin/gh/gmagogsfm/2/head 2025-07-24T03:47:27.0247177Z * [new branch] gh/gmagogsfm/2/orig -> origin/gh/gmagogsfm/2/orig 2025-07-24T03:47:27.0247673Z * [new branch] gh/gmagogsfm/3/base -> origin/gh/gmagogsfm/3/base 2025-07-24T03:47:27.0248147Z * [new branch] gh/gmagogsfm/3/head -> origin/gh/gmagogsfm/3/head 2025-07-24T03:47:27.0248677Z * [new branch] gh/gmagogsfm/3/orig -> origin/gh/gmagogsfm/3/orig 2025-07-24T03:47:27.0249211Z * [new branch] gh/gmagogsfm/4/base -> origin/gh/gmagogsfm/4/base 2025-07-24T03:47:27.0249743Z * [new branch] gh/gmagogsfm/4/head -> origin/gh/gmagogsfm/4/head 2025-07-24T03:47:27.0250231Z * [new branch] gh/gmagogsfm/4/orig -> origin/gh/gmagogsfm/4/orig 2025-07-24T03:47:27.0250727Z * [new branch] gh/guangyey/130/base -> origin/gh/guangyey/130/base 2025-07-24T03:47:27.0251221Z * [new branch] gh/guangyey/130/head -> origin/gh/guangyey/130/head 2025-07-24T03:47:27.0251698Z * [new branch] gh/guangyey/130/orig -> origin/gh/guangyey/130/orig 2025-07-24T03:47:27.0252184Z * [new branch] gh/guangyey/133/base -> origin/gh/guangyey/133/base 2025-07-24T03:47:27.0252673Z * [new branch] gh/guangyey/133/head -> origin/gh/guangyey/133/head 2025-07-24T03:47:27.0253157Z * [new branch] gh/guangyey/133/orig -> origin/gh/guangyey/133/orig 2025-07-24T03:47:27.0253648Z * [new branch] gh/guangyey/134/base -> origin/gh/guangyey/134/base 2025-07-24T03:47:27.0254126Z * [new branch] gh/guangyey/134/head -> origin/gh/guangyey/134/head 2025-07-24T03:47:27.0254613Z * [new branch] gh/guangyey/134/orig -> origin/gh/guangyey/134/orig 2025-07-24T03:47:27.0255142Z * [new branch] gh/guangyey/135/base -> origin/gh/guangyey/135/base 2025-07-24T03:47:27.0255674Z * [new branch] gh/guangyey/135/head -> origin/gh/guangyey/135/head 2025-07-24T03:47:27.0256165Z * [new branch] gh/guangyey/135/orig -> origin/gh/guangyey/135/orig 2025-07-24T03:47:27.0256640Z * [new branch] gh/guangyey/139/base -> origin/gh/guangyey/139/base 2025-07-24T03:47:27.0257137Z * [new branch] gh/guangyey/139/head -> origin/gh/guangyey/139/head 2025-07-24T03:47:27.0257620Z * [new branch] gh/guangyey/139/orig -> origin/gh/guangyey/139/orig 2025-07-24T03:47:27.0258095Z * [new branch] gh/guangyey/140/base -> origin/gh/guangyey/140/base 2025-07-24T03:47:27.0258586Z * [new branch] gh/guangyey/140/head -> origin/gh/guangyey/140/head 2025-07-24T03:47:27.0259774Z * [new branch] gh/guangyey/140/orig -> origin/gh/guangyey/140/orig 2025-07-24T03:47:27.0260358Z * [new branch] gh/guangyey/142/base -> origin/gh/guangyey/142/base 2025-07-24T03:47:27.0260837Z * [new branch] gh/guangyey/142/head -> origin/gh/guangyey/142/head 2025-07-24T03:47:27.0261394Z * [new branch] gh/guangyey/142/orig -> origin/gh/guangyey/142/orig 2025-07-24T03:47:27.0261944Z * [new branch] gh/guangyey/145/base -> origin/gh/guangyey/145/base 2025-07-24T03:47:27.0262423Z * [new branch] gh/guangyey/145/head -> origin/gh/guangyey/145/head 2025-07-24T03:47:27.0262916Z * [new branch] gh/guangyey/145/orig -> origin/gh/guangyey/145/orig 2025-07-24T03:47:27.0263394Z * [new branch] gh/guangyey/153/base -> origin/gh/guangyey/153/base 2025-07-24T03:47:27.0263887Z * [new branch] gh/guangyey/153/head -> origin/gh/guangyey/153/head 2025-07-24T03:47:27.0264387Z * [new branch] gh/guangyey/153/orig -> origin/gh/guangyey/153/orig 2025-07-24T03:47:27.0264873Z * [new branch] gh/guangyey/154/base -> origin/gh/guangyey/154/base 2025-07-24T03:47:27.0265366Z * [new branch] gh/guangyey/154/head -> origin/gh/guangyey/154/head 2025-07-24T03:47:27.0265843Z * [new branch] gh/guangyey/154/orig -> origin/gh/guangyey/154/orig 2025-07-24T03:47:27.0266335Z * [new branch] gh/guangyey/158/base -> origin/gh/guangyey/158/base 2025-07-24T03:47:27.0266831Z * [new branch] gh/guangyey/158/head -> origin/gh/guangyey/158/head 2025-07-24T03:47:27.0267359Z * [new branch] gh/guangyey/158/orig -> origin/gh/guangyey/158/orig 2025-07-24T03:47:27.0267894Z * [new branch] gh/guangyey/159/base -> origin/gh/guangyey/159/base 2025-07-24T03:47:27.0268378Z * [new branch] gh/guangyey/159/head -> origin/gh/guangyey/159/head 2025-07-24T03:47:27.0268878Z * [new branch] gh/guangyey/159/orig -> origin/gh/guangyey/159/orig 2025-07-24T03:47:27.0269354Z * [new branch] gh/guangyey/160/base -> origin/gh/guangyey/160/base 2025-07-24T03:47:27.0269847Z * [new branch] gh/guangyey/160/head -> origin/gh/guangyey/160/head 2025-07-24T03:47:27.0686701Z * [new branch] gh/guangyey/160/orig -> origin/gh/guangyey/160/orig 2025-07-24T03:47:27.0687205Z * [new branch] gh/guangyey/161/base -> origin/gh/guangyey/161/base 2025-07-24T03:47:27.0687693Z * [new branch] gh/guangyey/161/head -> origin/gh/guangyey/161/head 2025-07-24T03:47:27.0688179Z * [new branch] gh/guangyey/161/orig -> origin/gh/guangyey/161/orig 2025-07-24T03:47:27.0688697Z * [new branch] gh/guangyey/162/base -> origin/gh/guangyey/162/base 2025-07-24T03:47:27.0689189Z * [new branch] gh/guangyey/162/head -> origin/gh/guangyey/162/head 2025-07-24T03:47:27.0689676Z * [new branch] gh/guangyey/162/orig -> origin/gh/guangyey/162/orig 2025-07-24T03:47:27.0690173Z * [new branch] gh/guangyey/163/base -> origin/gh/guangyey/163/base 2025-07-24T03:47:27.0690659Z * [new branch] gh/guangyey/163/head -> origin/gh/guangyey/163/head 2025-07-24T03:47:27.0691137Z * [new branch] gh/guangyey/163/orig -> origin/gh/guangyey/163/orig 2025-07-24T03:47:27.0691624Z * [new branch] gh/guangyey/164/base -> origin/gh/guangyey/164/base 2025-07-24T03:47:27.0692150Z * [new branch] gh/guangyey/164/head -> origin/gh/guangyey/164/head 2025-07-24T03:47:27.0692682Z * [new branch] gh/guangyey/164/orig -> origin/gh/guangyey/164/orig 2025-07-24T03:47:27.0693171Z * [new branch] gh/guangyey/165/base -> origin/gh/guangyey/165/base 2025-07-24T03:47:27.0693778Z * [new branch] gh/guangyey/165/head -> origin/gh/guangyey/165/head 2025-07-24T03:47:27.0694350Z * [new branch] gh/guangyey/165/orig -> origin/gh/guangyey/165/orig 2025-07-24T03:47:27.0694830Z * [new branch] gh/guangyey/166/base -> origin/gh/guangyey/166/base 2025-07-24T03:47:27.0695324Z * [new branch] gh/guangyey/166/head -> origin/gh/guangyey/166/head 2025-07-24T03:47:27.0695815Z * [new branch] gh/guangyey/166/orig -> origin/gh/guangyey/166/orig 2025-07-24T03:47:27.0696296Z * [new branch] gh/guangyey/167/base -> origin/gh/guangyey/167/base 2025-07-24T03:47:27.0696790Z * [new branch] gh/guangyey/167/head -> origin/gh/guangyey/167/head 2025-07-24T03:47:27.0697270Z * [new branch] gh/guangyey/167/orig -> origin/gh/guangyey/167/orig 2025-07-24T03:47:27.0697759Z * [new branch] gh/guangyey/168/base -> origin/gh/guangyey/168/base 2025-07-24T03:47:27.0698297Z * [new branch] gh/guangyey/168/head -> origin/gh/guangyey/168/head 2025-07-24T03:47:27.0698826Z * [new branch] gh/guangyey/168/orig -> origin/gh/guangyey/168/orig 2025-07-24T03:47:27.0699310Z * [new branch] gh/guangyey/169/base -> origin/gh/guangyey/169/base 2025-07-24T03:47:27.0699783Z * [new branch] gh/guangyey/169/head -> origin/gh/guangyey/169/head 2025-07-24T03:47:27.0700269Z * [new branch] gh/guangyey/169/orig -> origin/gh/guangyey/169/orig 2025-07-24T03:47:27.0700743Z * [new branch] gh/guangyey/170/base -> origin/gh/guangyey/170/base 2025-07-24T03:47:27.0701231Z * [new branch] gh/guangyey/170/head -> origin/gh/guangyey/170/head 2025-07-24T03:47:27.0701720Z * [new branch] gh/guangyey/170/orig -> origin/gh/guangyey/170/orig 2025-07-24T03:47:27.0702204Z * [new branch] gh/guangyey/171/base -> origin/gh/guangyey/171/base 2025-07-24T03:47:27.0702701Z * [new branch] gh/guangyey/171/head -> origin/gh/guangyey/171/head 2025-07-24T03:47:27.0703181Z * [new branch] gh/guangyey/171/orig -> origin/gh/guangyey/171/orig 2025-07-24T03:47:27.0703666Z * [new branch] gh/guangyey/172/base -> origin/gh/guangyey/172/base 2025-07-24T03:47:27.0704158Z * [new branch] gh/guangyey/172/head -> origin/gh/guangyey/172/head 2025-07-24T03:47:27.0704686Z * [new branch] gh/guangyey/172/orig -> origin/gh/guangyey/172/orig 2025-07-24T03:47:27.0705225Z * [new branch] gh/guangyey/79/base -> origin/gh/guangyey/79/base 2025-07-24T03:47:27.0705707Z * [new branch] gh/guangyey/79/head -> origin/gh/guangyey/79/head 2025-07-24T03:47:27.0706191Z * [new branch] gh/guangyey/79/orig -> origin/gh/guangyey/79/orig 2025-07-24T03:47:27.0706684Z * [new branch] gh/guangyey/89/base -> origin/gh/guangyey/89/base 2025-07-24T03:47:27.0707171Z * [new branch] gh/guangyey/89/head -> origin/gh/guangyey/89/head 2025-07-24T03:47:27.0707658Z * [new branch] gh/guangyey/89/orig -> origin/gh/guangyey/89/orig 2025-07-24T03:47:27.0708182Z * [new branch] gh/guilhermeleobas/107/base -> origin/gh/guilhermeleobas/107/base 2025-07-24T03:47:27.0708769Z * [new branch] gh/guilhermeleobas/107/head -> origin/gh/guilhermeleobas/107/head 2025-07-24T03:47:27.0709339Z * [new branch] gh/guilhermeleobas/107/orig -> origin/gh/guilhermeleobas/107/orig 2025-07-24T03:47:27.1111476Z * [new branch] gh/guilhermeleobas/108/base -> origin/gh/guilhermeleobas/108/base 2025-07-24T03:47:27.1112117Z * [new branch] gh/guilhermeleobas/108/head -> origin/gh/guilhermeleobas/108/head 2025-07-24T03:47:27.1112870Z * [new branch] gh/guilhermeleobas/108/orig -> origin/gh/guilhermeleobas/108/orig 2025-07-24T03:47:27.1113548Z * [new branch] gh/guilhermeleobas/120/base -> origin/gh/guilhermeleobas/120/base 2025-07-24T03:47:27.1114125Z * [new branch] gh/guilhermeleobas/120/head -> origin/gh/guilhermeleobas/120/head 2025-07-24T03:47:27.1114688Z * [new branch] gh/guilhermeleobas/120/orig -> origin/gh/guilhermeleobas/120/orig 2025-07-24T03:47:27.1115262Z * [new branch] gh/guilhermeleobas/124/base -> origin/gh/guilhermeleobas/124/base 2025-07-24T03:47:27.1115824Z * [new branch] gh/guilhermeleobas/124/head -> origin/gh/guilhermeleobas/124/head 2025-07-24T03:47:27.1116389Z * [new branch] gh/guilhermeleobas/124/orig -> origin/gh/guilhermeleobas/124/orig 2025-07-24T03:47:27.1116952Z * [new branch] gh/guilhermeleobas/127/base -> origin/gh/guilhermeleobas/127/base 2025-07-24T03:47:27.1117512Z * [new branch] gh/guilhermeleobas/127/head -> origin/gh/guilhermeleobas/127/head 2025-07-24T03:47:27.1118096Z * [new branch] gh/guilhermeleobas/127/orig -> origin/gh/guilhermeleobas/127/orig 2025-07-24T03:47:27.1118663Z * [new branch] gh/guilhermeleobas/143/base -> origin/gh/guilhermeleobas/143/base 2025-07-24T03:47:27.1119224Z * [new branch] gh/guilhermeleobas/143/head -> origin/gh/guilhermeleobas/143/head 2025-07-24T03:47:27.1119798Z * [new branch] gh/guilhermeleobas/143/orig -> origin/gh/guilhermeleobas/143/orig 2025-07-24T03:47:27.1120379Z * [new branch] gh/guilhermeleobas/145/base -> origin/gh/guilhermeleobas/145/base 2025-07-24T03:47:27.1120933Z * [new branch] gh/guilhermeleobas/145/head -> origin/gh/guilhermeleobas/145/head 2025-07-24T03:47:27.1121501Z * [new branch] gh/guilhermeleobas/145/orig -> origin/gh/guilhermeleobas/145/orig 2025-07-24T03:47:27.1122052Z * [new branch] gh/guilhermeleobas/146/base -> origin/gh/guilhermeleobas/146/base 2025-07-24T03:47:27.1122628Z * [new branch] gh/guilhermeleobas/146/head -> origin/gh/guilhermeleobas/146/head 2025-07-24T03:47:27.1123196Z * [new branch] gh/guilhermeleobas/146/orig -> origin/gh/guilhermeleobas/146/orig 2025-07-24T03:47:27.1123747Z * [new branch] gh/guilhermeleobas/147/base -> origin/gh/guilhermeleobas/147/base 2025-07-24T03:47:27.1124314Z * [new branch] gh/guilhermeleobas/147/head -> origin/gh/guilhermeleobas/147/head 2025-07-24T03:47:27.1124874Z * [new branch] gh/guilhermeleobas/147/orig -> origin/gh/guilhermeleobas/147/orig 2025-07-24T03:47:27.1125441Z * [new branch] gh/guilhermeleobas/148/base -> origin/gh/guilhermeleobas/148/base 2025-07-24T03:47:27.1126004Z * [new branch] gh/guilhermeleobas/148/head -> origin/gh/guilhermeleobas/148/head 2025-07-24T03:47:27.1126559Z * [new branch] gh/guilhermeleobas/148/orig -> origin/gh/guilhermeleobas/148/orig 2025-07-24T03:47:27.1127128Z * [new branch] gh/guilhermeleobas/149/base -> origin/gh/guilhermeleobas/149/base 2025-07-24T03:47:27.1127690Z * [new branch] gh/guilhermeleobas/149/head -> origin/gh/guilhermeleobas/149/head 2025-07-24T03:47:27.1128256Z * [new branch] gh/guilhermeleobas/149/orig -> origin/gh/guilhermeleobas/149/orig 2025-07-24T03:47:27.1128905Z * [new branch] gh/guilhermeleobas/150/base -> origin/gh/guilhermeleobas/150/base 2025-07-24T03:47:27.1129464Z * [new branch] gh/guilhermeleobas/150/head -> origin/gh/guilhermeleobas/150/head 2025-07-24T03:47:27.1130034Z * [new branch] gh/guilhermeleobas/150/orig -> origin/gh/guilhermeleobas/150/orig 2025-07-24T03:47:27.1130589Z * [new branch] gh/guilhermeleobas/151/base -> origin/gh/guilhermeleobas/151/base 2025-07-24T03:47:27.1131149Z * [new branch] gh/guilhermeleobas/151/head -> origin/gh/guilhermeleobas/151/head 2025-07-24T03:47:27.1131817Z * [new branch] gh/guilhermeleobas/151/orig -> origin/gh/guilhermeleobas/151/orig 2025-07-24T03:47:27.1132455Z * [new branch] gh/guilhermeleobas/152/base -> origin/gh/guilhermeleobas/152/base 2025-07-24T03:47:27.1133030Z * [new branch] gh/guilhermeleobas/152/head -> origin/gh/guilhermeleobas/152/head 2025-07-24T03:47:27.1133585Z * [new branch] gh/guilhermeleobas/152/orig -> origin/gh/guilhermeleobas/152/orig 2025-07-24T03:47:27.1134157Z * [new branch] gh/guilhermeleobas/153/base -> origin/gh/guilhermeleobas/153/base 2025-07-24T03:47:27.1134720Z * [new branch] gh/guilhermeleobas/153/head -> origin/gh/guilhermeleobas/153/head 2025-07-24T03:47:27.1135276Z * [new branch] gh/guilhermeleobas/153/orig -> origin/gh/guilhermeleobas/153/orig 2025-07-24T03:47:27.1135842Z * [new branch] gh/guilhermeleobas/154/base -> origin/gh/guilhermeleobas/154/base 2025-07-24T03:47:27.1136402Z * [new branch] gh/guilhermeleobas/154/head -> origin/gh/guilhermeleobas/154/head 2025-07-24T03:47:27.1525260Z * [new branch] gh/guilhermeleobas/154/orig -> origin/gh/guilhermeleobas/154/orig 2025-07-24T03:47:27.1525881Z * [new branch] gh/guilhermeleobas/155/base -> origin/gh/guilhermeleobas/155/base 2025-07-24T03:47:27.1526467Z * [new branch] gh/guilhermeleobas/155/head -> origin/gh/guilhermeleobas/155/head 2025-07-24T03:47:27.1527041Z * [new branch] gh/guilhermeleobas/155/orig -> origin/gh/guilhermeleobas/155/orig 2025-07-24T03:47:27.1527604Z * [new branch] gh/guilhermeleobas/156/base -> origin/gh/guilhermeleobas/156/base 2025-07-24T03:47:27.1528163Z * [new branch] gh/guilhermeleobas/156/head -> origin/gh/guilhermeleobas/156/head 2025-07-24T03:47:27.1528839Z * [new branch] gh/guilhermeleobas/156/orig -> origin/gh/guilhermeleobas/156/orig 2025-07-24T03:47:27.1529401Z * [new branch] gh/guilhermeleobas/157/base -> origin/gh/guilhermeleobas/157/base 2025-07-24T03:47:27.1530005Z * [new branch] gh/guilhermeleobas/157/head -> origin/gh/guilhermeleobas/157/head 2025-07-24T03:47:27.1530571Z * [new branch] gh/guilhermeleobas/157/orig -> origin/gh/guilhermeleobas/157/orig 2025-07-24T03:47:27.1531124Z * [new branch] gh/guilhermeleobas/158/base -> origin/gh/guilhermeleobas/158/base 2025-07-24T03:47:27.1531689Z * [new branch] gh/guilhermeleobas/158/head -> origin/gh/guilhermeleobas/158/head 2025-07-24T03:47:27.1532242Z * [new branch] gh/guilhermeleobas/158/orig -> origin/gh/guilhermeleobas/158/orig 2025-07-24T03:47:27.1532811Z * [new branch] gh/guilhermeleobas/159/base -> origin/gh/guilhermeleobas/159/base 2025-07-24T03:47:27.1533368Z * [new branch] gh/guilhermeleobas/159/head -> origin/gh/guilhermeleobas/159/head 2025-07-24T03:47:27.1533934Z * [new branch] gh/guilhermeleobas/159/orig -> origin/gh/guilhermeleobas/159/orig 2025-07-24T03:47:27.1534509Z * [new branch] gh/guilhermeleobas/160/base -> origin/gh/guilhermeleobas/160/base 2025-07-24T03:47:27.1535063Z * [new branch] gh/guilhermeleobas/160/head -> origin/gh/guilhermeleobas/160/head 2025-07-24T03:47:27.1535635Z * [new branch] gh/guilhermeleobas/160/orig -> origin/gh/guilhermeleobas/160/orig 2025-07-24T03:47:27.1536192Z * [new branch] gh/guilhermeleobas/161/base -> origin/gh/guilhermeleobas/161/base 2025-07-24T03:47:27.1536757Z * [new branch] gh/guilhermeleobas/161/head -> origin/gh/guilhermeleobas/161/head 2025-07-24T03:47:27.1537323Z * [new branch] gh/guilhermeleobas/161/orig -> origin/gh/guilhermeleobas/161/orig 2025-07-24T03:47:27.1537877Z * [new branch] gh/guilhermeleobas/162/base -> origin/gh/guilhermeleobas/162/base 2025-07-24T03:47:27.1538439Z * [new branch] gh/guilhermeleobas/162/head -> origin/gh/guilhermeleobas/162/head 2025-07-24T03:47:27.1539151Z * [new branch] gh/guilhermeleobas/162/orig -> origin/gh/guilhermeleobas/162/orig 2025-07-24T03:47:27.1539810Z * [new branch] gh/guilhermeleobas/163/base -> origin/gh/guilhermeleobas/163/base 2025-07-24T03:47:27.1540380Z * [new branch] gh/guilhermeleobas/163/head -> origin/gh/guilhermeleobas/163/head 2025-07-24T03:47:27.1540939Z * [new branch] gh/guilhermeleobas/163/orig -> origin/gh/guilhermeleobas/163/orig 2025-07-24T03:47:27.1541512Z * [new branch] gh/guilhermeleobas/164/base -> origin/gh/guilhermeleobas/164/base 2025-07-24T03:47:27.1542092Z * [new branch] gh/guilhermeleobas/164/head -> origin/gh/guilhermeleobas/164/head 2025-07-24T03:47:27.1542660Z * [new branch] gh/guilhermeleobas/164/orig -> origin/gh/guilhermeleobas/164/orig 2025-07-24T03:47:27.1543223Z * [new branch] gh/guilhermeleobas/165/base -> origin/gh/guilhermeleobas/165/base 2025-07-24T03:47:27.1543793Z * [new branch] gh/guilhermeleobas/165/head -> origin/gh/guilhermeleobas/165/head 2025-07-24T03:47:27.1544355Z * [new branch] gh/guilhermeleobas/165/orig -> origin/gh/guilhermeleobas/165/orig 2025-07-24T03:47:27.1544913Z * [new branch] gh/guilhermeleobas/166/base -> origin/gh/guilhermeleobas/166/base 2025-07-24T03:47:27.1545475Z * [new branch] gh/guilhermeleobas/166/head -> origin/gh/guilhermeleobas/166/head 2025-07-24T03:47:27.1546029Z * [new branch] gh/guilhermeleobas/166/orig -> origin/gh/guilhermeleobas/166/orig 2025-07-24T03:47:27.1546590Z * [new branch] gh/guilhermeleobas/167/base -> origin/gh/guilhermeleobas/167/base 2025-07-24T03:47:27.1547145Z * [new branch] gh/guilhermeleobas/167/head -> origin/gh/guilhermeleobas/167/head 2025-07-24T03:47:27.1547709Z * [new branch] gh/guilhermeleobas/167/orig -> origin/gh/guilhermeleobas/167/orig 2025-07-24T03:47:27.1548274Z * [new branch] gh/guilhermeleobas/168/base -> origin/gh/guilhermeleobas/168/base 2025-07-24T03:47:27.1548834Z * [new branch] gh/guilhermeleobas/168/head -> origin/gh/guilhermeleobas/168/head 2025-07-24T03:47:27.1549393Z * [new branch] gh/guilhermeleobas/168/orig -> origin/gh/guilhermeleobas/168/orig 2025-07-24T03:47:27.1939617Z * [new branch] gh/guilhermeleobas/169/base -> origin/gh/guilhermeleobas/169/base 2025-07-24T03:47:27.1940240Z * [new branch] gh/guilhermeleobas/169/head -> origin/gh/guilhermeleobas/169/head 2025-07-24T03:47:27.1940829Z * [new branch] gh/guilhermeleobas/169/orig -> origin/gh/guilhermeleobas/169/orig 2025-07-24T03:47:27.1941418Z * [new branch] gh/guilhermeleobas/170/base -> origin/gh/guilhermeleobas/170/base 2025-07-24T03:47:27.1941978Z * [new branch] gh/guilhermeleobas/170/head -> origin/gh/guilhermeleobas/170/head 2025-07-24T03:47:27.1942546Z * [new branch] gh/guilhermeleobas/170/orig -> origin/gh/guilhermeleobas/170/orig 2025-07-24T03:47:27.1943134Z * [new branch] gh/guilhermeleobas/171/base -> origin/gh/guilhermeleobas/171/base 2025-07-24T03:47:27.1943695Z * [new branch] gh/guilhermeleobas/171/head -> origin/gh/guilhermeleobas/171/head 2025-07-24T03:47:27.1944260Z * [new branch] gh/guilhermeleobas/171/orig -> origin/gh/guilhermeleobas/171/orig 2025-07-24T03:47:27.1944817Z * [new branch] gh/guilhermeleobas/173/base -> origin/gh/guilhermeleobas/173/base 2025-07-24T03:47:27.1945383Z * [new branch] gh/guilhermeleobas/173/head -> origin/gh/guilhermeleobas/173/head 2025-07-24T03:47:27.1945944Z * [new branch] gh/guilhermeleobas/173/orig -> origin/gh/guilhermeleobas/173/orig 2025-07-24T03:47:27.1946513Z * [new branch] gh/guilhermeleobas/174/base -> origin/gh/guilhermeleobas/174/base 2025-07-24T03:47:27.1947139Z * [new branch] gh/guilhermeleobas/174/head -> origin/gh/guilhermeleobas/174/head 2025-07-24T03:47:27.1948047Z * [new branch] gh/guilhermeleobas/174/orig -> origin/gh/guilhermeleobas/174/orig 2025-07-24T03:47:27.1948621Z * [new branch] gh/guilhermeleobas/175/base -> origin/gh/guilhermeleobas/175/base 2025-07-24T03:47:27.1949187Z * [new branch] gh/guilhermeleobas/175/head -> origin/gh/guilhermeleobas/175/head 2025-07-24T03:47:27.1949757Z * [new branch] gh/guilhermeleobas/175/orig -> origin/gh/guilhermeleobas/175/orig 2025-07-24T03:47:27.1950323Z * [new branch] gh/guilhermeleobas/176/base -> origin/gh/guilhermeleobas/176/base 2025-07-24T03:47:27.1950878Z * [new branch] gh/guilhermeleobas/176/head -> origin/gh/guilhermeleobas/176/head 2025-07-24T03:47:27.1951450Z * [new branch] gh/guilhermeleobas/176/orig -> origin/gh/guilhermeleobas/176/orig 2025-07-24T03:47:27.1952006Z * [new branch] gh/guilhermeleobas/177/base -> origin/gh/guilhermeleobas/177/base 2025-07-24T03:47:27.1952575Z * [new branch] gh/guilhermeleobas/177/head -> origin/gh/guilhermeleobas/177/head 2025-07-24T03:47:27.1953135Z * [new branch] gh/guilhermeleobas/177/orig -> origin/gh/guilhermeleobas/177/orig 2025-07-24T03:47:27.1953699Z * [new branch] gh/guilhermeleobas/178/base -> origin/gh/guilhermeleobas/178/base 2025-07-24T03:47:27.1954264Z * [new branch] gh/guilhermeleobas/178/head -> origin/gh/guilhermeleobas/178/head 2025-07-24T03:47:27.1954823Z * [new branch] gh/guilhermeleobas/178/orig -> origin/gh/guilhermeleobas/178/orig 2025-07-24T03:47:27.1955386Z * [new branch] gh/guilhermeleobas/179/base -> origin/gh/guilhermeleobas/179/base 2025-07-24T03:47:27.1955941Z * [new branch] gh/guilhermeleobas/179/head -> origin/gh/guilhermeleobas/179/head 2025-07-24T03:47:27.1956505Z * [new branch] gh/guilhermeleobas/179/orig -> origin/gh/guilhermeleobas/179/orig 2025-07-24T03:47:27.1957081Z * [new branch] gh/guilhermeleobas/180/base -> origin/gh/guilhermeleobas/180/base 2025-07-24T03:47:27.1957641Z * [new branch] gh/guilhermeleobas/180/head -> origin/gh/guilhermeleobas/180/head 2025-07-24T03:47:27.1958206Z * [new branch] gh/guilhermeleobas/180/orig -> origin/gh/guilhermeleobas/180/orig 2025-07-24T03:47:27.1958762Z * [new branch] gh/guilhermeleobas/181/base -> origin/gh/guilhermeleobas/181/base 2025-07-24T03:47:27.1959329Z * [new branch] gh/guilhermeleobas/181/head -> origin/gh/guilhermeleobas/181/head 2025-07-24T03:47:27.1959891Z * [new branch] gh/guilhermeleobas/181/orig -> origin/gh/guilhermeleobas/181/orig 2025-07-24T03:47:27.1960449Z * [new branch] gh/guilhermeleobas/182/base -> origin/gh/guilhermeleobas/182/base 2025-07-24T03:47:27.1961024Z * [new branch] gh/guilhermeleobas/182/head -> origin/gh/guilhermeleobas/182/head 2025-07-24T03:47:27.1961584Z * [new branch] gh/guilhermeleobas/182/orig -> origin/gh/guilhermeleobas/182/orig 2025-07-24T03:47:27.1962155Z * [new branch] gh/guilhermeleobas/183/base -> origin/gh/guilhermeleobas/183/base 2025-07-24T03:47:27.1962732Z * [new branch] gh/guilhermeleobas/183/head -> origin/gh/guilhermeleobas/183/head 2025-07-24T03:47:27.1963285Z * [new branch] gh/guilhermeleobas/183/orig -> origin/gh/guilhermeleobas/183/orig 2025-07-24T03:47:27.1963852Z * [new branch] gh/guilhermeleobas/184/base -> origin/gh/guilhermeleobas/184/base 2025-07-24T03:47:27.2363473Z * [new branch] gh/guilhermeleobas/184/head -> origin/gh/guilhermeleobas/184/head 2025-07-24T03:47:27.2364168Z * [new branch] gh/guilhermeleobas/184/orig -> origin/gh/guilhermeleobas/184/orig 2025-07-24T03:47:27.2364792Z * [new branch] gh/guilhermeleobas/185/base -> origin/gh/guilhermeleobas/185/base 2025-07-24T03:47:27.2365467Z * [new branch] gh/guilhermeleobas/185/head -> origin/gh/guilhermeleobas/185/head 2025-07-24T03:47:27.2366430Z * [new branch] gh/guilhermeleobas/185/orig -> origin/gh/guilhermeleobas/185/orig 2025-07-24T03:47:27.2367014Z * [new branch] gh/guilhermeleobas/186/base -> origin/gh/guilhermeleobas/186/base 2025-07-24T03:47:27.2367571Z * [new branch] gh/guilhermeleobas/186/head -> origin/gh/guilhermeleobas/186/head 2025-07-24T03:47:27.2368134Z * [new branch] gh/guilhermeleobas/186/orig -> origin/gh/guilhermeleobas/186/orig 2025-07-24T03:47:27.2368755Z * [new branch] gh/guilhermeleobas/187/base -> origin/gh/guilhermeleobas/187/base 2025-07-24T03:47:27.2369325Z * [new branch] gh/guilhermeleobas/187/head -> origin/gh/guilhermeleobas/187/head 2025-07-24T03:47:27.2369891Z * [new branch] gh/guilhermeleobas/187/orig -> origin/gh/guilhermeleobas/187/orig 2025-07-24T03:47:27.2370447Z * [new branch] gh/guilhermeleobas/188/base -> origin/gh/guilhermeleobas/188/base 2025-07-24T03:47:27.2371031Z * [new branch] gh/guilhermeleobas/188/head -> origin/gh/guilhermeleobas/188/head 2025-07-24T03:47:27.2371594Z * [new branch] gh/guilhermeleobas/188/orig -> origin/gh/guilhermeleobas/188/orig 2025-07-24T03:47:27.2372208Z * [new branch] gh/guilhermeleobas/189/base -> origin/gh/guilhermeleobas/189/base 2025-07-24T03:47:27.2372831Z * [new branch] gh/guilhermeleobas/189/head -> origin/gh/guilhermeleobas/189/head 2025-07-24T03:47:27.2373476Z * [new branch] gh/guilhermeleobas/189/orig -> origin/gh/guilhermeleobas/189/orig 2025-07-24T03:47:27.2374098Z * [new branch] gh/guilhermeleobas/190/base -> origin/gh/guilhermeleobas/190/base 2025-07-24T03:47:27.2374711Z * [new branch] gh/guilhermeleobas/190/head -> origin/gh/guilhermeleobas/190/head 2025-07-24T03:47:27.2375326Z * [new branch] gh/guilhermeleobas/190/orig -> origin/gh/guilhermeleobas/190/orig 2025-07-24T03:47:27.2375996Z * [new branch] gh/guilhermeleobas/191/base -> origin/gh/guilhermeleobas/191/base 2025-07-24T03:47:27.2376614Z * [new branch] gh/guilhermeleobas/191/head -> origin/gh/guilhermeleobas/191/head 2025-07-24T03:47:27.2377233Z * [new branch] gh/guilhermeleobas/191/orig -> origin/gh/guilhermeleobas/191/orig 2025-07-24T03:47:27.2377882Z * [new branch] gh/guilhermeleobas/192/base -> origin/gh/guilhermeleobas/192/base 2025-07-24T03:47:27.2378495Z * [new branch] gh/guilhermeleobas/192/head -> origin/gh/guilhermeleobas/192/head 2025-07-24T03:47:27.2379103Z * [new branch] gh/guilhermeleobas/192/orig -> origin/gh/guilhermeleobas/192/orig 2025-07-24T03:47:27.2379708Z * [new branch] gh/guilhermeleobas/193/base -> origin/gh/guilhermeleobas/193/base 2025-07-24T03:47:27.2380331Z * [new branch] gh/guilhermeleobas/193/head -> origin/gh/guilhermeleobas/193/head 2025-07-24T03:47:27.2380895Z * [new branch] gh/guilhermeleobas/193/orig -> origin/gh/guilhermeleobas/193/orig 2025-07-24T03:47:27.2381465Z * [new branch] gh/guilhermeleobas/194/base -> origin/gh/guilhermeleobas/194/base 2025-07-24T03:47:27.2382020Z * [new branch] gh/guilhermeleobas/194/head -> origin/gh/guilhermeleobas/194/head 2025-07-24T03:47:27.2382584Z * [new branch] gh/guilhermeleobas/194/orig -> origin/gh/guilhermeleobas/194/orig 2025-07-24T03:47:27.2383148Z * [new branch] gh/guilhermeleobas/195/base -> origin/gh/guilhermeleobas/195/base 2025-07-24T03:47:27.2383703Z * [new branch] gh/guilhermeleobas/195/head -> origin/gh/guilhermeleobas/195/head 2025-07-24T03:47:27.2384268Z * [new branch] gh/guilhermeleobas/195/orig -> origin/gh/guilhermeleobas/195/orig 2025-07-24T03:47:27.2384828Z * [new branch] gh/guilhermeleobas/196/base -> origin/gh/guilhermeleobas/196/base 2025-07-24T03:47:27.2385550Z * [new branch] gh/guilhermeleobas/196/head -> origin/gh/guilhermeleobas/196/head 2025-07-24T03:47:27.2386271Z * [new branch] gh/guilhermeleobas/196/orig -> origin/gh/guilhermeleobas/196/orig 2025-07-24T03:47:27.2386882Z * [new branch] gh/guilhermeleobas/197/base -> origin/gh/guilhermeleobas/197/base 2025-07-24T03:47:27.2387453Z * [new branch] gh/guilhermeleobas/197/head -> origin/gh/guilhermeleobas/197/head 2025-07-24T03:47:27.2388007Z * [new branch] gh/guilhermeleobas/197/orig -> origin/gh/guilhermeleobas/197/orig 2025-07-24T03:47:27.2388571Z * [new branch] gh/guilhermeleobas/198/base -> origin/gh/guilhermeleobas/198/base 2025-07-24T03:47:27.2389134Z * [new branch] gh/guilhermeleobas/198/head -> origin/gh/guilhermeleobas/198/head 2025-07-24T03:47:27.5009891Z * [new branch] gh/guilhermeleobas/198/orig -> origin/gh/guilhermeleobas/198/orig 2025-07-24T03:47:27.5010529Z * [new branch] gh/guilhermeleobas/199/base -> origin/gh/guilhermeleobas/199/base 2025-07-24T03:47:27.5011160Z * [new branch] gh/guilhermeleobas/199/head -> origin/gh/guilhermeleobas/199/head 2025-07-24T03:47:27.5011732Z * [new branch] gh/guilhermeleobas/199/orig -> origin/gh/guilhermeleobas/199/orig 2025-07-24T03:47:27.5012303Z * [new branch] gh/guilhermeleobas/200/base -> origin/gh/guilhermeleobas/200/base 2025-07-24T03:47:27.5012861Z * [new branch] gh/guilhermeleobas/200/head -> origin/gh/guilhermeleobas/200/head 2025-07-24T03:47:27.5013422Z * [new branch] gh/guilhermeleobas/200/orig -> origin/gh/guilhermeleobas/200/orig 2025-07-24T03:47:27.5013986Z * [new branch] gh/guilhermeleobas/201/base -> origin/gh/guilhermeleobas/201/base 2025-07-24T03:47:27.5014541Z * [new branch] gh/guilhermeleobas/201/head -> origin/gh/guilhermeleobas/201/head 2025-07-24T03:47:27.5015110Z * [new branch] gh/guilhermeleobas/201/orig -> origin/gh/guilhermeleobas/201/orig 2025-07-24T03:47:27.5015673Z * [new branch] gh/guilhermeleobas/202/base -> origin/gh/guilhermeleobas/202/base 2025-07-24T03:47:27.5016235Z * [new branch] gh/guilhermeleobas/202/head -> origin/gh/guilhermeleobas/202/head 2025-07-24T03:47:27.5016798Z * [new branch] gh/guilhermeleobas/202/orig -> origin/gh/guilhermeleobas/202/orig 2025-07-24T03:47:27.5017349Z * [new branch] gh/guilhermeleobas/203/base -> origin/gh/guilhermeleobas/203/base 2025-07-24T03:47:27.5017913Z * [new branch] gh/guilhermeleobas/203/head -> origin/gh/guilhermeleobas/203/head 2025-07-24T03:47:27.5018466Z * [new branch] gh/guilhermeleobas/203/orig -> origin/gh/guilhermeleobas/203/orig 2025-07-24T03:47:27.5019029Z * [new branch] gh/guilhermeleobas/204/base -> origin/gh/guilhermeleobas/204/base 2025-07-24T03:47:27.5019594Z * [new branch] gh/guilhermeleobas/204/head -> origin/gh/guilhermeleobas/204/head 2025-07-24T03:47:27.5020162Z * [new branch] gh/guilhermeleobas/204/orig -> origin/gh/guilhermeleobas/204/orig 2025-07-24T03:47:27.5020726Z * [new branch] gh/guilhermeleobas/205/base -> origin/gh/guilhermeleobas/205/base 2025-07-24T03:47:27.5021283Z * [new branch] gh/guilhermeleobas/205/head -> origin/gh/guilhermeleobas/205/head 2025-07-24T03:47:27.5021851Z * [new branch] gh/guilhermeleobas/205/orig -> origin/gh/guilhermeleobas/205/orig 2025-07-24T03:47:27.5022409Z * [new branch] gh/guilhermeleobas/206/base -> origin/gh/guilhermeleobas/206/base 2025-07-24T03:47:27.5022964Z * [new branch] gh/guilhermeleobas/206/head -> origin/gh/guilhermeleobas/206/head 2025-07-24T03:47:27.5023531Z * [new branch] gh/guilhermeleobas/206/orig -> origin/gh/guilhermeleobas/206/orig 2025-07-24T03:47:27.5024087Z * [new branch] gh/guilhermeleobas/207/base -> origin/gh/guilhermeleobas/207/base 2025-07-24T03:47:27.5024829Z * [new branch] gh/guilhermeleobas/207/head -> origin/gh/guilhermeleobas/207/head 2025-07-24T03:47:27.5025511Z * [new branch] gh/guilhermeleobas/207/orig -> origin/gh/guilhermeleobas/207/orig 2025-07-24T03:47:27.5026071Z * [new branch] gh/guilhermeleobas/208/base -> origin/gh/guilhermeleobas/208/base 2025-07-24T03:47:27.5026651Z * [new branch] gh/guilhermeleobas/208/head -> origin/gh/guilhermeleobas/208/head 2025-07-24T03:47:27.5027300Z * [new branch] gh/guilhermeleobas/208/orig -> origin/gh/guilhermeleobas/208/orig 2025-07-24T03:47:27.5027866Z * [new branch] gh/guilhermeleobas/209/base -> origin/gh/guilhermeleobas/209/base 2025-07-24T03:47:27.5028433Z * [new branch] gh/guilhermeleobas/209/head -> origin/gh/guilhermeleobas/209/head 2025-07-24T03:47:27.5028989Z * [new branch] gh/guilhermeleobas/209/orig -> origin/gh/guilhermeleobas/209/orig 2025-07-24T03:47:27.5029560Z * [new branch] gh/guilhermeleobas/210/base -> origin/gh/guilhermeleobas/210/base 2025-07-24T03:47:27.5030125Z * [new branch] gh/guilhermeleobas/210/head -> origin/gh/guilhermeleobas/210/head 2025-07-24T03:47:27.5030695Z * [new branch] gh/guilhermeleobas/210/orig -> origin/gh/guilhermeleobas/210/orig 2025-07-24T03:47:27.5031257Z * [new branch] gh/guilhermeleobas/211/base -> origin/gh/guilhermeleobas/211/base 2025-07-24T03:47:27.5031809Z * [new branch] gh/guilhermeleobas/211/head -> origin/gh/guilhermeleobas/211/head 2025-07-24T03:47:27.5032370Z * [new branch] gh/guilhermeleobas/211/orig -> origin/gh/guilhermeleobas/211/orig 2025-07-24T03:47:27.5032925Z * [new branch] gh/guilhermeleobas/212/base -> origin/gh/guilhermeleobas/212/base 2025-07-24T03:47:27.5033491Z * [new branch] gh/guilhermeleobas/212/head -> origin/gh/guilhermeleobas/212/head 2025-07-24T03:47:27.5034057Z * [new branch] gh/guilhermeleobas/212/orig -> origin/gh/guilhermeleobas/212/orig 2025-07-24T03:47:27.5438149Z * [new branch] gh/guilhermeleobas/213/base -> origin/gh/guilhermeleobas/213/base 2025-07-24T03:47:27.5438745Z * [new branch] gh/guilhermeleobas/213/head -> origin/gh/guilhermeleobas/213/head 2025-07-24T03:47:27.5439306Z * [new branch] gh/guilhermeleobas/213/orig -> origin/gh/guilhermeleobas/213/orig 2025-07-24T03:47:27.5439876Z * [new branch] gh/guilhermeleobas/73/base -> origin/gh/guilhermeleobas/73/base 2025-07-24T03:47:27.5440446Z * [new branch] gh/guilhermeleobas/73/head -> origin/gh/guilhermeleobas/73/head 2025-07-24T03:47:27.5441020Z * [new branch] gh/guilhermeleobas/73/orig -> origin/gh/guilhermeleobas/73/orig 2025-07-24T03:47:27.5441573Z * [new branch] gh/henrylhtsang/103/base -> origin/gh/henrylhtsang/103/base 2025-07-24T03:47:27.5442105Z * [new branch] gh/henrylhtsang/103/head -> origin/gh/henrylhtsang/103/head 2025-07-24T03:47:27.5442654Z * [new branch] gh/henrylhtsang/103/orig -> origin/gh/henrylhtsang/103/orig 2025-07-24T03:47:27.5443186Z * [new branch] gh/henrylhtsang/104/base -> origin/gh/henrylhtsang/104/base 2025-07-24T03:47:27.5443707Z * [new branch] gh/henrylhtsang/104/head -> origin/gh/henrylhtsang/104/head 2025-07-24T03:47:27.5444234Z * [new branch] gh/henrylhtsang/104/orig -> origin/gh/henrylhtsang/104/orig 2025-07-24T03:47:27.5444784Z * [new branch] gh/henrylhtsang/105/base -> origin/gh/henrylhtsang/105/base 2025-07-24T03:47:27.5445381Z * [new branch] gh/henrylhtsang/105/head -> origin/gh/henrylhtsang/105/head 2025-07-24T03:47:27.5445964Z * [new branch] gh/henrylhtsang/105/orig -> origin/gh/henrylhtsang/105/orig 2025-07-24T03:47:27.5446487Z * [new branch] gh/henrylhtsang/106/base -> origin/gh/henrylhtsang/106/base 2025-07-24T03:47:27.5447159Z * [new branch] gh/henrylhtsang/106/head -> origin/gh/henrylhtsang/106/head 2025-07-24T03:47:27.5447795Z * [new branch] gh/henrylhtsang/106/orig -> origin/gh/henrylhtsang/106/orig 2025-07-24T03:47:27.5448330Z * [new branch] gh/henrylhtsang/107/base -> origin/gh/henrylhtsang/107/base 2025-07-24T03:47:27.5448939Z * [new branch] gh/henrylhtsang/107/head -> origin/gh/henrylhtsang/107/head 2025-07-24T03:47:27.5449457Z * [new branch] gh/henrylhtsang/107/orig -> origin/gh/henrylhtsang/107/orig 2025-07-24T03:47:27.5449991Z * [new branch] gh/henrylhtsang/108/base -> origin/gh/henrylhtsang/108/base 2025-07-24T03:47:27.5450511Z * [new branch] gh/henrylhtsang/108/head -> origin/gh/henrylhtsang/108/head 2025-07-24T03:47:27.5451051Z * [new branch] gh/henrylhtsang/108/orig -> origin/gh/henrylhtsang/108/orig 2025-07-24T03:47:27.5451585Z * [new branch] gh/henrylhtsang/109/base -> origin/gh/henrylhtsang/109/base 2025-07-24T03:47:27.5452119Z * [new branch] gh/henrylhtsang/109/head -> origin/gh/henrylhtsang/109/head 2025-07-24T03:47:27.5452651Z * [new branch] gh/henrylhtsang/109/orig -> origin/gh/henrylhtsang/109/orig 2025-07-24T03:47:27.5453170Z * [new branch] gh/henrylhtsang/110/base -> origin/gh/henrylhtsang/110/base 2025-07-24T03:47:27.5453701Z * [new branch] gh/henrylhtsang/110/head -> origin/gh/henrylhtsang/110/head 2025-07-24T03:47:27.5454235Z * [new branch] gh/henrylhtsang/110/orig -> origin/gh/henrylhtsang/110/orig 2025-07-24T03:47:27.5454755Z * [new branch] gh/henrylhtsang/111/base -> origin/gh/henrylhtsang/111/base 2025-07-24T03:47:27.5455289Z * [new branch] gh/henrylhtsang/111/head -> origin/gh/henrylhtsang/111/head 2025-07-24T03:47:27.5455809Z * [new branch] gh/henrylhtsang/111/orig -> origin/gh/henrylhtsang/111/orig 2025-07-24T03:47:27.5456357Z * [new branch] gh/henrylhtsang/112/base -> origin/gh/henrylhtsang/112/base 2025-07-24T03:47:27.5456892Z * [new branch] gh/henrylhtsang/112/head -> origin/gh/henrylhtsang/112/head 2025-07-24T03:47:27.5457421Z * [new branch] gh/henrylhtsang/112/orig -> origin/gh/henrylhtsang/112/orig 2025-07-24T03:47:27.5457942Z * [new branch] gh/henrylhtsang/113/base -> origin/gh/henrylhtsang/113/base 2025-07-24T03:47:27.5458469Z * [new branch] gh/henrylhtsang/113/head -> origin/gh/henrylhtsang/113/head 2025-07-24T03:47:27.5458990Z * [new branch] gh/henrylhtsang/113/orig -> origin/gh/henrylhtsang/113/orig 2025-07-24T03:47:27.5459518Z * [new branch] gh/henrylhtsang/114/base -> origin/gh/henrylhtsang/114/base 2025-07-24T03:47:27.5460037Z * [new branch] gh/henrylhtsang/114/head -> origin/gh/henrylhtsang/114/head 2025-07-24T03:47:27.5460580Z * [new branch] gh/henrylhtsang/114/orig -> origin/gh/henrylhtsang/114/orig 2025-07-24T03:47:27.5461115Z * [new branch] gh/henrylhtsang/115/base -> origin/gh/henrylhtsang/115/base 2025-07-24T03:47:27.5461703Z * [new branch] gh/henrylhtsang/115/head -> origin/gh/henrylhtsang/115/head 2025-07-24T03:47:27.5864625Z * [new branch] gh/henrylhtsang/115/orig -> origin/gh/henrylhtsang/115/orig 2025-07-24T03:47:27.5865181Z * [new branch] gh/henrylhtsang/116/base -> origin/gh/henrylhtsang/116/base 2025-07-24T03:47:27.5865716Z * [new branch] gh/henrylhtsang/116/head -> origin/gh/henrylhtsang/116/head 2025-07-24T03:47:27.5866252Z * [new branch] gh/henrylhtsang/116/orig -> origin/gh/henrylhtsang/116/orig 2025-07-24T03:47:27.5866777Z * [new branch] gh/henrylhtsang/117/base -> origin/gh/henrylhtsang/117/base 2025-07-24T03:47:27.5867309Z * [new branch] gh/henrylhtsang/117/head -> origin/gh/henrylhtsang/117/head 2025-07-24T03:47:27.5868111Z * [new branch] gh/henrylhtsang/117/orig -> origin/gh/henrylhtsang/117/orig 2025-07-24T03:47:27.5868635Z * [new branch] gh/henrylhtsang/118/base -> origin/gh/henrylhtsang/118/base 2025-07-24T03:47:27.5869162Z * [new branch] gh/henrylhtsang/118/head -> origin/gh/henrylhtsang/118/head 2025-07-24T03:47:27.5869682Z * [new branch] gh/henrylhtsang/118/orig -> origin/gh/henrylhtsang/118/orig 2025-07-24T03:47:27.5870263Z * [new branch] gh/henrylhtsang/119/base -> origin/gh/henrylhtsang/119/base 2025-07-24T03:47:27.5870831Z * [new branch] gh/henrylhtsang/119/head -> origin/gh/henrylhtsang/119/head 2025-07-24T03:47:27.5871356Z * [new branch] gh/henrylhtsang/119/orig -> origin/gh/henrylhtsang/119/orig 2025-07-24T03:47:27.5871885Z * [new branch] gh/henrylhtsang/120/base -> origin/gh/henrylhtsang/120/base 2025-07-24T03:47:27.5872419Z * [new branch] gh/henrylhtsang/120/head -> origin/gh/henrylhtsang/120/head 2025-07-24T03:47:27.5872955Z * [new branch] gh/henrylhtsang/120/orig -> origin/gh/henrylhtsang/120/orig 2025-07-24T03:47:27.5873469Z * [new branch] gh/henrylhtsang/121/base -> origin/gh/henrylhtsang/121/base 2025-07-24T03:47:27.5873998Z * [new branch] gh/henrylhtsang/121/head -> origin/gh/henrylhtsang/121/head 2025-07-24T03:47:27.5874530Z * [new branch] gh/henrylhtsang/121/orig -> origin/gh/henrylhtsang/121/orig 2025-07-24T03:47:27.5875064Z * [new branch] gh/henrylhtsang/122/base -> origin/gh/henrylhtsang/122/base 2025-07-24T03:47:27.5875587Z * [new branch] gh/henrylhtsang/122/head -> origin/gh/henrylhtsang/122/head 2025-07-24T03:47:27.5876162Z * [new branch] gh/henrylhtsang/122/orig -> origin/gh/henrylhtsang/122/orig 2025-07-24T03:47:27.5876733Z * [new branch] gh/henrylhtsang/123/base -> origin/gh/henrylhtsang/123/base 2025-07-24T03:47:27.5877306Z * [new branch] gh/henrylhtsang/123/head -> origin/gh/henrylhtsang/123/head 2025-07-24T03:47:27.5877872Z * [new branch] gh/henrylhtsang/123/orig -> origin/gh/henrylhtsang/123/orig 2025-07-24T03:47:27.5878445Z * [new branch] gh/henrylhtsang/124/base -> origin/gh/henrylhtsang/124/base 2025-07-24T03:47:27.5879011Z * [new branch] gh/henrylhtsang/124/head -> origin/gh/henrylhtsang/124/head 2025-07-24T03:47:27.5879536Z * [new branch] gh/henrylhtsang/124/orig -> origin/gh/henrylhtsang/124/orig 2025-07-24T03:47:27.5880064Z * [new branch] gh/henrylhtsang/125/base -> origin/gh/henrylhtsang/125/base 2025-07-24T03:47:27.5880589Z * [new branch] gh/henrylhtsang/125/head -> origin/gh/henrylhtsang/125/head 2025-07-24T03:47:27.5881118Z * [new branch] gh/henrylhtsang/125/orig -> origin/gh/henrylhtsang/125/orig 2025-07-24T03:47:27.5881643Z * [new branch] gh/henrylhtsang/126/base -> origin/gh/henrylhtsang/126/base 2025-07-24T03:47:27.5882174Z * [new branch] gh/henrylhtsang/126/head -> origin/gh/henrylhtsang/126/head 2025-07-24T03:47:27.5882700Z * [new branch] gh/henrylhtsang/126/orig -> origin/gh/henrylhtsang/126/orig 2025-07-24T03:47:27.5883222Z * [new branch] gh/henrylhtsang/127/base -> origin/gh/henrylhtsang/127/base 2025-07-24T03:47:27.5883761Z * [new branch] gh/henrylhtsang/127/head -> origin/gh/henrylhtsang/127/head 2025-07-24T03:47:27.5884327Z * [new branch] gh/henrylhtsang/127/orig -> origin/gh/henrylhtsang/127/orig 2025-07-24T03:47:27.5884902Z * [new branch] gh/henrylhtsang/128/base -> origin/gh/henrylhtsang/128/base 2025-07-24T03:47:27.5885479Z * [new branch] gh/henrylhtsang/128/head -> origin/gh/henrylhtsang/128/head 2025-07-24T03:47:27.5886184Z * [new branch] gh/henrylhtsang/128/orig -> origin/gh/henrylhtsang/128/orig 2025-07-24T03:47:27.5886860Z * [new branch] gh/henrylhtsang/129/base -> origin/gh/henrylhtsang/129/base 2025-07-24T03:47:27.5887427Z * [new branch] gh/henrylhtsang/129/head -> origin/gh/henrylhtsang/129/head 2025-07-24T03:47:27.5888051Z * [new branch] gh/henrylhtsang/129/orig -> origin/gh/henrylhtsang/129/orig 2025-07-24T03:47:27.5888696Z * [new branch] gh/henrylhtsang/98/base -> origin/gh/henrylhtsang/98/base 2025-07-24T03:47:27.5889265Z * [new branch] gh/henrylhtsang/98/head -> origin/gh/henrylhtsang/98/head 2025-07-24T03:47:27.6337583Z * [new branch] gh/henrylhtsang/98/orig -> origin/gh/henrylhtsang/98/orig 2025-07-24T03:47:27.6338125Z * [new branch] gh/huydhn/1/head -> origin/gh/huydhn/1/head 2025-07-24T03:47:27.6338585Z * [new branch] gh/huydhn/1/next -> origin/gh/huydhn/1/next 2025-07-24T03:47:27.6339128Z * [new branch] gh/huydhn/2/head -> origin/gh/huydhn/2/head 2025-07-24T03:47:27.6339624Z * [new branch] gh/huydhn/2/next -> origin/gh/huydhn/2/next 2025-07-24T03:47:27.6340079Z * [new branch] gh/huydhn/2/orig -> origin/gh/huydhn/2/orig 2025-07-24T03:47:27.6340524Z * [new branch] gh/huydhn/3/head -> origin/gh/huydhn/3/head 2025-07-24T03:47:27.6340981Z * [new branch] gh/huydhn/3/next -> origin/gh/huydhn/3/next 2025-07-24T03:47:27.6341439Z * [new branch] gh/huydhn/3/orig -> origin/gh/huydhn/3/orig 2025-07-24T03:47:27.6341879Z * [new branch] gh/huydhn/4/head -> origin/gh/huydhn/4/head 2025-07-24T03:47:27.6342329Z * [new branch] gh/huydhn/4/next -> origin/gh/huydhn/4/next 2025-07-24T03:47:27.6342780Z * [new branch] gh/huydhn/4/orig -> origin/gh/huydhn/4/orig 2025-07-24T03:47:27.6343239Z * [new branch] gh/huydhn/5/head -> origin/gh/huydhn/5/head 2025-07-24T03:47:27.6343689Z * [new branch] gh/huydhn/5/next -> origin/gh/huydhn/5/next 2025-07-24T03:47:27.6344128Z * [new branch] gh/huydhn/5/orig -> origin/gh/huydhn/5/orig 2025-07-24T03:47:27.6344585Z * [new branch] gh/huydhn/6/head -> origin/gh/huydhn/6/head 2025-07-24T03:47:27.6345026Z * [new branch] gh/huydhn/6/next -> origin/gh/huydhn/6/next 2025-07-24T03:47:27.6345534Z * [new branch] gh/huydhn/6/orig -> origin/gh/huydhn/6/orig 2025-07-24T03:47:27.6346031Z * [new branch] gh/int3/97/base -> origin/gh/int3/97/base 2025-07-24T03:47:27.6346468Z * [new branch] gh/int3/97/head -> origin/gh/int3/97/head 2025-07-24T03:47:27.6346933Z * [new branch] gh/isuruf/101/base -> origin/gh/isuruf/101/base 2025-07-24T03:47:27.6347412Z * [new branch] gh/isuruf/101/head -> origin/gh/isuruf/101/head 2025-07-24T03:47:27.6347881Z * [new branch] gh/isuruf/105/base -> origin/gh/isuruf/105/base 2025-07-24T03:47:27.6348343Z * [new branch] gh/isuruf/105/head -> origin/gh/isuruf/105/head 2025-07-24T03:47:27.6348812Z * [new branch] gh/isuruf/105/orig -> origin/gh/isuruf/105/orig 2025-07-24T03:47:27.6349279Z * [new branch] gh/isuruf/110/base -> origin/gh/isuruf/110/base 2025-07-24T03:47:27.6349741Z * [new branch] gh/isuruf/110/head -> origin/gh/isuruf/110/head 2025-07-24T03:47:27.6350211Z * [new branch] gh/isuruf/110/orig -> origin/gh/isuruf/110/orig 2025-07-24T03:47:27.6350671Z * [new branch] gh/isuruf/116/base -> origin/gh/isuruf/116/base 2025-07-24T03:47:27.6351137Z * [new branch] gh/isuruf/116/head -> origin/gh/isuruf/116/head 2025-07-24T03:47:27.6351942Z * [new branch] gh/isuruf/116/orig -> origin/gh/isuruf/116/orig 2025-07-24T03:47:27.6352414Z * [new branch] gh/isuruf/141/base -> origin/gh/isuruf/141/base 2025-07-24T03:47:27.6352887Z * [new branch] gh/isuruf/141/head -> origin/gh/isuruf/141/head 2025-07-24T03:47:27.6353355Z * [new branch] gh/isuruf/141/orig -> origin/gh/isuruf/141/orig 2025-07-24T03:47:27.6353832Z * [new branch] gh/isuruf/143/base -> origin/gh/isuruf/143/base 2025-07-24T03:47:27.6354305Z * [new branch] gh/isuruf/143/head -> origin/gh/isuruf/143/head 2025-07-24T03:47:27.6354774Z * [new branch] gh/isuruf/143/orig -> origin/gh/isuruf/143/orig 2025-07-24T03:47:27.6355250Z * [new branch] gh/isuruf/148/base -> origin/gh/isuruf/148/base 2025-07-24T03:47:27.6355722Z * [new branch] gh/isuruf/148/head -> origin/gh/isuruf/148/head 2025-07-24T03:47:27.6356208Z * [new branch] gh/isuruf/148/orig -> origin/gh/isuruf/148/orig 2025-07-24T03:47:27.6356678Z * [new branch] gh/jamesjwu/140/base -> origin/gh/jamesjwu/140/base 2025-07-24T03:47:27.6357173Z * [new branch] gh/jamesjwu/140/head -> origin/gh/jamesjwu/140/head 2025-07-24T03:47:27.6357708Z * [new branch] gh/jamesjwu/140/orig -> origin/gh/jamesjwu/140/orig 2025-07-24T03:47:27.6358238Z * [new branch] gh/jamesjwu/150/base -> origin/gh/jamesjwu/150/base 2025-07-24T03:47:27.6358717Z * [new branch] gh/jamesjwu/150/head -> origin/gh/jamesjwu/150/head 2025-07-24T03:47:27.6359191Z * [new branch] gh/jamesjwu/150/orig -> origin/gh/jamesjwu/150/orig 2025-07-24T03:47:27.6359672Z * [new branch] gh/jamesjwu/154/base -> origin/gh/jamesjwu/154/base 2025-07-24T03:47:27.6360161Z * [new branch] gh/jamesjwu/154/head -> origin/gh/jamesjwu/154/head 2025-07-24T03:47:27.6806397Z * [new branch] gh/jamesjwu/154/orig -> origin/gh/jamesjwu/154/orig 2025-07-24T03:47:27.6806940Z * [new branch] gh/jamesjwu/155/base -> origin/gh/jamesjwu/155/base 2025-07-24T03:47:27.6807430Z * [new branch] gh/jamesjwu/155/head -> origin/gh/jamesjwu/155/head 2025-07-24T03:47:27.6807913Z * [new branch] gh/jamesjwu/155/orig -> origin/gh/jamesjwu/155/orig 2025-07-24T03:47:27.6808399Z * [new branch] gh/jamesjwu/159/base -> origin/gh/jamesjwu/159/base 2025-07-24T03:47:27.6808945Z * [new branch] gh/jamesjwu/159/head -> origin/gh/jamesjwu/159/head 2025-07-24T03:47:27.6809426Z * [new branch] gh/jamesjwu/159/orig -> origin/gh/jamesjwu/159/orig 2025-07-24T03:47:27.6809901Z * [new branch] gh/jamesjwu/163/base -> origin/gh/jamesjwu/163/base 2025-07-24T03:47:27.6810421Z * [new branch] gh/jamesjwu/163/head -> origin/gh/jamesjwu/163/head 2025-07-24T03:47:27.6810955Z * [new branch] gh/jamesjwu/163/orig -> origin/gh/jamesjwu/163/orig 2025-07-24T03:47:27.6811430Z * [new branch] gh/jamesjwu/165/base -> origin/gh/jamesjwu/165/base 2025-07-24T03:47:27.6811958Z * [new branch] gh/jamesjwu/165/head -> origin/gh/jamesjwu/165/head 2025-07-24T03:47:27.6812435Z * [new branch] gh/jamesjwu/165/orig -> origin/gh/jamesjwu/165/orig 2025-07-24T03:47:27.6812925Z * [new branch] gh/jamesjwu/166/base -> origin/gh/jamesjwu/166/base 2025-07-24T03:47:27.6813402Z * [new branch] gh/jamesjwu/166/head -> origin/gh/jamesjwu/166/head 2025-07-24T03:47:27.6813882Z * [new branch] gh/jamesjwu/166/orig -> origin/gh/jamesjwu/166/orig 2025-07-24T03:47:27.6814362Z * [new branch] gh/jamesjwu/167/base -> origin/gh/jamesjwu/167/base 2025-07-24T03:47:27.6815120Z * [new branch] gh/jamesjwu/167/head -> origin/gh/jamesjwu/167/head 2025-07-24T03:47:27.6815603Z * [new branch] gh/jamesjwu/167/orig -> origin/gh/jamesjwu/167/orig 2025-07-24T03:47:27.6816078Z * [new branch] gh/jamesjwu/168/base -> origin/gh/jamesjwu/168/base 2025-07-24T03:47:27.6816562Z * [new branch] gh/jamesjwu/168/head -> origin/gh/jamesjwu/168/head 2025-07-24T03:47:27.6817099Z * [new branch] gh/jamesjwu/168/orig -> origin/gh/jamesjwu/168/orig 2025-07-24T03:47:27.6817618Z * [new branch] gh/jamesjwu/169/base -> origin/gh/jamesjwu/169/base 2025-07-24T03:47:27.6818103Z * [new branch] gh/jamesjwu/169/head -> origin/gh/jamesjwu/169/head 2025-07-24T03:47:27.6818573Z * [new branch] gh/jamesjwu/169/orig -> origin/gh/jamesjwu/169/orig 2025-07-24T03:47:27.6819055Z * [new branch] gh/jamesjwu/170/base -> origin/gh/jamesjwu/170/base 2025-07-24T03:47:27.6819550Z * [new branch] gh/jamesjwu/170/head -> origin/gh/jamesjwu/170/head 2025-07-24T03:47:27.6820022Z * [new branch] gh/jamesjwu/170/orig -> origin/gh/jamesjwu/170/orig 2025-07-24T03:47:27.6820503Z * [new branch] gh/jamesjwu/171/base -> origin/gh/jamesjwu/171/base 2025-07-24T03:47:27.6820978Z * [new branch] gh/jamesjwu/171/head -> origin/gh/jamesjwu/171/head 2025-07-24T03:47:27.6821461Z * [new branch] gh/jamesjwu/171/orig -> origin/gh/jamesjwu/171/orig 2025-07-24T03:47:27.6821951Z * [new branch] gh/jamesjwu/172/base -> origin/gh/jamesjwu/172/base 2025-07-24T03:47:27.6822421Z * [new branch] gh/jamesjwu/172/head -> origin/gh/jamesjwu/172/head 2025-07-24T03:47:27.6822956Z * [new branch] gh/jamesjwu/172/orig -> origin/gh/jamesjwu/172/orig 2025-07-24T03:47:27.6823495Z * [new branch] gh/jamesjwu/173/base -> origin/gh/jamesjwu/173/base 2025-07-24T03:47:27.6823973Z * [new branch] gh/jamesjwu/173/head -> origin/gh/jamesjwu/173/head 2025-07-24T03:47:27.6824445Z * [new branch] gh/jamesjwu/173/orig -> origin/gh/jamesjwu/173/orig 2025-07-24T03:47:27.6824936Z * [new branch] gh/jamesjwu/174/base -> origin/gh/jamesjwu/174/base 2025-07-24T03:47:27.6825427Z * [new branch] gh/jamesjwu/174/head -> origin/gh/jamesjwu/174/head 2025-07-24T03:47:27.6825902Z * [new branch] gh/jamesjwu/174/orig -> origin/gh/jamesjwu/174/orig 2025-07-24T03:47:27.6826388Z * [new branch] gh/jamesjwu/175/base -> origin/gh/jamesjwu/175/base 2025-07-24T03:47:27.6826858Z * [new branch] gh/jamesjwu/175/head -> origin/gh/jamesjwu/175/head 2025-07-24T03:47:27.6827343Z * [new branch] gh/jamesjwu/175/orig -> origin/gh/jamesjwu/175/orig 2025-07-24T03:47:27.6827844Z * [new branch] gh/jamesjwu/176/base -> origin/gh/jamesjwu/176/base 2025-07-24T03:47:27.6828318Z * [new branch] gh/jamesjwu/176/head -> origin/gh/jamesjwu/176/head 2025-07-24T03:47:27.6828852Z * [new branch] gh/jamesjwu/176/orig -> origin/gh/jamesjwu/176/orig 2025-07-24T03:47:27.7261925Z * [new branch] gh/jamesjwu/177/base -> origin/gh/jamesjwu/177/base 2025-07-24T03:47:27.7262479Z * [new branch] gh/jamesjwu/177/head -> origin/gh/jamesjwu/177/head 2025-07-24T03:47:27.7262981Z * [new branch] gh/jamesjwu/177/orig -> origin/gh/jamesjwu/177/orig 2025-07-24T03:47:27.7263462Z * [new branch] gh/jamesjwu/178/base -> origin/gh/jamesjwu/178/base 2025-07-24T03:47:27.7264010Z * [new branch] gh/jamesjwu/178/head -> origin/gh/jamesjwu/178/head 2025-07-24T03:47:27.7264717Z * [new branch] gh/jamesjwu/178/orig -> origin/gh/jamesjwu/178/orig 2025-07-24T03:47:27.7265903Z * [new branch] gh/jamesjwu/179/base -> origin/gh/jamesjwu/179/base 2025-07-24T03:47:27.7266395Z * [new branch] gh/jamesjwu/179/head -> origin/gh/jamesjwu/179/head 2025-07-24T03:47:27.7266875Z * [new branch] gh/jamesjwu/179/orig -> origin/gh/jamesjwu/179/orig 2025-07-24T03:47:27.7267369Z * [new branch] gh/jamesjwu/52/base -> origin/gh/jamesjwu/52/base 2025-07-24T03:47:27.7267842Z * [new branch] gh/jamesjwu/52/head -> origin/gh/jamesjwu/52/head 2025-07-24T03:47:27.7268328Z * [new branch] gh/jamesjwu/53/base -> origin/gh/jamesjwu/53/base 2025-07-24T03:47:27.7268805Z * [new branch] gh/jamesjwu/53/head -> origin/gh/jamesjwu/53/head 2025-07-24T03:47:27.7269286Z * [new branch] gh/jamesjwu/54/base -> origin/gh/jamesjwu/54/base 2025-07-24T03:47:27.7269769Z * [new branch] gh/jamesjwu/54/head -> origin/gh/jamesjwu/54/head 2025-07-24T03:47:27.7270342Z * [new branch] gh/jamesjwu/55/base -> origin/gh/jamesjwu/55/base 2025-07-24T03:47:27.7270844Z * [new branch] gh/jamesjwu/55/head -> origin/gh/jamesjwu/55/head 2025-07-24T03:47:27.7271325Z * [new branch] gh/jamesjwu/56/base -> origin/gh/jamesjwu/56/base 2025-07-24T03:47:27.7271801Z * [new branch] gh/jamesjwu/56/head -> origin/gh/jamesjwu/56/head 2025-07-24T03:47:27.7272286Z * [new branch] gh/jamesjwu/57/base -> origin/gh/jamesjwu/57/base 2025-07-24T03:47:27.7272754Z * [new branch] gh/jamesjwu/57/head -> origin/gh/jamesjwu/57/head 2025-07-24T03:47:27.7273235Z * [new branch] gh/jamesjwu/58/base -> origin/gh/jamesjwu/58/base 2025-07-24T03:47:27.7273705Z * [new branch] gh/jamesjwu/58/head -> origin/gh/jamesjwu/58/head 2025-07-24T03:47:27.7274191Z * [new branch] gh/jamesjwu/59/base -> origin/gh/jamesjwu/59/base 2025-07-24T03:47:27.7274667Z * [new branch] gh/jamesjwu/59/head -> origin/gh/jamesjwu/59/head 2025-07-24T03:47:27.7275135Z * [new branch] gh/jamesjwu/60/base -> origin/gh/jamesjwu/60/base 2025-07-24T03:47:27.7275651Z * [new branch] gh/jamesjwu/60/head -> origin/gh/jamesjwu/60/head 2025-07-24T03:47:27.7276173Z * [new branch] gh/jamesjwu/61/base -> origin/gh/jamesjwu/61/base 2025-07-24T03:47:27.7276651Z * [new branch] gh/jamesjwu/61/head -> origin/gh/jamesjwu/61/head 2025-07-24T03:47:27.7277146Z * [new branch] gh/jamesjwu/62/base -> origin/gh/jamesjwu/62/base 2025-07-24T03:47:27.7277619Z * [new branch] gh/jamesjwu/62/head -> origin/gh/jamesjwu/62/head 2025-07-24T03:47:27.7278101Z * [new branch] gh/jamesjwu/63/base -> origin/gh/jamesjwu/63/base 2025-07-24T03:47:27.7278578Z * [new branch] gh/jamesjwu/63/head -> origin/gh/jamesjwu/63/head 2025-07-24T03:47:27.7279065Z * [new branch] gh/jamesjwu/64/base -> origin/gh/jamesjwu/64/base 2025-07-24T03:47:27.7279568Z * [new branch] gh/jamesjwu/64/head -> origin/gh/jamesjwu/64/head 2025-07-24T03:47:27.7280044Z * [new branch] gh/jamesjwu/65/base -> origin/gh/jamesjwu/65/base 2025-07-24T03:47:27.7280511Z * [new branch] gh/jamesjwu/65/head -> origin/gh/jamesjwu/65/head 2025-07-24T03:47:27.7280995Z * [new branch] gh/janeyx99/165/base -> origin/gh/janeyx99/165/base 2025-07-24T03:47:27.7281518Z * [new branch] gh/janeyx99/165/head -> origin/gh/janeyx99/165/head 2025-07-24T03:47:27.7282044Z * [new branch] gh/janeyx99/165/orig -> origin/gh/janeyx99/165/orig 2025-07-24T03:47:27.7282650Z * [new branch] gh/janeyx99/201/base -> origin/gh/janeyx99/201/base 2025-07-24T03:47:27.7283217Z * [new branch] gh/janeyx99/201/head -> origin/gh/janeyx99/201/head 2025-07-24T03:47:27.7283698Z * [new branch] gh/janeyx99/201/orig -> origin/gh/janeyx99/201/orig 2025-07-24T03:47:27.7284171Z * [new branch] gh/janeyx99/225/base -> origin/gh/janeyx99/225/base 2025-07-24T03:47:27.7284649Z * [new branch] gh/janeyx99/225/head -> origin/gh/janeyx99/225/head 2025-07-24T03:47:27.7285138Z * [new branch] gh/janeyx99/225/orig -> origin/gh/janeyx99/225/orig 2025-07-24T03:47:27.7285609Z * [new branch] gh/janeyx99/256/base -> origin/gh/janeyx99/256/base 2025-07-24T03:47:27.7713267Z * [new branch] gh/janeyx99/256/head -> origin/gh/janeyx99/256/head 2025-07-24T03:47:27.7713819Z * [new branch] gh/janeyx99/256/orig -> origin/gh/janeyx99/256/orig 2025-07-24T03:47:27.7714377Z * [new branch] gh/janeyx99/267/base -> origin/gh/janeyx99/267/base 2025-07-24T03:47:27.7714865Z * [new branch] gh/janeyx99/267/head -> origin/gh/janeyx99/267/head 2025-07-24T03:47:27.7715338Z * [new branch] gh/janeyx99/267/orig -> origin/gh/janeyx99/267/orig 2025-07-24T03:47:27.7715818Z * [new branch] gh/janeyx99/268/base -> origin/gh/janeyx99/268/base 2025-07-24T03:47:27.7716287Z * [new branch] gh/janeyx99/268/head -> origin/gh/janeyx99/268/head 2025-07-24T03:47:27.7716759Z * [new branch] gh/janeyx99/268/orig -> origin/gh/janeyx99/268/orig 2025-07-24T03:47:27.7717236Z * [new branch] gh/janeyx99/269/base -> origin/gh/janeyx99/269/base 2025-07-24T03:47:27.7717709Z * [new branch] gh/janeyx99/269/head -> origin/gh/janeyx99/269/head 2025-07-24T03:47:27.7718205Z * [new branch] gh/janeyx99/269/orig -> origin/gh/janeyx99/269/orig 2025-07-24T03:47:27.7718692Z * [new branch] gh/janeyx99/271/base -> origin/gh/janeyx99/271/base 2025-07-24T03:47:27.7719163Z * [new branch] gh/janeyx99/271/head -> origin/gh/janeyx99/271/head 2025-07-24T03:47:27.7719692Z * [new branch] gh/janeyx99/271/orig -> origin/gh/janeyx99/271/orig 2025-07-24T03:47:27.7720208Z * [new branch] gh/janeyx99/272/base -> origin/gh/janeyx99/272/base 2025-07-24T03:47:27.7720688Z * [new branch] gh/janeyx99/272/head -> origin/gh/janeyx99/272/head 2025-07-24T03:47:27.7721158Z * [new branch] gh/janeyx99/272/orig -> origin/gh/janeyx99/272/orig 2025-07-24T03:47:27.7721637Z * [new branch] gh/janeyx99/273/base -> origin/gh/janeyx99/273/base 2025-07-24T03:47:27.7722116Z * [new branch] gh/janeyx99/273/head -> origin/gh/janeyx99/273/head 2025-07-24T03:47:27.7722590Z * [new branch] gh/janeyx99/273/orig -> origin/gh/janeyx99/273/orig 2025-07-24T03:47:27.7723074Z * [new branch] gh/janeyx99/274/base -> origin/gh/janeyx99/274/base 2025-07-24T03:47:27.7723544Z * [new branch] gh/janeyx99/274/head -> origin/gh/janeyx99/274/head 2025-07-24T03:47:27.7724024Z * [new branch] gh/janeyx99/274/orig -> origin/gh/janeyx99/274/orig 2025-07-24T03:47:27.7724502Z * [new branch] gh/janeyx99/275/base -> origin/gh/janeyx99/275/base 2025-07-24T03:47:27.7724971Z * [new branch] gh/janeyx99/275/head -> origin/gh/janeyx99/275/head 2025-07-24T03:47:27.7725476Z * [new branch] gh/janeyx99/275/orig -> origin/gh/janeyx99/275/orig 2025-07-24T03:47:27.7725973Z * [new branch] gh/janeyx99/276/base -> origin/gh/janeyx99/276/base 2025-07-24T03:47:27.7726505Z * [new branch] gh/janeyx99/276/head -> origin/gh/janeyx99/276/head 2025-07-24T03:47:27.7727738Z * [new branch] gh/janeyx99/276/orig -> origin/gh/janeyx99/276/orig 2025-07-24T03:47:27.7728228Z * [new branch] gh/janeyx99/277/base -> origin/gh/janeyx99/277/base 2025-07-24T03:47:27.7728783Z * [new branch] gh/janeyx99/277/head -> origin/gh/janeyx99/277/head 2025-07-24T03:47:27.7729262Z * [new branch] gh/janeyx99/277/orig -> origin/gh/janeyx99/277/orig 2025-07-24T03:47:27.7729745Z * [new branch] gh/janeyx99/278/base -> origin/gh/janeyx99/278/base 2025-07-24T03:47:27.7730216Z * [new branch] gh/janeyx99/278/head -> origin/gh/janeyx99/278/head 2025-07-24T03:47:27.7730703Z * [new branch] gh/janeyx99/278/orig -> origin/gh/janeyx99/278/orig 2025-07-24T03:47:27.7731188Z * [new branch] gh/janeyx99/279/base -> origin/gh/janeyx99/279/base 2025-07-24T03:47:27.7731721Z * [new branch] gh/janeyx99/279/head -> origin/gh/janeyx99/279/head 2025-07-24T03:47:27.7732267Z * [new branch] gh/janeyx99/279/orig -> origin/gh/janeyx99/279/orig 2025-07-24T03:47:27.7732747Z * [new branch] gh/janeyx99/280/base -> origin/gh/janeyx99/280/base 2025-07-24T03:47:27.7733223Z * [new branch] gh/janeyx99/280/head -> origin/gh/janeyx99/280/head 2025-07-24T03:47:27.7733701Z * [new branch] gh/janeyx99/280/orig -> origin/gh/janeyx99/280/orig 2025-07-24T03:47:27.7734173Z * [new branch] gh/janeyx99/281/base -> origin/gh/janeyx99/281/base 2025-07-24T03:47:27.7734649Z * [new branch] gh/janeyx99/281/head -> origin/gh/janeyx99/281/head 2025-07-24T03:47:27.7735121Z * [new branch] gh/janeyx99/281/orig -> origin/gh/janeyx99/281/orig 2025-07-24T03:47:27.7735608Z * [new branch] gh/janeyx99/282/base -> origin/gh/janeyx99/282/base 2025-07-24T03:47:27.7736100Z * [new branch] gh/janeyx99/282/head -> origin/gh/janeyx99/282/head 2025-07-24T03:47:27.7736575Z * [new branch] gh/janeyx99/282/orig -> origin/gh/janeyx99/282/orig 2025-07-24T03:47:27.8171536Z * [new branch] gh/janeyx99/283/base -> origin/gh/janeyx99/283/base 2025-07-24T03:47:27.8172084Z * [new branch] gh/janeyx99/283/head -> origin/gh/janeyx99/283/head 2025-07-24T03:47:27.8172624Z * [new branch] gh/janeyx99/283/orig -> origin/gh/janeyx99/283/orig 2025-07-24T03:47:27.8173175Z * [new branch] gh/janeyx99/88/base -> origin/gh/janeyx99/88/base 2025-07-24T03:47:27.8173692Z * [new branch] gh/janeyx99/88/head -> origin/gh/janeyx99/88/head 2025-07-24T03:47:27.8174164Z * [new branch] gh/janeyx99/88/orig -> origin/gh/janeyx99/88/orig 2025-07-24T03:47:27.8174642Z * [new branch] gh/jansel/360/base -> origin/gh/jansel/360/base 2025-07-24T03:47:27.8175130Z * [new branch] gh/jansel/360/head -> origin/gh/jansel/360/head 2025-07-24T03:47:27.8175615Z * [new branch] gh/jansel/451/base -> origin/gh/jansel/451/base 2025-07-24T03:47:27.8176073Z * [new branch] gh/jansel/451/head -> origin/gh/jansel/451/head 2025-07-24T03:47:27.8176543Z * [new branch] gh/jansel/451/orig -> origin/gh/jansel/451/orig 2025-07-24T03:47:27.8177001Z * [new branch] gh/jansel/462/base -> origin/gh/jansel/462/base 2025-07-24T03:47:27.8177465Z * [new branch] gh/jansel/462/head -> origin/gh/jansel/462/head 2025-07-24T03:47:27.8177936Z * [new branch] gh/jansel/462/orig -> origin/gh/jansel/462/orig 2025-07-24T03:47:27.8178405Z * [new branch] gh/jansel/513/base -> origin/gh/jansel/513/base 2025-07-24T03:47:27.8178913Z * [new branch] gh/jansel/513/head -> origin/gh/jansel/513/head 2025-07-24T03:47:27.8179974Z * [new branch] gh/jansel/513/orig -> origin/gh/jansel/513/orig 2025-07-24T03:47:27.8180519Z * [new branch] gh/jansel/519/base -> origin/gh/jansel/519/base 2025-07-24T03:47:27.8181047Z * [new branch] gh/jansel/519/head -> origin/gh/jansel/519/head 2025-07-24T03:47:27.8181554Z * [new branch] gh/jansel/519/orig -> origin/gh/jansel/519/orig 2025-07-24T03:47:27.8182022Z * [new branch] gh/jansel/520/base -> origin/gh/jansel/520/base 2025-07-24T03:47:27.8182482Z * [new branch] gh/jansel/520/head -> origin/gh/jansel/520/head 2025-07-24T03:47:27.8182950Z * [new branch] gh/jansel/520/orig -> origin/gh/jansel/520/orig 2025-07-24T03:47:27.8183419Z * [new branch] gh/jansel/521/base -> origin/gh/jansel/521/base 2025-07-24T03:47:27.8183873Z * [new branch] gh/jansel/521/head -> origin/gh/jansel/521/head 2025-07-24T03:47:27.8184351Z * [new branch] gh/jansel/521/orig -> origin/gh/jansel/521/orig 2025-07-24T03:47:27.8184808Z * [new branch] gh/jansel/522/base -> origin/gh/jansel/522/base 2025-07-24T03:47:27.8185275Z * [new branch] gh/jansel/522/head -> origin/gh/jansel/522/head 2025-07-24T03:47:27.8185736Z * [new branch] gh/jansel/522/orig -> origin/gh/jansel/522/orig 2025-07-24T03:47:27.8186206Z * [new branch] gh/jansel/523/base -> origin/gh/jansel/523/base 2025-07-24T03:47:27.8186675Z * [new branch] gh/jansel/523/head -> origin/gh/jansel/523/head 2025-07-24T03:47:27.8187185Z * [new branch] gh/jansel/523/orig -> origin/gh/jansel/523/orig 2025-07-24T03:47:27.8187700Z * [new branch] gh/jansel/524/base -> origin/gh/jansel/524/base 2025-07-24T03:47:27.8188214Z * [new branch] gh/jansel/524/head -> origin/gh/jansel/524/head 2025-07-24T03:47:27.8188767Z * [new branch] gh/jansel/524/orig -> origin/gh/jansel/524/orig 2025-07-24T03:47:27.8189281Z * [new branch] gh/jansel/525/base -> origin/gh/jansel/525/base 2025-07-24T03:47:27.8189763Z * [new branch] gh/jansel/525/head -> origin/gh/jansel/525/head 2025-07-24T03:47:27.8190232Z * [new branch] gh/jansel/525/orig -> origin/gh/jansel/525/orig 2025-07-24T03:47:27.8190692Z * [new branch] gh/jansel/526/base -> origin/gh/jansel/526/base 2025-07-24T03:47:27.8191162Z * [new branch] gh/jansel/526/head -> origin/gh/jansel/526/head 2025-07-24T03:47:27.8191629Z * [new branch] gh/jansel/526/orig -> origin/gh/jansel/526/orig 2025-07-24T03:47:27.8192085Z * [new branch] gh/jansel/527/base -> origin/gh/jansel/527/base 2025-07-24T03:47:27.8192554Z * [new branch] gh/jansel/527/head -> origin/gh/jansel/527/head 2025-07-24T03:47:27.8193017Z * [new branch] gh/jansel/527/orig -> origin/gh/jansel/527/orig 2025-07-24T03:47:27.8193485Z * [new branch] gh/jansel/528/base -> origin/gh/jansel/528/base 2025-07-24T03:47:27.8193952Z * [new branch] gh/jansel/528/head -> origin/gh/jansel/528/head 2025-07-24T03:47:27.8194409Z * [new branch] gh/jansel/528/orig -> origin/gh/jansel/528/orig 2025-07-24T03:47:27.8618474Z * [new branch] gh/jansel/529/base -> origin/gh/jansel/529/base 2025-07-24T03:47:27.8618964Z * [new branch] gh/jansel/529/head -> origin/gh/jansel/529/head 2025-07-24T03:47:27.8619433Z * [new branch] gh/jansel/529/orig -> origin/gh/jansel/529/orig 2025-07-24T03:47:27.8619908Z * [new branch] gh/jansel/530/base -> origin/gh/jansel/530/base 2025-07-24T03:47:27.8620863Z * [new branch] gh/jansel/530/head -> origin/gh/jansel/530/head 2025-07-24T03:47:27.8621443Z * [new branch] gh/jansel/530/orig -> origin/gh/jansel/530/orig 2025-07-24T03:47:27.8621904Z * [new branch] gh/jansel/531/base -> origin/gh/jansel/531/base 2025-07-24T03:47:27.8622383Z * [new branch] gh/jansel/531/head -> origin/gh/jansel/531/head 2025-07-24T03:47:27.8622841Z * [new branch] gh/jansel/531/orig -> origin/gh/jansel/531/orig 2025-07-24T03:47:27.8623308Z * [new branch] gh/jansel/532/base -> origin/gh/jansel/532/base 2025-07-24T03:47:27.8623780Z * [new branch] gh/jansel/532/head -> origin/gh/jansel/532/head 2025-07-24T03:47:27.8624234Z * [new branch] gh/jansel/532/orig -> origin/gh/jansel/532/orig 2025-07-24T03:47:27.8624700Z * [new branch] gh/jansel/533/base -> origin/gh/jansel/533/base 2025-07-24T03:47:27.8625163Z * [new branch] gh/jansel/533/head -> origin/gh/jansel/533/head 2025-07-24T03:47:27.8625633Z * [new branch] gh/jansel/533/orig -> origin/gh/jansel/533/orig 2025-07-24T03:47:27.8626143Z * [new branch] gh/jbschlosser/226/base -> origin/gh/jbschlosser/226/base 2025-07-24T03:47:27.8626665Z * [new branch] gh/jbschlosser/226/head -> origin/gh/jbschlosser/226/head 2025-07-24T03:47:27.8627183Z * [new branch] gh/jbschlosser/226/orig -> origin/gh/jbschlosser/226/orig 2025-07-24T03:47:27.8627692Z * [new branch] gh/jbschlosser/239/base -> origin/gh/jbschlosser/239/base 2025-07-24T03:47:27.8628211Z * [new branch] gh/jbschlosser/239/head -> origin/gh/jbschlosser/239/head 2025-07-24T03:47:27.8628731Z * [new branch] gh/jbschlosser/239/orig -> origin/gh/jbschlosser/239/orig 2025-07-24T03:47:27.8629245Z * [new branch] gh/jbschlosser/247/base -> origin/gh/jbschlosser/247/base 2025-07-24T03:47:27.8629770Z * [new branch] gh/jbschlosser/247/head -> origin/gh/jbschlosser/247/head 2025-07-24T03:47:27.8630282Z * [new branch] gh/jbschlosser/247/orig -> origin/gh/jbschlosser/247/orig 2025-07-24T03:47:27.8630798Z * [new branch] gh/jbschlosser/248/base -> origin/gh/jbschlosser/248/base 2025-07-24T03:47:27.8631321Z * [new branch] gh/jbschlosser/248/head -> origin/gh/jbschlosser/248/head 2025-07-24T03:47:27.8631841Z * [new branch] gh/jbschlosser/248/orig -> origin/gh/jbschlosser/248/orig 2025-07-24T03:47:27.8632354Z * [new branch] gh/jbschlosser/249/base -> origin/gh/jbschlosser/249/base 2025-07-24T03:47:27.8632867Z * [new branch] gh/jbschlosser/249/head -> origin/gh/jbschlosser/249/head 2025-07-24T03:47:27.8633382Z * [new branch] gh/jbschlosser/249/orig -> origin/gh/jbschlosser/249/orig 2025-07-24T03:47:27.8633900Z * [new branch] gh/jerryzh168/1/base -> origin/gh/jerryzh168/1/base 2025-07-24T03:47:27.8634387Z * [new branch] gh/jerryzh168/1/head -> origin/gh/jerryzh168/1/head 2025-07-24T03:47:27.8634878Z * [new branch] gh/jerryzh168/1/orig -> origin/gh/jerryzh168/1/orig 2025-07-24T03:47:27.8635361Z * [new branch] gh/jiayisunx/57/base -> origin/gh/jiayisunx/57/base 2025-07-24T03:47:27.8635849Z * [new branch] gh/jiayisunx/57/head -> origin/gh/jiayisunx/57/head 2025-07-24T03:47:27.8636332Z * [new branch] gh/jiayisunx/57/orig -> origin/gh/jiayisunx/57/orig 2025-07-24T03:47:27.8636812Z * [new branch] gh/jiayisunx/58/base -> origin/gh/jiayisunx/58/base 2025-07-24T03:47:27.8637299Z * [new branch] gh/jiayisunx/58/head -> origin/gh/jiayisunx/58/head 2025-07-24T03:47:27.8637785Z * [new branch] gh/jiayisunx/58/orig -> origin/gh/jiayisunx/58/orig 2025-07-24T03:47:27.8638657Z * [new branch] gh/jiayisunx/59/base -> origin/gh/jiayisunx/59/base 2025-07-24T03:47:27.8639153Z * [new branch] gh/jiayisunx/59/head -> origin/gh/jiayisunx/59/head 2025-07-24T03:47:27.8639646Z * [new branch] gh/jiayisunx/59/orig -> origin/gh/jiayisunx/59/orig 2025-07-24T03:47:27.8640138Z * [new branch] gh/jiayisunx/61/base -> origin/gh/jiayisunx/61/base 2025-07-24T03:47:27.8640620Z * [new branch] gh/jiayisunx/61/head -> origin/gh/jiayisunx/61/head 2025-07-24T03:47:27.8641109Z * [new branch] gh/jiayisunx/61/orig -> origin/gh/jiayisunx/61/orig 2025-07-24T03:47:27.8641590Z * [new branch] gh/jiayisunx/63/base -> origin/gh/jiayisunx/63/base 2025-07-24T03:47:27.8642080Z * [new branch] gh/jiayisunx/63/head -> origin/gh/jiayisunx/63/head 2025-07-24T03:47:27.9100804Z * [new branch] gh/jiayisunx/63/orig -> origin/gh/jiayisunx/63/orig 2025-07-24T03:47:27.9101327Z * [new branch] gh/jiayisunx/64/base -> origin/gh/jiayisunx/64/base 2025-07-24T03:47:27.9101832Z * [new branch] gh/jiayisunx/64/head -> origin/gh/jiayisunx/64/head 2025-07-24T03:47:27.9102316Z * [new branch] gh/jiayisunx/64/orig -> origin/gh/jiayisunx/64/orig 2025-07-24T03:47:27.9102815Z * [new branch] gh/jiayisunx/65/base -> origin/gh/jiayisunx/65/base 2025-07-24T03:47:27.9103303Z * [new branch] gh/jiayisunx/65/head -> origin/gh/jiayisunx/65/head 2025-07-24T03:47:27.9103791Z * [new branch] gh/jiayisunx/65/orig -> origin/gh/jiayisunx/65/orig 2025-07-24T03:47:27.9104277Z * [new branch] gh/jiayisunx/66/base -> origin/gh/jiayisunx/66/base 2025-07-24T03:47:27.9104764Z * [new branch] gh/jiayisunx/66/head -> origin/gh/jiayisunx/66/head 2025-07-24T03:47:27.9105257Z * [new branch] gh/jiayisunx/66/orig -> origin/gh/jiayisunx/66/orig 2025-07-24T03:47:27.9105770Z * [new branch] gh/jjwu@meta.com/1/base -> origin/gh/jjwu@meta.com/1/base 2025-07-24T03:47:27.9106270Z * [new branch] gh/jjwu@meta.com/1/head -> origin/gh/jjwu@meta.com/1/head 2025-07-24T03:47:27.9106782Z * [new branch] gh/justinchuby/111/base -> origin/gh/justinchuby/111/base 2025-07-24T03:47:27.9107297Z * [new branch] gh/justinchuby/111/head -> origin/gh/justinchuby/111/head 2025-07-24T03:47:27.9107822Z * [new branch] gh/justinchuby/111/orig -> origin/gh/justinchuby/111/orig 2025-07-24T03:47:27.9108339Z * [new branch] gh/kurtamohler/31/base -> origin/gh/kurtamohler/31/base 2025-07-24T03:47:27.9108846Z * [new branch] gh/kurtamohler/31/head -> origin/gh/kurtamohler/31/head 2025-07-24T03:47:27.9109358Z * [new branch] gh/kurtamohler/31/orig -> origin/gh/kurtamohler/31/orig 2025-07-24T03:47:27.9109875Z * [new branch] gh/kurtamohler/32/base -> origin/gh/kurtamohler/32/base 2025-07-24T03:47:27.9110385Z * [new branch] gh/kurtamohler/32/head -> origin/gh/kurtamohler/32/head 2025-07-24T03:47:27.9110902Z * [new branch] gh/kurtamohler/32/orig -> origin/gh/kurtamohler/32/orig 2025-07-24T03:47:27.9111406Z * [new branch] gh/kurtamohler/33/base -> origin/gh/kurtamohler/33/base 2025-07-24T03:47:27.9111926Z * [new branch] gh/kurtamohler/33/head -> origin/gh/kurtamohler/33/head 2025-07-24T03:47:27.9112432Z * [new branch] gh/kurtamohler/33/orig -> origin/gh/kurtamohler/33/orig 2025-07-24T03:47:27.9112946Z * [new branch] gh/kurtamohler/34/base -> origin/gh/kurtamohler/34/base 2025-07-24T03:47:27.9113453Z * [new branch] gh/kurtamohler/34/head -> origin/gh/kurtamohler/34/head 2025-07-24T03:47:27.9114359Z * [new branch] gh/kurtamohler/34/orig -> origin/gh/kurtamohler/34/orig 2025-07-24T03:47:27.9114989Z * [new branch] gh/kurtamohler/37/base -> origin/gh/kurtamohler/37/base 2025-07-24T03:47:27.9115494Z * [new branch] gh/kurtamohler/37/head -> origin/gh/kurtamohler/37/head 2025-07-24T03:47:27.9116014Z * [new branch] gh/kurtamohler/37/orig -> origin/gh/kurtamohler/37/orig 2025-07-24T03:47:27.9116527Z * [new branch] gh/kurtamohler/38/base -> origin/gh/kurtamohler/38/base 2025-07-24T03:47:27.9117033Z * [new branch] gh/kurtamohler/38/head -> origin/gh/kurtamohler/38/head 2025-07-24T03:47:27.9117548Z * [new branch] gh/kurtamohler/38/orig -> origin/gh/kurtamohler/38/orig 2025-07-24T03:47:27.9118053Z * [new branch] gh/kurtamohler/39/base -> origin/gh/kurtamohler/39/base 2025-07-24T03:47:27.9118569Z * [new branch] gh/kurtamohler/39/head -> origin/gh/kurtamohler/39/head 2025-07-24T03:47:27.9119081Z * [new branch] gh/kurtamohler/39/orig -> origin/gh/kurtamohler/39/orig 2025-07-24T03:47:27.9119584Z * [new branch] gh/kurtamohler/40/base -> origin/gh/kurtamohler/40/base 2025-07-24T03:47:27.9120100Z * [new branch] gh/kurtamohler/40/head -> origin/gh/kurtamohler/40/head 2025-07-24T03:47:27.9120609Z * [new branch] gh/kurtamohler/40/orig -> origin/gh/kurtamohler/40/orig 2025-07-24T03:47:27.9121121Z * [new branch] gh/kurtamohler/41/base -> origin/gh/kurtamohler/41/base 2025-07-24T03:47:27.9121660Z * [new branch] gh/kurtamohler/41/head -> origin/gh/kurtamohler/41/head 2025-07-24T03:47:27.9122163Z * [new branch] gh/kurtamohler/41/orig -> origin/gh/kurtamohler/41/orig 2025-07-24T03:47:27.9122681Z * [new branch] gh/kurtamohler/42/base -> origin/gh/kurtamohler/42/base 2025-07-24T03:47:27.9123189Z * [new branch] gh/kurtamohler/42/head -> origin/gh/kurtamohler/42/head 2025-07-24T03:47:27.9123714Z * [new branch] gh/kurtamohler/42/orig -> origin/gh/kurtamohler/42/orig 2025-07-24T03:47:27.9576159Z * [new branch] gh/kwen2501/1/base -> origin/gh/kwen2501/1/base 2025-07-24T03:47:27.9576661Z * [new branch] gh/kwen2501/1/head -> origin/gh/kwen2501/1/head 2025-07-24T03:47:27.9577143Z * [new branch] gh/kwen2501/130/base -> origin/gh/kwen2501/130/base 2025-07-24T03:47:27.9577625Z * [new branch] gh/kwen2501/130/head -> origin/gh/kwen2501/130/head 2025-07-24T03:47:27.9578112Z * [new branch] gh/kwen2501/130/orig -> origin/gh/kwen2501/130/orig 2025-07-24T03:47:27.9578581Z * [new branch] gh/kwen2501/142/base -> origin/gh/kwen2501/142/base 2025-07-24T03:47:27.9579066Z * [new branch] gh/kwen2501/142/head -> origin/gh/kwen2501/142/head 2025-07-24T03:47:27.9579570Z * [new branch] gh/kwen2501/142/orig -> origin/gh/kwen2501/142/orig 2025-07-24T03:47:27.9580036Z * [new branch] gh/kwen2501/15/base -> origin/gh/kwen2501/15/base 2025-07-24T03:47:27.9580512Z * [new branch] gh/kwen2501/15/head -> origin/gh/kwen2501/15/head 2025-07-24T03:47:27.9580991Z * [new branch] gh/kwen2501/156/base -> origin/gh/kwen2501/156/base 2025-07-24T03:47:27.9581462Z * [new branch] gh/kwen2501/156/head -> origin/gh/kwen2501/156/head 2025-07-24T03:47:27.9581939Z * [new branch] gh/kwen2501/156/orig -> origin/gh/kwen2501/156/orig 2025-07-24T03:47:27.9582404Z * [new branch] gh/kwen2501/162/base -> origin/gh/kwen2501/162/base 2025-07-24T03:47:27.9582883Z * [new branch] gh/kwen2501/162/head -> origin/gh/kwen2501/162/head 2025-07-24T03:47:27.9583777Z * [new branch] gh/kwen2501/162/orig -> origin/gh/kwen2501/162/orig 2025-07-24T03:47:27.9584353Z * [new branch] gh/kwen2501/170/base -> origin/gh/kwen2501/170/base 2025-07-24T03:47:27.9584828Z * [new branch] gh/kwen2501/170/head -> origin/gh/kwen2501/170/head 2025-07-24T03:47:27.9585294Z * [new branch] gh/kwen2501/178/base -> origin/gh/kwen2501/178/base 2025-07-24T03:47:27.9585773Z * [new branch] gh/kwen2501/178/head -> origin/gh/kwen2501/178/head 2025-07-24T03:47:27.9586255Z * [new branch] gh/kwen2501/178/orig -> origin/gh/kwen2501/178/orig 2025-07-24T03:47:27.9586723Z * [new branch] gh/kwen2501/179/base -> origin/gh/kwen2501/179/base 2025-07-24T03:47:27.9587203Z * [new branch] gh/kwen2501/179/head -> origin/gh/kwen2501/179/head 2025-07-24T03:47:27.9587670Z * [new branch] gh/kwen2501/179/orig -> origin/gh/kwen2501/179/orig 2025-07-24T03:47:27.9588147Z * [new branch] gh/kwen2501/180/base -> origin/gh/kwen2501/180/base 2025-07-24T03:47:27.9588623Z * [new branch] gh/kwen2501/180/head -> origin/gh/kwen2501/180/head 2025-07-24T03:47:27.9589098Z * [new branch] gh/kwen2501/180/orig -> origin/gh/kwen2501/180/orig 2025-07-24T03:47:27.9589576Z * [new branch] gh/kwen2501/181/base -> origin/gh/kwen2501/181/base 2025-07-24T03:47:27.9590043Z * [new branch] gh/kwen2501/181/head -> origin/gh/kwen2501/181/head 2025-07-24T03:47:27.9590515Z * [new branch] gh/kwen2501/181/orig -> origin/gh/kwen2501/181/orig 2025-07-24T03:47:27.9590989Z * [new branch] gh/kwen2501/182/base -> origin/gh/kwen2501/182/base 2025-07-24T03:47:27.9591466Z * [new branch] gh/kwen2501/182/head -> origin/gh/kwen2501/182/head 2025-07-24T03:47:27.9591939Z * [new branch] gh/kwen2501/182/orig -> origin/gh/kwen2501/182/orig 2025-07-24T03:47:27.9592419Z * [new branch] gh/kwen2501/183/base -> origin/gh/kwen2501/183/base 2025-07-24T03:47:27.9592896Z * [new branch] gh/kwen2501/183/head -> origin/gh/kwen2501/183/head 2025-07-24T03:47:27.9593365Z * [new branch] gh/kwen2501/183/orig -> origin/gh/kwen2501/183/orig 2025-07-24T03:47:27.9593843Z * [new branch] gh/kwen2501/184/base -> origin/gh/kwen2501/184/base 2025-07-24T03:47:27.9594327Z * [new branch] gh/kwen2501/184/head -> origin/gh/kwen2501/184/head 2025-07-24T03:47:27.9594790Z * [new branch] gh/kwen2501/184/orig -> origin/gh/kwen2501/184/orig 2025-07-24T03:47:27.9595256Z * [new branch] gh/kwen2501/185/base -> origin/gh/kwen2501/185/base 2025-07-24T03:47:27.9595727Z * [new branch] gh/kwen2501/185/head -> origin/gh/kwen2501/185/head 2025-07-24T03:47:27.9596203Z * [new branch] gh/kwen2501/185/orig -> origin/gh/kwen2501/185/orig 2025-07-24T03:47:27.9596675Z * [new branch] gh/kwen2501/186/base -> origin/gh/kwen2501/186/base 2025-07-24T03:47:27.9597153Z * [new branch] gh/kwen2501/186/head -> origin/gh/kwen2501/186/head 2025-07-24T03:47:27.9597635Z * [new branch] gh/kwen2501/186/orig -> origin/gh/kwen2501/186/orig 2025-07-24T03:47:27.9598107Z * [new branch] gh/kwen2501/187/base -> origin/gh/kwen2501/187/base 2025-07-24T03:47:27.9598582Z * [new branch] gh/kwen2501/187/head -> origin/gh/kwen2501/187/head 2025-07-24T03:47:28.0031654Z * [new branch] gh/kwen2501/187/orig -> origin/gh/kwen2501/187/orig 2025-07-24T03:47:28.0032185Z * [new branch] gh/kwen2501/188/base -> origin/gh/kwen2501/188/base 2025-07-24T03:47:28.0032676Z * [new branch] gh/kwen2501/188/head -> origin/gh/kwen2501/188/head 2025-07-24T03:47:28.0033600Z * [new branch] gh/kwen2501/188/orig -> origin/gh/kwen2501/188/orig 2025-07-24T03:47:28.0034194Z * [new branch] gh/kwen2501/189/base -> origin/gh/kwen2501/189/base 2025-07-24T03:47:28.0034662Z * [new branch] gh/kwen2501/189/head -> origin/gh/kwen2501/189/head 2025-07-24T03:47:28.0035133Z * [new branch] gh/kwen2501/189/orig -> origin/gh/kwen2501/189/orig 2025-07-24T03:47:28.0035609Z * [new branch] gh/kwen2501/190/base -> origin/gh/kwen2501/190/base 2025-07-24T03:47:28.0036068Z * [new branch] gh/kwen2501/190/head -> origin/gh/kwen2501/190/head 2025-07-24T03:47:28.0036546Z * [new branch] gh/kwen2501/190/orig -> origin/gh/kwen2501/190/orig 2025-07-24T03:47:28.0037015Z * [new branch] gh/kwen2501/191/base -> origin/gh/kwen2501/191/base 2025-07-24T03:47:28.0037493Z * [new branch] gh/kwen2501/191/head -> origin/gh/kwen2501/191/head 2025-07-24T03:47:28.0037999Z * [new branch] gh/kwen2501/191/orig -> origin/gh/kwen2501/191/orig 2025-07-24T03:47:28.0038464Z * [new branch] gh/kwen2501/192/base -> origin/gh/kwen2501/192/base 2025-07-24T03:47:28.0038939Z * [new branch] gh/kwen2501/192/head -> origin/gh/kwen2501/192/head 2025-07-24T03:47:28.0039418Z * [new branch] gh/kwen2501/192/orig -> origin/gh/kwen2501/192/orig 2025-07-24T03:47:28.0039883Z * [new branch] gh/kwen2501/193/base -> origin/gh/kwen2501/193/base 2025-07-24T03:47:28.0040365Z * [new branch] gh/kwen2501/193/head -> origin/gh/kwen2501/193/head 2025-07-24T03:47:28.0040842Z * [new branch] gh/kwen2501/193/orig -> origin/gh/kwen2501/193/orig 2025-07-24T03:47:28.0041317Z * [new branch] gh/kwen2501/194/base -> origin/gh/kwen2501/194/base 2025-07-24T03:47:28.0041788Z * [new branch] gh/kwen2501/194/head -> origin/gh/kwen2501/194/head 2025-07-24T03:47:28.0042271Z * [new branch] gh/kwen2501/194/orig -> origin/gh/kwen2501/194/orig 2025-07-24T03:47:28.0042745Z * [new branch] gh/kwen2501/195/base -> origin/gh/kwen2501/195/base 2025-07-24T03:47:28.0043213Z * [new branch] gh/kwen2501/195/head -> origin/gh/kwen2501/195/head 2025-07-24T03:47:28.0043693Z * [new branch] gh/kwen2501/195/orig -> origin/gh/kwen2501/195/orig 2025-07-24T03:47:28.0044158Z * [new branch] gh/kwen2501/196/base -> origin/gh/kwen2501/196/base 2025-07-24T03:47:28.0044629Z * [new branch] gh/kwen2501/196/head -> origin/gh/kwen2501/196/head 2025-07-24T03:47:28.0045114Z * [new branch] gh/kwen2501/196/orig -> origin/gh/kwen2501/196/orig 2025-07-24T03:47:28.0045582Z * [new branch] gh/kwen2501/197/base -> origin/gh/kwen2501/197/base 2025-07-24T03:47:28.0046060Z * [new branch] gh/kwen2501/197/head -> origin/gh/kwen2501/197/head 2025-07-24T03:47:28.0046530Z * [new branch] gh/kwen2501/197/orig -> origin/gh/kwen2501/197/orig 2025-07-24T03:47:28.0047025Z * [new branch] gh/laithsakka/117/base -> origin/gh/laithsakka/117/base 2025-07-24T03:47:28.0047539Z * [new branch] gh/laithsakka/117/head -> origin/gh/laithsakka/117/head 2025-07-24T03:47:28.0048039Z * [new branch] gh/laithsakka/117/orig -> origin/gh/laithsakka/117/orig 2025-07-24T03:47:28.0048629Z * [new branch] gh/laithsakka/120/base -> origin/gh/laithsakka/120/base 2025-07-24T03:47:28.0049137Z * [new branch] gh/laithsakka/120/head -> origin/gh/laithsakka/120/head 2025-07-24T03:47:28.0049650Z * [new branch] gh/laithsakka/120/orig -> origin/gh/laithsakka/120/orig 2025-07-24T03:47:28.0050164Z * [new branch] gh/laithsakka/141/base -> origin/gh/laithsakka/141/base 2025-07-24T03:47:28.0051071Z * [new branch] gh/laithsakka/141/head -> origin/gh/laithsakka/141/head 2025-07-24T03:47:28.0051594Z * [new branch] gh/laithsakka/141/orig -> origin/gh/laithsakka/141/orig 2025-07-24T03:47:28.0060221Z * [new branch] gh/laithsakka/152/base -> origin/gh/laithsakka/152/base 2025-07-24T03:47:28.0060871Z * [new branch] gh/laithsakka/152/head -> origin/gh/laithsakka/152/head 2025-07-24T03:47:28.0061390Z * [new branch] gh/laithsakka/152/orig -> origin/gh/laithsakka/152/orig 2025-07-24T03:47:28.0061904Z * [new branch] gh/laithsakka/156/base -> origin/gh/laithsakka/156/base 2025-07-24T03:47:28.0062415Z * [new branch] gh/laithsakka/156/head -> origin/gh/laithsakka/156/head 2025-07-24T03:47:28.0062913Z * [new branch] gh/laithsakka/156/orig -> origin/gh/laithsakka/156/orig 2025-07-24T03:47:28.0476291Z * [new branch] gh/laithsakka/159/base -> origin/gh/laithsakka/159/base 2025-07-24T03:47:28.0476822Z * [new branch] gh/laithsakka/159/head -> origin/gh/laithsakka/159/head 2025-07-24T03:47:28.0477343Z * [new branch] gh/laithsakka/159/orig -> origin/gh/laithsakka/159/orig 2025-07-24T03:47:28.0477918Z * [new branch] gh/laithsakka/160/base -> origin/gh/laithsakka/160/base 2025-07-24T03:47:28.0478472Z * [new branch] gh/laithsakka/160/head -> origin/gh/laithsakka/160/head 2025-07-24T03:47:28.0479032Z * [new branch] gh/laithsakka/160/orig -> origin/gh/laithsakka/160/orig 2025-07-24T03:47:28.0479540Z * [new branch] gh/laithsakka/178/base -> origin/gh/laithsakka/178/base 2025-07-24T03:47:28.0480058Z * [new branch] gh/laithsakka/178/head -> origin/gh/laithsakka/178/head 2025-07-24T03:47:28.0480570Z * [new branch] gh/laithsakka/178/orig -> origin/gh/laithsakka/178/orig 2025-07-24T03:47:28.0481081Z * [new branch] gh/laithsakka/191/base -> origin/gh/laithsakka/191/base 2025-07-24T03:47:28.0481600Z * [new branch] gh/laithsakka/191/head -> origin/gh/laithsakka/191/head 2025-07-24T03:47:28.0482104Z * [new branch] gh/laithsakka/191/orig -> origin/gh/laithsakka/191/orig 2025-07-24T03:47:28.0482616Z * [new branch] gh/laithsakka/206/base -> origin/gh/laithsakka/206/base 2025-07-24T03:47:28.0483130Z * [new branch] gh/laithsakka/206/head -> origin/gh/laithsakka/206/head 2025-07-24T03:47:28.0483635Z * [new branch] gh/laithsakka/206/orig -> origin/gh/laithsakka/206/orig 2025-07-24T03:47:28.0484145Z * [new branch] gh/laithsakka/219/base -> origin/gh/laithsakka/219/base 2025-07-24T03:47:28.0484649Z * [new branch] gh/laithsakka/219/head -> origin/gh/laithsakka/219/head 2025-07-24T03:47:28.0485162Z * [new branch] gh/laithsakka/219/orig -> origin/gh/laithsakka/219/orig 2025-07-24T03:47:28.0485674Z * [new branch] gh/laithsakka/222/base -> origin/gh/laithsakka/222/base 2025-07-24T03:47:28.0486171Z * [new branch] gh/laithsakka/222/head -> origin/gh/laithsakka/222/head 2025-07-24T03:47:28.0486677Z * [new branch] gh/laithsakka/222/orig -> origin/gh/laithsakka/222/orig 2025-07-24T03:47:28.0487179Z * [new branch] gh/laithsakka/223/base -> origin/gh/laithsakka/223/base 2025-07-24T03:47:28.0487682Z * [new branch] gh/laithsakka/223/head -> origin/gh/laithsakka/223/head 2025-07-24T03:47:28.0488195Z * [new branch] gh/laithsakka/223/orig -> origin/gh/laithsakka/223/orig 2025-07-24T03:47:28.0488750Z * [new branch] gh/laithsakka/227/base -> origin/gh/laithsakka/227/base 2025-07-24T03:47:28.0489262Z * [new branch] gh/laithsakka/227/head -> origin/gh/laithsakka/227/head 2025-07-24T03:47:28.0490022Z * [new branch] gh/laithsakka/227/orig -> origin/gh/laithsakka/227/orig 2025-07-24T03:47:28.0490534Z * [new branch] gh/laithsakka/228/base -> origin/gh/laithsakka/228/base 2025-07-24T03:47:28.0491037Z * [new branch] gh/laithsakka/228/head -> origin/gh/laithsakka/228/head 2025-07-24T03:47:28.0491550Z * [new branch] gh/laithsakka/228/orig -> origin/gh/laithsakka/228/orig 2025-07-24T03:47:28.0492065Z * [new branch] gh/laithsakka/229/base -> origin/gh/laithsakka/229/base 2025-07-24T03:47:28.0492564Z * [new branch] gh/laithsakka/229/head -> origin/gh/laithsakka/229/head 2025-07-24T03:47:28.0493072Z * [new branch] gh/laithsakka/229/orig -> origin/gh/laithsakka/229/orig 2025-07-24T03:47:28.0493567Z * [new branch] gh/laithsakka/230/base -> origin/gh/laithsakka/230/base 2025-07-24T03:47:28.0494080Z * [new branch] gh/laithsakka/230/head -> origin/gh/laithsakka/230/head 2025-07-24T03:47:28.0494589Z * [new branch] gh/laithsakka/230/orig -> origin/gh/laithsakka/230/orig 2025-07-24T03:47:28.0495087Z * [new branch] gh/laithsakka/231/base -> origin/gh/laithsakka/231/base 2025-07-24T03:47:28.0495596Z * [new branch] gh/laithsakka/231/head -> origin/gh/laithsakka/231/head 2025-07-24T03:47:28.0496096Z * [new branch] gh/laithsakka/231/orig -> origin/gh/laithsakka/231/orig 2025-07-24T03:47:28.0496602Z * [new branch] gh/laithsakka/232/base -> origin/gh/laithsakka/232/base 2025-07-24T03:47:28.0497117Z * [new branch] gh/laithsakka/232/head -> origin/gh/laithsakka/232/head 2025-07-24T03:47:28.0497620Z * [new branch] gh/laithsakka/232/orig -> origin/gh/laithsakka/232/orig 2025-07-24T03:47:28.0498128Z * [new branch] gh/laithsakka/233/base -> origin/gh/laithsakka/233/base 2025-07-24T03:47:28.0498635Z * [new branch] gh/laithsakka/233/head -> origin/gh/laithsakka/233/head 2025-07-24T03:47:28.0499151Z * [new branch] gh/laithsakka/233/orig -> origin/gh/laithsakka/233/orig 2025-07-24T03:47:28.0499668Z * [new branch] gh/laithsakka/234/base -> origin/gh/laithsakka/234/base 2025-07-24T03:47:28.0924326Z * [new branch] gh/laithsakka/234/head -> origin/gh/laithsakka/234/head 2025-07-24T03:47:28.0924985Z * [new branch] gh/laithsakka/234/orig -> origin/gh/laithsakka/234/orig 2025-07-24T03:47:28.0925575Z * [new branch] gh/laithsakka/235/base -> origin/gh/laithsakka/235/base 2025-07-24T03:47:28.0926130Z * [new branch] gh/laithsakka/235/head -> origin/gh/laithsakka/235/head 2025-07-24T03:47:28.0926724Z * [new branch] gh/laithsakka/235/orig -> origin/gh/laithsakka/235/orig 2025-07-24T03:47:28.0927286Z * [new branch] gh/laithsakka/236/base -> origin/gh/laithsakka/236/base 2025-07-24T03:47:28.0927890Z * [new branch] gh/laithsakka/236/head -> origin/gh/laithsakka/236/head 2025-07-24T03:47:28.0928481Z * [new branch] gh/laithsakka/236/orig -> origin/gh/laithsakka/236/orig 2025-07-24T03:47:28.0929048Z * [new branch] gh/laithsakka/237/base -> origin/gh/laithsakka/237/base 2025-07-24T03:47:28.0929650Z * [new branch] gh/laithsakka/237/head -> origin/gh/laithsakka/237/head 2025-07-24T03:47:28.0930220Z * [new branch] gh/laithsakka/237/orig -> origin/gh/laithsakka/237/orig 2025-07-24T03:47:28.0930799Z * [new branch] gh/laithsakka/238/base -> origin/gh/laithsakka/238/base 2025-07-24T03:47:28.0931345Z * [new branch] gh/laithsakka/238/head -> origin/gh/laithsakka/238/head 2025-07-24T03:47:28.0931964Z * [new branch] gh/laithsakka/238/orig -> origin/gh/laithsakka/238/orig 2025-07-24T03:47:28.0932687Z * [new branch] gh/laithsakka/239/base -> origin/gh/laithsakka/239/base 2025-07-24T03:47:28.0933369Z * [new branch] gh/laithsakka/239/head -> origin/gh/laithsakka/239/head 2025-07-24T03:47:28.0933931Z * [new branch] gh/laithsakka/239/orig -> origin/gh/laithsakka/239/orig 2025-07-24T03:47:28.0934526Z * [new branch] gh/laithsakka/240/base -> origin/gh/laithsakka/240/base 2025-07-24T03:47:28.0935092Z * [new branch] gh/laithsakka/240/head -> origin/gh/laithsakka/240/head 2025-07-24T03:47:28.0935698Z * [new branch] gh/laithsakka/240/orig -> origin/gh/laithsakka/240/orig 2025-07-24T03:47:28.0936239Z * [new branch] gh/laithsakka/241/base -> origin/gh/laithsakka/241/base 2025-07-24T03:47:28.0936833Z * [new branch] gh/laithsakka/241/head -> origin/gh/laithsakka/241/head 2025-07-24T03:47:28.0937378Z * [new branch] gh/laithsakka/241/orig -> origin/gh/laithsakka/241/orig 2025-07-24T03:47:28.0937971Z * [new branch] gh/laithsakka/242/base -> origin/gh/laithsakka/242/base 2025-07-24T03:47:28.0938529Z * [new branch] gh/laithsakka/242/head -> origin/gh/laithsakka/242/head 2025-07-24T03:47:28.0939072Z * [new branch] gh/laithsakka/242/orig -> origin/gh/laithsakka/242/orig 2025-07-24T03:47:28.0939676Z * [new branch] gh/laithsakka/243/base -> origin/gh/laithsakka/243/base 2025-07-24T03:47:28.0940223Z * [new branch] gh/laithsakka/243/head -> origin/gh/laithsakka/243/head 2025-07-24T03:47:28.0940773Z * [new branch] gh/laithsakka/243/orig -> origin/gh/laithsakka/243/orig 2025-07-24T03:47:28.0941276Z * [new branch] gh/laithsakka/244/base -> origin/gh/laithsakka/244/base 2025-07-24T03:47:28.0941777Z * [new branch] gh/laithsakka/244/head -> origin/gh/laithsakka/244/head 2025-07-24T03:47:28.0942296Z * [new branch] gh/laithsakka/244/orig -> origin/gh/laithsakka/244/orig 2025-07-24T03:47:28.0942803Z * [new branch] gh/laithsakka/245/base -> origin/gh/laithsakka/245/base 2025-07-24T03:47:28.0943310Z * [new branch] gh/laithsakka/245/head -> origin/gh/laithsakka/245/head 2025-07-24T03:47:28.0943813Z * [new branch] gh/laithsakka/245/orig -> origin/gh/laithsakka/245/orig 2025-07-24T03:47:28.0944327Z * [new branch] gh/laithsakka/246/base -> origin/gh/laithsakka/246/base 2025-07-24T03:47:28.0944834Z * [new branch] gh/laithsakka/246/head -> origin/gh/laithsakka/246/head 2025-07-24T03:47:28.0945335Z * [new branch] gh/laithsakka/246/orig -> origin/gh/laithsakka/246/orig 2025-07-24T03:47:28.0945884Z * [new branch] gh/laithsakka/28/base -> origin/gh/laithsakka/28/base 2025-07-24T03:47:28.0946468Z * [new branch] gh/laithsakka/29/base -> origin/gh/laithsakka/29/base 2025-07-24T03:47:28.0946980Z * [new branch] gh/laithsakka/30/base -> origin/gh/laithsakka/30/base 2025-07-24T03:47:28.0947479Z * [new branch] gh/laithsakka/30/head -> origin/gh/laithsakka/30/head 2025-07-24T03:47:28.0947972Z * [new branch] gh/laithsakka/31/base -> origin/gh/laithsakka/31/base 2025-07-24T03:47:28.0948469Z * [new branch] gh/laithsakka/31/head -> origin/gh/laithsakka/31/head 2025-07-24T03:47:28.0948960Z * [new branch] gh/laithsakka/32/base -> origin/gh/laithsakka/32/base 2025-07-24T03:47:28.1407736Z * [new branch] gh/laithsakka/32/head -> origin/gh/laithsakka/32/head 2025-07-24T03:47:28.1408322Z * [new branch] gh/leslie-fang-intel/190/base -> origin/gh/leslie-fang-intel/190/base 2025-07-24T03:47:28.1408965Z * [new branch] gh/leslie-fang-intel/190/head -> origin/gh/leslie-fang-intel/190/head 2025-07-24T03:47:28.1409749Z * [new branch] gh/leslie-fang-intel/190/orig -> origin/gh/leslie-fang-intel/190/orig 2025-07-24T03:47:28.1410463Z * [new branch] gh/leslie-fang-intel/199/base -> origin/gh/leslie-fang-intel/199/base 2025-07-24T03:47:28.1411118Z * [new branch] gh/leslie-fang-intel/199/head -> origin/gh/leslie-fang-intel/199/head 2025-07-24T03:47:28.1411761Z * [new branch] gh/leslie-fang-intel/199/orig -> origin/gh/leslie-fang-intel/199/orig 2025-07-24T03:47:28.1412351Z * [new branch] gh/leslie-fang-intel/207/base -> origin/gh/leslie-fang-intel/207/base 2025-07-24T03:47:28.1412941Z * [new branch] gh/leslie-fang-intel/207/head -> origin/gh/leslie-fang-intel/207/head 2025-07-24T03:47:28.1413550Z * [new branch] gh/leslie-fang-intel/207/orig -> origin/gh/leslie-fang-intel/207/orig 2025-07-24T03:47:28.1414133Z * [new branch] gh/leslie-fang-intel/208/base -> origin/gh/leslie-fang-intel/208/base 2025-07-24T03:47:28.1414737Z * [new branch] gh/leslie-fang-intel/208/head -> origin/gh/leslie-fang-intel/208/head 2025-07-24T03:47:28.1415320Z * [new branch] gh/leslie-fang-intel/208/orig -> origin/gh/leslie-fang-intel/208/orig 2025-07-24T03:47:28.1415845Z * [new branch] gh/lw/1/base -> origin/gh/lw/1/base 2025-07-24T03:47:28.1416288Z * [new branch] gh/lw/1/head -> origin/gh/lw/1/head 2025-07-24T03:47:28.1416718Z * [new branch] gh/lw/1/orig -> origin/gh/lw/1/orig 2025-07-24T03:47:28.1417196Z * [new branch] gh/lw/2/base -> origin/gh/lw/2/base 2025-07-24T03:47:28.1417660Z * [new branch] gh/lw/2/head -> origin/gh/lw/2/head 2025-07-24T03:47:28.1418133Z * [new branch] gh/lw/2/orig -> origin/gh/lw/2/orig 2025-07-24T03:47:28.1418593Z * [new branch] gh/lw/3/base -> origin/gh/lw/3/base 2025-07-24T03:47:28.1419069Z * [new branch] gh/lw/3/head -> origin/gh/lw/3/head 2025-07-24T03:47:28.1419544Z * [new branch] gh/lw/3/orig -> origin/gh/lw/3/orig 2025-07-24T03:47:28.1420010Z * [new branch] gh/lw/4/base -> origin/gh/lw/4/base 2025-07-24T03:47:28.1420474Z * [new branch] gh/lw/4/head -> origin/gh/lw/4/head 2025-07-24T03:47:28.1420889Z * [new branch] gh/lw/4/orig -> origin/gh/lw/4/orig 2025-07-24T03:47:28.1421351Z * [new branch] gh/malfet/14/base -> origin/gh/malfet/14/base 2025-07-24T03:47:28.1421836Z * [new branch] gh/malfet/169/base -> origin/gh/malfet/169/base 2025-07-24T03:47:28.1422303Z * [new branch] gh/malfet/169/head -> origin/gh/malfet/169/head 2025-07-24T03:47:28.1422778Z * [new branch] gh/malfet/169/orig -> origin/gh/malfet/169/orig 2025-07-24T03:47:28.1423254Z * [new branch] gh/malfet/259/base -> origin/gh/malfet/259/base 2025-07-24T03:47:28.1423739Z * [new branch] gh/malfet/259/head -> origin/gh/malfet/259/head 2025-07-24T03:47:28.1424214Z * [new branch] gh/malfet/259/orig -> origin/gh/malfet/259/orig 2025-07-24T03:47:28.1424673Z * [new branch] gh/malfet/330/base -> origin/gh/malfet/330/base 2025-07-24T03:47:28.1425148Z * [new branch] gh/malfet/330/head -> origin/gh/malfet/330/head 2025-07-24T03:47:28.1425608Z * [new branch] gh/malfet/330/orig -> origin/gh/malfet/330/orig 2025-07-24T03:47:28.1426124Z * [new branch] gh/malfet/394/base -> origin/gh/malfet/394/base 2025-07-24T03:47:28.1426650Z * [new branch] gh/malfet/394/head -> origin/gh/malfet/394/head 2025-07-24T03:47:28.1427125Z * [new branch] gh/malfet/394/orig -> origin/gh/malfet/394/orig 2025-07-24T03:47:28.1427797Z * [new branch] gh/malfet/396/base -> origin/gh/malfet/396/base 2025-07-24T03:47:28.1428267Z * [new branch] gh/malfet/396/head -> origin/gh/malfet/396/head 2025-07-24T03:47:28.1428730Z * [new branch] gh/malfet/396/orig -> origin/gh/malfet/396/orig 2025-07-24T03:47:28.1429202Z * [new branch] gh/malfet/397/base -> origin/gh/malfet/397/base 2025-07-24T03:47:28.1429666Z * [new branch] gh/malfet/397/head -> origin/gh/malfet/397/head 2025-07-24T03:47:28.1430143Z * [new branch] gh/malfet/397/orig -> origin/gh/malfet/397/orig 2025-07-24T03:47:28.1430624Z * [new branch] gh/malfet/398/base -> origin/gh/malfet/398/base 2025-07-24T03:47:28.1431089Z * [new branch] gh/malfet/398/head -> origin/gh/malfet/398/head 2025-07-24T03:47:28.1431567Z * [new branch] gh/malfet/398/orig -> origin/gh/malfet/398/orig 2025-07-24T03:47:28.1906582Z * [new branch] gh/malfet/399/base -> origin/gh/malfet/399/base 2025-07-24T03:47:28.1907113Z * [new branch] gh/malfet/399/head -> origin/gh/malfet/399/head 2025-07-24T03:47:28.1907647Z * [new branch] gh/malfet/399/orig -> origin/gh/malfet/399/orig 2025-07-24T03:47:28.1908174Z * [new branch] gh/malfet/414/base -> origin/gh/malfet/414/base 2025-07-24T03:47:28.1908655Z * [new branch] gh/malfet/414/head -> origin/gh/malfet/414/head 2025-07-24T03:47:28.1909146Z * [new branch] gh/malfet/414/orig -> origin/gh/malfet/414/orig 2025-07-24T03:47:28.1909612Z * [new branch] gh/malfet/417/base -> origin/gh/malfet/417/base 2025-07-24T03:47:28.1910089Z * [new branch] gh/malfet/417/head -> origin/gh/malfet/417/head 2025-07-24T03:47:28.1910550Z * [new branch] gh/malfet/417/orig -> origin/gh/malfet/417/orig 2025-07-24T03:47:28.1911045Z * [new branch] gh/malfet/418/base -> origin/gh/malfet/418/base 2025-07-24T03:47:28.1911529Z * [new branch] gh/malfet/418/head -> origin/gh/malfet/418/head 2025-07-24T03:47:28.1911991Z * [new branch] gh/malfet/418/orig -> origin/gh/malfet/418/orig 2025-07-24T03:47:28.1912464Z * [new branch] gh/malfet/419/base -> origin/gh/malfet/419/base 2025-07-24T03:47:28.1912923Z * [new branch] gh/malfet/419/head -> origin/gh/malfet/419/head 2025-07-24T03:47:28.1913440Z * [new branch] gh/malfet/419/orig -> origin/gh/malfet/419/orig 2025-07-24T03:47:28.1913912Z * [new branch] gh/malfet/420/base -> origin/gh/malfet/420/base 2025-07-24T03:47:28.1914428Z * [new branch] gh/malfet/420/head -> origin/gh/malfet/420/head 2025-07-24T03:47:28.1914902Z * [new branch] gh/malfet/420/orig -> origin/gh/malfet/420/orig 2025-07-24T03:47:28.1915367Z * [new branch] gh/malfet/421/base -> origin/gh/malfet/421/base 2025-07-24T03:47:28.1915832Z * [new branch] gh/malfet/421/head -> origin/gh/malfet/421/head 2025-07-24T03:47:28.1916300Z * [new branch] gh/malfet/421/orig -> origin/gh/malfet/421/orig 2025-07-24T03:47:28.1916758Z * [new branch] gh/malfet/422/base -> origin/gh/malfet/422/base 2025-07-24T03:47:28.1917229Z * [new branch] gh/malfet/422/head -> origin/gh/malfet/422/head 2025-07-24T03:47:28.1917692Z * [new branch] gh/malfet/422/orig -> origin/gh/malfet/422/orig 2025-07-24T03:47:28.1918163Z * [new branch] gh/malfet/423/base -> origin/gh/malfet/423/base 2025-07-24T03:47:28.1918620Z * [new branch] gh/malfet/423/head -> origin/gh/malfet/423/head 2025-07-24T03:47:28.1919280Z * [new branch] gh/malfet/423/orig -> origin/gh/malfet/423/orig 2025-07-24T03:47:28.1919933Z * [new branch] gh/malfet/424/base -> origin/gh/malfet/424/base 2025-07-24T03:47:28.1920448Z * [new branch] gh/malfet/424/head -> origin/gh/malfet/424/head 2025-07-24T03:47:28.1920987Z * [new branch] gh/malfet/424/orig -> origin/gh/malfet/424/orig 2025-07-24T03:47:28.1921509Z * [new branch] gh/malfet/425/base -> origin/gh/malfet/425/base 2025-07-24T03:47:28.1922034Z * [new branch] gh/malfet/425/head -> origin/gh/malfet/425/head 2025-07-24T03:47:28.1922555Z * [new branch] gh/malfet/425/orig -> origin/gh/malfet/425/orig 2025-07-24T03:47:28.1923059Z * [new branch] gh/malfet/426/base -> origin/gh/malfet/426/base 2025-07-24T03:47:28.1923574Z * [new branch] gh/malfet/426/head -> origin/gh/malfet/426/head 2025-07-24T03:47:28.1924085Z * [new branch] gh/malfet/426/orig -> origin/gh/malfet/426/orig 2025-07-24T03:47:28.1924597Z * [new branch] gh/malfet/427/base -> origin/gh/malfet/427/base 2025-07-24T03:47:28.1925106Z * [new branch] gh/malfet/427/head -> origin/gh/malfet/427/head 2025-07-24T03:47:28.1925604Z * [new branch] gh/malfet/427/orig -> origin/gh/malfet/427/orig 2025-07-24T03:47:28.1926110Z * [new branch] gh/malfet/428/base -> origin/gh/malfet/428/base 2025-07-24T03:47:28.1926610Z * [new branch] gh/malfet/428/head -> origin/gh/malfet/428/head 2025-07-24T03:47:28.1927118Z * [new branch] gh/malfet/428/orig -> origin/gh/malfet/428/orig 2025-07-24T03:47:28.1927633Z * [new branch] gh/malfet/429/base -> origin/gh/malfet/429/base 2025-07-24T03:47:28.1928138Z * [new branch] gh/malfet/429/head -> origin/gh/malfet/429/head 2025-07-24T03:47:28.1928746Z * [new branch] gh/malfet/429/orig -> origin/gh/malfet/429/orig 2025-07-24T03:47:28.1929260Z * [new branch] gh/malfet/430/base -> origin/gh/malfet/430/base 2025-07-24T03:47:28.1929778Z * [new branch] gh/malfet/430/head -> origin/gh/malfet/430/head 2025-07-24T03:47:28.1930295Z * [new branch] gh/malfet/430/orig -> origin/gh/malfet/430/orig 2025-07-24T03:47:28.2392934Z * [new branch] gh/malfet/431/base -> origin/gh/malfet/431/base 2025-07-24T03:47:28.2393493Z * [new branch] gh/malfet/431/head -> origin/gh/malfet/431/head 2025-07-24T03:47:28.2393974Z * [new branch] gh/malfet/431/orig -> origin/gh/malfet/431/orig 2025-07-24T03:47:28.2394474Z * [new branch] gh/malfet/432/base -> origin/gh/malfet/432/base 2025-07-24T03:47:28.2394946Z * [new branch] gh/malfet/432/head -> origin/gh/malfet/432/head 2025-07-24T03:47:28.2395442Z * [new branch] gh/malfet/432/orig -> origin/gh/malfet/432/orig 2025-07-24T03:47:28.2395913Z * [new branch] gh/malfet/433/base -> origin/gh/malfet/433/base 2025-07-24T03:47:28.2396371Z * [new branch] gh/malfet/433/head -> origin/gh/malfet/433/head 2025-07-24T03:47:28.2396837Z * [new branch] gh/malfet/433/orig -> origin/gh/malfet/433/orig 2025-07-24T03:47:28.2397308Z * [new branch] gh/malfet/434/base -> origin/gh/malfet/434/base 2025-07-24T03:47:28.2397822Z * [new branch] gh/malfet/434/head -> origin/gh/malfet/434/head 2025-07-24T03:47:28.2398335Z * [new branch] gh/malfet/434/orig -> origin/gh/malfet/434/orig 2025-07-24T03:47:28.2398800Z * [new branch] gh/malfet/435/base -> origin/gh/malfet/435/base 2025-07-24T03:47:28.2399275Z * [new branch] gh/malfet/435/head -> origin/gh/malfet/435/head 2025-07-24T03:47:28.2400056Z * [new branch] gh/malfet/435/orig -> origin/gh/malfet/435/orig 2025-07-24T03:47:28.2400526Z * [new branch] gh/malfet/436/base -> origin/gh/malfet/436/base 2025-07-24T03:47:28.2400997Z * [new branch] gh/malfet/436/head -> origin/gh/malfet/436/head 2025-07-24T03:47:28.2401464Z * [new branch] gh/malfet/436/orig -> origin/gh/malfet/436/orig 2025-07-24T03:47:28.2401943Z * [new branch] gh/malfet/437/base -> origin/gh/malfet/437/base 2025-07-24T03:47:28.2402421Z * [new branch] gh/malfet/437/head -> origin/gh/malfet/437/head 2025-07-24T03:47:28.2402891Z * [new branch] gh/malfet/437/orig -> origin/gh/malfet/437/orig 2025-07-24T03:47:28.2403358Z * [new branch] gh/malfet/438/base -> origin/gh/malfet/438/base 2025-07-24T03:47:28.2403876Z * [new branch] gh/malfet/438/head -> origin/gh/malfet/438/head 2025-07-24T03:47:28.2404398Z * [new branch] gh/malfet/438/orig -> origin/gh/malfet/438/orig 2025-07-24T03:47:28.2404862Z * [new branch] gh/malfet/439/base -> origin/gh/malfet/439/base 2025-07-24T03:47:28.2405327Z * [new branch] gh/malfet/439/head -> origin/gh/malfet/439/head 2025-07-24T03:47:28.2405807Z * [new branch] gh/malfet/439/orig -> origin/gh/malfet/439/orig 2025-07-24T03:47:28.2406266Z * [new branch] gh/malfet/440/base -> origin/gh/malfet/440/base 2025-07-24T03:47:28.2406736Z * [new branch] gh/malfet/440/head -> origin/gh/malfet/440/head 2025-07-24T03:47:28.2407191Z * [new branch] gh/malfet/440/orig -> origin/gh/malfet/440/orig 2025-07-24T03:47:28.2407658Z * [new branch] gh/malfet/441/base -> origin/gh/malfet/441/base 2025-07-24T03:47:28.2408129Z * [new branch] gh/malfet/441/head -> origin/gh/malfet/441/head 2025-07-24T03:47:28.2408669Z * [new branch] gh/malfet/441/orig -> origin/gh/malfet/441/orig 2025-07-24T03:47:28.2409147Z * [new branch] gh/malfet/442/base -> origin/gh/malfet/442/base 2025-07-24T03:47:28.2409659Z * [new branch] gh/malfet/442/head -> origin/gh/malfet/442/head 2025-07-24T03:47:28.2410130Z * [new branch] gh/malfet/442/orig -> origin/gh/malfet/442/orig 2025-07-24T03:47:28.2410641Z * [new branch] gh/malfet/443/base -> origin/gh/malfet/443/base 2025-07-24T03:47:28.2411096Z * [new branch] gh/malfet/443/head -> origin/gh/malfet/443/head 2025-07-24T03:47:28.2411562Z * [new branch] gh/malfet/443/orig -> origin/gh/malfet/443/orig 2025-07-24T03:47:28.2412020Z * [new branch] gh/malfet/444/base -> origin/gh/malfet/444/base 2025-07-24T03:47:28.2412493Z * [new branch] gh/malfet/444/head -> origin/gh/malfet/444/head 2025-07-24T03:47:28.2412968Z * [new branch] gh/malfet/444/orig -> origin/gh/malfet/444/orig 2025-07-24T03:47:28.2413426Z * [new branch] gh/malfet/445/base -> origin/gh/malfet/445/base 2025-07-24T03:47:28.2413893Z * [new branch] gh/malfet/445/head -> origin/gh/malfet/445/head 2025-07-24T03:47:28.2414355Z * [new branch] gh/malfet/445/orig -> origin/gh/malfet/445/orig 2025-07-24T03:47:28.2414824Z * [new branch] gh/malfet/446/base -> origin/gh/malfet/446/base 2025-07-24T03:47:28.2415282Z * [new branch] gh/malfet/446/head -> origin/gh/malfet/446/head 2025-07-24T03:47:28.2879970Z * [new branch] gh/malfet/446/orig -> origin/gh/malfet/446/orig 2025-07-24T03:47:28.2880509Z * [new branch] gh/malfet/447/base -> origin/gh/malfet/447/base 2025-07-24T03:47:28.2881898Z * [new branch] gh/malfet/447/head -> origin/gh/malfet/447/head 2025-07-24T03:47:28.2882371Z * [new branch] gh/malfet/448/base -> origin/gh/malfet/448/base 2025-07-24T03:47:28.2882839Z * [new branch] gh/malfet/448/head -> origin/gh/malfet/448/head 2025-07-24T03:47:28.2883384Z * [new branch] gh/malfet/449/base -> origin/gh/malfet/449/base 2025-07-24T03:47:28.2883910Z * [new branch] gh/malfet/449/head -> origin/gh/malfet/449/head 2025-07-24T03:47:28.2884390Z * [new branch] gh/malfet/450/base -> origin/gh/malfet/450/base 2025-07-24T03:47:28.2884861Z * [new branch] gh/malfet/450/head -> origin/gh/malfet/450/head 2025-07-24T03:47:28.2885330Z * [new branch] gh/malfet/451/base -> origin/gh/malfet/451/base 2025-07-24T03:47:28.2885785Z * [new branch] gh/malfet/451/head -> origin/gh/malfet/451/head 2025-07-24T03:47:28.2886266Z * [new branch] gh/malfet/452/base -> origin/gh/malfet/452/base 2025-07-24T03:47:28.2886728Z * [new branch] gh/malfet/452/head -> origin/gh/malfet/452/head 2025-07-24T03:47:28.2887199Z * [new branch] gh/malfet/452/orig -> origin/gh/malfet/452/orig 2025-07-24T03:47:28.2887665Z * [new branch] gh/malfet/453/base -> origin/gh/malfet/453/base 2025-07-24T03:47:28.2888123Z * [new branch] gh/malfet/453/head -> origin/gh/malfet/453/head 2025-07-24T03:47:28.2888669Z * [new branch] gh/malfet/453/orig -> origin/gh/malfet/453/orig 2025-07-24T03:47:28.2889183Z * [new branch] gh/malfet/454/base -> origin/gh/malfet/454/base 2025-07-24T03:47:28.2889699Z * [new branch] gh/malfet/454/head -> origin/gh/malfet/454/head 2025-07-24T03:47:28.2890175Z * [new branch] gh/malfet/454/orig -> origin/gh/malfet/454/orig 2025-07-24T03:47:28.2890635Z * [new branch] gh/malfet/455/base -> origin/gh/malfet/455/base 2025-07-24T03:47:28.2891100Z * [new branch] gh/malfet/455/head -> origin/gh/malfet/455/head 2025-07-24T03:47:28.2891557Z * [new branch] gh/malfet/455/orig -> origin/gh/malfet/455/orig 2025-07-24T03:47:28.2892025Z * [new branch] gh/malfet/456/base -> origin/gh/malfet/456/base 2025-07-24T03:47:28.2892486Z * [new branch] gh/malfet/456/head -> origin/gh/malfet/456/head 2025-07-24T03:47:28.2892954Z * [new branch] gh/malfet/456/orig -> origin/gh/malfet/456/orig 2025-07-24T03:47:28.2893420Z * [new branch] gh/malfet/64/base -> origin/gh/malfet/64/base 2025-07-24T03:47:28.2893879Z * [new branch] gh/malfet/64/head -> origin/gh/malfet/64/head 2025-07-24T03:47:28.2894394Z * [new branch] gh/manuelcandales/10/base -> origin/gh/manuelcandales/10/base 2025-07-24T03:47:28.2895000Z * [new branch] gh/manuelcandales/10/head -> origin/gh/manuelcandales/10/head 2025-07-24T03:47:28.2895591Z * [new branch] gh/manuelcandales/10/orig -> origin/gh/manuelcandales/10/orig 2025-07-24T03:47:28.2896142Z * [new branch] gh/manuelcandales/11/base -> origin/gh/manuelcandales/11/base 2025-07-24T03:47:28.2896682Z * [new branch] gh/manuelcandales/11/head -> origin/gh/manuelcandales/11/head 2025-07-24T03:47:28.2897232Z * [new branch] gh/manuelcandales/11/orig -> origin/gh/manuelcandales/11/orig 2025-07-24T03:47:28.2897768Z * [new branch] gh/manuelcandales/12/base -> origin/gh/manuelcandales/12/base 2025-07-24T03:47:28.2898318Z * [new branch] gh/manuelcandales/12/head -> origin/gh/manuelcandales/12/head 2025-07-24T03:47:28.2898860Z * [new branch] gh/manuelcandales/12/orig -> origin/gh/manuelcandales/12/orig 2025-07-24T03:47:28.2899618Z * [new branch] gh/manuelcandales/13/base -> origin/gh/manuelcandales/13/base 2025-07-24T03:47:28.2900167Z * [new branch] gh/manuelcandales/13/head -> origin/gh/manuelcandales/13/head 2025-07-24T03:47:28.2900704Z * [new branch] gh/manuelcandales/13/orig -> origin/gh/manuelcandales/13/orig 2025-07-24T03:47:28.2901353Z * [new branch] gh/manuelcandales/14/base -> origin/gh/manuelcandales/14/base 2025-07-24T03:47:28.2901898Z * [new branch] gh/manuelcandales/14/head -> origin/gh/manuelcandales/14/head 2025-07-24T03:47:28.2902431Z * [new branch] gh/manuelcandales/14/orig -> origin/gh/manuelcandales/14/orig 2025-07-24T03:47:28.2902970Z * [new branch] gh/manuelcandales/15/base -> origin/gh/manuelcandales/15/base 2025-07-24T03:47:28.2903502Z * [new branch] gh/manuelcandales/15/head -> origin/gh/manuelcandales/15/head 2025-07-24T03:47:28.2904050Z * [new branch] gh/manuelcandales/15/orig -> origin/gh/manuelcandales/15/orig 2025-07-24T03:47:28.3352146Z * [new branch] gh/manuelcandales/16/base -> origin/gh/manuelcandales/16/base 2025-07-24T03:47:28.3352760Z * [new branch] gh/manuelcandales/16/head -> origin/gh/manuelcandales/16/head 2025-07-24T03:47:28.3353321Z * [new branch] gh/manuelcandales/16/orig -> origin/gh/manuelcandales/16/orig 2025-07-24T03:47:28.3353866Z * [new branch] gh/manuelcandales/17/base -> origin/gh/manuelcandales/17/base 2025-07-24T03:47:28.3354413Z * [new branch] gh/manuelcandales/17/head -> origin/gh/manuelcandales/17/head 2025-07-24T03:47:28.3354957Z * [new branch] gh/manuelcandales/17/orig -> origin/gh/manuelcandales/17/orig 2025-07-24T03:47:28.3355503Z * [new branch] gh/manuelcandales/9/base -> origin/gh/manuelcandales/9/base 2025-07-24T03:47:28.3356075Z * [new branch] gh/manuelcandales/9/head -> origin/gh/manuelcandales/9/head 2025-07-24T03:47:28.3356622Z * [new branch] gh/manuelcandales/9/orig -> origin/gh/manuelcandales/9/orig 2025-07-24T03:47:28.3357125Z * [new branch] gh/markkm/1/base -> origin/gh/markkm/1/base 2025-07-24T03:47:28.3357613Z * [new branch] gh/masnesral/204/base -> origin/gh/masnesral/204/base 2025-07-24T03:47:28.3358108Z * [new branch] gh/masnesral/204/head -> origin/gh/masnesral/204/head 2025-07-24T03:47:28.3358600Z * [new branch] gh/masnesral/204/orig -> origin/gh/masnesral/204/orig 2025-07-24T03:47:28.3359093Z * [new branch] gh/masnesral/210/base -> origin/gh/masnesral/210/base 2025-07-24T03:47:28.3359580Z * [new branch] gh/masnesral/210/head -> origin/gh/masnesral/210/head 2025-07-24T03:47:28.3360069Z * [new branch] gh/masnesral/210/orig -> origin/gh/masnesral/210/orig 2025-07-24T03:47:28.3360569Z * [new branch] gh/masnesral/212/base -> origin/gh/masnesral/212/base 2025-07-24T03:47:28.3361068Z * [new branch] gh/masnesral/212/head -> origin/gh/masnesral/212/head 2025-07-24T03:47:28.3361554Z * [new branch] gh/masnesral/212/orig -> origin/gh/masnesral/212/orig 2025-07-24T03:47:28.3362046Z * [new branch] gh/masnesral/214/base -> origin/gh/masnesral/214/base 2025-07-24T03:47:28.3362559Z * [new branch] gh/masnesral/214/head -> origin/gh/masnesral/214/head 2025-07-24T03:47:28.3363044Z * [new branch] gh/masnesral/214/orig -> origin/gh/masnesral/214/orig 2025-07-24T03:47:28.3363538Z * [new branch] gh/masnesral/215/base -> origin/gh/masnesral/215/base 2025-07-24T03:47:28.3364025Z * [new branch] gh/masnesral/215/head -> origin/gh/masnesral/215/head 2025-07-24T03:47:28.3364515Z * [new branch] gh/masnesral/215/orig -> origin/gh/masnesral/215/orig 2025-07-24T03:47:28.3365679Z * [new branch] gh/masnesral/216/base -> origin/gh/masnesral/216/base 2025-07-24T03:47:28.3366194Z * [new branch] gh/masnesral/216/head -> origin/gh/masnesral/216/head 2025-07-24T03:47:28.3366699Z * [new branch] gh/masnesral/216/orig -> origin/gh/masnesral/216/orig 2025-07-24T03:47:28.3367189Z * [new branch] gh/masnesral/217/base -> origin/gh/masnesral/217/base 2025-07-24T03:47:28.3367692Z * [new branch] gh/masnesral/217/head -> origin/gh/masnesral/217/head 2025-07-24T03:47:28.3368180Z * [new branch] gh/masnesral/217/orig -> origin/gh/masnesral/217/orig 2025-07-24T03:47:28.3368778Z * [new branch] gh/masnesral/218/base -> origin/gh/masnesral/218/base 2025-07-24T03:47:28.3369280Z * [new branch] gh/masnesral/218/head -> origin/gh/masnesral/218/head 2025-07-24T03:47:28.3369776Z * [new branch] gh/masnesral/218/orig -> origin/gh/masnesral/218/orig 2025-07-24T03:47:28.3370292Z * [new branch] gh/masnesral/219/base -> origin/gh/masnesral/219/base 2025-07-24T03:47:28.3370781Z * [new branch] gh/masnesral/219/head -> origin/gh/masnesral/219/head 2025-07-24T03:47:28.3371277Z * [new branch] gh/masnesral/219/orig -> origin/gh/masnesral/219/orig 2025-07-24T03:47:28.3371772Z * [new branch] gh/masnesral/220/base -> origin/gh/masnesral/220/base 2025-07-24T03:47:28.3372256Z * [new branch] gh/masnesral/220/head -> origin/gh/masnesral/220/head 2025-07-24T03:47:28.3372749Z * [new branch] gh/masnesral/220/orig -> origin/gh/masnesral/220/orig 2025-07-24T03:47:28.3373232Z * [new branch] gh/masnesral/221/base -> origin/gh/masnesral/221/base 2025-07-24T03:47:28.3373727Z * [new branch] gh/masnesral/221/head -> origin/gh/masnesral/221/head 2025-07-24T03:47:28.3374221Z * [new branch] gh/masnesral/221/orig -> origin/gh/masnesral/221/orig 2025-07-24T03:47:28.3374716Z * [new branch] gh/masnesral/222/base -> origin/gh/masnesral/222/base 2025-07-24T03:47:28.3375204Z * [new branch] gh/masnesral/222/head -> origin/gh/masnesral/222/head 2025-07-24T03:47:28.3375701Z * [new branch] gh/masnesral/222/orig -> origin/gh/masnesral/222/orig 2025-07-24T03:47:28.4521284Z * [new branch] gh/masnesral/223/base -> origin/gh/masnesral/223/base 2025-07-24T03:47:28.4521852Z * [new branch] gh/masnesral/223/head -> origin/gh/masnesral/223/head 2025-07-24T03:47:28.4522369Z * [new branch] gh/masnesral/223/orig -> origin/gh/masnesral/223/orig 2025-07-24T03:47:28.4522872Z * [new branch] gh/masnesral/224/base -> origin/gh/masnesral/224/base 2025-07-24T03:47:28.4523384Z * [new branch] gh/masnesral/224/head -> origin/gh/masnesral/224/head 2025-07-24T03:47:28.4523886Z * [new branch] gh/masnesral/224/orig -> origin/gh/masnesral/224/orig 2025-07-24T03:47:28.4524379Z * [new branch] gh/masnesral/225/base -> origin/gh/masnesral/225/base 2025-07-24T03:47:28.4524869Z * [new branch] gh/masnesral/225/head -> origin/gh/masnesral/225/head 2025-07-24T03:47:28.4525367Z * [new branch] gh/masnesral/225/orig -> origin/gh/masnesral/225/orig 2025-07-24T03:47:28.4525858Z * [new branch] gh/masnesral/226/base -> origin/gh/masnesral/226/base 2025-07-24T03:47:28.4526356Z * [new branch] gh/masnesral/226/head -> origin/gh/masnesral/226/head 2025-07-24T03:47:28.4526846Z * [new branch] gh/masnesral/226/orig -> origin/gh/masnesral/226/orig 2025-07-24T03:47:28.4527341Z * [new branch] gh/masnesral/227/base -> origin/gh/masnesral/227/base 2025-07-24T03:47:28.4527992Z * [new branch] gh/masnesral/227/head -> origin/gh/masnesral/227/head 2025-07-24T03:47:28.4528670Z * [new branch] gh/masnesral/227/orig -> origin/gh/masnesral/227/orig 2025-07-24T03:47:28.4529169Z * [new branch] gh/masnesral/228/base -> origin/gh/masnesral/228/base 2025-07-24T03:47:28.4529676Z * [new branch] gh/masnesral/228/head -> origin/gh/masnesral/228/head 2025-07-24T03:47:28.4530167Z * [new branch] gh/masnesral/228/orig -> origin/gh/masnesral/228/orig 2025-07-24T03:47:28.4530657Z * [new branch] gh/masnesral/229/base -> origin/gh/masnesral/229/base 2025-07-24T03:47:28.4531139Z * [new branch] gh/masnesral/229/head -> origin/gh/masnesral/229/head 2025-07-24T03:47:28.4531630Z * [new branch] gh/masnesral/229/orig -> origin/gh/masnesral/229/orig 2025-07-24T03:47:28.4532117Z * [new branch] gh/masnesral/230/base -> origin/gh/masnesral/230/base 2025-07-24T03:47:28.4532629Z * [new branch] gh/masnesral/230/head -> origin/gh/masnesral/230/head 2025-07-24T03:47:28.4533132Z * [new branch] gh/masnesral/230/orig -> origin/gh/masnesral/230/orig 2025-07-24T03:47:28.4533616Z * [new branch] gh/masnesral/231/base -> origin/gh/masnesral/231/base 2025-07-24T03:47:28.4534113Z * [new branch] gh/masnesral/231/head -> origin/gh/masnesral/231/head 2025-07-24T03:47:28.4534596Z * [new branch] gh/masnesral/231/orig -> origin/gh/masnesral/231/orig 2025-07-24T03:47:28.4535091Z * [new branch] gh/masnesral/34/base -> origin/gh/masnesral/34/base 2025-07-24T03:47:28.4535587Z * [new branch] gh/mhorowitz/0/base -> origin/gh/mhorowitz/0/base 2025-07-24T03:47:28.4536083Z * [new branch] gh/mhorowitz/0/head -> origin/gh/mhorowitz/0/head 2025-07-24T03:47:28.4536577Z * [new branch] gh/mhorowitz/1/base -> origin/gh/mhorowitz/1/base 2025-07-24T03:47:28.4537063Z * [new branch] gh/mhorowitz/1/head -> origin/gh/mhorowitz/1/head 2025-07-24T03:47:28.4537550Z * [new branch] gh/mhorowitz/2/base -> origin/gh/mhorowitz/2/base 2025-07-24T03:47:28.4538024Z * [new branch] gh/mhorowitz/2/head -> origin/gh/mhorowitz/2/head 2025-07-24T03:47:28.4538503Z * [new branch] gh/mhorowitz/3/base -> origin/gh/mhorowitz/3/base 2025-07-24T03:47:28.4538985Z * [new branch] gh/mhorowitz/3/head -> origin/gh/mhorowitz/3/head 2025-07-24T03:47:28.4539461Z * [new branch] gh/mhorowitz/4/base -> origin/gh/mhorowitz/4/base 2025-07-24T03:47:28.4539949Z * [new branch] gh/mhorowitz/4/head -> origin/gh/mhorowitz/4/head 2025-07-24T03:47:28.4540448Z * [new branch] gh/mhorowitz/5/base -> origin/gh/mhorowitz/5/base 2025-07-24T03:47:28.4540940Z * [new branch] gh/mhorowitz/5/head -> origin/gh/mhorowitz/5/head 2025-07-24T03:47:28.4541424Z * [new branch] gh/mhorowitz/6/base -> origin/gh/mhorowitz/6/base 2025-07-24T03:47:28.4541901Z * [new branch] gh/mhorowitz/6/head -> origin/gh/mhorowitz/6/head 2025-07-24T03:47:28.4542443Z * [new branch] gh/mikaylagawarecki/234/base -> origin/gh/mikaylagawarecki/234/base 2025-07-24T03:47:28.4543037Z * [new branch] gh/mikaylagawarecki/234/head -> origin/gh/mikaylagawarecki/234/head 2025-07-24T03:47:28.4543639Z * [new branch] gh/mikaylagawarecki/235/base -> origin/gh/mikaylagawarecki/235/base 2025-07-24T03:47:28.4544305Z * [new branch] gh/mikaylagawarecki/235/head -> origin/gh/mikaylagawarecki/235/head 2025-07-24T03:47:28.4958146Z * [new branch] gh/mikaylagawarecki/236/base -> origin/gh/mikaylagawarecki/236/base 2025-07-24T03:47:28.4959037Z * [new branch] gh/mikaylagawarecki/236/head -> origin/gh/mikaylagawarecki/236/head 2025-07-24T03:47:28.4959806Z * [new branch] gh/mikaylagawarecki/237/base -> origin/gh/mikaylagawarecki/237/base 2025-07-24T03:47:28.4960488Z * [new branch] gh/mikaylagawarecki/237/head -> origin/gh/mikaylagawarecki/237/head 2025-07-24T03:47:28.4961122Z * [new branch] gh/mikaylagawarecki/238/base -> origin/gh/mikaylagawarecki/238/base 2025-07-24T03:47:28.4961749Z * [new branch] gh/mikaylagawarecki/238/head -> origin/gh/mikaylagawarecki/238/head 2025-07-24T03:47:28.4962439Z * [new branch] gh/mikaylagawarecki/313/base -> origin/gh/mikaylagawarecki/313/base 2025-07-24T03:47:28.4963063Z * [new branch] gh/mikaylagawarecki/313/head -> origin/gh/mikaylagawarecki/313/head 2025-07-24T03:47:28.4963706Z * [new branch] gh/mikaylagawarecki/313/orig -> origin/gh/mikaylagawarecki/313/orig 2025-07-24T03:47:28.4964350Z * [new branch] gh/mikaylagawarecki/316/base -> origin/gh/mikaylagawarecki/316/base 2025-07-24T03:47:28.4964929Z * [new branch] gh/mikaylagawarecki/316/head -> origin/gh/mikaylagawarecki/316/head 2025-07-24T03:47:28.4965509Z * [new branch] gh/mikaylagawarecki/316/orig -> origin/gh/mikaylagawarecki/316/orig 2025-07-24T03:47:28.4966087Z * [new branch] gh/mikaylagawarecki/317/base -> origin/gh/mikaylagawarecki/317/base 2025-07-24T03:47:28.4966665Z * [new branch] gh/mikaylagawarecki/317/head -> origin/gh/mikaylagawarecki/317/head 2025-07-24T03:47:28.4967250Z * [new branch] gh/mikaylagawarecki/317/orig -> origin/gh/mikaylagawarecki/317/orig 2025-07-24T03:47:28.4967824Z * [new branch] gh/mikaylagawarecki/318/base -> origin/gh/mikaylagawarecki/318/base 2025-07-24T03:47:28.4968457Z * [new branch] gh/mikaylagawarecki/318/head -> origin/gh/mikaylagawarecki/318/head 2025-07-24T03:47:28.4969042Z * [new branch] gh/mikaylagawarecki/318/orig -> origin/gh/mikaylagawarecki/318/orig 2025-07-24T03:47:28.4969685Z * [new branch] gh/mikaylagawarecki/319/base -> origin/gh/mikaylagawarecki/319/base 2025-07-24T03:47:28.4970324Z * [new branch] gh/mikaylagawarecki/319/head -> origin/gh/mikaylagawarecki/319/head 2025-07-24T03:47:28.4970998Z * [new branch] gh/mikaylagawarecki/319/orig -> origin/gh/mikaylagawarecki/319/orig 2025-07-24T03:47:28.4971631Z * [new branch] gh/mikaylagawarecki/320/base -> origin/gh/mikaylagawarecki/320/base 2025-07-24T03:47:28.4972284Z * [new branch] gh/mikaylagawarecki/320/head -> origin/gh/mikaylagawarecki/320/head 2025-07-24T03:47:28.4972945Z * [new branch] gh/mikaylagawarecki/320/orig -> origin/gh/mikaylagawarecki/320/orig 2025-07-24T03:47:28.4973585Z * [new branch] gh/mikaylagawarecki/321/base -> origin/gh/mikaylagawarecki/321/base 2025-07-24T03:47:28.4974219Z * [new branch] gh/mikaylagawarecki/321/head -> origin/gh/mikaylagawarecki/321/head 2025-07-24T03:47:28.4974904Z * [new branch] gh/mikaylagawarecki/321/orig -> origin/gh/mikaylagawarecki/321/orig 2025-07-24T03:47:28.4975540Z * [new branch] gh/mikaylagawarecki/322/base -> origin/gh/mikaylagawarecki/322/base 2025-07-24T03:47:28.4976170Z * [new branch] gh/mikaylagawarecki/322/head -> origin/gh/mikaylagawarecki/322/head 2025-07-24T03:47:28.4976846Z * [new branch] gh/mikaylagawarecki/322/orig -> origin/gh/mikaylagawarecki/322/orig 2025-07-24T03:47:28.4977476Z * [new branch] gh/mikaylagawarecki/323/base -> origin/gh/mikaylagawarecki/323/base 2025-07-24T03:47:28.4978108Z * [new branch] gh/mikaylagawarecki/323/head -> origin/gh/mikaylagawarecki/323/head 2025-07-24T03:47:28.4978736Z * [new branch] gh/mikaylagawarecki/323/orig -> origin/gh/mikaylagawarecki/323/orig 2025-07-24T03:47:28.4979533Z * [new branch] gh/mikaylagawarecki/324/base -> origin/gh/mikaylagawarecki/324/base 2025-07-24T03:47:28.4980311Z * [new branch] gh/mikaylagawarecki/324/head -> origin/gh/mikaylagawarecki/324/head 2025-07-24T03:47:28.4980898Z * [new branch] gh/mikaylagawarecki/324/orig -> origin/gh/mikaylagawarecki/324/orig 2025-07-24T03:47:28.4981490Z * [new branch] gh/mikaylagawarecki/325/base -> origin/gh/mikaylagawarecki/325/base 2025-07-24T03:47:28.4982080Z * [new branch] gh/mikaylagawarecki/325/head -> origin/gh/mikaylagawarecki/325/head 2025-07-24T03:47:28.4982666Z * [new branch] gh/mikaylagawarecki/325/orig -> origin/gh/mikaylagawarecki/325/orig 2025-07-24T03:47:28.4983248Z * [new branch] gh/mikaylagawarecki/326/base -> origin/gh/mikaylagawarecki/326/base 2025-07-24T03:47:28.4983830Z * [new branch] gh/mikaylagawarecki/326/head -> origin/gh/mikaylagawarecki/326/head 2025-07-24T03:47:28.4984426Z * [new branch] gh/mikaylagawarecki/326/orig -> origin/gh/mikaylagawarecki/326/orig 2025-07-24T03:47:28.5481367Z * [new branch] gh/mikaylagawarecki/327/base -> origin/gh/mikaylagawarecki/327/base 2025-07-24T03:47:28.5482125Z * [new branch] gh/mikaylagawarecki/327/head -> origin/gh/mikaylagawarecki/327/head 2025-07-24T03:47:28.5482743Z * [new branch] gh/mikaylagawarecki/327/orig -> origin/gh/mikaylagawarecki/327/orig 2025-07-24T03:47:28.5483328Z * [new branch] gh/mikaylagawarecki/328/base -> origin/gh/mikaylagawarecki/328/base 2025-07-24T03:47:28.5483918Z * [new branch] gh/mikaylagawarecki/328/head -> origin/gh/mikaylagawarecki/328/head 2025-07-24T03:47:28.5484504Z * [new branch] gh/mikaylagawarecki/328/orig -> origin/gh/mikaylagawarecki/328/orig 2025-07-24T03:47:28.5485029Z * [new branch] gh/mlazos/1/base -> origin/gh/mlazos/1/base 2025-07-24T03:47:28.5485490Z * [new branch] gh/mlazos/1/head -> origin/gh/mlazos/1/head 2025-07-24T03:47:28.5485950Z * [new branch] gh/mlazos/1/orig -> origin/gh/mlazos/1/orig 2025-07-24T03:47:28.5486402Z * [new branch] gh/mlazos/2/base -> origin/gh/mlazos/2/base 2025-07-24T03:47:28.5486849Z * [new branch] gh/mlazos/2/head -> origin/gh/mlazos/2/head 2025-07-24T03:47:28.5487305Z * [new branch] gh/mlazos/2/orig -> origin/gh/mlazos/2/orig 2025-07-24T03:47:28.5487814Z * [new branch] gh/mlazos/3/base -> origin/gh/mlazos/3/base 2025-07-24T03:47:28.5488420Z * [new branch] gh/mlazos/3/head -> origin/gh/mlazos/3/head 2025-07-24T03:47:28.5488886Z * [new branch] gh/mlazos/3/orig -> origin/gh/mlazos/3/orig 2025-07-24T03:47:28.5489345Z * [new branch] gh/mrmiywj/1/base -> origin/gh/mrmiywj/1/base 2025-07-24T03:47:28.5489815Z * [new branch] gh/mrmiywj/1/head -> origin/gh/mrmiywj/1/head 2025-07-24T03:47:28.5490308Z * [new branch] gh/muchulee8/62/base -> origin/gh/muchulee8/62/base 2025-07-24T03:47:28.5490797Z * [new branch] gh/muchulee8/62/head -> origin/gh/muchulee8/62/head 2025-07-24T03:47:28.5491286Z * [new branch] gh/muchulee8/62/orig -> origin/gh/muchulee8/62/orig 2025-07-24T03:47:28.5491771Z * [new branch] gh/nautsimon/1/base -> origin/gh/nautsimon/1/base 2025-07-24T03:47:28.5492258Z * [new branch] gh/nautsimon/1/head -> origin/gh/nautsimon/1/head 2025-07-24T03:47:28.5492747Z * [new branch] gh/nautsimon/1/orig -> origin/gh/nautsimon/1/orig 2025-07-24T03:47:28.5493227Z * [new branch] gh/nautsimon/10/base -> origin/gh/nautsimon/10/base 2025-07-24T03:47:28.5493768Z * [new branch] gh/nautsimon/10/head -> origin/gh/nautsimon/10/head 2025-07-24T03:47:28.5494532Z * [new branch] gh/nautsimon/10/orig -> origin/gh/nautsimon/10/orig 2025-07-24T03:47:28.5495147Z * [new branch] gh/nautsimon/11/base -> origin/gh/nautsimon/11/base 2025-07-24T03:47:28.5495634Z * [new branch] gh/nautsimon/11/head -> origin/gh/nautsimon/11/head 2025-07-24T03:47:28.5496119Z * [new branch] gh/nautsimon/11/orig -> origin/gh/nautsimon/11/orig 2025-07-24T03:47:28.5496614Z * [new branch] gh/nautsimon/12/base -> origin/gh/nautsimon/12/base 2025-07-24T03:47:28.5497096Z * [new branch] gh/nautsimon/12/head -> origin/gh/nautsimon/12/head 2025-07-24T03:47:28.5497582Z * [new branch] gh/nautsimon/12/orig -> origin/gh/nautsimon/12/orig 2025-07-24T03:47:28.5498062Z * [new branch] gh/nautsimon/13/base -> origin/gh/nautsimon/13/base 2025-07-24T03:47:28.5498553Z * [new branch] gh/nautsimon/13/head -> origin/gh/nautsimon/13/head 2025-07-24T03:47:28.5499046Z * [new branch] gh/nautsimon/13/orig -> origin/gh/nautsimon/13/orig 2025-07-24T03:47:28.5499533Z * [new branch] gh/nautsimon/14/base -> origin/gh/nautsimon/14/base 2025-07-24T03:47:28.5500022Z * [new branch] gh/nautsimon/14/head -> origin/gh/nautsimon/14/head 2025-07-24T03:47:28.5500499Z * [new branch] gh/nautsimon/14/orig -> origin/gh/nautsimon/14/orig 2025-07-24T03:47:28.5500997Z * [new branch] gh/nautsimon/15/base -> origin/gh/nautsimon/15/base 2025-07-24T03:47:28.5501488Z * [new branch] gh/nautsimon/15/head -> origin/gh/nautsimon/15/head 2025-07-24T03:47:28.5501974Z * [new branch] gh/nautsimon/15/orig -> origin/gh/nautsimon/15/orig 2025-07-24T03:47:28.5502463Z * [new branch] gh/nautsimon/16/base -> origin/gh/nautsimon/16/base 2025-07-24T03:47:28.5502945Z * [new branch] gh/nautsimon/16/head -> origin/gh/nautsimon/16/head 2025-07-24T03:47:28.5503444Z * [new branch] gh/nautsimon/16/orig -> origin/gh/nautsimon/16/orig 2025-07-24T03:47:28.5503930Z * [new branch] gh/nautsimon/17/base -> origin/gh/nautsimon/17/base 2025-07-24T03:47:28.5504417Z * [new branch] gh/nautsimon/17/head -> origin/gh/nautsimon/17/head 2025-07-24T03:47:28.5504957Z * [new branch] gh/nautsimon/17/orig -> origin/gh/nautsimon/17/orig 2025-07-24T03:47:28.5958652Z * [new branch] gh/nautsimon/18/base -> origin/gh/nautsimon/18/base 2025-07-24T03:47:28.5959212Z * [new branch] gh/nautsimon/18/head -> origin/gh/nautsimon/18/head 2025-07-24T03:47:28.5959714Z * [new branch] gh/nautsimon/18/orig -> origin/gh/nautsimon/18/orig 2025-07-24T03:47:28.5960200Z * [new branch] gh/nautsimon/19/base -> origin/gh/nautsimon/19/base 2025-07-24T03:47:28.5960708Z * [new branch] gh/nautsimon/19/head -> origin/gh/nautsimon/19/head 2025-07-24T03:47:28.5961224Z * [new branch] gh/nautsimon/19/orig -> origin/gh/nautsimon/19/orig 2025-07-24T03:47:28.5961714Z * [new branch] gh/nautsimon/2/base -> origin/gh/nautsimon/2/base 2025-07-24T03:47:28.5962204Z * [new branch] gh/nautsimon/2/head -> origin/gh/nautsimon/2/head 2025-07-24T03:47:28.5962688Z * [new branch] gh/nautsimon/2/orig -> origin/gh/nautsimon/2/orig 2025-07-24T03:47:28.5963180Z * [new branch] gh/nautsimon/20/base -> origin/gh/nautsimon/20/base 2025-07-24T03:47:28.5963658Z * [new branch] gh/nautsimon/20/head -> origin/gh/nautsimon/20/head 2025-07-24T03:47:28.5964146Z * [new branch] gh/nautsimon/20/orig -> origin/gh/nautsimon/20/orig 2025-07-24T03:47:28.5964716Z * [new branch] gh/nautsimon/21/base -> origin/gh/nautsimon/21/base 2025-07-24T03:47:28.5965428Z * [new branch] gh/nautsimon/21/head -> origin/gh/nautsimon/21/head 2025-07-24T03:47:28.5966070Z * [new branch] gh/nautsimon/21/orig -> origin/gh/nautsimon/21/orig 2025-07-24T03:47:28.5966554Z * [new branch] gh/nautsimon/3/base -> origin/gh/nautsimon/3/base 2025-07-24T03:47:28.5967047Z * [new branch] gh/nautsimon/3/head -> origin/gh/nautsimon/3/head 2025-07-24T03:47:28.5967539Z * [new branch] gh/nautsimon/3/orig -> origin/gh/nautsimon/3/orig 2025-07-24T03:47:28.5968014Z * [new branch] gh/nautsimon/4/base -> origin/gh/nautsimon/4/base 2025-07-24T03:47:28.5968564Z * [new branch] gh/nautsimon/4/head -> origin/gh/nautsimon/4/head 2025-07-24T03:47:28.5969040Z * [new branch] gh/nautsimon/4/orig -> origin/gh/nautsimon/4/orig 2025-07-24T03:47:28.5969524Z * [new branch] gh/nautsimon/5/base -> origin/gh/nautsimon/5/base 2025-07-24T03:47:28.5970000Z * [new branch] gh/nautsimon/5/head -> origin/gh/nautsimon/5/head 2025-07-24T03:47:28.5970497Z * [new branch] gh/nautsimon/5/orig -> origin/gh/nautsimon/5/orig 2025-07-24T03:47:28.5970974Z * [new branch] gh/nautsimon/6/base -> origin/gh/nautsimon/6/base 2025-07-24T03:47:28.5971444Z * [new branch] gh/nautsimon/6/head -> origin/gh/nautsimon/6/head 2025-07-24T03:47:28.5971935Z * [new branch] gh/nautsimon/6/orig -> origin/gh/nautsimon/6/orig 2025-07-24T03:47:28.5972410Z * [new branch] gh/nautsimon/7/base -> origin/gh/nautsimon/7/base 2025-07-24T03:47:28.5972894Z * [new branch] gh/nautsimon/7/head -> origin/gh/nautsimon/7/head 2025-07-24T03:47:28.5973374Z * [new branch] gh/nautsimon/7/orig -> origin/gh/nautsimon/7/orig 2025-07-24T03:47:28.5973847Z * [new branch] gh/nautsimon/8/base -> origin/gh/nautsimon/8/base 2025-07-24T03:47:28.5974336Z * [new branch] gh/nautsimon/8/head -> origin/gh/nautsimon/8/head 2025-07-24T03:47:28.5974811Z * [new branch] gh/nautsimon/8/orig -> origin/gh/nautsimon/8/orig 2025-07-24T03:47:28.5975288Z * [new branch] gh/nautsimon/9/base -> origin/gh/nautsimon/9/base 2025-07-24T03:47:28.5975769Z * [new branch] gh/nautsimon/9/head -> origin/gh/nautsimon/9/head 2025-07-24T03:47:28.5976243Z * [new branch] gh/nautsimon/9/orig -> origin/gh/nautsimon/9/orig 2025-07-24T03:47:28.5976727Z * [new branch] gh/oulgen/35/base -> origin/gh/oulgen/35/base 2025-07-24T03:47:28.5977186Z * [new branch] gh/oulgen/35/head -> origin/gh/oulgen/35/head 2025-07-24T03:47:28.5977648Z * [new branch] gh/oulgen/35/orig -> origin/gh/oulgen/35/orig 2025-07-24T03:47:28.5978113Z * [new branch] gh/oulgen/44/base -> origin/gh/oulgen/44/base 2025-07-24T03:47:28.5978580Z * [new branch] gh/oulgen/44/head -> origin/gh/oulgen/44/head 2025-07-24T03:47:28.5979040Z * [new branch] gh/oulgen/44/orig -> origin/gh/oulgen/44/orig 2025-07-24T03:47:28.5979495Z * [new branch] gh/pearu/108/base -> origin/gh/pearu/108/base 2025-07-24T03:47:28.5979959Z * [new branch] gh/pearu/108/head -> origin/gh/pearu/108/head 2025-07-24T03:47:28.5980422Z * [new branch] gh/pearu/108/orig -> origin/gh/pearu/108/orig 2025-07-24T03:47:28.5980891Z * [new branch] gh/pearu/56/base -> origin/gh/pearu/56/base 2025-07-24T03:47:28.5981424Z * [new branch] gh/pearu/56/head -> origin/gh/pearu/56/head 2025-07-24T03:47:28.6477980Z * [new branch] gh/pearu/56/orig -> origin/gh/pearu/56/orig 2025-07-24T03:47:28.6478687Z * [new branch] gh/pearu/97/base -> origin/gh/pearu/97/base 2025-07-24T03:47:28.6479268Z * [new branch] gh/pearu/97/head -> origin/gh/pearu/97/head 2025-07-24T03:47:28.6479716Z * [new branch] gh/pearu/97/orig -> origin/gh/pearu/97/orig 2025-07-24T03:47:28.6480183Z * [new branch] gh/qqaatw/29/base -> origin/gh/qqaatw/29/base 2025-07-24T03:47:28.6480643Z * [new branch] gh/qqaatw/29/head -> origin/gh/qqaatw/29/head 2025-07-24T03:47:28.6481105Z * [new branch] gh/qqaatw/29/orig -> origin/gh/qqaatw/29/orig 2025-07-24T03:47:28.6481669Z * [new branch] gh/raymo/cleanup-dynamo-logging -> origin/gh/raymo/cleanup-dynamo-logging 2025-07-24T03:47:28.6482271Z * [new branch] gh/raymo/refresh-script -> origin/gh/raymo/refresh-script 2025-07-24T03:47:28.6482769Z * [new branch] gh/rec/133/base -> origin/gh/rec/133/base 2025-07-24T03:47:28.6483215Z * [new branch] gh/rec/133/head -> origin/gh/rec/133/head 2025-07-24T03:47:28.6483668Z * [new branch] gh/rec/133/orig -> origin/gh/rec/133/orig 2025-07-24T03:47:28.6484104Z * [new branch] gh/rec/141/base -> origin/gh/rec/141/base 2025-07-24T03:47:28.6484536Z * [new branch] gh/rec/141/head -> origin/gh/rec/141/head 2025-07-24T03:47:28.6484981Z * [new branch] gh/rec/142/base -> origin/gh/rec/142/base 2025-07-24T03:47:28.6485407Z * [new branch] gh/rec/142/head -> origin/gh/rec/142/head 2025-07-24T03:47:28.6485845Z * [new branch] gh/rec/142/orig -> origin/gh/rec/142/orig 2025-07-24T03:47:28.6486275Z * [new branch] gh/rec/148/base -> origin/gh/rec/148/base 2025-07-24T03:47:28.6486715Z * [new branch] gh/rec/148/head -> origin/gh/rec/148/head 2025-07-24T03:47:28.6487158Z * [new branch] gh/rec/148/orig -> origin/gh/rec/148/orig 2025-07-24T03:47:28.6487589Z * [new branch] gh/rec/150/base -> origin/gh/rec/150/base 2025-07-24T03:47:28.6488032Z * [new branch] gh/rec/150/head -> origin/gh/rec/150/head 2025-07-24T03:47:28.6488548Z * [new branch] gh/rec/150/orig -> origin/gh/rec/150/orig 2025-07-24T03:47:28.6488996Z * [new branch] gh/rec/153/base -> origin/gh/rec/153/base 2025-07-24T03:47:28.6489429Z * [new branch] gh/rec/153/head -> origin/gh/rec/153/head 2025-07-24T03:47:28.6489887Z * [new branch] gh/rec/153/orig -> origin/gh/rec/153/orig 2025-07-24T03:47:28.6490327Z * [new branch] gh/rec/154/base -> origin/gh/rec/154/base 2025-07-24T03:47:28.6490755Z * [new branch] gh/rec/154/head -> origin/gh/rec/154/head 2025-07-24T03:47:28.6491207Z * [new branch] gh/rec/154/orig -> origin/gh/rec/154/orig 2025-07-24T03:47:28.6491649Z * [new branch] gh/rec/156/base -> origin/gh/rec/156/base 2025-07-24T03:47:28.6492097Z * [new branch] gh/rec/156/head -> origin/gh/rec/156/head 2025-07-24T03:47:28.6492539Z * [new branch] gh/rec/156/orig -> origin/gh/rec/156/orig 2025-07-24T03:47:28.6492969Z * [new branch] gh/rec/157/base -> origin/gh/rec/157/base 2025-07-24T03:47:28.6493409Z * [new branch] gh/rec/157/head -> origin/gh/rec/157/head 2025-07-24T03:47:28.6493843Z * [new branch] gh/rec/157/orig -> origin/gh/rec/157/orig 2025-07-24T03:47:28.6494302Z * [new branch] gh/rtimpe/1/base -> origin/gh/rtimpe/1/base 2025-07-24T03:47:28.6494768Z * [new branch] gh/rtimpe/1/head -> origin/gh/rtimpe/1/head 2025-07-24T03:47:28.6495333Z * [new branch] gh/rtimpe/2/base -> origin/gh/rtimpe/2/base 2025-07-24T03:47:28.6495877Z * [new branch] gh/rtimpe/2/head -> origin/gh/rtimpe/2/head 2025-07-24T03:47:28.6496333Z * [new branch] gh/rtimpe/3/base -> origin/gh/rtimpe/3/base 2025-07-24T03:47:28.6496930Z * [new branch] gh/rtimpe/3/head -> origin/gh/rtimpe/3/head 2025-07-24T03:47:28.6508372Z * [new branch] gh/rtimpe/4/base -> origin/gh/rtimpe/4/base 2025-07-24T03:47:28.6508877Z * [new branch] gh/rtimpe/4/head -> origin/gh/rtimpe/4/head 2025-07-24T03:47:28.6509344Z * [new branch] gh/rtimpe/5/base -> origin/gh/rtimpe/5/base 2025-07-24T03:47:28.6509801Z * [new branch] gh/rtimpe/5/head -> origin/gh/rtimpe/5/head 2025-07-24T03:47:28.6510333Z * [new branch] gh/rtimpe/5/orig -> origin/gh/rtimpe/5/orig 2025-07-24T03:47:28.6510849Z * [new branch] gh/rtimpe/6/base -> origin/gh/rtimpe/6/base 2025-07-24T03:47:28.6511315Z * [new branch] gh/rtimpe/6/head -> origin/gh/rtimpe/6/head 2025-07-24T03:47:28.6511769Z * [new branch] gh/rtimpe/6/orig -> origin/gh/rtimpe/6/orig 2025-07-24T03:47:28.6977319Z * [new branch] gh/ruisizhang123/1/base -> origin/gh/ruisizhang123/1/base 2025-07-24T03:47:28.6978001Z * [new branch] gh/ruisizhang123/1/head -> origin/gh/ruisizhang123/1/head 2025-07-24T03:47:28.6978576Z * [new branch] gh/ruisizhang123/1/orig -> origin/gh/ruisizhang123/1/orig 2025-07-24T03:47:28.6979151Z * [new branch] gh/ruisizhang123/2/base -> origin/gh/ruisizhang123/2/base 2025-07-24T03:47:28.6979712Z * [new branch] gh/ruisizhang123/2/head -> origin/gh/ruisizhang123/2/head 2025-07-24T03:47:28.6980323Z * [new branch] gh/ruisizhang123/2/orig -> origin/gh/ruisizhang123/2/orig 2025-07-24T03:47:28.6980923Z * [new branch] gh/ruisizhang123/3/base -> origin/gh/ruisizhang123/3/base 2025-07-24T03:47:28.6981500Z * [new branch] gh/ruisizhang123/3/head -> origin/gh/ruisizhang123/3/head 2025-07-24T03:47:28.6982065Z * [new branch] gh/ruisizhang123/3/orig -> origin/gh/ruisizhang123/3/orig 2025-07-24T03:47:28.6982627Z * [new branch] gh/ruisizhang123/4/base -> origin/gh/ruisizhang123/4/base 2025-07-24T03:47:28.6983230Z * [new branch] gh/ruisizhang123/4/head -> origin/gh/ruisizhang123/4/head 2025-07-24T03:47:28.6983800Z * [new branch] gh/ruisizhang123/4/orig -> origin/gh/ruisizhang123/4/orig 2025-07-24T03:47:28.6984372Z * [new branch] gh/ruisizhang123/5/base -> origin/gh/ruisizhang123/5/base 2025-07-24T03:47:28.6984935Z * [new branch] gh/ruisizhang123/5/head -> origin/gh/ruisizhang123/5/head 2025-07-24T03:47:28.6985454Z * [new branch] gh/ruisizhang123/5/orig -> origin/gh/ruisizhang123/5/orig 2025-07-24T03:47:28.6985978Z * [new branch] gh/ruisizhang123/6/base -> origin/gh/ruisizhang123/6/base 2025-07-24T03:47:28.6986487Z * [new branch] gh/ruisizhang123/6/head -> origin/gh/ruisizhang123/6/head 2025-07-24T03:47:28.6987005Z * [new branch] gh/ruisizhang123/6/orig -> origin/gh/ruisizhang123/6/orig 2025-07-24T03:47:28.6987516Z * [new branch] gh/ruisizhang123/7/base -> origin/gh/ruisizhang123/7/base 2025-07-24T03:47:28.6988027Z * [new branch] gh/ruisizhang123/7/head -> origin/gh/ruisizhang123/7/head 2025-07-24T03:47:28.6988544Z * [new branch] gh/ruisizhang123/7/orig -> origin/gh/ruisizhang123/7/orig 2025-07-24T03:47:28.6989027Z * [new branch] gh/sarckk/2/base -> origin/gh/sarckk/2/base 2025-07-24T03:47:28.6989490Z * [new branch] gh/sarckk/2/head -> origin/gh/sarckk/2/head 2025-07-24T03:47:28.6990111Z * [new branch] gh/sarckk/2/orig -> origin/gh/sarckk/2/orig 2025-07-24T03:47:28.6990775Z * [new branch] gh/seemethere/14/base -> origin/gh/seemethere/14/base 2025-07-24T03:47:28.6991356Z * [new branch] gh/seemethere/14/head -> origin/gh/seemethere/14/head 2025-07-24T03:47:28.6991917Z * [new branch] gh/seemethere/14/orig -> origin/gh/seemethere/14/orig 2025-07-24T03:47:28.6992466Z * [new branch] gh/seemethere/23/base -> origin/gh/seemethere/23/base 2025-07-24T03:47:28.6993018Z * [new branch] gh/seemethere/23/head -> origin/gh/seemethere/23/head 2025-07-24T03:47:28.6993563Z * [new branch] gh/seemethere/23/orig -> origin/gh/seemethere/23/orig 2025-07-24T03:47:28.6994112Z * [new branch] gh/seemethere/24/base -> origin/gh/seemethere/24/base 2025-07-24T03:47:28.6994604Z * [new branch] gh/seemethere/24/head -> origin/gh/seemethere/24/head 2025-07-24T03:47:28.6995112Z * [new branch] gh/seemethere/24/orig -> origin/gh/seemethere/24/orig 2025-07-24T03:47:28.6995612Z * [new branch] gh/seemethere/30/base -> origin/gh/seemethere/30/base 2025-07-24T03:47:28.6996103Z * [new branch] gh/seemethere/30/head -> origin/gh/seemethere/30/head 2025-07-24T03:47:28.6996595Z * [new branch] gh/seemethere/30/orig -> origin/gh/seemethere/30/orig 2025-07-24T03:47:28.6997086Z * [new branch] gh/seemethere/32/base -> origin/gh/seemethere/32/base 2025-07-24T03:47:28.6997581Z * [new branch] gh/seemethere/32/head -> origin/gh/seemethere/32/head 2025-07-24T03:47:28.6998073Z * [new branch] gh/seemethere/32/orig -> origin/gh/seemethere/32/orig 2025-07-24T03:47:28.6998562Z * [new branch] gh/seemethere/33/base -> origin/gh/seemethere/33/base 2025-07-24T03:47:28.6999068Z * [new branch] gh/seemethere/33/head -> origin/gh/seemethere/33/head 2025-07-24T03:47:28.6999610Z * [new branch] gh/seemethere/33/orig -> origin/gh/seemethere/33/orig 2025-07-24T03:47:28.7000160Z * [new branch] gh/seemethere/34/base -> origin/gh/seemethere/34/base 2025-07-24T03:47:28.7000698Z * [new branch] gh/seemethere/34/head -> origin/gh/seemethere/34/head 2025-07-24T03:47:28.7001269Z * [new branch] gh/seemethere/34/orig -> origin/gh/seemethere/34/orig 2025-07-24T03:47:28.7447246Z * [new branch] gh/seemethere/35/base -> origin/gh/seemethere/35/base 2025-07-24T03:47:28.7447848Z * [new branch] gh/seemethere/35/head -> origin/gh/seemethere/35/head 2025-07-24T03:47:28.7448485Z * [new branch] gh/seemethere/35/orig -> origin/gh/seemethere/35/orig 2025-07-24T03:47:28.7448996Z * [new branch] gh/seemethere/36/base -> origin/gh/seemethere/36/base 2025-07-24T03:47:28.7449557Z * [new branch] gh/seemethere/36/head -> origin/gh/seemethere/36/head 2025-07-24T03:47:28.7450061Z * [new branch] gh/seemethere/36/orig -> origin/gh/seemethere/36/orig 2025-07-24T03:47:28.7450558Z * [new branch] gh/seemethere/37/base -> origin/gh/seemethere/37/base 2025-07-24T03:47:28.7451063Z * [new branch] gh/seemethere/37/head -> origin/gh/seemethere/37/head 2025-07-24T03:47:28.7451562Z * [new branch] gh/seemethere/37/orig -> origin/gh/seemethere/37/orig 2025-07-24T03:47:28.7452050Z * [new branch] gh/seemethere/38/base -> origin/gh/seemethere/38/base 2025-07-24T03:47:28.7452554Z * [new branch] gh/seemethere/38/head -> origin/gh/seemethere/38/head 2025-07-24T03:47:28.7453045Z * [new branch] gh/seemethere/38/orig -> origin/gh/seemethere/38/orig 2025-07-24T03:47:28.7453736Z * [new branch] gh/seemethere/39/base -> origin/gh/seemethere/39/base 2025-07-24T03:47:28.7454409Z * [new branch] gh/seemethere/39/head -> origin/gh/seemethere/39/head 2025-07-24T03:47:28.7454903Z * [new branch] gh/seemethere/39/orig -> origin/gh/seemethere/39/orig 2025-07-24T03:47:28.7455412Z * [new branch] gh/seemethere/40/base -> origin/gh/seemethere/40/base 2025-07-24T03:47:28.7455910Z * [new branch] gh/seemethere/40/head -> origin/gh/seemethere/40/head 2025-07-24T03:47:28.7456418Z * [new branch] gh/seemethere/40/orig -> origin/gh/seemethere/40/orig 2025-07-24T03:47:28.7456903Z * [new branch] gh/seemethere/41/base -> origin/gh/seemethere/41/base 2025-07-24T03:47:28.7457402Z * [new branch] gh/seemethere/41/head -> origin/gh/seemethere/41/head 2025-07-24T03:47:28.7457902Z * [new branch] gh/seemethere/41/orig -> origin/gh/seemethere/41/orig 2025-07-24T03:47:28.7458401Z * [new branch] gh/seemethere/42/base -> origin/gh/seemethere/42/base 2025-07-24T03:47:28.7458914Z * [new branch] gh/seemethere/42/head -> origin/gh/seemethere/42/head 2025-07-24T03:47:28.7459405Z * [new branch] gh/seemethere/42/orig -> origin/gh/seemethere/42/orig 2025-07-24T03:47:28.7459953Z * [new branch] gh/seemethere/43/base -> origin/gh/seemethere/43/base 2025-07-24T03:47:28.7460501Z * [new branch] gh/seemethere/43/head -> origin/gh/seemethere/43/head 2025-07-24T03:47:28.7461044Z * [new branch] gh/seemethere/43/orig -> origin/gh/seemethere/43/orig 2025-07-24T03:47:28.7461594Z * [new branch] gh/seemethere/44/base -> origin/gh/seemethere/44/base 2025-07-24T03:47:28.7462138Z * [new branch] gh/seemethere/44/head -> origin/gh/seemethere/44/head 2025-07-24T03:47:28.7462690Z * [new branch] gh/seemethere/44/orig -> origin/gh/seemethere/44/orig 2025-07-24T03:47:28.7463201Z * [new branch] gh/seemethere/45/base -> origin/gh/seemethere/45/base 2025-07-24T03:47:28.7463700Z * [new branch] gh/seemethere/45/head -> origin/gh/seemethere/45/head 2025-07-24T03:47:28.7464208Z * [new branch] gh/seemethere/45/orig -> origin/gh/seemethere/45/orig 2025-07-24T03:47:28.7464697Z * [new branch] gh/seemethere/46/base -> origin/gh/seemethere/46/base 2025-07-24T03:47:28.7465200Z * [new branch] gh/seemethere/46/head -> origin/gh/seemethere/46/head 2025-07-24T03:47:28.7465723Z * [new branch] gh/seemethere/46/orig -> origin/gh/seemethere/46/orig 2025-07-24T03:47:28.7466214Z * [new branch] gh/seemethere/47/base -> origin/gh/seemethere/47/base 2025-07-24T03:47:28.7466718Z * [new branch] gh/seemethere/47/head -> origin/gh/seemethere/47/head 2025-07-24T03:47:28.7467218Z * [new branch] gh/seemethere/47/orig -> origin/gh/seemethere/47/orig 2025-07-24T03:47:28.7467771Z * [new branch] gh/seemethere/48/base -> origin/gh/seemethere/48/base 2025-07-24T03:47:28.7468309Z * [new branch] gh/seemethere/48/head -> origin/gh/seemethere/48/head 2025-07-24T03:47:28.7468859Z * [new branch] gh/seemethere/48/orig -> origin/gh/seemethere/48/orig 2025-07-24T03:47:28.7469409Z * [new branch] gh/seemethere/49/base -> origin/gh/seemethere/49/base 2025-07-24T03:47:28.7469946Z * [new branch] gh/seemethere/49/head -> origin/gh/seemethere/49/head 2025-07-24T03:47:28.7470485Z * [new branch] gh/seemethere/49/orig -> origin/gh/seemethere/49/orig 2025-07-24T03:47:28.7471024Z * [new branch] gh/seemethere/50/base -> origin/gh/seemethere/50/base 2025-07-24T03:47:28.7932641Z * [new branch] gh/seemethere/50/head -> origin/gh/seemethere/50/head 2025-07-24T03:47:28.7933514Z * [new branch] gh/seemethere/50/orig -> origin/gh/seemethere/50/orig 2025-07-24T03:47:28.7934020Z * [new branch] gh/seemethere/7/base -> origin/gh/seemethere/7/base 2025-07-24T03:47:28.7934587Z * [new branch] gh/seemethere/7/head -> origin/gh/seemethere/7/head 2025-07-24T03:47:28.7935133Z * [new branch] gh/seemethere/7/orig -> origin/gh/seemethere/7/orig 2025-07-24T03:47:28.7935638Z * [new branch] gh/shunting314/145/base -> origin/gh/shunting314/145/base 2025-07-24T03:47:28.7936158Z * [new branch] gh/shunting314/145/head -> origin/gh/shunting314/145/head 2025-07-24T03:47:28.7936659Z * [new branch] gh/shunting314/145/orig -> origin/gh/shunting314/145/orig 2025-07-24T03:47:28.7937168Z * [new branch] gh/shunting314/176/base -> origin/gh/shunting314/176/base 2025-07-24T03:47:28.7937680Z * [new branch] gh/shunting314/176/head -> origin/gh/shunting314/176/head 2025-07-24T03:47:28.7938190Z * [new branch] gh/shunting314/176/orig -> origin/gh/shunting314/176/orig 2025-07-24T03:47:28.7938706Z * [new branch] gh/shunting314/211/base -> origin/gh/shunting314/211/base 2025-07-24T03:47:28.7939212Z * [new branch] gh/shunting314/211/head -> origin/gh/shunting314/211/head 2025-07-24T03:47:28.7939724Z * [new branch] gh/shunting314/211/orig -> origin/gh/shunting314/211/orig 2025-07-24T03:47:28.7940279Z * [new branch] gh/shunting314/212/base -> origin/gh/shunting314/212/base 2025-07-24T03:47:28.7940830Z * [new branch] gh/shunting314/212/head -> origin/gh/shunting314/212/head 2025-07-24T03:47:28.7941337Z * [new branch] gh/shunting314/212/orig -> origin/gh/shunting314/212/orig 2025-07-24T03:47:28.7941841Z * [new branch] gh/shunting314/213/base -> origin/gh/shunting314/213/base 2025-07-24T03:47:28.7942361Z * [new branch] gh/shunting314/213/head -> origin/gh/shunting314/213/head 2025-07-24T03:47:28.7942872Z * [new branch] gh/shunting314/213/orig -> origin/gh/shunting314/213/orig 2025-07-24T03:47:28.7943369Z * [new branch] gh/silverguo/1/base -> origin/gh/silverguo/1/base 2025-07-24T03:47:28.7943866Z * [new branch] gh/silverguo/1/head -> origin/gh/silverguo/1/head 2025-07-24T03:47:28.7944348Z * [new branch] gh/silverguo/2/base -> origin/gh/silverguo/2/base 2025-07-24T03:47:28.7944834Z * [new branch] gh/silverguo/2/head -> origin/gh/silverguo/2/head 2025-07-24T03:47:28.7945315Z * [new branch] gh/silverguo/3/base -> origin/gh/silverguo/3/base 2025-07-24T03:47:28.7945795Z * [new branch] gh/silverguo/3/head -> origin/gh/silverguo/3/head 2025-07-24T03:47:28.7946332Z * [new branch] gh/silverguo/4/base -> origin/gh/silverguo/4/base 2025-07-24T03:47:28.7946868Z * [new branch] gh/silverguo/4/head -> origin/gh/silverguo/4/head 2025-07-24T03:47:28.7947366Z * [new branch] gh/sinhaanhsul/1/base -> origin/gh/sinhaanhsul/1/base 2025-07-24T03:47:28.7947863Z * [new branch] gh/sinhaanhsul/1/head -> origin/gh/sinhaanhsul/1/head 2025-07-24T03:47:28.7948363Z * [new branch] gh/skarjala/1/base -> origin/gh/skarjala/1/base 2025-07-24T03:47:28.7948847Z * [new branch] gh/skarjala/1/head -> origin/gh/skarjala/1/head 2025-07-24T03:47:28.7949312Z * [new branch] gh/skarjala/1/orig -> origin/gh/skarjala/1/orig 2025-07-24T03:47:28.7949791Z * [new branch] gh/skarjala/10/base -> origin/gh/skarjala/10/base 2025-07-24T03:47:28.7950265Z * [new branch] gh/skarjala/10/head -> origin/gh/skarjala/10/head 2025-07-24T03:47:28.7950843Z * [new branch] gh/skarjala/10/orig -> origin/gh/skarjala/10/orig 2025-07-24T03:47:28.7951411Z * [new branch] gh/skarjala/11/base -> origin/gh/skarjala/11/base 2025-07-24T03:47:28.7951935Z * [new branch] gh/skarjala/11/head -> origin/gh/skarjala/11/head 2025-07-24T03:47:28.7952464Z * [new branch] gh/skarjala/11/orig -> origin/gh/skarjala/11/orig 2025-07-24T03:47:28.7952936Z * [new branch] gh/skarjala/12/base -> origin/gh/skarjala/12/base 2025-07-24T03:47:28.7953415Z * [new branch] gh/skarjala/12/head -> origin/gh/skarjala/12/head 2025-07-24T03:47:28.7953892Z * [new branch] gh/skarjala/12/orig -> origin/gh/skarjala/12/orig 2025-07-24T03:47:28.7954371Z * [new branch] gh/skarjala/2/base -> origin/gh/skarjala/2/base 2025-07-24T03:47:28.7954841Z * [new branch] gh/skarjala/2/head -> origin/gh/skarjala/2/head 2025-07-24T03:47:28.7955312Z * [new branch] gh/skarjala/2/orig -> origin/gh/skarjala/2/orig 2025-07-24T03:47:28.7955788Z * [new branch] gh/skarjala/3/base -> origin/gh/skarjala/3/base 2025-07-24T03:47:28.7956253Z * [new branch] gh/skarjala/3/head -> origin/gh/skarjala/3/head 2025-07-24T03:47:28.8453054Z * [new branch] gh/skarjala/3/orig -> origin/gh/skarjala/3/orig 2025-07-24T03:47:28.8453564Z * [new branch] gh/skarjala/4/base -> origin/gh/skarjala/4/base 2025-07-24T03:47:28.8454041Z * [new branch] gh/skarjala/4/head -> origin/gh/skarjala/4/head 2025-07-24T03:47:28.8454519Z * [new branch] gh/skarjala/4/orig -> origin/gh/skarjala/4/orig 2025-07-24T03:47:28.8454990Z * [new branch] gh/skarjala/5/base -> origin/gh/skarjala/5/base 2025-07-24T03:47:28.8455462Z * [new branch] gh/skarjala/5/head -> origin/gh/skarjala/5/head 2025-07-24T03:47:28.8455959Z * [new branch] gh/skarjala/5/orig -> origin/gh/skarjala/5/orig 2025-07-24T03:47:28.8456427Z * [new branch] gh/skarjala/6/base -> origin/gh/skarjala/6/base 2025-07-24T03:47:28.8456906Z * [new branch] gh/skarjala/6/head -> origin/gh/skarjala/6/head 2025-07-24T03:47:28.8457397Z * [new branch] gh/skarjala/6/orig -> origin/gh/skarjala/6/orig 2025-07-24T03:47:28.8457893Z * [new branch] gh/skarjala/7/base -> origin/gh/skarjala/7/base 2025-07-24T03:47:28.8458431Z * [new branch] gh/skarjala/7/head -> origin/gh/skarjala/7/head 2025-07-24T03:47:28.8458901Z * [new branch] gh/skarjala/7/orig -> origin/gh/skarjala/7/orig 2025-07-24T03:47:28.8459377Z * [new branch] gh/skarjala/8/base -> origin/gh/skarjala/8/base 2025-07-24T03:47:28.8459846Z * [new branch] gh/skarjala/8/head -> origin/gh/skarjala/8/head 2025-07-24T03:47:28.8460330Z * [new branch] gh/skarjala/8/orig -> origin/gh/skarjala/8/orig 2025-07-24T03:47:28.8460800Z * [new branch] gh/skarjala/9/base -> origin/gh/skarjala/9/base 2025-07-24T03:47:28.8461274Z * [new branch] gh/skarjala/9/head -> origin/gh/skarjala/9/head 2025-07-24T03:47:28.8461751Z * [new branch] gh/skarjala/9/orig -> origin/gh/skarjala/9/orig 2025-07-24T03:47:28.8462248Z * [new branch] gh/soulitzer/269/base -> origin/gh/soulitzer/269/base 2025-07-24T03:47:28.8462748Z * [new branch] gh/soulitzer/269/head -> origin/gh/soulitzer/269/head 2025-07-24T03:47:28.8463251Z * [new branch] gh/soulitzer/269/orig -> origin/gh/soulitzer/269/orig 2025-07-24T03:47:28.8463794Z * [new branch] gh/soulitzer/276/base -> origin/gh/soulitzer/276/base 2025-07-24T03:47:28.8464471Z * [new branch] gh/soulitzer/276/head -> origin/gh/soulitzer/276/head 2025-07-24T03:47:28.8465052Z * [new branch] gh/soulitzer/276/orig -> origin/gh/soulitzer/276/orig 2025-07-24T03:47:28.8465548Z * [new branch] gh/soulitzer/287/base -> origin/gh/soulitzer/287/base 2025-07-24T03:47:28.8466052Z * [new branch] gh/soulitzer/287/head -> origin/gh/soulitzer/287/head 2025-07-24T03:47:28.8466538Z * [new branch] gh/soulitzer/287/orig -> origin/gh/soulitzer/287/orig 2025-07-24T03:47:28.8467039Z * [new branch] gh/soulitzer/296/base -> origin/gh/soulitzer/296/base 2025-07-24T03:47:28.8467526Z * [new branch] gh/soulitzer/296/head -> origin/gh/soulitzer/296/head 2025-07-24T03:47:28.8468019Z * [new branch] gh/soulitzer/296/orig -> origin/gh/soulitzer/296/orig 2025-07-24T03:47:28.8468513Z * [new branch] gh/soulitzer/299/base -> origin/gh/soulitzer/299/base 2025-07-24T03:47:28.8469002Z * [new branch] gh/soulitzer/299/head -> origin/gh/soulitzer/299/head 2025-07-24T03:47:28.8469497Z * [new branch] gh/soulitzer/299/orig -> origin/gh/soulitzer/299/orig 2025-07-24T03:47:28.8470042Z * [new branch] gh/soulitzer/300/base -> origin/gh/soulitzer/300/base 2025-07-24T03:47:28.8470588Z * [new branch] gh/soulitzer/300/head -> origin/gh/soulitzer/300/head 2025-07-24T03:47:28.8471157Z * [new branch] gh/soulitzer/300/orig -> origin/gh/soulitzer/300/orig 2025-07-24T03:47:28.8471717Z * [new branch] gh/soulitzer/301/base -> origin/gh/soulitzer/301/base 2025-07-24T03:47:28.8472261Z * [new branch] gh/soulitzer/301/head -> origin/gh/soulitzer/301/head 2025-07-24T03:47:28.8472794Z * [new branch] gh/soulitzer/301/orig -> origin/gh/soulitzer/301/orig 2025-07-24T03:47:28.8473339Z * [new branch] gh/soulitzer/313/base -> origin/gh/soulitzer/313/base 2025-07-24T03:47:28.8473884Z * [new branch] gh/soulitzer/313/head -> origin/gh/soulitzer/313/head 2025-07-24T03:47:28.8474453Z * [new branch] gh/soulitzer/313/orig -> origin/gh/soulitzer/313/orig 2025-07-24T03:47:28.8475024Z * [new branch] gh/soulitzer/319/base -> origin/gh/soulitzer/319/base 2025-07-24T03:47:28.8475580Z * [new branch] gh/soulitzer/319/head -> origin/gh/soulitzer/319/head 2025-07-24T03:47:28.8476120Z * [new branch] gh/soulitzer/319/orig -> origin/gh/soulitzer/319/orig 2025-07-24T03:47:28.8476657Z * [new branch] gh/soulitzer/320/base -> origin/gh/soulitzer/320/base 2025-07-24T03:47:28.8925681Z * [new branch] gh/soulitzer/320/head -> origin/gh/soulitzer/320/head 2025-07-24T03:47:28.8926258Z * [new branch] gh/soulitzer/320/orig -> origin/gh/soulitzer/320/orig 2025-07-24T03:47:28.8926796Z * [new branch] gh/soulitzer/336/base -> origin/gh/soulitzer/336/base 2025-07-24T03:47:28.8927295Z * [new branch] gh/soulitzer/336/head -> origin/gh/soulitzer/336/head 2025-07-24T03:47:28.8927852Z * [new branch] gh/soulitzer/336/orig -> origin/gh/soulitzer/336/orig 2025-07-24T03:47:28.8928438Z * [new branch] gh/soulitzer/347/base -> origin/gh/soulitzer/347/base 2025-07-24T03:47:28.8928939Z * [new branch] gh/soulitzer/347/head -> origin/gh/soulitzer/347/head 2025-07-24T03:47:28.8929419Z * [new branch] gh/soulitzer/347/orig -> origin/gh/soulitzer/347/orig 2025-07-24T03:47:28.8929910Z * [new branch] gh/soulitzer/349/base -> origin/gh/soulitzer/349/base 2025-07-24T03:47:28.8930405Z * [new branch] gh/soulitzer/349/head -> origin/gh/soulitzer/349/head 2025-07-24T03:47:28.8930890Z * [new branch] gh/soulitzer/349/orig -> origin/gh/soulitzer/349/orig 2025-07-24T03:47:28.8931632Z * [new branch] gh/soulitzer/350/base -> origin/gh/soulitzer/350/base 2025-07-24T03:47:28.8932127Z * [new branch] gh/soulitzer/350/head -> origin/gh/soulitzer/350/head 2025-07-24T03:47:28.8932625Z * [new branch] gh/soulitzer/350/orig -> origin/gh/soulitzer/350/orig 2025-07-24T03:47:28.8933125Z * [new branch] gh/soulitzer/351/base -> origin/gh/soulitzer/351/base 2025-07-24T03:47:28.8933610Z * [new branch] gh/soulitzer/351/head -> origin/gh/soulitzer/351/head 2025-07-24T03:47:28.8934156Z * [new branch] gh/soulitzer/351/orig -> origin/gh/soulitzer/351/orig 2025-07-24T03:47:28.8934695Z * [new branch] gh/soulitzer/353/base -> origin/gh/soulitzer/353/base 2025-07-24T03:47:28.8935187Z * [new branch] gh/soulitzer/353/head -> origin/gh/soulitzer/353/head 2025-07-24T03:47:28.8935694Z * [new branch] gh/soulitzer/353/orig -> origin/gh/soulitzer/353/orig 2025-07-24T03:47:28.8936180Z * [new branch] gh/soulitzer/358/base -> origin/gh/soulitzer/358/base 2025-07-24T03:47:28.8936676Z * [new branch] gh/soulitzer/358/head -> origin/gh/soulitzer/358/head 2025-07-24T03:47:28.8937160Z * [new branch] gh/soulitzer/358/orig -> origin/gh/soulitzer/358/orig 2025-07-24T03:47:28.8937651Z * [new branch] gh/soulitzer/359/base -> origin/gh/soulitzer/359/base 2025-07-24T03:47:28.8938146Z * [new branch] gh/soulitzer/359/head -> origin/gh/soulitzer/359/head 2025-07-24T03:47:28.8938630Z * [new branch] gh/soulitzer/359/orig -> origin/gh/soulitzer/359/orig 2025-07-24T03:47:28.8939119Z * [new branch] gh/soulitzer/362/base -> origin/gh/soulitzer/362/base 2025-07-24T03:47:28.8939605Z * [new branch] gh/soulitzer/362/head -> origin/gh/soulitzer/362/head 2025-07-24T03:47:28.8940152Z * [new branch] gh/soulitzer/362/orig -> origin/gh/soulitzer/362/orig 2025-07-24T03:47:28.8940688Z * [new branch] gh/soulitzer/372/base -> origin/gh/soulitzer/372/base 2025-07-24T03:47:28.8941186Z * [new branch] gh/soulitzer/372/head -> origin/gh/soulitzer/372/head 2025-07-24T03:47:28.8941677Z * [new branch] gh/soulitzer/372/orig -> origin/gh/soulitzer/372/orig 2025-07-24T03:47:28.8942157Z * [new branch] gh/soulitzer/374/base -> origin/gh/soulitzer/374/base 2025-07-24T03:47:28.8942650Z * [new branch] gh/soulitzer/374/head -> origin/gh/soulitzer/374/head 2025-07-24T03:47:28.8943139Z * [new branch] gh/soulitzer/374/orig -> origin/gh/soulitzer/374/orig 2025-07-24T03:47:28.8943610Z * [new branch] gh/suo/619/base -> origin/gh/suo/619/base 2025-07-24T03:47:28.8944080Z * [new branch] gh/swolchok/728/next -> origin/gh/swolchok/728/next 2025-07-24T03:47:28.8944575Z * [new branch] gh/swolchok/758/base -> origin/gh/swolchok/758/base 2025-07-24T03:47:28.8945063Z * [new branch] gh/swolchok/758/head -> origin/gh/swolchok/758/head 2025-07-24T03:47:28.8945538Z * [new branch] gh/swolchok/758/orig -> origin/gh/swolchok/758/orig 2025-07-24T03:47:28.8946066Z * [new branch] gh/swolchok/767/base -> origin/gh/swolchok/767/base 2025-07-24T03:47:28.8946598Z * [new branch] gh/swolchok/767/head -> origin/gh/swolchok/767/head 2025-07-24T03:47:28.8947077Z * [new branch] gh/swolchok/767/orig -> origin/gh/swolchok/767/orig 2025-07-24T03:47:28.8947563Z * [new branch] gh/swolchok/768/base -> origin/gh/swolchok/768/base 2025-07-24T03:47:28.8948036Z * [new branch] gh/swolchok/768/head -> origin/gh/swolchok/768/head 2025-07-24T03:47:28.8948624Z * [new branch] gh/swolchok/768/orig -> origin/gh/swolchok/768/orig 2025-07-24T03:47:28.9846424Z * [new branch] gh/swolchok/769/base -> origin/gh/swolchok/769/base 2025-07-24T03:47:28.9846966Z * [new branch] gh/swolchok/769/head -> origin/gh/swolchok/769/head 2025-07-24T03:47:28.9847467Z * [new branch] gh/swolchok/769/orig -> origin/gh/swolchok/769/orig 2025-07-24T03:47:28.9847944Z * [new branch] gh/swolchok/771/base -> origin/gh/swolchok/771/base 2025-07-24T03:47:28.9848601Z * [new branch] gh/swolchok/771/head -> origin/gh/swolchok/771/head 2025-07-24T03:47:28.9849135Z * [new branch] gh/swolchok/771/orig -> origin/gh/swolchok/771/orig 2025-07-24T03:47:28.9849617Z * [new branch] gh/swolchok/772/base -> origin/gh/swolchok/772/base 2025-07-24T03:47:28.9850198Z * [new branch] gh/swolchok/772/head -> origin/gh/swolchok/772/head 2025-07-24T03:47:28.9850747Z * [new branch] gh/swolchok/772/orig -> origin/gh/swolchok/772/orig 2025-07-24T03:47:28.9851286Z * [new branch] gh/swolchok/773/base -> origin/gh/swolchok/773/base 2025-07-24T03:47:28.9851768Z * [new branch] gh/swolchok/773/head -> origin/gh/swolchok/773/head 2025-07-24T03:47:28.9852291Z * [new branch] gh/swolchok/773/orig -> origin/gh/swolchok/773/orig 2025-07-24T03:47:28.9852821Z * [new branch] gh/swolchok/775/base -> origin/gh/swolchok/775/base 2025-07-24T03:47:28.9853388Z * [new branch] gh/swolchok/775/head -> origin/gh/swolchok/775/head 2025-07-24T03:47:28.9853879Z * [new branch] gh/swolchok/775/orig -> origin/gh/swolchok/775/orig 2025-07-24T03:47:28.9854408Z * [new branch] gh/swolchok/777/base -> origin/gh/swolchok/777/base 2025-07-24T03:47:28.9854931Z * [new branch] gh/swolchok/777/head -> origin/gh/swolchok/777/head 2025-07-24T03:47:28.9855503Z * [new branch] gh/swolchok/777/orig -> origin/gh/swolchok/777/orig 2025-07-24T03:47:28.9855982Z * [new branch] gh/swolchok/783/base -> origin/gh/swolchok/783/base 2025-07-24T03:47:28.9856468Z * [new branch] gh/swolchok/783/head -> origin/gh/swolchok/783/head 2025-07-24T03:47:28.9856948Z * [new branch] gh/swolchok/783/orig -> origin/gh/swolchok/783/orig 2025-07-24T03:47:28.9857431Z * [new branch] gh/swolchok/784/base -> origin/gh/swolchok/784/base 2025-07-24T03:47:28.9857919Z * [new branch] gh/swolchok/784/head -> origin/gh/swolchok/784/head 2025-07-24T03:47:28.9858395Z * [new branch] gh/swolchok/784/orig -> origin/gh/swolchok/784/orig 2025-07-24T03:47:28.9858879Z * [new branch] gh/swolchok/785/base -> origin/gh/swolchok/785/base 2025-07-24T03:47:28.9859405Z * [new branch] gh/swolchok/785/head -> origin/gh/swolchok/785/head 2025-07-24T03:47:28.9859896Z * [new branch] gh/swolchok/785/orig -> origin/gh/swolchok/785/orig 2025-07-24T03:47:28.9860470Z * [new branch] gh/syed-ahmed/2/base -> origin/gh/syed-ahmed/2/base 2025-07-24T03:47:28.9861000Z * [new branch] gh/syed-ahmed/2/head -> origin/gh/syed-ahmed/2/head 2025-07-24T03:47:28.9861581Z * [new branch] gh/syed-ahmed/2/orig -> origin/gh/syed-ahmed/2/orig 2025-07-24T03:47:28.9862055Z * [new branch] gh/teja-rao/1/base -> origin/gh/teja-rao/1/base 2025-07-24T03:47:28.9862573Z * [new branch] gh/teja-rao/1/head -> origin/gh/teja-rao/1/head 2025-07-24T03:47:28.9863088Z * [new branch] gh/teja-rao/1/orig -> origin/gh/teja-rao/1/orig 2025-07-24T03:47:28.9863638Z * [new branch] gh/teja-rao/2/base -> origin/gh/teja-rao/2/base 2025-07-24T03:47:28.9864263Z * [new branch] gh/teja-rao/2/head -> origin/gh/teja-rao/2/head 2025-07-24T03:47:28.9864871Z * [new branch] gh/teja-rao/2/orig -> origin/gh/teja-rao/2/orig 2025-07-24T03:47:28.9865390Z * [new branch] gh/teja-rao/3/base -> origin/gh/teja-rao/3/base 2025-07-24T03:47:28.9865857Z * [new branch] gh/teja-rao/3/head -> origin/gh/teja-rao/3/head 2025-07-24T03:47:28.9866314Z * [new branch] gh/teja-rao/3/orig -> origin/gh/teja-rao/3/orig 2025-07-24T03:47:28.9866779Z * [new branch] gh/tianyu-l/2/base -> origin/gh/tianyu-l/2/base 2025-07-24T03:47:28.9875149Z * [new branch] gh/tianyu-l/2/head -> origin/gh/tianyu-l/2/head 2025-07-24T03:47:28.9875835Z * [new branch] gh/tianyu-l/2/orig -> origin/gh/tianyu-l/2/orig 2025-07-24T03:47:28.9876368Z * [new branch] gh/tianyu-l/3/base -> origin/gh/tianyu-l/3/base 2025-07-24T03:47:28.9876907Z * [new branch] gh/tianyu-l/3/orig -> origin/gh/tianyu-l/3/orig 2025-07-24T03:47:28.9877483Z * [new branch] gh/tianyu-l/4/base -> origin/gh/tianyu-l/4/base 2025-07-24T03:47:28.9877953Z * [new branch] gh/tianyu-l/4/head -> origin/gh/tianyu-l/4/head 2025-07-24T03:47:28.9878477Z * [new branch] gh/tianyu-l/4/orig -> origin/gh/tianyu-l/4/orig 2025-07-24T03:47:29.0354063Z * [new branch] gh/titaiwangms/1/base -> origin/gh/titaiwangms/1/base 2025-07-24T03:47:29.0354651Z * [new branch] gh/titaiwangms/1/head -> origin/gh/titaiwangms/1/head 2025-07-24T03:47:29.0355170Z * [new branch] gh/titaiwangms/1/orig -> origin/gh/titaiwangms/1/orig 2025-07-24T03:47:29.0355672Z * [new branch] gh/titaiwangms/2/base -> origin/gh/titaiwangms/2/base 2025-07-24T03:47:29.0356188Z * [new branch] gh/titaiwangms/2/head -> origin/gh/titaiwangms/2/head 2025-07-24T03:47:29.0356777Z * [new branch] gh/titaiwangms/2/orig -> origin/gh/titaiwangms/2/orig 2025-07-24T03:47:29.0357340Z * [new branch] gh/titaiwangms/3/base -> origin/gh/titaiwangms/3/base 2025-07-24T03:47:29.0357850Z * [new branch] gh/titaiwangms/3/head -> origin/gh/titaiwangms/3/head 2025-07-24T03:47:29.0358346Z * [new branch] gh/titaiwangms/3/orig -> origin/gh/titaiwangms/3/orig 2025-07-24T03:47:29.0358856Z * [new branch] gh/titaiwangms/4/base -> origin/gh/titaiwangms/4/base 2025-07-24T03:47:29.0359359Z * [new branch] gh/titaiwangms/4/head -> origin/gh/titaiwangms/4/head 2025-07-24T03:47:29.0359870Z * [new branch] gh/titaiwangms/4/orig -> origin/gh/titaiwangms/4/orig 2025-07-24T03:47:29.0360374Z * [new branch] gh/titaiwangms/5/base -> origin/gh/titaiwangms/5/base 2025-07-24T03:47:29.0360873Z * [new branch] gh/titaiwangms/5/head -> origin/gh/titaiwangms/5/head 2025-07-24T03:47:29.0361387Z * [new branch] gh/titaiwangms/5/orig -> origin/gh/titaiwangms/5/orig 2025-07-24T03:47:29.0361883Z * [new branch] gh/titaiwangms/6/base -> origin/gh/titaiwangms/6/base 2025-07-24T03:47:29.0362392Z * [new branch] gh/titaiwangms/6/head -> origin/gh/titaiwangms/6/head 2025-07-24T03:47:29.0362944Z * [new branch] gh/titaiwangms/6/orig -> origin/gh/titaiwangms/6/orig 2025-07-24T03:47:29.0363485Z * [new branch] gh/titaiwangms/7/base -> origin/gh/titaiwangms/7/base 2025-07-24T03:47:29.0363990Z * [new branch] gh/titaiwangms/7/head -> origin/gh/titaiwangms/7/head 2025-07-24T03:47:29.0364483Z * [new branch] gh/titaiwangms/7/orig -> origin/gh/titaiwangms/7/orig 2025-07-24T03:47:29.0364983Z * [new branch] gh/titaiwangms/8/base -> origin/gh/titaiwangms/8/base 2025-07-24T03:47:29.0366156Z * [new branch] gh/titaiwangms/8/head -> origin/gh/titaiwangms/8/head 2025-07-24T03:47:29.0366772Z * [new branch] gh/titaiwangms/8/orig -> origin/gh/titaiwangms/8/orig 2025-07-24T03:47:29.0367256Z * [new branch] gh/v0i0/1/base -> origin/gh/v0i0/1/base 2025-07-24T03:47:29.0367689Z * [new branch] gh/v0i0/1/head -> origin/gh/v0i0/1/head 2025-07-24T03:47:29.0368128Z * [new branch] gh/v0i0/1/orig -> origin/gh/v0i0/1/orig 2025-07-24T03:47:29.0368628Z * [new branch] gh/v0i0/2/base -> origin/gh/v0i0/2/base 2025-07-24T03:47:29.0369124Z * [new branch] gh/v0i0/2/head -> origin/gh/v0i0/2/head 2025-07-24T03:47:29.0369603Z * [new branch] gh/v0i0/2/orig -> origin/gh/v0i0/2/orig 2025-07-24T03:47:29.0370027Z * [new branch] gh/v0i0/3/base -> origin/gh/v0i0/3/base 2025-07-24T03:47:29.0370467Z * [new branch] gh/v0i0/3/head -> origin/gh/v0i0/3/head 2025-07-24T03:47:29.0370892Z * [new branch] gh/v0i0/3/orig -> origin/gh/v0i0/3/orig 2025-07-24T03:47:29.0371343Z * [new branch] gh/vkuzo/1/next -> origin/gh/vkuzo/1/next 2025-07-24T03:47:29.0371802Z * [new branch] gh/vkuzo/10/base -> origin/gh/vkuzo/10/base 2025-07-24T03:47:29.0372259Z * [new branch] gh/vkuzo/10/head -> origin/gh/vkuzo/10/head 2025-07-24T03:47:29.0372715Z * [new branch] gh/vkuzo/10/orig -> origin/gh/vkuzo/10/orig 2025-07-24T03:47:29.0373157Z * [new branch] gh/vkuzo/2/next -> origin/gh/vkuzo/2/next 2025-07-24T03:47:29.0373607Z * [new branch] gh/vkuzo/3/next -> origin/gh/vkuzo/3/next 2025-07-24T03:47:29.0374083Z * [new branch] gh/wanchaol/373/base -> origin/gh/wanchaol/373/base 2025-07-24T03:47:29.0374580Z * [new branch] gh/wanchaol/373/head -> origin/gh/wanchaol/373/head 2025-07-24T03:47:29.0375130Z * [new branch] gh/wanchaol/373/orig -> origin/gh/wanchaol/373/orig 2025-07-24T03:47:29.0375654Z * [new branch] gh/wanchaol/374/base -> origin/gh/wanchaol/374/base 2025-07-24T03:47:29.0376142Z * [new branch] gh/wanchaol/374/head -> origin/gh/wanchaol/374/head 2025-07-24T03:47:29.0376617Z * [new branch] gh/wanchaol/374/orig -> origin/gh/wanchaol/374/orig 2025-07-24T03:47:29.0377100Z * [new branch] gh/wconstab/392/base -> origin/gh/wconstab/392/base 2025-07-24T03:47:29.0377581Z * [new branch] gh/wconstab/392/head -> origin/gh/wconstab/392/head 2025-07-24T03:47:29.0838793Z * [new branch] gh/wconstab/392/orig -> origin/gh/wconstab/392/orig 2025-07-24T03:47:29.0839350Z * [new branch] gh/wconstab/419/base -> origin/gh/wconstab/419/base 2025-07-24T03:47:29.0839924Z * [new branch] gh/wconstab/419/head -> origin/gh/wconstab/419/head 2025-07-24T03:47:29.0840460Z * [new branch] gh/wconstab/419/orig -> origin/gh/wconstab/419/orig 2025-07-24T03:47:29.0840954Z * [new branch] gh/wconstab/420/base -> origin/gh/wconstab/420/base 2025-07-24T03:47:29.0841437Z * [new branch] gh/wconstab/420/head -> origin/gh/wconstab/420/head 2025-07-24T03:47:29.0841937Z * [new branch] gh/wconstab/420/orig -> origin/gh/wconstab/420/orig 2025-07-24T03:47:29.0842415Z * [new branch] gh/wconstab/421/base -> origin/gh/wconstab/421/base 2025-07-24T03:47:29.0842912Z * [new branch] gh/wconstab/421/orig -> origin/gh/wconstab/421/orig 2025-07-24T03:47:29.0843404Z * [new branch] gh/wconstab/422/base -> origin/gh/wconstab/422/base 2025-07-24T03:47:29.0844028Z * [new branch] gh/wconstab/422/head -> origin/gh/wconstab/422/head 2025-07-24T03:47:29.0844622Z * [new branch] gh/wconstab/422/orig -> origin/gh/wconstab/422/orig 2025-07-24T03:47:29.0845100Z * [new branch] gh/wconstab/423/base -> origin/gh/wconstab/423/base 2025-07-24T03:47:29.0845591Z * [new branch] gh/wconstab/423/head -> origin/gh/wconstab/423/head 2025-07-24T03:47:29.0846136Z * [new branch] gh/wconstab/423/orig -> origin/gh/wconstab/423/orig 2025-07-24T03:47:29.0846661Z * [new branch] gh/wconstab/424/base -> origin/gh/wconstab/424/base 2025-07-24T03:47:29.0847146Z * [new branch] gh/wconstab/424/head -> origin/gh/wconstab/424/head 2025-07-24T03:47:29.0847627Z * [new branch] gh/wconstab/424/orig -> origin/gh/wconstab/424/orig 2025-07-24T03:47:29.0848125Z * [new branch] gh/wconstab/425/base -> origin/gh/wconstab/425/base 2025-07-24T03:47:29.0848691Z * [new branch] gh/wconstab/425/head -> origin/gh/wconstab/425/head 2025-07-24T03:47:29.0849171Z * [new branch] gh/wconstab/425/orig -> origin/gh/wconstab/425/orig 2025-07-24T03:47:29.0849664Z * [new branch] gh/wconstab/426/base -> origin/gh/wconstab/426/base 2025-07-24T03:47:29.0850141Z * [new branch] gh/wconstab/426/head -> origin/gh/wconstab/426/head 2025-07-24T03:47:29.0850632Z * [new branch] gh/wconstab/426/orig -> origin/gh/wconstab/426/orig 2025-07-24T03:47:29.0851116Z * [new branch] gh/wconstab/427/base -> origin/gh/wconstab/427/base 2025-07-24T03:47:29.0851596Z * [new branch] gh/wconstab/427/head -> origin/gh/wconstab/427/head 2025-07-24T03:47:29.0852134Z * [new branch] gh/wconstab/427/orig -> origin/gh/wconstab/427/orig 2025-07-24T03:47:29.0852656Z * [new branch] gh/wconstab/428/base -> origin/gh/wconstab/428/base 2025-07-24T03:47:29.0853153Z * [new branch] gh/wconstab/428/head -> origin/gh/wconstab/428/head 2025-07-24T03:47:29.0853631Z * [new branch] gh/wconstab/428/orig -> origin/gh/wconstab/428/orig 2025-07-24T03:47:29.0854119Z * [new branch] gh/wconstab/429/base -> origin/gh/wconstab/429/base 2025-07-24T03:47:29.0854607Z * [new branch] gh/wconstab/429/head -> origin/gh/wconstab/429/head 2025-07-24T03:47:29.0855090Z * [new branch] gh/wconstab/429/orig -> origin/gh/wconstab/429/orig 2025-07-24T03:47:29.0855571Z * [new branch] gh/wconstab/430/base -> origin/gh/wconstab/430/base 2025-07-24T03:47:29.0856045Z * [new branch] gh/wconstab/430/head -> origin/gh/wconstab/430/head 2025-07-24T03:47:29.0856529Z * [new branch] gh/wconstab/430/orig -> origin/gh/wconstab/430/orig 2025-07-24T03:47:29.0857020Z * [new branch] gh/wconstab/431/base -> origin/gh/wconstab/431/base 2025-07-24T03:47:29.0857501Z * [new branch] gh/wconstab/431/head -> origin/gh/wconstab/431/head 2025-07-24T03:47:29.0858028Z * [new branch] gh/wconstab/431/orig -> origin/gh/wconstab/431/orig 2025-07-24T03:47:29.0858559Z * [new branch] gh/weifengpy/27/base -> origin/gh/weifengpy/27/base 2025-07-24T03:47:29.0859059Z * [new branch] gh/weifengpy/27/head -> origin/gh/weifengpy/27/head 2025-07-24T03:47:29.0859551Z * [new branch] gh/weifengpy/27/orig -> origin/gh/weifengpy/27/orig 2025-07-24T03:47:29.0860039Z * [new branch] gh/weifengpy/30/base -> origin/gh/weifengpy/30/base 2025-07-24T03:47:29.0860534Z * [new branch] gh/weifengpy/30/head -> origin/gh/weifengpy/30/head 2025-07-24T03:47:29.0861014Z * [new branch] gh/weifengpy/30/orig -> origin/gh/weifengpy/30/orig 2025-07-24T03:47:29.0861608Z * [new branch] gh/weifengpy/31/base -> origin/gh/weifengpy/31/base 2025-07-24T03:47:29.1305016Z * [new branch] gh/weifengpy/31/head -> origin/gh/weifengpy/31/head 2025-07-24T03:47:29.1305572Z * [new branch] gh/weifengpy/31/orig -> origin/gh/weifengpy/31/orig 2025-07-24T03:47:29.1306083Z * [new branch] gh/weifengpy/32/base -> origin/gh/weifengpy/32/base 2025-07-24T03:47:29.1306572Z * [new branch] gh/weifengpy/32/head -> origin/gh/weifengpy/32/head 2025-07-24T03:47:29.1307074Z * [new branch] gh/weifengpy/32/orig -> origin/gh/weifengpy/32/orig 2025-07-24T03:47:29.1307600Z * [new branch] gh/williamwen42/196/base -> origin/gh/williamwen42/196/base 2025-07-24T03:47:29.1308134Z * [new branch] gh/williamwen42/196/head -> origin/gh/williamwen42/196/head 2025-07-24T03:47:29.1308664Z * [new branch] gh/williamwen42/196/orig -> origin/gh/williamwen42/196/orig 2025-07-24T03:47:29.1309206Z * [new branch] gh/williamwen42/209/base -> origin/gh/williamwen42/209/base 2025-07-24T03:47:29.1309748Z * [new branch] gh/williamwen42/209/head -> origin/gh/williamwen42/209/head 2025-07-24T03:47:29.1310283Z * [new branch] gh/williamwen42/209/orig -> origin/gh/williamwen42/209/orig 2025-07-24T03:47:29.1310803Z * [new branch] gh/williamwen42/241/base -> origin/gh/williamwen42/241/base 2025-07-24T03:47:29.1311332Z * [new branch] gh/williamwen42/241/head -> origin/gh/williamwen42/241/head 2025-07-24T03:47:29.1311848Z * [new branch] gh/williamwen42/241/orig -> origin/gh/williamwen42/241/orig 2025-07-24T03:47:29.1312380Z * [new branch] gh/williamwen42/242/base -> origin/gh/williamwen42/242/base 2025-07-24T03:47:29.1312915Z * [new branch] gh/williamwen42/242/head -> origin/gh/williamwen42/242/head 2025-07-24T03:47:29.1313445Z * [new branch] gh/williamwen42/242/orig -> origin/gh/williamwen42/242/orig 2025-07-24T03:47:29.1313979Z * [new branch] gh/williamwen42/243/base -> origin/gh/williamwen42/243/base 2025-07-24T03:47:29.1314496Z * [new branch] gh/williamwen42/243/head -> origin/gh/williamwen42/243/head 2025-07-24T03:47:29.1315028Z * [new branch] gh/williamwen42/243/orig -> origin/gh/williamwen42/243/orig 2025-07-24T03:47:29.1315556Z * [new branch] gh/williamwen42/244/base -> origin/gh/williamwen42/244/base 2025-07-24T03:47:29.1316075Z * [new branch] gh/williamwen42/244/head -> origin/gh/williamwen42/244/head 2025-07-24T03:47:29.1316600Z * [new branch] gh/williamwen42/244/orig -> origin/gh/williamwen42/244/orig 2025-07-24T03:47:29.1317113Z * [new branch] gh/williamwen42/245/base -> origin/gh/williamwen42/245/base 2025-07-24T03:47:29.1317640Z * [new branch] gh/williamwen42/245/head -> origin/gh/williamwen42/245/head 2025-07-24T03:47:29.1318173Z * [new branch] gh/williamwen42/245/orig -> origin/gh/williamwen42/245/orig 2025-07-24T03:47:29.1318690Z * [new branch] gh/williamwen42/246/base -> origin/gh/williamwen42/246/base 2025-07-24T03:47:29.1319219Z * [new branch] gh/williamwen42/246/head -> origin/gh/williamwen42/246/head 2025-07-24T03:47:29.1319738Z * [new branch] gh/williamwen42/246/orig -> origin/gh/williamwen42/246/orig 2025-07-24T03:47:29.1320270Z * [new branch] gh/williamwen42/250/base -> origin/gh/williamwen42/250/base 2025-07-24T03:47:29.1320800Z * [new branch] gh/williamwen42/250/head -> origin/gh/williamwen42/250/head 2025-07-24T03:47:29.1321324Z * [new branch] gh/williamwen42/250/orig -> origin/gh/williamwen42/250/orig 2025-07-24T03:47:29.1321845Z * [new branch] gh/williamwen42/251/base -> origin/gh/williamwen42/251/base 2025-07-24T03:47:29.1322611Z * [new branch] gh/williamwen42/251/head -> origin/gh/williamwen42/251/head 2025-07-24T03:47:29.1323133Z * [new branch] gh/williamwen42/251/orig -> origin/gh/williamwen42/251/orig 2025-07-24T03:47:29.1323663Z * [new branch] gh/williamwen42/252/base -> origin/gh/williamwen42/252/base 2025-07-24T03:47:29.1324183Z * [new branch] gh/williamwen42/252/head -> origin/gh/williamwen42/252/head 2025-07-24T03:47:29.1324704Z * [new branch] gh/williamwen42/252/orig -> origin/gh/williamwen42/252/orig 2025-07-24T03:47:29.1325232Z * [new branch] gh/williamwen42/253/base -> origin/gh/williamwen42/253/base 2025-07-24T03:47:29.1325749Z * [new branch] gh/williamwen42/253/head -> origin/gh/williamwen42/253/head 2025-07-24T03:47:29.1326280Z * [new branch] gh/williamwen42/253/orig -> origin/gh/williamwen42/253/orig 2025-07-24T03:47:29.1326812Z * [new branch] gh/williamwen42/254/base -> origin/gh/williamwen42/254/base 2025-07-24T03:47:29.1327333Z * [new branch] gh/williamwen42/254/head -> origin/gh/williamwen42/254/head 2025-07-24T03:47:29.1327860Z * [new branch] gh/williamwen42/254/orig -> origin/gh/williamwen42/254/orig 2025-07-24T03:47:29.1328452Z * [new branch] gh/williamwen42/255/base -> origin/gh/williamwen42/255/base 2025-07-24T03:47:29.1786874Z * [new branch] gh/williamwen42/255/head -> origin/gh/williamwen42/255/head 2025-07-24T03:47:29.1787469Z * [new branch] gh/williamwen42/255/orig -> origin/gh/williamwen42/255/orig 2025-07-24T03:47:29.1788035Z * [new branch] gh/williamwen42/256/base -> origin/gh/williamwen42/256/base 2025-07-24T03:47:29.1788563Z * [new branch] gh/williamwen42/256/head -> origin/gh/williamwen42/256/head 2025-07-24T03:47:29.1789080Z * [new branch] gh/williamwen42/256/orig -> origin/gh/williamwen42/256/orig 2025-07-24T03:47:29.1789629Z * [new branch] gh/williamwen42/257/base -> origin/gh/williamwen42/257/base 2025-07-24T03:47:29.1790154Z * [new branch] gh/williamwen42/257/head -> origin/gh/williamwen42/257/head 2025-07-24T03:47:29.1790689Z * [new branch] gh/williamwen42/257/orig -> origin/gh/williamwen42/257/orig 2025-07-24T03:47:29.1791222Z * [new branch] gh/williamwen42/258/base -> origin/gh/williamwen42/258/base 2025-07-24T03:47:29.1791799Z * [new branch] gh/williamwen42/258/head -> origin/gh/williamwen42/258/head 2025-07-24T03:47:29.1792381Z * [new branch] gh/williamwen42/258/orig -> origin/gh/williamwen42/258/orig 2025-07-24T03:47:29.1792904Z * [new branch] gh/williamwen42/259/base -> origin/gh/williamwen42/259/base 2025-07-24T03:47:29.1793430Z * [new branch] gh/williamwen42/259/head -> origin/gh/williamwen42/259/head 2025-07-24T03:47:29.1793956Z * [new branch] gh/williamwen42/259/orig -> origin/gh/williamwen42/259/orig 2025-07-24T03:47:29.1794495Z * [new branch] gh/williamwen42/260/base -> origin/gh/williamwen42/260/base 2025-07-24T03:47:29.1795023Z * [new branch] gh/williamwen42/260/head -> origin/gh/williamwen42/260/head 2025-07-24T03:47:29.1795539Z * [new branch] gh/williamwen42/260/orig -> origin/gh/williamwen42/260/orig 2025-07-24T03:47:29.1796067Z * [new branch] gh/williamwen42/261/base -> origin/gh/williamwen42/261/base 2025-07-24T03:47:29.1796582Z * [new branch] gh/williamwen42/261/head -> origin/gh/williamwen42/261/head 2025-07-24T03:47:29.1797114Z * [new branch] gh/williamwen42/261/orig -> origin/gh/williamwen42/261/orig 2025-07-24T03:47:29.1797690Z * [new branch] gh/williamwen42/262/base -> origin/gh/williamwen42/262/base 2025-07-24T03:47:29.1798381Z * [new branch] gh/williamwen42/262/head -> origin/gh/williamwen42/262/head 2025-07-24T03:47:29.1799005Z * [new branch] gh/williamwen42/262/orig -> origin/gh/williamwen42/262/orig 2025-07-24T03:47:29.1799525Z * [new branch] gh/williamwen42/263/base -> origin/gh/williamwen42/263/base 2025-07-24T03:47:29.1800060Z * [new branch] gh/williamwen42/263/head -> origin/gh/williamwen42/263/head 2025-07-24T03:47:29.1800589Z * [new branch] gh/williamwen42/263/orig -> origin/gh/williamwen42/263/orig 2025-07-24T03:47:29.1801087Z * [new branch] gh/xmfan/169/base -> origin/gh/xmfan/169/base 2025-07-24T03:47:29.1801571Z * [new branch] gh/xmfan/169/head -> origin/gh/xmfan/169/head 2025-07-24T03:47:29.1802029Z * [new branch] gh/xmfan/170/base -> origin/gh/xmfan/170/base 2025-07-24T03:47:29.1802502Z * [new branch] gh/xmfan/170/head -> origin/gh/xmfan/170/head 2025-07-24T03:47:29.1802967Z * [new branch] gh/xmfan/18/base -> origin/gh/xmfan/18/base 2025-07-24T03:47:29.1803420Z * [new branch] gh/xmfan/18/head -> origin/gh/xmfan/18/head 2025-07-24T03:47:29.1803937Z * [new branch] gh/xmfan/223/base -> origin/gh/xmfan/223/base 2025-07-24T03:47:29.1804438Z * [new branch] gh/xmfan/223/head -> origin/gh/xmfan/223/head 2025-07-24T03:47:29.1804920Z * [new branch] gh/xmfan/223/orig -> origin/gh/xmfan/223/orig 2025-07-24T03:47:29.1805370Z * [new branch] gh/xmfan/228/base -> origin/gh/xmfan/228/base 2025-07-24T03:47:29.1805833Z * [new branch] gh/xmfan/228/head -> origin/gh/xmfan/228/head 2025-07-24T03:47:29.1806296Z * [new branch] gh/xmfan/228/orig -> origin/gh/xmfan/228/orig 2025-07-24T03:47:29.1806744Z * [new branch] gh/xmfan/229/base -> origin/gh/xmfan/229/base 2025-07-24T03:47:29.1807207Z * [new branch] gh/xmfan/229/head -> origin/gh/xmfan/229/head 2025-07-24T03:47:29.1807664Z * [new branch] gh/xmfan/229/orig -> origin/gh/xmfan/229/orig 2025-07-24T03:47:29.1808122Z * [new branch] gh/xmfan/230/base -> origin/gh/xmfan/230/base 2025-07-24T03:47:29.1808670Z * [new branch] gh/xmfan/230/head -> origin/gh/xmfan/230/head 2025-07-24T03:47:29.1809134Z * [new branch] gh/xmfan/230/orig -> origin/gh/xmfan/230/orig 2025-07-24T03:47:29.1809592Z * [new branch] gh/xmfan/237/base -> origin/gh/xmfan/237/base 2025-07-24T03:47:29.1810099Z * [new branch] gh/xmfan/237/head -> origin/gh/xmfan/237/head 2025-07-24T03:47:29.2269180Z * [new branch] gh/xmfan/237/orig -> origin/gh/xmfan/237/orig 2025-07-24T03:47:29.2269697Z * [new branch] gh/xmfan/244/base -> origin/gh/xmfan/244/base 2025-07-24T03:47:29.2270181Z * [new branch] gh/xmfan/244/head -> origin/gh/xmfan/244/head 2025-07-24T03:47:29.2270639Z * [new branch] gh/xmfan/244/orig -> origin/gh/xmfan/244/orig 2025-07-24T03:47:29.2271086Z * [new branch] gh/xmfan/246/base -> origin/gh/xmfan/246/base 2025-07-24T03:47:29.2271547Z * [new branch] gh/xmfan/246/head -> origin/gh/xmfan/246/head 2025-07-24T03:47:29.2271999Z * [new branch] gh/xmfan/246/orig -> origin/gh/xmfan/246/orig 2025-07-24T03:47:29.2272459Z * [new branch] gh/xmfan/253/base -> origin/gh/xmfan/253/base 2025-07-24T03:47:29.2272920Z * [new branch] gh/xmfan/253/head -> origin/gh/xmfan/253/head 2025-07-24T03:47:29.2273368Z * [new branch] gh/xmfan/253/orig -> origin/gh/xmfan/253/orig 2025-07-24T03:47:29.2273828Z * [new branch] gh/xmfan/254/base -> origin/gh/xmfan/254/base 2025-07-24T03:47:29.2274499Z * [new branch] gh/xmfan/254/head -> origin/gh/xmfan/254/head 2025-07-24T03:47:29.2274971Z * [new branch] gh/xmfan/254/orig -> origin/gh/xmfan/254/orig 2025-07-24T03:47:29.2275435Z * [new branch] gh/xmfan/260/base -> origin/gh/xmfan/260/base 2025-07-24T03:47:29.2275887Z * [new branch] gh/xmfan/260/head -> origin/gh/xmfan/260/head 2025-07-24T03:47:29.2276350Z * [new branch] gh/xmfan/260/orig -> origin/gh/xmfan/260/orig 2025-07-24T03:47:29.2276805Z * [new branch] gh/xmfan/261/base -> origin/gh/xmfan/261/base 2025-07-24T03:47:29.2277272Z * [new branch] gh/xmfan/261/head -> origin/gh/xmfan/261/head 2025-07-24T03:47:29.2277746Z * [new branch] gh/xmfan/261/orig -> origin/gh/xmfan/261/orig 2025-07-24T03:47:29.2278201Z * [new branch] gh/xmfan/262/base -> origin/gh/xmfan/262/base 2025-07-24T03:47:29.2278665Z * [new branch] gh/xmfan/262/head -> origin/gh/xmfan/262/head 2025-07-24T03:47:29.2279116Z * [new branch] gh/xmfan/262/orig -> origin/gh/xmfan/262/orig 2025-07-24T03:47:29.2279580Z * [new branch] gh/xmfan/263/base -> origin/gh/xmfan/263/base 2025-07-24T03:47:29.2280045Z * [new branch] gh/xmfan/263/head -> origin/gh/xmfan/263/head 2025-07-24T03:47:29.2280505Z * [new branch] gh/xmfan/263/orig -> origin/gh/xmfan/263/orig 2025-07-24T03:47:29.2280964Z * [new branch] gh/xmfan/264/base -> origin/gh/xmfan/264/base 2025-07-24T03:47:29.2281411Z * [new branch] gh/xmfan/264/head -> origin/gh/xmfan/264/head 2025-07-24T03:47:29.2281874Z * [new branch] gh/xmfan/264/orig -> origin/gh/xmfan/264/orig 2025-07-24T03:47:29.2282329Z * [new branch] gh/xmfan/265/base -> origin/gh/xmfan/265/base 2025-07-24T03:47:29.2282795Z * [new branch] gh/xmfan/265/head -> origin/gh/xmfan/265/head 2025-07-24T03:47:29.2283252Z * [new branch] gh/xmfan/265/orig -> origin/gh/xmfan/265/orig 2025-07-24T03:47:29.2283698Z * [new branch] gh/xmfan/266/base -> origin/gh/xmfan/266/base 2025-07-24T03:47:29.2284151Z * [new branch] gh/xmfan/266/head -> origin/gh/xmfan/266/head 2025-07-24T03:47:29.2284601Z * [new branch] gh/xmfan/266/orig -> origin/gh/xmfan/266/orig 2025-07-24T03:47:29.2285057Z * [new branch] gh/xmfan/267/base -> origin/gh/xmfan/267/base 2025-07-24T03:47:29.2285521Z * [new branch] gh/xmfan/267/head -> origin/gh/xmfan/267/head 2025-07-24T03:47:29.2285974Z * [new branch] gh/xmfan/267/orig -> origin/gh/xmfan/267/orig 2025-07-24T03:47:29.2286433Z * [new branch] gh/xmfan/268/base -> origin/gh/xmfan/268/base 2025-07-24T03:47:29.2286890Z * [new branch] gh/xmfan/268/head -> origin/gh/xmfan/268/head 2025-07-24T03:47:29.2287350Z * [new branch] gh/xmfan/268/orig -> origin/gh/xmfan/268/orig 2025-07-24T03:47:29.2287811Z * [new branch] gh/xmfan/269/base -> origin/gh/xmfan/269/base 2025-07-24T03:47:29.2288339Z * [new branch] gh/xmfan/269/head -> origin/gh/xmfan/269/head 2025-07-24T03:47:29.2288813Z * [new branch] gh/xmfan/269/orig -> origin/gh/xmfan/269/orig 2025-07-24T03:47:29.2289304Z * [new branch] gh/xuanzhang816/12/base -> origin/gh/xuanzhang816/12/base 2025-07-24T03:47:29.2289834Z * [new branch] gh/xuanzhang816/12/head -> origin/gh/xuanzhang816/12/head 2025-07-24T03:47:29.2290349Z * [new branch] gh/xuanzhang816/12/orig -> origin/gh/xuanzhang816/12/orig 2025-07-24T03:47:29.2290959Z * [new branch] gh/xuanzhang816/14/base -> origin/gh/xuanzhang816/14/base 2025-07-24T03:47:29.2291568Z * [new branch] gh/xuanzhang816/14/head -> origin/gh/xuanzhang816/14/head 2025-07-24T03:47:29.2766706Z * [new branch] gh/xuanzhang816/14/orig -> origin/gh/xuanzhang816/14/orig 2025-07-24T03:47:29.2767278Z * [new branch] gh/xuanzhang816/17/base -> origin/gh/xuanzhang816/17/base 2025-07-24T03:47:29.2767822Z * [new branch] gh/xuanzhang816/17/head -> origin/gh/xuanzhang816/17/head 2025-07-24T03:47:29.2768400Z * [new branch] gh/xuanzhang816/17/orig -> origin/gh/xuanzhang816/17/orig 2025-07-24T03:47:29.2768920Z * [new branch] gh/xuanzhang816/18/base -> origin/gh/xuanzhang816/18/base 2025-07-24T03:47:29.2769427Z * [new branch] gh/xuanzhang816/18/head -> origin/gh/xuanzhang816/18/head 2025-07-24T03:47:29.2769955Z * [new branch] gh/xuanzhang816/18/orig -> origin/gh/xuanzhang816/18/orig 2025-07-24T03:47:29.2770493Z * [new branch] gh/xuanzhang816/19/base -> origin/gh/xuanzhang816/19/base 2025-07-24T03:47:29.2770998Z * [new branch] gh/xuanzhang816/19/head -> origin/gh/xuanzhang816/19/head 2025-07-24T03:47:29.2771516Z * [new branch] gh/xuanzhang816/19/orig -> origin/gh/xuanzhang816/19/orig 2025-07-24T03:47:29.2772024Z * [new branch] gh/xuanzhang816/20/base -> origin/gh/xuanzhang816/20/base 2025-07-24T03:47:29.2772536Z * [new branch] gh/xuanzhang816/20/head -> origin/gh/xuanzhang816/20/head 2025-07-24T03:47:29.2773058Z * [new branch] gh/xuanzhang816/20/orig -> origin/gh/xuanzhang816/20/orig 2025-07-24T03:47:29.2773560Z * [new branch] gh/xuanzhang816/21/base -> origin/gh/xuanzhang816/21/base 2025-07-24T03:47:29.2774075Z * [new branch] gh/xuanzhang816/21/head -> origin/gh/xuanzhang816/21/head 2025-07-24T03:47:29.2774590Z * [new branch] gh/xuanzhang816/21/orig -> origin/gh/xuanzhang816/21/orig 2025-07-24T03:47:29.2775102Z * [new branch] gh/yanbing-j/11/base -> origin/gh/yanbing-j/11/base 2025-07-24T03:47:29.2775592Z * [new branch] gh/yanbing-j/11/head -> origin/gh/yanbing-j/11/head 2025-07-24T03:47:29.2776068Z * [new branch] gh/yanbing-j/11/orig -> origin/gh/yanbing-j/11/orig 2025-07-24T03:47:29.2776548Z * [new branch] gh/yanbing-j/12/base -> origin/gh/yanbing-j/12/base 2025-07-24T03:47:29.2777021Z * [new branch] gh/yanbing-j/12/head -> origin/gh/yanbing-j/12/head 2025-07-24T03:47:29.2777501Z * [new branch] gh/yanbing-j/12/orig -> origin/gh/yanbing-j/12/orig 2025-07-24T03:47:29.2777982Z * [new branch] gh/yanbing-j/13/base -> origin/gh/yanbing-j/13/base 2025-07-24T03:47:29.2778455Z * [new branch] gh/yanbing-j/13/head -> origin/gh/yanbing-j/13/head 2025-07-24T03:47:29.2778942Z * [new branch] gh/yanbing-j/13/orig -> origin/gh/yanbing-j/13/orig 2025-07-24T03:47:29.2779418Z * [new branch] gh/yanbing-j/14/base -> origin/gh/yanbing-j/14/base 2025-07-24T03:47:29.2779895Z * [new branch] gh/yanbing-j/14/head -> origin/gh/yanbing-j/14/head 2025-07-24T03:47:29.2780368Z * [new branch] gh/yanbing-j/14/orig -> origin/gh/yanbing-j/14/orig 2025-07-24T03:47:29.2780848Z * [new branch] gh/yanbing-j/15/base -> origin/gh/yanbing-j/15/base 2025-07-24T03:47:29.2781334Z * [new branch] gh/yanbing-j/15/head -> origin/gh/yanbing-j/15/head 2025-07-24T03:47:29.2781807Z * [new branch] gh/yanbing-j/15/orig -> origin/gh/yanbing-j/15/orig 2025-07-24T03:47:29.2782292Z * [new branch] gh/yanbing-j/18/base -> origin/gh/yanbing-j/18/base 2025-07-24T03:47:29.2782915Z * [new branch] gh/yanbing-j/18/head -> origin/gh/yanbing-j/18/head 2025-07-24T03:47:29.2783492Z * [new branch] gh/yanbing-j/18/orig -> origin/gh/yanbing-j/18/orig 2025-07-24T03:47:29.2783985Z * [new branch] gh/yanbing-j/19/base -> origin/gh/yanbing-j/19/base 2025-07-24T03:47:29.2784463Z * [new branch] gh/yanbing-j/19/head -> origin/gh/yanbing-j/19/head 2025-07-24T03:47:29.2784956Z * [new branch] gh/yanbing-j/19/orig -> origin/gh/yanbing-j/19/orig 2025-07-24T03:47:29.2785431Z * [new branch] gh/yanbing-j/20/base -> origin/gh/yanbing-j/20/base 2025-07-24T03:47:29.2785915Z * [new branch] gh/yanbing-j/20/head -> origin/gh/yanbing-j/20/head 2025-07-24T03:47:29.2786396Z * [new branch] gh/yanbing-j/20/orig -> origin/gh/yanbing-j/20/orig 2025-07-24T03:47:29.2786866Z * [new branch] gh/yanbing-j/21/base -> origin/gh/yanbing-j/21/base 2025-07-24T03:47:29.2787347Z * [new branch] gh/yanbing-j/21/head -> origin/gh/yanbing-j/21/head 2025-07-24T03:47:29.2787819Z * [new branch] gh/yanbing-j/22/base -> origin/gh/yanbing-j/22/base 2025-07-24T03:47:29.2788299Z * [new branch] gh/yanbing-j/22/head -> origin/gh/yanbing-j/22/head 2025-07-24T03:47:29.2788767Z * [new branch] gh/yanbing-j/22/orig -> origin/gh/yanbing-j/22/orig 2025-07-24T03:47:29.2789246Z * [new branch] gh/yanbing-j/23/base -> origin/gh/yanbing-j/23/base 2025-07-24T03:47:29.3265471Z * [new branch] gh/yanbing-j/23/head -> origin/gh/yanbing-j/23/head 2025-07-24T03:47:29.3266013Z * [new branch] gh/yanbing-j/23/orig -> origin/gh/yanbing-j/23/orig 2025-07-24T03:47:29.3266508Z * [new branch] gh/yanbing-j/24/base -> origin/gh/yanbing-j/24/base 2025-07-24T03:47:29.3266994Z * [new branch] gh/yanbing-j/24/head -> origin/gh/yanbing-j/24/head 2025-07-24T03:47:29.3267491Z * [new branch] gh/yanbing-j/24/orig -> origin/gh/yanbing-j/24/orig 2025-07-24T03:47:29.3267970Z * [new branch] gh/yanbing-j/25/base -> origin/gh/yanbing-j/25/base 2025-07-24T03:47:29.3268444Z * [new branch] gh/yanbing-j/25/head -> origin/gh/yanbing-j/25/head 2025-07-24T03:47:29.3268927Z * [new branch] gh/yanbing-j/25/orig -> origin/gh/yanbing-j/25/orig 2025-07-24T03:47:29.3269395Z * [new branch] gh/yanbing-j/26/base -> origin/gh/yanbing-j/26/base 2025-07-24T03:47:29.3269875Z * [new branch] gh/yanbing-j/26/head -> origin/gh/yanbing-j/26/head 2025-07-24T03:47:29.3270355Z * [new branch] gh/yanbing-j/26/orig -> origin/gh/yanbing-j/26/orig 2025-07-24T03:47:29.3270825Z * [new branch] gh/yanbing-j/34/base -> origin/gh/yanbing-j/34/base 2025-07-24T03:47:29.3271309Z * [new branch] gh/yanbing-j/34/head -> origin/gh/yanbing-j/34/head 2025-07-24T03:47:29.3271789Z * [new branch] gh/yanbing-j/34/orig -> origin/gh/yanbing-j/34/orig 2025-07-24T03:47:29.3272269Z * [new branch] gh/yanbing-j/36/base -> origin/gh/yanbing-j/36/base 2025-07-24T03:47:29.3272759Z * [new branch] gh/yanbing-j/36/head -> origin/gh/yanbing-j/36/head 2025-07-24T03:47:29.3273233Z * [new branch] gh/yanbing-j/36/orig -> origin/gh/yanbing-j/36/orig 2025-07-24T03:47:29.3273710Z * [new branch] gh/yanbing-j/37/base -> origin/gh/yanbing-j/37/base 2025-07-24T03:47:29.3274182Z * [new branch] gh/yanbing-j/37/head -> origin/gh/yanbing-j/37/head 2025-07-24T03:47:29.3274661Z * [new branch] gh/yanbing-j/37/orig -> origin/gh/yanbing-j/37/orig 2025-07-24T03:47:29.3275140Z * [new branch] gh/yanbing-j/38/base -> origin/gh/yanbing-j/38/base 2025-07-24T03:47:29.3275756Z * [new branch] gh/yanbing-j/38/head -> origin/gh/yanbing-j/38/head 2025-07-24T03:47:29.3276347Z * [new branch] gh/yanbing-j/38/orig -> origin/gh/yanbing-j/38/orig 2025-07-24T03:47:29.3276823Z * [new branch] gh/yanbing-j/39/base -> origin/gh/yanbing-j/39/base 2025-07-24T03:47:29.3277310Z * [new branch] gh/yanbing-j/39/head -> origin/gh/yanbing-j/39/head 2025-07-24T03:47:29.3277798Z * [new branch] gh/yanbing-j/39/orig -> origin/gh/yanbing-j/39/orig 2025-07-24T03:47:29.3278267Z * [new branch] gh/ydwu4/233/base -> origin/gh/ydwu4/233/base 2025-07-24T03:47:29.3278737Z * [new branch] gh/ydwu4/233/head -> origin/gh/ydwu4/233/head 2025-07-24T03:47:29.3279195Z * [new branch] gh/ydwu4/233/orig -> origin/gh/ydwu4/233/orig 2025-07-24T03:47:29.3279657Z * [new branch] gh/ydwu4/246/base -> origin/gh/ydwu4/246/base 2025-07-24T03:47:29.3280118Z * [new branch] gh/ydwu4/246/head -> origin/gh/ydwu4/246/head 2025-07-24T03:47:29.3280567Z * [new branch] gh/ydwu4/246/orig -> origin/gh/ydwu4/246/orig 2025-07-24T03:47:29.3281023Z * [new branch] gh/ydwu4/247/base -> origin/gh/ydwu4/247/base 2025-07-24T03:47:29.3281470Z * [new branch] gh/ydwu4/247/head -> origin/gh/ydwu4/247/head 2025-07-24T03:47:29.3281920Z * [new branch] gh/ydwu4/247/orig -> origin/gh/ydwu4/247/orig 2025-07-24T03:47:29.3282376Z * [new branch] gh/ydwu4/253/base -> origin/gh/ydwu4/253/base 2025-07-24T03:47:29.3282822Z * [new branch] gh/ydwu4/253/head -> origin/gh/ydwu4/253/head 2025-07-24T03:47:29.3283278Z * [new branch] gh/ydwu4/253/orig -> origin/gh/ydwu4/253/orig 2025-07-24T03:47:29.3283728Z * [new branch] gh/ydwu4/255/base -> origin/gh/ydwu4/255/base 2025-07-24T03:47:29.3284191Z * [new branch] gh/ydwu4/255/head -> origin/gh/ydwu4/255/head 2025-07-24T03:47:29.3284646Z * [new branch] gh/ydwu4/255/orig -> origin/gh/ydwu4/255/orig 2025-07-24T03:47:29.3285103Z * [new branch] gh/ydwu4/259/base -> origin/gh/ydwu4/259/base 2025-07-24T03:47:29.3285560Z * [new branch] gh/ydwu4/259/head -> origin/gh/ydwu4/259/head 2025-07-24T03:47:29.3286009Z * [new branch] gh/ydwu4/259/orig -> origin/gh/ydwu4/259/orig 2025-07-24T03:47:29.3286465Z * [new branch] gh/ydwu4/261/base -> origin/gh/ydwu4/261/base 2025-07-24T03:47:29.3286910Z * [new branch] gh/ydwu4/261/head -> origin/gh/ydwu4/261/head 2025-07-24T03:47:29.3287364Z * [new branch] gh/ydwu4/261/orig -> origin/gh/ydwu4/261/orig 2025-07-24T03:47:29.3751919Z * [new branch] gh/ydwu4/262/base -> origin/gh/ydwu4/262/base 2025-07-24T03:47:29.3752463Z * [new branch] gh/ydwu4/262/head -> origin/gh/ydwu4/262/head 2025-07-24T03:47:29.3752949Z * [new branch] gh/ydwu4/262/orig -> origin/gh/ydwu4/262/orig 2025-07-24T03:47:29.3753410Z * [new branch] gh/ydwu4/263/base -> origin/gh/ydwu4/263/base 2025-07-24T03:47:29.3753862Z * [new branch] gh/ydwu4/263/head -> origin/gh/ydwu4/263/head 2025-07-24T03:47:29.3754321Z * [new branch] gh/ydwu4/263/orig -> origin/gh/ydwu4/263/orig 2025-07-24T03:47:29.3754773Z * [new branch] gh/ydwu4/264/base -> origin/gh/ydwu4/264/base 2025-07-24T03:47:29.3755232Z * [new branch] gh/ydwu4/264/head -> origin/gh/ydwu4/264/head 2025-07-24T03:47:29.3755684Z * [new branch] gh/ydwu4/264/orig -> origin/gh/ydwu4/264/orig 2025-07-24T03:47:29.3756145Z * [new branch] gh/ydwu4/265/base -> origin/gh/ydwu4/265/base 2025-07-24T03:47:29.3756859Z * [new branch] gh/ydwu4/265/head -> origin/gh/ydwu4/265/head 2025-07-24T03:47:29.3757315Z * [new branch] gh/ydwu4/265/orig -> origin/gh/ydwu4/265/orig 2025-07-24T03:47:29.3757784Z * [new branch] gh/ydwu4/266/base -> origin/gh/ydwu4/266/base 2025-07-24T03:47:29.3758245Z * [new branch] gh/ydwu4/266/head -> origin/gh/ydwu4/266/head 2025-07-24T03:47:29.3758704Z * [new branch] gh/ydwu4/266/orig -> origin/gh/ydwu4/266/orig 2025-07-24T03:47:29.3759170Z * [new branch] gh/ydwu4/267/base -> origin/gh/ydwu4/267/base 2025-07-24T03:47:29.3759627Z * [new branch] gh/ydwu4/267/head -> origin/gh/ydwu4/267/head 2025-07-24T03:47:29.3760083Z * [new branch] gh/ydwu4/267/orig -> origin/gh/ydwu4/267/orig 2025-07-24T03:47:29.3760529Z * [new branch] gh/ydwu4/268/base -> origin/gh/ydwu4/268/base 2025-07-24T03:47:29.3760990Z * [new branch] gh/ydwu4/268/head -> origin/gh/ydwu4/268/head 2025-07-24T03:47:29.3761452Z * [new branch] gh/ydwu4/268/orig -> origin/gh/ydwu4/268/orig 2025-07-24T03:47:29.3761899Z * [new branch] gh/ydwu4/269/base -> origin/gh/ydwu4/269/base 2025-07-24T03:47:29.3762359Z * [new branch] gh/ydwu4/269/head -> origin/gh/ydwu4/269/head 2025-07-24T03:47:29.3762810Z * [new branch] gh/ydwu4/269/orig -> origin/gh/ydwu4/269/orig 2025-07-24T03:47:29.3763264Z * [new branch] gh/ydwu4/270/base -> origin/gh/ydwu4/270/base 2025-07-24T03:47:29.3763717Z * [new branch] gh/ydwu4/270/head -> origin/gh/ydwu4/270/head 2025-07-24T03:47:29.3764171Z * [new branch] gh/ydwu4/270/orig -> origin/gh/ydwu4/270/orig 2025-07-24T03:47:29.3764634Z * [new branch] gh/ydwu4/271/base -> origin/gh/ydwu4/271/base 2025-07-24T03:47:29.3765087Z * [new branch] gh/ydwu4/271/head -> origin/gh/ydwu4/271/head 2025-07-24T03:47:29.3765549Z * [new branch] gh/ydwu4/271/orig -> origin/gh/ydwu4/271/orig 2025-07-24T03:47:29.3766000Z * [new branch] gh/ydwu4/272/base -> origin/gh/ydwu4/272/base 2025-07-24T03:47:29.3766455Z * [new branch] gh/ydwu4/272/head -> origin/gh/ydwu4/272/head 2025-07-24T03:47:29.3766909Z * [new branch] gh/ydwu4/272/orig -> origin/gh/ydwu4/272/orig 2025-07-24T03:47:29.3767356Z * [new branch] gh/ydwu4/273/base -> origin/gh/ydwu4/273/base 2025-07-24T03:47:29.3767816Z * [new branch] gh/ydwu4/273/head -> origin/gh/ydwu4/273/head 2025-07-24T03:47:29.3768336Z * [new branch] gh/ydwu4/273/orig -> origin/gh/ydwu4/273/orig 2025-07-24T03:47:29.3768811Z * [new branch] gh/ydwu4/274/base -> origin/gh/ydwu4/274/base 2025-07-24T03:47:29.3769267Z * [new branch] gh/ydwu4/274/head -> origin/gh/ydwu4/274/head 2025-07-24T03:47:29.3769731Z * [new branch] gh/ydwu4/274/orig -> origin/gh/ydwu4/274/orig 2025-07-24T03:47:29.3770202Z * [new branch] gh/ydwu4/275/base -> origin/gh/ydwu4/275/base 2025-07-24T03:47:29.3770653Z * [new branch] gh/ydwu4/275/head -> origin/gh/ydwu4/275/head 2025-07-24T03:47:29.3771135Z * [new branch] gh/ydwu4/275/orig -> origin/gh/ydwu4/275/orig 2025-07-24T03:47:29.3771584Z * [new branch] gh/ydwu4/276/base -> origin/gh/ydwu4/276/base 2025-07-24T03:47:29.3772035Z * [new branch] gh/ydwu4/276/head -> origin/gh/ydwu4/276/head 2025-07-24T03:47:29.3772492Z * [new branch] gh/ydwu4/276/orig -> origin/gh/ydwu4/276/orig 2025-07-24T03:47:29.3773055Z * [new branch] gh/ydwu4/277/base -> origin/gh/ydwu4/277/base 2025-07-24T03:47:29.3773600Z * [new branch] gh/ydwu4/277/head -> origin/gh/ydwu4/277/head 2025-07-24T03:47:29.3774057Z * [new branch] gh/ydwu4/277/orig -> origin/gh/ydwu4/277/orig 2025-07-24T03:47:29.4246243Z * [new branch] gh/ydwu4/278/base -> origin/gh/ydwu4/278/base 2025-07-24T03:47:29.4246746Z * [new branch] gh/ydwu4/278/head -> origin/gh/ydwu4/278/head 2025-07-24T03:47:29.4247204Z * [new branch] gh/ydwu4/278/orig -> origin/gh/ydwu4/278/orig 2025-07-24T03:47:29.4247671Z * [new branch] gh/ydwu4/279/base -> origin/gh/ydwu4/279/base 2025-07-24T03:47:29.4248116Z * [new branch] gh/ydwu4/279/head -> origin/gh/ydwu4/279/head 2025-07-24T03:47:29.4248623Z * [new branch] gh/ydwu4/279/orig -> origin/gh/ydwu4/279/orig 2025-07-24T03:47:29.4249089Z * [new branch] gh/ydwu4/280/base -> origin/gh/ydwu4/280/base 2025-07-24T03:47:29.4249546Z * [new branch] gh/ydwu4/280/head -> origin/gh/ydwu4/280/head 2025-07-24T03:47:29.4249997Z * [new branch] gh/ydwu4/280/orig -> origin/gh/ydwu4/280/orig 2025-07-24T03:47:29.4250453Z * [new branch] gh/ydwu4/281/base -> origin/gh/ydwu4/281/base 2025-07-24T03:47:29.4250915Z * [new branch] gh/ydwu4/281/head -> origin/gh/ydwu4/281/head 2025-07-24T03:47:29.4251361Z * [new branch] gh/ydwu4/281/orig -> origin/gh/ydwu4/281/orig 2025-07-24T03:47:29.4251814Z * [new branch] gh/ydwu4/282/base -> origin/gh/ydwu4/282/base 2025-07-24T03:47:29.4252266Z * [new branch] gh/ydwu4/282/head -> origin/gh/ydwu4/282/head 2025-07-24T03:47:29.4252711Z * [new branch] gh/ydwu4/282/orig -> origin/gh/ydwu4/282/orig 2025-07-24T03:47:29.4253168Z * [new branch] gh/ydwu4/283/base -> origin/gh/ydwu4/283/base 2025-07-24T03:47:29.4253638Z * [new branch] gh/ydwu4/283/head -> origin/gh/ydwu4/283/head 2025-07-24T03:47:29.4254086Z * [new branch] gh/ydwu4/283/orig -> origin/gh/ydwu4/283/orig 2025-07-24T03:47:29.4254539Z * [new branch] gh/ydwu4/284/base -> origin/gh/ydwu4/284/base 2025-07-24T03:47:29.4254985Z * [new branch] gh/ydwu4/284/head -> origin/gh/ydwu4/284/head 2025-07-24T03:47:29.4255445Z * [new branch] gh/ydwu4/284/orig -> origin/gh/ydwu4/284/orig 2025-07-24T03:47:29.4255895Z * [new branch] gh/ydwu4/285/base -> origin/gh/ydwu4/285/base 2025-07-24T03:47:29.4256347Z * [new branch] gh/ydwu4/285/head -> origin/gh/ydwu4/285/head 2025-07-24T03:47:29.4256805Z * [new branch] gh/ydwu4/285/orig -> origin/gh/ydwu4/285/orig 2025-07-24T03:47:29.4257259Z * [new branch] gh/ydwu4/286/base -> origin/gh/ydwu4/286/base 2025-07-24T03:47:29.4257717Z * [new branch] gh/ydwu4/286/head -> origin/gh/ydwu4/286/head 2025-07-24T03:47:29.4258164Z * [new branch] gh/ydwu4/286/orig -> origin/gh/ydwu4/286/orig 2025-07-24T03:47:29.4258616Z * [new branch] gh/ydwu4/287/base -> origin/gh/ydwu4/287/base 2025-07-24T03:47:29.4259068Z * [new branch] gh/ydwu4/287/head -> origin/gh/ydwu4/287/head 2025-07-24T03:47:29.4259517Z * [new branch] gh/ydwu4/287/orig -> origin/gh/ydwu4/287/orig 2025-07-24T03:47:29.4259973Z * [new branch] gh/ydwu4/288/base -> origin/gh/ydwu4/288/base 2025-07-24T03:47:29.4260425Z * [new branch] gh/ydwu4/288/head -> origin/gh/ydwu4/288/head 2025-07-24T03:47:29.4260887Z * [new branch] gh/ydwu4/288/orig -> origin/gh/ydwu4/288/orig 2025-07-24T03:47:29.4261579Z * [new branch] gh/ydwu4/289/base -> origin/gh/ydwu4/289/base 2025-07-24T03:47:29.4262029Z * [new branch] gh/ydwu4/289/head -> origin/gh/ydwu4/289/head 2025-07-24T03:47:29.4262493Z * [new branch] gh/ydwu4/289/orig -> origin/gh/ydwu4/289/orig 2025-07-24T03:47:29.4262949Z * [new branch] gh/ydwu4/290/base -> origin/gh/ydwu4/290/base 2025-07-24T03:47:29.4263407Z * [new branch] gh/ydwu4/290/head -> origin/gh/ydwu4/290/head 2025-07-24T03:47:29.4263858Z * [new branch] gh/ydwu4/290/orig -> origin/gh/ydwu4/290/orig 2025-07-24T03:47:29.4264323Z * [new branch] gh/ydwu4/291/base -> origin/gh/ydwu4/291/base 2025-07-24T03:47:29.4264781Z * [new branch] gh/ydwu4/291/head -> origin/gh/ydwu4/291/head 2025-07-24T03:47:29.4265228Z * [new branch] gh/ydwu4/291/orig -> origin/gh/ydwu4/291/orig 2025-07-24T03:47:29.4265689Z * [new branch] gh/ydwu4/292/base -> origin/gh/ydwu4/292/base 2025-07-24T03:47:29.4266143Z * [new branch] gh/ydwu4/292/head -> origin/gh/ydwu4/292/head 2025-07-24T03:47:29.4266595Z * [new branch] gh/ydwu4/292/orig -> origin/gh/ydwu4/292/orig 2025-07-24T03:47:29.4267049Z * [new branch] gh/ydwu4/293/base -> origin/gh/ydwu4/293/base 2025-07-24T03:47:29.4267498Z * [new branch] gh/ydwu4/293/head -> origin/gh/ydwu4/293/head 2025-07-24T03:47:29.4267951Z * [new branch] gh/ydwu4/293/orig -> origin/gh/ydwu4/293/orig 2025-07-24T03:47:29.4268401Z * [new branch] gh/ydwu4/294/base -> origin/gh/ydwu4/294/base 2025-07-24T03:47:29.4737847Z * [new branch] gh/ydwu4/294/head -> origin/gh/ydwu4/294/head 2025-07-24T03:47:29.4738355Z * [new branch] gh/ydwu4/294/orig -> origin/gh/ydwu4/294/orig 2025-07-24T03:47:29.4738860Z * [new branch] gh/ydwu4/295/base -> origin/gh/ydwu4/295/base 2025-07-24T03:47:29.4739324Z * [new branch] gh/ydwu4/295/head -> origin/gh/ydwu4/295/head 2025-07-24T03:47:29.4739771Z * [new branch] gh/ydwu4/295/orig -> origin/gh/ydwu4/295/orig 2025-07-24T03:47:29.4740239Z * [new branch] gh/ydwu4/296/base -> origin/gh/ydwu4/296/base 2025-07-24T03:47:29.4740692Z * [new branch] gh/ydwu4/296/head -> origin/gh/ydwu4/296/head 2025-07-24T03:47:29.4741142Z * [new branch] gh/ydwu4/296/orig -> origin/gh/ydwu4/296/orig 2025-07-24T03:47:29.4741596Z * [new branch] gh/yf225/133/base -> origin/gh/yf225/133/base 2025-07-24T03:47:29.4742046Z * [new branch] gh/yf225/133/head -> origin/gh/yf225/133/head 2025-07-24T03:47:29.4742497Z * [new branch] gh/yf225/171/base -> origin/gh/yf225/171/base 2025-07-24T03:47:29.4742963Z * [new branch] gh/yf225/171/head -> origin/gh/yf225/171/head 2025-07-24T03:47:29.4743404Z * [new branch] gh/yf225/171/orig -> origin/gh/yf225/171/orig 2025-07-24T03:47:29.4743849Z * [new branch] gh/yf225/172/base -> origin/gh/yf225/172/base 2025-07-24T03:47:29.4744291Z * [new branch] gh/yf225/172/head -> origin/gh/yf225/172/head 2025-07-24T03:47:29.4744739Z * [new branch] gh/yf225/172/orig -> origin/gh/yf225/172/orig 2025-07-24T03:47:29.4745183Z * [new branch] gh/yf225/93/base -> origin/gh/yf225/93/base 2025-07-24T03:47:29.4745635Z * [new branch] gh/yf225/93/head -> origin/gh/yf225/93/head 2025-07-24T03:47:29.4746112Z * [new branch] gh/yifuwang/152/base -> origin/gh/yifuwang/152/base 2025-07-24T03:47:29.4746739Z * [new branch] gh/yifuwang/152/head -> origin/gh/yifuwang/152/head 2025-07-24T03:47:29.4747321Z * [new branch] gh/yifuwang/152/orig -> origin/gh/yifuwang/152/orig 2025-07-24T03:47:29.4747830Z * [new branch] gh/yifuwang/195/base -> origin/gh/yifuwang/195/base 2025-07-24T03:47:29.4748309Z * [new branch] gh/yifuwang/195/head -> origin/gh/yifuwang/195/head 2025-07-24T03:47:29.4748800Z * [new branch] gh/yifuwang/195/orig -> origin/gh/yifuwang/195/orig 2025-07-24T03:47:29.4749279Z * [new branch] gh/yiming0416/1/base -> origin/gh/yiming0416/1/base 2025-07-24T03:47:29.4749768Z * [new branch] gh/yiming0416/1/head -> origin/gh/yiming0416/1/head 2025-07-24T03:47:29.4750245Z * [new branch] gh/yiming0416/2/base -> origin/gh/yiming0416/2/base 2025-07-24T03:47:29.4750738Z * [new branch] gh/yiming0416/2/head -> origin/gh/yiming0416/2/head 2025-07-24T03:47:29.4751223Z * [new branch] gh/ysiraichi/79/base -> origin/gh/ysiraichi/79/base 2025-07-24T03:47:29.4751707Z * [new branch] gh/ysiraichi/79/head -> origin/gh/ysiraichi/79/head 2025-07-24T03:47:29.4752198Z * [new branch] gh/ysiraichi/79/orig -> origin/gh/ysiraichi/79/orig 2025-07-24T03:47:29.4752685Z * [new branch] gh/ysiraichi/80/base -> origin/gh/ysiraichi/80/base 2025-07-24T03:47:29.4753181Z * [new branch] gh/ysiraichi/80/head -> origin/gh/ysiraichi/80/head 2025-07-24T03:47:29.4753679Z * [new branch] gh/ysiraichi/80/orig -> origin/gh/ysiraichi/80/orig 2025-07-24T03:47:29.4754163Z * [new branch] gh/ysiraichi/81/base -> origin/gh/ysiraichi/81/base 2025-07-24T03:47:29.4754650Z * [new branch] gh/ysiraichi/81/head -> origin/gh/ysiraichi/81/head 2025-07-24T03:47:29.4755129Z * [new branch] gh/ysiraichi/81/orig -> origin/gh/ysiraichi/81/orig 2025-07-24T03:47:29.4755629Z * [new branch] gh/ysiraichi/84/base -> origin/gh/ysiraichi/84/base 2025-07-24T03:47:29.4756113Z * [new branch] gh/ysiraichi/84/head -> origin/gh/ysiraichi/84/head 2025-07-24T03:47:29.4756588Z * [new branch] gh/ysiraichi/84/orig -> origin/gh/ysiraichi/84/orig 2025-07-24T03:47:29.4757076Z * [new branch] gh/ysiraichi/85/base -> origin/gh/ysiraichi/85/base 2025-07-24T03:47:29.4757559Z * [new branch] gh/ysiraichi/85/head -> origin/gh/ysiraichi/85/head 2025-07-24T03:47:29.4758050Z * [new branch] gh/ysiraichi/85/orig -> origin/gh/ysiraichi/85/orig 2025-07-24T03:47:29.4758528Z * [new branch] gh/ysiraichi/86/base -> origin/gh/ysiraichi/86/base 2025-07-24T03:47:29.4759023Z * [new branch] gh/ysiraichi/86/head -> origin/gh/ysiraichi/86/head 2025-07-24T03:47:29.4759512Z * [new branch] gh/ysiraichi/86/orig -> origin/gh/ysiraichi/86/orig 2025-07-24T03:47:29.4760007Z * [new branch] gh/ysiraichi/87/base -> origin/gh/ysiraichi/87/base 2025-07-24T03:47:29.5237630Z * [new branch] gh/ysiraichi/87/head -> origin/gh/ysiraichi/87/head 2025-07-24T03:47:29.5238182Z * [new branch] gh/ysiraichi/87/orig -> origin/gh/ysiraichi/87/orig 2025-07-24T03:47:29.5238725Z * [new branch] gh/ysiraichi/88/base -> origin/gh/ysiraichi/88/base 2025-07-24T03:47:29.5239265Z * [new branch] gh/ysiraichi/88/head -> origin/gh/ysiraichi/88/head 2025-07-24T03:47:29.5239746Z * [new branch] gh/ysiraichi/88/orig -> origin/gh/ysiraichi/88/orig 2025-07-24T03:47:29.5240240Z * [new branch] gh/yuguo68/1/base -> origin/gh/yuguo68/1/base 2025-07-24T03:47:29.5240712Z * [new branch] gh/yuguo68/1/head -> origin/gh/yuguo68/1/head 2025-07-24T03:47:29.5241320Z * [new branch] gh/yuguo68/1/orig -> origin/gh/yuguo68/1/orig 2025-07-24T03:47:29.5241874Z * [new branch] gh/yuguo68/2/base -> origin/gh/yuguo68/2/base 2025-07-24T03:47:29.5242322Z * [new branch] gh/yuguo68/2/head -> origin/gh/yuguo68/2/head 2025-07-24T03:47:29.5242784Z * [new branch] gh/yuguo68/2/orig -> origin/gh/yuguo68/2/orig 2025-07-24T03:47:29.5243257Z * [new branch] gh/zhuhaozhe/28/base -> origin/gh/zhuhaozhe/28/base 2025-07-24T03:47:29.5243737Z * [new branch] gh/zhuhaozhe/28/head -> origin/gh/zhuhaozhe/28/head 2025-07-24T03:47:29.5244227Z * [new branch] gh/zhuhaozhe/28/orig -> origin/gh/zhuhaozhe/28/orig 2025-07-24T03:47:29.5244754Z * [new branch] gh/zhuhaozhe/29/base -> origin/gh/zhuhaozhe/29/base 2025-07-24T03:47:29.5245286Z * [new branch] gh/zhuhaozhe/29/head -> origin/gh/zhuhaozhe/29/head 2025-07-24T03:47:29.5245769Z * [new branch] gh/zhuhaozhe/29/orig -> origin/gh/zhuhaozhe/29/orig 2025-07-24T03:47:29.5246259Z * [new branch] gh/zhuhaozhe/31/base -> origin/gh/zhuhaozhe/31/base 2025-07-24T03:47:29.5246748Z * [new branch] gh/zhuhaozhe/31/head -> origin/gh/zhuhaozhe/31/head 2025-07-24T03:47:29.5247225Z * [new branch] gh/zhuhaozhe/31/orig -> origin/gh/zhuhaozhe/31/orig 2025-07-24T03:47:29.5247711Z * [new branch] gh/zhuhaozhe/32/base -> origin/gh/zhuhaozhe/32/base 2025-07-24T03:47:29.5248186Z * [new branch] gh/zhuhaozhe/32/head -> origin/gh/zhuhaozhe/32/head 2025-07-24T03:47:29.5248765Z * [new branch] gh/zhuhaozhe/32/orig -> origin/gh/zhuhaozhe/32/orig 2025-07-24T03:47:29.5249249Z * [new branch] gh/zhuhaozhe/33/base -> origin/gh/zhuhaozhe/33/base 2025-07-24T03:47:29.5249731Z * [new branch] gh/zhuhaozhe/33/head -> origin/gh/zhuhaozhe/33/head 2025-07-24T03:47:29.5250238Z * [new branch] gh/zhuhaozhe/33/orig -> origin/gh/zhuhaozhe/33/orig 2025-07-24T03:47:29.5250759Z * [new branch] gh/zhxchen17/25/base -> origin/gh/zhxchen17/25/base 2025-07-24T03:47:29.5251250Z * [new branch] gh/zhxchen17/25/head -> origin/gh/zhxchen17/25/head 2025-07-24T03:47:29.5251789Z * [new branch] gh/zhxchen17/25/orig -> origin/gh/zhxchen17/25/orig 2025-07-24T03:47:29.5252266Z * [new branch] gh/zhxchen17/26/base -> origin/gh/zhxchen17/26/base 2025-07-24T03:47:29.5252753Z * [new branch] gh/zhxchen17/26/head -> origin/gh/zhxchen17/26/head 2025-07-24T03:47:29.5253229Z * [new branch] gh/zhxchen17/26/orig -> origin/gh/zhxchen17/26/orig 2025-07-24T03:47:29.5253710Z * [new branch] gh/zhxchen17/27/base -> origin/gh/zhxchen17/27/base 2025-07-24T03:47:29.5254196Z * [new branch] gh/zhxchen17/27/head -> origin/gh/zhxchen17/27/head 2025-07-24T03:47:29.5254672Z * [new branch] gh/zhxchen17/27/orig -> origin/gh/zhxchen17/27/orig 2025-07-24T03:47:29.5255153Z * [new branch] gh/zhxchen17/28/base -> origin/gh/zhxchen17/28/base 2025-07-24T03:47:29.5255630Z * [new branch] gh/zhxchen17/28/head -> origin/gh/zhxchen17/28/head 2025-07-24T03:47:29.5256108Z * [new branch] gh/zhxchen17/28/orig -> origin/gh/zhxchen17/28/orig 2025-07-24T03:47:29.5256582Z * [new branch] gh/zhxchen17/29/base -> origin/gh/zhxchen17/29/base 2025-07-24T03:47:29.5257114Z * [new branch] gh/zhxchen17/29/head -> origin/gh/zhxchen17/29/head 2025-07-24T03:47:29.5257640Z * [new branch] gh/zhxchen17/29/orig -> origin/gh/zhxchen17/29/orig 2025-07-24T03:47:29.5258112Z * [new branch] gh/zhxchen17/30/base -> origin/gh/zhxchen17/30/base 2025-07-24T03:47:29.5258686Z * [new branch] gh/zhxchen17/30/head -> origin/gh/zhxchen17/30/head 2025-07-24T03:47:29.5259791Z * [new branch] gh/zhxchen17/30/orig -> origin/gh/zhxchen17/30/orig 2025-07-24T03:47:29.5260280Z * [new branch] gh/zhxchen17/31/base -> origin/gh/zhxchen17/31/base 2025-07-24T03:47:29.5260761Z * [new branch] gh/zhxchen17/31/head -> origin/gh/zhxchen17/31/head 2025-07-24T03:47:29.5261237Z * [new branch] gh/zhxchen17/31/orig -> origin/gh/zhxchen17/31/orig 2025-07-24T03:47:29.5738387Z * [new branch] gh/zhxchen17/32/base -> origin/gh/zhxchen17/32/base 2025-07-24T03:47:29.5738914Z * [new branch] gh/zhxchen17/32/head -> origin/gh/zhxchen17/32/head 2025-07-24T03:47:29.5739394Z * [new branch] gh/zhxchen17/32/orig -> origin/gh/zhxchen17/32/orig 2025-07-24T03:47:29.5739875Z * [new branch] gh/zhxchen17/33/base -> origin/gh/zhxchen17/33/base 2025-07-24T03:47:29.5740372Z * [new branch] gh/zhxchen17/33/head -> origin/gh/zhxchen17/33/head 2025-07-24T03:47:29.5740851Z * [new branch] gh/zhxchen17/33/orig -> origin/gh/zhxchen17/33/orig 2025-07-24T03:47:29.5741327Z * [new branch] gh/zklaus/1/base -> origin/gh/zklaus/1/base 2025-07-24T03:47:29.5741781Z * [new branch] gh/zklaus/1/head -> origin/gh/zklaus/1/head 2025-07-24T03:47:29.5742235Z * [new branch] gh/zklaus/1/orig -> origin/gh/zklaus/1/orig 2025-07-24T03:47:29.5742689Z * [new branch] gh/zklaus/10/base -> origin/gh/zklaus/10/base 2025-07-24T03:47:29.5743152Z * [new branch] gh/zklaus/10/head -> origin/gh/zklaus/10/head 2025-07-24T03:47:29.5743605Z * [new branch] gh/zklaus/10/orig -> origin/gh/zklaus/10/orig 2025-07-24T03:47:29.5744068Z * [new branch] gh/zklaus/11/base -> origin/gh/zklaus/11/base 2025-07-24T03:47:29.5744535Z * [new branch] gh/zklaus/11/head -> origin/gh/zklaus/11/head 2025-07-24T03:47:29.5744991Z * [new branch] gh/zklaus/11/orig -> origin/gh/zklaus/11/orig 2025-07-24T03:47:29.5745446Z * [new branch] gh/zklaus/12/base -> origin/gh/zklaus/12/base 2025-07-24T03:47:29.5745900Z * [new branch] gh/zklaus/12/head -> origin/gh/zklaus/12/head 2025-07-24T03:47:29.5746358Z * [new branch] gh/zklaus/12/orig -> origin/gh/zklaus/12/orig 2025-07-24T03:47:29.5746826Z * [new branch] gh/zklaus/13/base -> origin/gh/zklaus/13/base 2025-07-24T03:47:29.5747279Z * [new branch] gh/zklaus/13/head -> origin/gh/zklaus/13/head 2025-07-24T03:47:29.5747743Z * [new branch] gh/zklaus/13/orig -> origin/gh/zklaus/13/orig 2025-07-24T03:47:29.5748191Z * [new branch] gh/zklaus/14/base -> origin/gh/zklaus/14/base 2025-07-24T03:47:29.5748658Z * [new branch] gh/zklaus/14/head -> origin/gh/zklaus/14/head 2025-07-24T03:47:29.5749125Z * [new branch] gh/zklaus/14/orig -> origin/gh/zklaus/14/orig 2025-07-24T03:47:29.5749583Z * [new branch] gh/zklaus/15/base -> origin/gh/zklaus/15/base 2025-07-24T03:47:29.5750049Z * [new branch] gh/zklaus/15/head -> origin/gh/zklaus/15/head 2025-07-24T03:47:29.5750497Z * [new branch] gh/zklaus/15/orig -> origin/gh/zklaus/15/orig 2025-07-24T03:47:29.5750957Z * [new branch] gh/zklaus/16/base -> origin/gh/zklaus/16/base 2025-07-24T03:47:29.5751408Z * [new branch] gh/zklaus/16/head -> origin/gh/zklaus/16/head 2025-07-24T03:47:29.5751869Z * [new branch] gh/zklaus/16/orig -> origin/gh/zklaus/16/orig 2025-07-24T03:47:29.5752462Z * [new branch] gh/zklaus/17/base -> origin/gh/zklaus/17/base 2025-07-24T03:47:29.5753012Z * [new branch] gh/zklaus/17/head -> origin/gh/zklaus/17/head 2025-07-24T03:47:29.5753479Z * [new branch] gh/zklaus/17/orig -> origin/gh/zklaus/17/orig 2025-07-24T03:47:29.5753932Z * [new branch] gh/zklaus/18/base -> origin/gh/zklaus/18/base 2025-07-24T03:47:29.5754400Z * [new branch] gh/zklaus/18/head -> origin/gh/zklaus/18/head 2025-07-24T03:47:29.5754871Z * [new branch] gh/zklaus/18/orig -> origin/gh/zklaus/18/orig 2025-07-24T03:47:29.5755333Z * [new branch] gh/zklaus/2/base -> origin/gh/zklaus/2/base 2025-07-24T03:47:29.5755789Z * [new branch] gh/zklaus/2/head -> origin/gh/zklaus/2/head 2025-07-24T03:47:29.5756236Z * [new branch] gh/zklaus/2/orig -> origin/gh/zklaus/2/orig 2025-07-24T03:47:29.5756694Z * [new branch] gh/zklaus/4/base -> origin/gh/zklaus/4/base 2025-07-24T03:47:29.5757143Z * [new branch] gh/zklaus/4/head -> origin/gh/zklaus/4/head 2025-07-24T03:47:29.5757598Z * [new branch] gh/zklaus/4/orig -> origin/gh/zklaus/4/orig 2025-07-24T03:47:29.5758051Z * [new branch] gh/zklaus/7/base -> origin/gh/zklaus/7/base 2025-07-24T03:47:29.5758494Z * [new branch] gh/zklaus/7/head -> origin/gh/zklaus/7/head 2025-07-24T03:47:29.5758964Z * [new branch] gh/zklaus/7/orig -> origin/gh/zklaus/7/orig 2025-07-24T03:47:29.5759404Z * [new branch] gh/zklaus/8/base -> origin/gh/zklaus/8/base 2025-07-24T03:47:29.5759852Z * [new branch] gh/zklaus/8/head -> origin/gh/zklaus/8/head 2025-07-24T03:47:29.5760304Z * [new branch] gh/zklaus/8/orig -> origin/gh/zklaus/8/orig 2025-07-24T03:47:29.6264610Z * [new branch] gh/zklaus/9/base -> origin/gh/zklaus/9/base 2025-07-24T03:47:29.6265138Z * [new branch] gh/zklaus/9/head -> origin/gh/zklaus/9/head 2025-07-24T03:47:29.6265595Z * [new branch] gh/zklaus/9/orig -> origin/gh/zklaus/9/orig 2025-07-24T03:47:29.6266070Z * [new branch] gh/zou3519/1162/base -> origin/gh/zou3519/1162/base 2025-07-24T03:47:29.6266553Z * [new branch] gh/zou3519/1162/head -> origin/gh/zou3519/1162/head 2025-07-24T03:47:29.6267028Z * [new branch] gh/zou3519/1162/orig -> origin/gh/zou3519/1162/orig 2025-07-24T03:47:29.6267507Z * [new branch] gh/zou3519/1175/base -> origin/gh/zou3519/1175/base 2025-07-24T03:47:29.6267968Z * [new branch] gh/zou3519/1175/head -> origin/gh/zou3519/1175/head 2025-07-24T03:47:29.6268455Z * [new branch] gh/zou3519/1175/orig -> origin/gh/zou3519/1175/orig 2025-07-24T03:47:29.6268931Z * [new branch] gh/zou3519/1177/base -> origin/gh/zou3519/1177/base 2025-07-24T03:47:29.6269398Z * [new branch] gh/zou3519/1177/head -> origin/gh/zou3519/1177/head 2025-07-24T03:47:29.6269865Z * [new branch] gh/zou3519/1177/orig -> origin/gh/zou3519/1177/orig 2025-07-24T03:47:29.6270326Z * [new branch] gh/zou3519/1178/base -> origin/gh/zou3519/1178/base 2025-07-24T03:47:29.6270803Z * [new branch] gh/zou3519/1178/head -> origin/gh/zou3519/1178/head 2025-07-24T03:47:29.6271346Z * [new branch] gh/zou3519/1178/orig -> origin/gh/zou3519/1178/orig 2025-07-24T03:47:29.6271860Z * [new branch] gh/zou3519/1179/base -> origin/gh/zou3519/1179/base 2025-07-24T03:47:29.6272332Z * [new branch] gh/zou3519/1179/head -> origin/gh/zou3519/1179/head 2025-07-24T03:47:29.6272798Z * [new branch] gh/zou3519/1179/orig -> origin/gh/zou3519/1179/orig 2025-07-24T03:47:29.6274103Z * [new branch] gh/zou3519/1180/base -> origin/gh/zou3519/1180/base 2025-07-24T03:47:29.6274589Z * [new branch] gh/zou3519/1180/head -> origin/gh/zou3519/1180/head 2025-07-24T03:47:29.6275068Z * [new branch] gh/zou3519/1180/orig -> origin/gh/zou3519/1180/orig 2025-07-24T03:47:29.6275547Z * [new branch] gh/zou3519/1181/base -> origin/gh/zou3519/1181/base 2025-07-24T03:47:29.6276012Z * [new branch] gh/zou3519/1181/head -> origin/gh/zou3519/1181/head 2025-07-24T03:47:29.6276484Z * [new branch] gh/zou3519/1181/orig -> origin/gh/zou3519/1181/orig 2025-07-24T03:47:29.6276950Z * [new branch] gh/zou3519/1182/base -> origin/gh/zou3519/1182/base 2025-07-24T03:47:29.6277416Z * [new branch] gh/zou3519/1182/head -> origin/gh/zou3519/1182/head 2025-07-24T03:47:29.6277894Z * [new branch] gh/zou3519/1182/orig -> origin/gh/zou3519/1182/orig 2025-07-24T03:47:29.6278361Z * [new branch] gh/zou3519/1183/base -> origin/gh/zou3519/1183/base 2025-07-24T03:47:29.6278836Z * [new branch] gh/zou3519/1183/head -> origin/gh/zou3519/1183/head 2025-07-24T03:47:29.6279310Z * [new branch] gh/zou3519/1183/orig -> origin/gh/zou3519/1183/orig 2025-07-24T03:47:29.6279771Z * [new branch] gh/zou3519/1184/base -> origin/gh/zou3519/1184/base 2025-07-24T03:47:29.6280240Z * [new branch] gh/zou3519/1184/head -> origin/gh/zou3519/1184/head 2025-07-24T03:47:29.6280702Z * [new branch] gh/zou3519/1184/orig -> origin/gh/zou3519/1184/orig 2025-07-24T03:47:29.6281172Z * [new branch] gh/zou3519/1185/base -> origin/gh/zou3519/1185/base 2025-07-24T03:47:29.6281638Z * [new branch] gh/zou3519/1185/head -> origin/gh/zou3519/1185/head 2025-07-24T03:47:29.6282117Z * [new branch] gh/zou3519/1185/orig -> origin/gh/zou3519/1185/orig 2025-07-24T03:47:29.6282595Z * [new branch] gh/zou3519/1186/base -> origin/gh/zou3519/1186/base 2025-07-24T03:47:29.6283057Z * [new branch] gh/zou3519/1186/head -> origin/gh/zou3519/1186/head 2025-07-24T03:47:29.6283523Z * [new branch] gh/zou3519/1186/orig -> origin/gh/zou3519/1186/orig 2025-07-24T03:47:29.6283984Z * [new branch] gh/zou3519/1187/base -> origin/gh/zou3519/1187/base 2025-07-24T03:47:29.6284457Z * [new branch] gh/zou3519/1187/head -> origin/gh/zou3519/1187/head 2025-07-24T03:47:29.6284925Z * [new branch] gh/zou3519/1187/orig -> origin/gh/zou3519/1187/orig 2025-07-24T03:47:29.6285389Z * [new branch] gh/zou3519/916/base -> origin/gh/zou3519/916/base 2025-07-24T03:47:29.6285865Z * [new branch] gh/zou3519/916/head -> origin/gh/zou3519/916/head 2025-07-24T03:47:29.6286337Z * [new branch] gh/zpcore/1/base -> origin/gh/zpcore/1/base 2025-07-24T03:47:29.6286802Z * [new branch] gh/zpcore/1/head -> origin/gh/zpcore/1/head 2025-07-24T03:47:29.6287262Z * [new branch] gh/zpcore/2/base -> origin/gh/zpcore/2/base 2025-07-24T03:47:29.6751121Z * [new branch] gh/zpcore/2/head -> origin/gh/zpcore/2/head 2025-07-24T03:47:29.6751652Z * [new branch] gh/zpcore/3/base -> origin/gh/zpcore/3/base 2025-07-24T03:47:29.6752128Z * [new branch] gh/zpcore/3/head -> origin/gh/zpcore/3/head 2025-07-24T03:47:29.6752579Z * [new branch] gh/zpcore/4/base -> origin/gh/zpcore/4/base 2025-07-24T03:47:29.6753035Z * [new branch] gh/zpcore/4/head -> origin/gh/zpcore/4/head 2025-07-24T03:47:29.6753485Z * [new branch] gh/zpcore/5/base -> origin/gh/zpcore/5/base 2025-07-24T03:47:29.6754315Z * [new branch] gh/zpcore/5/head -> origin/gh/zpcore/5/head 2025-07-24T03:47:29.6754770Z * [new branch] gh/zpcore/6/base -> origin/gh/zpcore/6/base 2025-07-24T03:47:29.6755225Z * [new branch] gh/zpcore/6/head -> origin/gh/zpcore/6/head 2025-07-24T03:47:29.6755696Z * [new branch] gh/zpcore/7/base -> origin/gh/zpcore/7/base 2025-07-24T03:47:29.6756144Z * [new branch] gh/zpcore/7/head -> origin/gh/zpcore/7/head 2025-07-24T03:47:29.6756600Z * [new branch] google-main -> origin/google-main 2025-07-24T03:47:29.6757087Z * [new branch] guangyey/external_stream -> origin/guangyey/external_stream 2025-07-24T03:47:29.6757615Z * [new branch] guangyey/host_alloc -> origin/guangyey/host_alloc 2025-07-24T03:47:29.6758097Z * [new branch] guangyey/test_2025 -> origin/guangyey/test_2025 2025-07-24T03:47:29.6758551Z * [new branch] guard_system -> origin/guard_system 2025-07-24T03:47:29.6759181Z * [new branch] guilhermeleobas/cherry-pick-55d87d9dfd9 -> origin/guilhermeleobas/cherry-pick-55d87d9dfd9 2025-07-24T03:47:29.6759856Z * [new branch] hameerabbasi/issue-114398 -> origin/hameerabbasi/issue-114398 2025-07-24T03:47:29.6760415Z * [new branch] haozhe/bf16-dynamic-shape -> origin/haozhe/bf16-dynamic-shape 2025-07-24T03:47:29.6760912Z * [new branch] hc_baseline -> origin/hc_baseline 2025-07-24T03:47:29.6761342Z * [new branch] hhh_decomp_mul -> origin/hhh_decomp_mul 2025-07-24T03:47:29.6761774Z * [new branch] hhh_rand -> origin/hhh_rand 2025-07-24T03:47:29.6762189Z * [new branch] hoy/mmsplitk -> origin/hoy/mmsplitk 2025-07-24T03:47:29.6762653Z * [new branch] hoy/triton-PR3973 -> origin/hoy/triton-PR3973 2025-07-24T03:47:29.6763219Z * [new branch] hoy/triton-coalescing-baseline -> origin/hoy/triton-coalescing-baseline 2025-07-24T03:47:29.6763832Z * [new branch] hoy/triton-coalescing-min -> origin/hoy/triton-coalescing-min 2025-07-24T03:47:29.6764400Z * [new branch] hoy/triton-coalescing-new -> origin/hoy/triton-coalescing-new 2025-07-24T03:47:29.6764957Z * [new branch] hoy/triton-coalescing-vec -> origin/hoy/triton-coalescing-vec 2025-07-24T03:47:29.6765493Z * [new branch] inductordecompfix -> origin/inductordecompfix 2025-07-24T03:47:29.6765936Z * [new branch] inline -> origin/inline 2025-07-24T03:47:29.6766355Z * [new branch] inlining -> origin/inlining 2025-07-24T03:47:29.6766802Z * [new branch] inlining-ezyang -> origin/inlining-ezyang 2025-07-24T03:47:29.6767246Z * [new branch] int8_sdpa -> origin/int8_sdpa 2025-07-24T03:47:29.6767698Z * [new branch] invoke-subgraph -> origin/invoke-subgraph 2025-07-24T03:47:29.6768135Z * [new branch] issue#58739 -> origin/issue#58739 2025-07-24T03:47:29.6768665Z * [new branch] issue-154849 -> origin/issue-154849 2025-07-24T03:47:29.6769205Z * [new branch] ivanov/cherry-pick-ckpt-fixes -> origin/ivanov/cherry-pick-ckpt-fixes 2025-07-24T03:47:29.6769883Z * [new branch] jcaip/test-cusparselt-version-0.6.2 -> origin/jcaip/test-cusparselt-version-0.6.2 2025-07-24T03:47:29.6770584Z * [new branch] jcaip/update-cusparselt-0.6.2 -> origin/jcaip/update-cusparselt-0.6.2 2025-07-24T03:47:29.6771178Z * [new branch] jithunnair-amd-patch-1 -> origin/jithunnair-amd-patch-1 2025-07-24T03:47:29.6771897Z * [new branch] justinchu/attention-tests -> origin/justinchu/attention-tests 2025-07-24T03:47:29.6772723Z * [new branch] justinchu/native-qdq -> origin/justinchu/native-qdq 2025-07-24T03:47:29.6773234Z * [new branch] justinchuby/opset-20 -> origin/justinchuby/opset-20 2025-07-24T03:47:29.6773828Z * [new branch] leslie/enable_poc_reduction_fusion -> origin/leslie/enable_poc_reduction_fusion 2025-07-24T03:47:29.6774469Z * [new branch] leslie/test_group_gemm_epilogues -> origin/leslie/test_group_gemm_epilogues 2025-07-24T03:47:29.6775110Z * [new branch] lessw2020/fix_cutlass_cache_error -> origin/lessw2020/fix_cutlass_cache_error 2025-07-24T03:47:29.7185764Z * [new branch] liaoxuan/shm_all_reduce -> origin/liaoxuan/shm_all_reduce 2025-07-24T03:47:29.7186317Z * [new branch] liaoxuan/tags_issue -> origin/liaoxuan/tags_issue 2025-07-24T03:47:29.7186881Z * [new branch] liaoxuan/test_fa_disable_softmax -> origin/liaoxuan/test_fa_disable_softmax 2025-07-24T03:47:29.7187570Z * [new branch] liaoxuan/test_int8_sdpa -> origin/liaoxuan/test_int8_sdpa 2025-07-24T03:47:29.7188116Z * [new branch] lintbuilddocker -> origin/lintbuilddocker 2025-07-24T03:47:29.7188566Z * [new branch] local_map -> origin/local_map 2025-07-24T03:47:29.7188981Z * [new branch] logdetfix -> origin/logdetfix 2025-07-24T03:47:29.7189413Z * [new branch] lts/release/1.8 -> origin/lts/release/1.8 2025-07-24T03:47:29.7189897Z * [new branch] lucaskabela/fix_157452 -> origin/lucaskabela/fix_157452 2025-07-24T03:47:29.7190508Z * [new branch] lucaskabela/fix_circular_import_158120 -> origin/lucaskabela/fix_circular_import_158120 2025-07-24T03:47:29.7191158Z * [new branch] lucaskabela/func_under_decomp -> origin/lucaskabela/func_under_decomp 2025-07-24T03:47:29.7191773Z * [new branch] lucaskabela/functional_in_dynamo -> origin/lucaskabela/functional_in_dynamo 2025-07-24T03:47:29.7192471Z * [new branch] lucaskabela/install_params_as_graph_attr -> origin/lucaskabela/install_params_as_graph_attr 2025-07-24T03:47:29.7193185Z * [new branch] lucaskabela/parameters_as_graph_attr -> origin/lucaskabela/parameters_as_graph_attr 2025-07-24T03:47:29.7193915Z * [new branch] lucaskabela/remove_aot_dispatcher_metadata -> origin/lucaskabela/remove_aot_dispatcher_metadata 2025-07-24T03:47:29.7194578Z * [new branch] lucaskabela/typing-misc -> origin/lucaskabela/typing-misc 2025-07-24T03:47:29.7195280Z * [new branch] lucaskabela/typing_bytecode_analysis_transform -> origin/lucaskabela/typing_bytecode_analysis_transform 2025-07-24T03:47:29.7196005Z * [new branch] lucaskabela/typing_cache_files -> origin/lucaskabela/typing_cache_files 2025-07-24T03:47:29.7196642Z * [new branch] lucaskabela/typing_debug_utils.py -> origin/lucaskabela/typing_debug_utils.py 2025-07-24T03:47:29.7197260Z * [new branch] lucaskabela/typing_decorators -> origin/lucaskabela/typing_decorators 2025-07-24T03:47:29.7197853Z * [new branch] lucaskabela/typing_eval_frame -> origin/lucaskabela/typing_eval_frame 2025-07-24T03:47:29.7198448Z * [new branch] lucaskabela/typing_for_codegen -> origin/lucaskabela/typing_for_codegen 2025-07-24T03:47:29.7199047Z * [new branch] lucaskabela/typing_side_effects -> origin/lucaskabela/typing_side_effects 2025-07-24T03:47:29.7199665Z * [new branch] lucaskabela/typing_source_guard -> origin/lucaskabela/typing_source_guard 2025-07-24T03:47:29.7200264Z * [new branch] lucaskabela/typing_trace_rules -> origin/lucaskabela/typing_trace_rules 2025-07-24T03:47:29.7201066Z * [new branch] m54qxk-codex/update-default-size_hint-fallback-value -> origin/m54qxk-codex/update-default-size_hint-fallback-value 2025-07-24T03:47:29.7202083Z * [new branch] main -> origin/main 2025-07-24T03:47:29.7202515Z * [new branch] malfet-patch-10 -> origin/malfet-patch-10 2025-07-24T03:47:29.7202988Z * [new branch] malfet-patch-11 -> origin/malfet-patch-11 2025-07-24T03:47:29.7203455Z * [new branch] malfet-patch-12 -> origin/malfet-patch-12 2025-07-24T03:47:29.7203932Z * [new branch] malfet-patch-13 -> origin/malfet-patch-13 2025-07-24T03:47:29.7204400Z * [new branch] malfet-patch-14 -> origin/malfet-patch-14 2025-07-24T03:47:29.7204851Z * [new branch] malfet-patch-15 -> origin/malfet-patch-15 2025-07-24T03:47:29.7205317Z * [new branch] malfet-patch-16 -> origin/malfet-patch-16 2025-07-24T03:47:29.7205770Z * [new branch] malfet-patch-2 -> origin/malfet-patch-2 2025-07-24T03:47:29.7206232Z * [new branch] malfet-patch-21 -> origin/malfet-patch-21 2025-07-24T03:47:29.7206684Z * [new branch] malfet-patch-23 -> origin/malfet-patch-23 2025-07-24T03:47:29.7207145Z * [new branch] malfet-patch-3 -> origin/malfet-patch-3 2025-07-24T03:47:29.7207596Z * [new branch] malfet-patch-4 -> origin/malfet-patch-4 2025-07-24T03:47:29.7208031Z * [new branch] malfet-patch-8 -> origin/malfet-patch-8 2025-07-24T03:47:29.7208563Z * [new branch] malfet-patch-9 -> origin/malfet-patch-9 2025-07-24T03:47:29.7209071Z * [new branch] malfet/delete-upsteam-cuda -> origin/malfet/delete-upsteam-cuda 2025-07-24T03:47:29.7209666Z * [new branch] malfet/mps-implement-col2im -> origin/malfet/mps-implement-col2im 2025-07-24T03:47:29.8121563Z * [new branch] manuel/fix_multidim_boolean_indexing -> origin/manuel/fix_multidim_boolean_indexing 2025-07-24T03:47:29.8122260Z * [new branch] manuel/np_empty_ellipsis -> origin/manuel/np_empty_ellipsis 2025-07-24T03:47:29.8122786Z * [new branch] metascroy-patch-1 -> origin/metascroy-patch-1 2025-07-24T03:47:29.8123280Z * [new branch] mlazos/S429861-debug -> origin/mlazos/S429861-debug 2025-07-24T03:47:29.8123744Z * [new branch] mlazos/aa -> origin/mlazos/aa 2025-07-24T03:47:29.8124234Z * [new branch] mlazos/backup-test-branch -> origin/mlazos/backup-test-branch 2025-07-24T03:47:29.8124766Z * [new branch] mlazos/bad-cudagraphs -> origin/mlazos/bad-cudagraphs 2025-07-24T03:47:29.8125258Z * [new branch] mlazos/baseline -> origin/mlazos/baseline 2025-07-24T03:47:29.8125788Z * [new branch] mlazos/baseline-graph-breaks -> origin/mlazos/baseline-graph-breaks 2025-07-24T03:47:29.8126349Z * [new branch] mlazos/beta-tensor -> origin/mlazos/beta-tensor 2025-07-24T03:47:29.8126870Z * [new branch] mlazos/buffers -> origin/mlazos/buffers 2025-07-24T03:47:29.8127361Z * [new branch] mlazos/buffers2 -> origin/mlazos/buffers2 2025-07-24T03:47:29.8127861Z * [new branch] mlazos/buffers3 -> origin/mlazos/buffers3 2025-07-24T03:47:29.8128347Z * [new branch] mlazos/ck2 -> origin/mlazos/ck2 2025-07-24T03:47:29.8128810Z * [new branch] mlazos/combokernels -> origin/mlazos/combokernels 2025-07-24T03:47:29.8129318Z * [new branch] mlazos/ctx-cleanup -> origin/mlazos/ctx-cleanup 2025-07-24T03:47:29.8129821Z * [new branch] mlazos/cudagraph-tests -> origin/mlazos/cudagraph-tests 2025-07-24T03:47:29.8130400Z * [new branch] mlazos/cudagraphs-measurement -> origin/mlazos/cudagraphs-measurement 2025-07-24T03:47:29.8131122Z * [new branch] mlazos/cutlass-test -> origin/mlazos/cutlass-test 2025-07-24T03:47:29.8131755Z * [new branch] mlazos/cutlass-topo-bug -> origin/mlazos/cutlass-topo-bug 2025-07-24T03:47:29.8132277Z * [new branch] mlazos/data-gather -> origin/mlazos/data-gather 2025-07-24T03:47:29.8132753Z * [new branch] mlazos/data-ptrs2 -> origin/mlazos/data-ptrs2 2025-07-24T03:47:29.8133274Z * [new branch] mlazos/data-ptrs3 -> origin/mlazos/data-ptrs3 2025-07-24T03:47:29.8133809Z * [new branch] mlazos/dataclass-proxy -> origin/mlazos/dataclass-proxy 2025-07-24T03:47:29.8134388Z * [new branch] mlazos/disable-closures -> origin/mlazos/disable-closures 2025-07-24T03:47:29.8134895Z * [new branch] mlazos/disable-tf -> origin/mlazos/disable-tf 2025-07-24T03:47:29.8135376Z * [new branch] mlazos/disabled-opt -> origin/mlazos/disabled-opt 2025-07-24T03:47:29.8135867Z * [new branch] mlazos/dyn-batch -> origin/mlazos/dyn-batch 2025-07-24T03:47:29.8136303Z * [new branch] mlazos/evt -> origin/mlazos/evt 2025-07-24T03:47:29.8136748Z * [new branch] mlazos/exp_disable -> origin/mlazos/exp_disable 2025-07-24T03:47:29.8137236Z * [new branch] mlazos/foreach-op -> origin/mlazos/foreach-op 2025-07-24T03:47:29.8137716Z * [new branch] mlazos/foreach-reds -> origin/mlazos/foreach-reds 2025-07-24T03:47:29.8138172Z * [new branch] mlazos/fp8 -> origin/mlazos/fp8 2025-07-24T03:47:29.8138605Z * [new branch] mlazos/fp8-bias -> origin/mlazos/fp8-bias 2025-07-24T03:47:29.8139096Z * [new branch] mlazos/fp8-bias-fusion -> origin/mlazos/fp8-bias-fusion 2025-07-24T03:47:29.8139583Z * [new branch] mlazos/freezing -> origin/mlazos/freezing 2025-07-24T03:47:29.8140125Z * [new branch] mlazos/gen-foreach -> origin/mlazos/gen-foreach 2025-07-24T03:47:29.8140627Z * [new branch] mlazos/h-comp -> origin/mlazos/h-comp 2025-07-24T03:47:29.8141117Z * [new branch] mlazos/h-comp2 -> origin/mlazos/h-comp2 2025-07-24T03:47:29.8141543Z * [new branch] mlazos/hc -> origin/mlazos/hc 2025-07-24T03:47:29.8141990Z * [new branch] mlazos/hc-cycles -> origin/mlazos/hc-cycles 2025-07-24T03:47:29.8142441Z * [new branch] mlazos/hc-fixes -> origin/mlazos/hc-fixes 2025-07-24T03:47:29.8142893Z * [new branch] mlazos/hc-fixes3 -> origin/mlazos/hc-fixes3 2025-07-24T03:47:29.8143341Z * [new branch] mlazos/hc-fixes4 -> origin/mlazos/hc-fixes4 2025-07-24T03:47:29.8143779Z * [new branch] mlazos/hc-hf -> origin/mlazos/hc-hf 2025-07-24T03:47:29.8144212Z * [new branch] mlazos/hc-mut -> origin/mlazos/hc-mut 2025-07-24T03:47:29.8144637Z * [new branch] mlazos/hc10 -> origin/mlazos/hc10 2025-07-24T03:47:29.8145054Z * [new branch] mlazos/hc11 -> origin/mlazos/hc11 2025-07-24T03:47:29.8607601Z * [new branch] mlazos/hc12 -> origin/mlazos/hc12 2025-07-24T03:47:29.8608083Z * [new branch] mlazos/hc13 -> origin/mlazos/hc13 2025-07-24T03:47:29.8608590Z * [new branch] mlazos/hc14 -> origin/mlazos/hc14 2025-07-24T03:47:29.8609009Z * [new branch] mlazos/hc15 -> origin/mlazos/hc15 2025-07-24T03:47:29.8609436Z * [new branch] mlazos/hc2 -> origin/mlazos/hc2 2025-07-24T03:47:29.8609850Z * [new branch] mlazos/hc4 -> origin/mlazos/hc4 2025-07-24T03:47:29.8610428Z * [new branch] mlazos/hc5 -> origin/mlazos/hc5 2025-07-24T03:47:29.8610951Z * [new branch] mlazos/hc6 -> origin/mlazos/hc6 2025-07-24T03:47:29.8611357Z * [new branch] mlazos/hc7 -> origin/mlazos/hc7 2025-07-24T03:47:29.8611761Z * [new branch] mlazos/hc8 -> origin/mlazos/hc8 2025-07-24T03:47:29.8612166Z * [new branch] mlazos/hc9 -> origin/mlazos/hc9 2025-07-24T03:47:29.8612612Z * [new branch] mlazos/hc_baseline2 -> origin/mlazos/hc_baseline2 2025-07-24T03:47:29.8613106Z * [new branch] mlazos/hop-modes -> origin/mlazos/hop-modes 2025-07-24T03:47:29.8613604Z * [new branch] mlazos/init-per-param -> origin/mlazos/init-per-param 2025-07-24T03:47:29.8614104Z * [new branch] mlazos/init_per_param -> origin/mlazos/init_per_param 2025-07-24T03:47:29.8614602Z * [new branch] mlazos/less-guards -> origin/mlazos/less-guards 2025-07-24T03:47:29.8615112Z * [new branch] mlazos/lr-composibility -> origin/mlazos/lr-composibility 2025-07-24T03:47:29.8615591Z * [new branch] mlazos/main -> origin/mlazos/main 2025-07-24T03:47:29.8616093Z * [new branch] mlazos/main-test-enablement -> origin/mlazos/main-test-enablement 2025-07-24T03:47:29.8616590Z * [new branch] mlazos/main2 -> origin/mlazos/main2 2025-07-24T03:47:29.8617019Z * [new branch] mlazos/mcg -> origin/mlazos/mcg 2025-07-24T03:47:29.8617503Z * [new branch] mlazos/mcg2 -> origin/mlazos/mcg2 2025-07-24T03:47:29.8618005Z * [new branch] mlazos/meta-guards -> origin/mlazos/meta-guards 2025-07-24T03:47:29.8618482Z * [new branch] mlazos/mlazos/ck2 -> origin/mlazos/mlazos/ck2 2025-07-24T03:47:29.8619044Z * [new branch] mlazos/mlazos/foreach-map-adam -> origin/mlazos/mlazos/foreach-map-adam 2025-07-24T03:47:29.8619654Z * [new branch] mlazos/mlazos/tf-mode-backup -> origin/mlazos/mlazos/tf-mode-backup 2025-07-24T03:47:29.8620163Z * [new branch] mlazos/mod-fix -> origin/mlazos/mod-fix 2025-07-24T03:47:29.8620612Z * [new branch] mlazos/mode-fix -> origin/mlazos/mode-fix 2025-07-24T03:47:29.8621068Z * [new branch] mlazos/more-tests -> origin/mlazos/more-tests 2025-07-24T03:47:29.8621544Z * [new branch] mlazos/nested-dc -> origin/mlazos/nested-dc 2025-07-24T03:47:29.8621999Z * [new branch] mlazos/no-cpp -> origin/mlazos/no-cpp 2025-07-24T03:47:29.8622519Z * [new branch] mlazos/no-init-group-handling -> origin/mlazos/no-init-group-handling 2025-07-24T03:47:29.8623087Z * [new branch] mlazos/op-investigation -> origin/mlazos/op-investigation 2025-07-24T03:47:29.8623653Z * [new branch] mlazos/opt-bench-exp2 -> origin/mlazos/opt-bench-exp2 2025-07-24T03:47:29.8624198Z * [new branch] mlazos/opt-bench3 -> origin/mlazos/opt-bench3 2025-07-24T03:47:29.8624703Z * [new branch] mlazos/opt-incr -> origin/mlazos/opt-incr 2025-07-24T03:47:29.8625213Z * [new branch] mlazos/opt-slowdown -> origin/mlazos/opt-slowdown 2025-07-24T03:47:29.8625745Z * [new branch] mlazos/proxy-ctors -> origin/mlazos/proxy-ctors 2025-07-24T03:47:29.8626256Z * [new branch] mlazos/proxy-opt -> origin/mlazos/proxy-opt 2025-07-24T03:47:29.8626776Z * [new branch] mlazos/rm-buf-names -> origin/mlazos/rm-buf-names 2025-07-24T03:47:29.8627280Z * [new branch] mlazos/rm-spam -> origin/mlazos/rm-spam 2025-07-24T03:47:29.8627757Z * [new branch] mlazos/rtp -> origin/mlazos/rtp 2025-07-24T03:47:29.8628347Z * [new branch] mlazos/sdpa-driss -> origin/mlazos/sdpa-driss 2025-07-24T03:47:29.8629048Z * [new branch] mlazos/static-idx-dbg -> origin/mlazos/static-idx-dbg 2025-07-24T03:47:29.8629626Z * [new branch] mlazos/static-inputs-log -> origin/mlazos/static-inputs-log 2025-07-24T03:47:29.8630185Z * [new branch] mlazos/sub-param-fix -> origin/mlazos/sub-param-fix 2025-07-24T03:47:29.8630708Z * [new branch] mlazos/td-fix2 -> origin/mlazos/td-fix2 2025-07-24T03:47:29.8631237Z * [new branch] mlazos/tensor-hasattr2 -> origin/mlazos/tensor-hasattr2 2025-07-24T03:47:29.8631753Z * [new branch] mlazos/test -> origin/mlazos/test 2025-07-24T03:47:29.9091080Z * [new branch] mlazos/tf-mode -> origin/mlazos/tf-mode 2025-07-24T03:47:29.9091635Z * [new branch] mlazos/tf-mode-backup2 -> origin/mlazos/tf-mode-backup2 2025-07-24T03:47:29.9092173Z * [new branch] mlazos/tf-mode-reland -> origin/mlazos/tf-mode-reland 2025-07-24T03:47:29.9092684Z * [new branch] mlazos/tf-mode-reland2 -> origin/mlazos/tf-mode-reland2 2025-07-24T03:47:29.9093190Z * [new branch] mlazos/tf-mode-reland3 -> origin/mlazos/tf-mode-reland3 2025-07-24T03:47:29.9093680Z * [new branch] mlazos/topo-fix -> origin/mlazos/topo-fix 2025-07-24T03:47:29.9094170Z * [new branch] mlazos/triton-no-epi -> origin/mlazos/triton-no-epi 2025-07-24T03:47:29.9094702Z * [new branch] mlazos/tune-proto -> origin/mlazos/tune-proto 2025-07-24T03:47:29.9095234Z * [new branch] mlazos/tuple-fixes -> origin/mlazos/tuple-fixes 2025-07-24T03:47:29.9095770Z * [new branch] mlazos/tuple-fixes2 -> origin/mlazos/tuple-fixes2 2025-07-24T03:47:29.9096320Z * [new branch] mlazos/tuple-handling -> origin/mlazos/tuple-handling 2025-07-24T03:47:29.9096864Z * [new branch] mlazos/vary-beta -> origin/mlazos/vary-beta 2025-07-24T03:47:29.9097381Z * [new branch] mlazos/vary-beta2 -> origin/mlazos/vary-beta2 2025-07-24T03:47:29.9097902Z * [new branch] mlazos/weird-perf1 -> origin/mlazos/weird-perf1 2025-07-24T03:47:29.9098441Z * [new branch] move-theme-out-docker -> origin/move-theme-out-docker 2025-07-24T03:47:29.9098974Z * [new branch] mps-linear-1d -> origin/mps-linear-1d 2025-07-24T03:47:29.9099479Z * [new branch] msaroufim/acc -> origin/msaroufim/acc 2025-07-24T03:47:29.9099955Z * [new branch] msaroufim/be1 -> origin/msaroufim/be1 2025-07-24T03:47:29.9100493Z * [new branch] msaroufim/ck_custom_op -> origin/msaroufim/ck_custom_op 2025-07-24T03:47:29.9100983Z * [new branch] msaroufim/cn_path -> origin/msaroufim/cn_path 2025-07-24T03:47:29.9101500Z * [new branch] msaroufim/compile_kernel -> origin/msaroufim/compile_kernel 2025-07-24T03:47:29.9102057Z * [new branch] msaroufim/dtensorfusedadam -> origin/msaroufim/dtensorfusedadam 2025-07-24T03:47:29.9102589Z * [new branch] msaroufim/gencode -> origin/msaroufim/gencode 2025-07-24T03:47:29.9103057Z * [new branch] msaroufim/reduce -> origin/msaroufim/reduce 2025-07-24T03:47:29.9103621Z * [new branch] msaroufim/simplify_nvrtc_discovery -> origin/msaroufim/simplify_nvrtc_discovery 2025-07-24T03:47:29.9104193Z * [new branch] mtia/basic-cmake -> origin/mtia/basic-cmake 2025-07-24T03:47:29.9104621Z * [new branch] mul_op -> origin/mul_op 2025-07-24T03:47:29.9105057Z * [new branch] ngimel/cat_perf -> origin/ngimel/cat_perf 2025-07-24T03:47:29.9105682Z * [new branch] ngimel/cudamoduleload -> origin/ngimel/cudamoduleload 2025-07-24T03:47:29.9106433Z * [new branch] ngimel/deterministic_scatter -> origin/ngimel/deterministic_scatter 2025-07-24T03:47:29.9115054Z * [new branch] ngimel/gg_new -> origin/ngimel/gg_new 2025-07-24T03:47:29.9115618Z * [new branch] ngimel/index_None -> origin/ngimel/index_None 2025-07-24T03:47:29.9116194Z * [new branch] ngimel/mempool_emptycache -> origin/ngimel/mempool_emptycache 2025-07-24T03:47:29.9116729Z * [new branch] nightly -> origin/nightly 2025-07-24T03:47:29.9117249Z * [new branch] nmacchioni-patch-1 -> origin/nmacchioni-patch-1 2025-07-24T03:47:29.9117812Z * [new branch] nmacchioni-patch-10 -> origin/nmacchioni-patch-10 2025-07-24T03:47:29.9118376Z * [new branch] nmacchioni-patch-6 -> origin/nmacchioni-patch-6 2025-07-24T03:47:29.9118946Z * [new branch] nmacchioni-patch-7 -> origin/nmacchioni-patch-7 2025-07-24T03:47:29.9119490Z * [new branch] nmacchioni-patch-8 -> origin/nmacchioni-patch-8 2025-07-24T03:47:29.9120004Z * [new branch] nmacchioni-patch-9 -> origin/nmacchioni-patch-9 2025-07-24T03:47:29.9120478Z * [new branch] np_indexing_fix -> origin/np_indexing_fix 2025-07-24T03:47:29.9120960Z * [new branch] nullplay_fuse_matmul -> origin/nullplay_fuse_matmul 2025-07-24T03:47:29.9121616Z * [new branch] nweidia/enable-B200-inductor-nightly-ci -> origin/nweidia/enable-B200-inductor-nightly-ci 2025-07-24T03:47:29.9122225Z * [new branch] openblas_gemv -> origin/openblas_gemv 2025-07-24T03:47:29.9122683Z * [new branch] orig/release/1.10 -> origin/orig/release/1.10 2025-07-24T03:47:29.9123148Z * [new branch] orig/release/1.11 -> origin/orig/release/1.11 2025-07-24T03:47:29.9123638Z * [new branch] orig/release/1.12 -> origin/orig/release/1.12 2025-07-24T03:47:29.9536975Z * [new branch] orig/release/1.13 -> origin/orig/release/1.13 2025-07-24T03:47:29.9537498Z * [new branch] orig/release/1.6 -> origin/orig/release/1.6 2025-07-24T03:47:29.9537988Z * [new branch] orig/release/1.7 -> origin/orig/release/1.7 2025-07-24T03:47:29.9538443Z * [new branch] orig/release/1.8 -> origin/orig/release/1.8 2025-07-24T03:47:29.9538912Z * [new branch] orig/release/1.9 -> origin/orig/release/1.9 2025-07-24T03:47:29.9539372Z * [new branch] orig/release/2.0 -> origin/orig/release/2.0 2025-07-24T03:47:29.9539826Z * [new branch] orig/release/2.1 -> origin/orig/release/2.1 2025-07-24T03:47:29.9540286Z * [new branch] orig/release/2.2 -> origin/orig/release/2.2 2025-07-24T03:47:29.9540794Z * [new branch] orig/release/2.3 -> origin/orig/release/2.3 2025-07-24T03:47:29.9541290Z * [new branch] orig/release/2.4 -> origin/orig/release/2.4 2025-07-24T03:47:29.9541748Z * [new branch] orig/release/2.5 -> origin/orig/release/2.5 2025-07-24T03:47:29.9542198Z * [new branch] orig/release/2.6 -> origin/orig/release/2.6 2025-07-24T03:47:29.9542659Z * [new branch] orig/release/2.7 -> origin/orig/release/2.7 2025-07-24T03:47:29.9543105Z * [new branch] orig/release/2.8 -> origin/orig/release/2.8 2025-07-24T03:47:29.9543565Z * [new branch] oulgen/fx_graph -> origin/oulgen/fx_graph 2025-07-24T03:47:29.9544021Z * [new branch] padded-tensor -> origin/padded-tensor 2025-07-24T03:47:29.9544465Z * [new branch] parallel_cat -> origin/parallel_cat 2025-07-24T03:47:29.9545160Z * [new branch] parallel_reduce -> origin/parallel_reduce 2025-07-24T03:47:29.9545589Z * [new branch] pca2 -> origin/pca2 2025-07-24T03:47:29.9546037Z * [new branch] pianpwk-patch-1 -> origin/pianpwk-patch-1 2025-07-24T03:47:29.9546662Z * [new branch] pianpwk/backed_size_oblivious_export -> origin/pianpwk/backed_size_oblivious_export 2025-07-24T03:47:29.9547324Z * [new branch] pianpwk/dde_repeat_cat -> origin/pianpwk/dde_repeat_cat 2025-07-24T03:47:29.9547905Z * [new branch] pianpwk/draft_export_normalize -> origin/pianpwk/draft_export_normalize 2025-07-24T03:47:29.9548485Z * [new branch] pianpwk/dynamic_source_dim -> origin/pianpwk/dynamic_source_dim 2025-07-24T03:47:29.9549020Z * [new branch] pianpwk/int_in_pgo_state -> origin/pianpwk/int_in_pgo_state 2025-07-24T03:47:29.9549567Z * [new branch] pianpwk/invalidate_fake_memo -> origin/pianpwk/invalidate_fake_memo 2025-07-24T03:47:29.9550158Z * [new branch] pianpwk/lru_cache_bound_sympy -> origin/pianpwk/lru_cache_bound_sympy 2025-07-24T03:47:29.9550698Z * [new branch] pianpwk/max_1_strides -> origin/pianpwk/max_1_strides 2025-07-24T03:47:29.9551190Z * [new branch] pianpwk/nonzero_memo -> origin/pianpwk/nonzero_memo 2025-07-24T03:47:29.9551755Z * [new branch] pianpwk/obl_scatter_gather_index -> origin/pianpwk/obl_scatter_gather_index 2025-07-24T03:47:29.9552351Z * [new branch] pianpwk/oblivious_infer_size -> origin/pianpwk/oblivious_infer_size 2025-07-24T03:47:29.9552979Z * [new branch] pianpwk/oblivious_meta_select -> origin/pianpwk/oblivious_meta_select 2025-07-24T03:47:29.9553695Z * [new branch] pianpwk/oblivious_reshape_view_bad -> origin/pianpwk/oblivious_reshape_view_bad 2025-07-24T03:47:29.9554422Z * [new branch] pianpwk/oblivious_reshape_view_better -> origin/pianpwk/oblivious_reshape_view_better 2025-07-24T03:47:29.9555175Z * [new branch] pianpwk/oblivious_should_swap -> origin/pianpwk/oblivious_should_swap 2025-07-24T03:47:29.9555818Z * [new branch] pianpwk/oblivious_slice_forward -> origin/pianpwk/oblivious_slice_forward 2025-07-24T03:47:29.9556488Z * [new branch] pianpwk/oblivious_where -> origin/pianpwk/oblivious_where 2025-07-24T03:47:29.9557070Z * [new branch] pianpwk/pad_nd_oblivious -> origin/pianpwk/pad_nd_oblivious 2025-07-24T03:47:29.9557635Z * [new branch] pianpwk/pre_forward_hook -> origin/pianpwk/pre_forward_hook 2025-07-24T03:47:29.9558252Z * [new branch] pianpwk/remove_guard_fail_break -> origin/pianpwk/remove_guard_fail_break 2025-07-24T03:47:29.9558848Z * [new branch] pianpwk/single_slice -> origin/pianpwk/single_slice 2025-07-24T03:47:29.9559466Z * [new branch] pianpwk/slice_fresh_symbols -> origin/pianpwk/slice_fresh_symbols 2025-07-24T03:47:29.9560086Z * [new branch] pianpwk/test_slice_fake_impl -> origin/pianpwk/test_slice_fake_impl 2025-07-24T03:47:29.9560713Z * [new branch] pianpwk/unbacked_channels_last -> origin/pianpwk/unbacked_channels_last 2025-07-24T03:47:29.9561394Z * [new branch] pianpwk/unbacked_safe_conv1d -> origin/pianpwk/unbacked_safe_conv1d 2025-07-24T03:47:29.9992241Z * [new branch] pianpwk/unbacked_sdpa_flash -> origin/pianpwk/unbacked_sdpa_flash 2025-07-24T03:47:29.9992850Z * [new branch] pianpwk/unbacked_should_swap -> origin/pianpwk/unbacked_should_swap 2025-07-24T03:47:29.9993450Z * [new branch] pianpwk/unbacked_slice_binding -> origin/pianpwk/unbacked_slice_binding 2025-07-24T03:47:29.9994062Z * [new branch] pianpwk/unbacked_slice_forward -> origin/pianpwk/unbacked_slice_forward 2025-07-24T03:47:29.9994816Z * [new branch] pianpwk/verbose_tensor_guards -> origin/pianpwk/verbose_tensor_guards 2025-07-24T03:47:29.9995458Z * [new branch] pianpwk/wan21_reshape -> origin/pianpwk/wan21_reshape 2025-07-24T03:47:29.9996063Z * [new branch] pianpwk/whitelist_optimizer -> origin/pianpwk/whitelist_optimizer 2025-07-24T03:47:29.9996859Z * [new branch] pick-torch-standalone-rename-to-release-2.8 -> origin/pick-torch-standalone-rename-to-release-2.8 2025-07-24T03:47:29.9997550Z * [new branch] pin-theme-version -> origin/pin-theme-version 2025-07-24T03:47:29.9998026Z * [new branch] pin-torchao -> origin/pin-torchao 2025-07-24T03:47:29.9998497Z * [new branch] piz/clean_strategy_0627 -> origin/piz/clean_strategy_0627 2025-07-24T03:47:29.9999019Z * [new branch] piz/dtensor_op_coverage -> origin/piz/dtensor_op_coverage 2025-07-24T03:47:29.9999558Z * [new branch] piz/fall_back_missing_0705 -> origin/piz/fall_back_missing_0705 2025-07-24T03:47:30.0000098Z * [new branch] piz/fall_back_missing_0716 -> origin/piz/fall_back_missing_0716 2025-07-24T03:47:30.0000609Z * [new branch] piz/fill_dist_cost_0702 -> origin/piz/fill_dist_cost_0702 2025-07-24T03:47:30.0001112Z * [new branch] piz/fill_dist_cost_0702-2 -> origin/piz/fill_dist_cost_0702-2 2025-07-24T03:47:30.0001619Z * [new branch] piz/fill_dist_cost_0702-3 -> origin/piz/fill_dist_cost_0702-3 2025-07-24T03:47:30.0002155Z * [new branch] piz/fix_einsum -> origin/piz/fix_einsum 2025-07-24T03:47:30.0002668Z * [new branch] piz/fix_index_put_0706 -> origin/piz/fix_index_put_0706 2025-07-24T03:47:30.0003139Z * [new branch] piz/fix_slice -> origin/piz/fix_slice 2025-07-24T03:47:30.0003612Z * [new branch] piz/remove_assert_0709 -> origin/piz/remove_assert_0709 2025-07-24T03:47:30.0004089Z * [new branch] pool-separate -> origin/pool-separate 2025-07-24T03:47:30.0004518Z * [new branch] pr-156087 -> origin/pr-156087 2025-07-24T03:47:30.0004911Z * [new branch] pr/131860 -> origin/pr/131860 2025-07-24T03:47:30.0005324Z * [new branch] pr150241 -> origin/pr150241 2025-07-24T03:47:30.0005734Z * [new branch] pt-opt-cuda3 -> origin/pt-opt-cuda3 2025-07-24T03:47:30.0006195Z * [new branch] pull-latest-theme -> origin/pull-latest-theme 2025-07-24T03:47:30.0006704Z * [new branch] python_compiled_autograd -> origin/python_compiled_autograd 2025-07-24T03:47:30.0007226Z * [new branch] qchip/export-D54134695 -> origin/qchip/export-D54134695 2025-07-24T03:47:30.0007700Z * [new branch] randdcefix -> origin/randdcefix 2025-07-24T03:47:30.0008169Z * [new branch] release/1.10 -> origin/release/1.10 2025-07-24T03:47:30.0008667Z * [new branch] release/1.11 -> origin/release/1.11 2025-07-24T03:47:30.0009150Z * [new branch] release/1.12 -> origin/release/1.12 2025-07-24T03:47:30.0009567Z * [new branch] release/1.13 -> origin/release/1.13 2025-07-24T03:47:30.0009991Z * [new branch] release/1.4 -> origin/release/1.4 2025-07-24T03:47:30.0010414Z * [new branch] release/1.4.1 -> origin/release/1.4.1 2025-07-24T03:47:30.0010837Z * [new branch] release/1.5 -> origin/release/1.5 2025-07-24T03:47:30.0011248Z * [new branch] release/1.6 -> origin/release/1.6 2025-07-24T03:47:30.0011665Z * [new branch] release/1.7 -> origin/release/1.7 2025-07-24T03:47:30.0012195Z * [new branch] release/1.8 -> origin/release/1.8 2025-07-24T03:47:30.0012679Z * [new branch] release/1.9 -> origin/release/1.9 2025-07-24T03:47:30.0013110Z * [new branch] release/2.0 -> origin/release/2.0 2025-07-24T03:47:30.0013528Z * [new branch] release/2.1 -> origin/release/2.1 2025-07-24T03:47:30.0013959Z * [new branch] release/2.2 -> origin/release/2.2 2025-07-24T03:47:30.0014435Z * [new branch] release/2.3 -> origin/release/2.3 2025-07-24T03:47:30.0014846Z * [new branch] release/2.4 -> origin/release/2.4 2025-07-24T03:47:30.0015317Z * [new branch] release/2.5 -> origin/release/2.5 2025-07-24T03:47:30.0454002Z * [new branch] release/2.6 -> origin/release/2.6 2025-07-24T03:47:30.0454470Z * [new branch] release/2.7 -> origin/release/2.7 2025-07-24T03:47:30.0454937Z * [new branch] release/2.8 -> origin/release/2.8 2025-07-24T03:47:30.0455374Z * [new branch] release_notes -> origin/release_notes 2025-07-24T03:47:30.0455868Z * [new branch] remove-actionable-label -> origin/remove-actionable-label 2025-07-24T03:47:30.0456381Z * [new branch] remove_ts_docs -> origin/remove_ts_docs 2025-07-24T03:47:30.0456977Z * [new branch] rephrase-export-remove-torchscript -> origin/rephrase-export-remove-torchscript 2025-07-24T03:47:30.0457755Z * [new branch] revert-131069-gh/krzysztofjordan/1/head -> origin/revert-131069-gh/krzysztofjordan/1/head 2025-07-24T03:47:30.0458536Z * [new branch] revert-131469-gh/andrewor14/51/head -> origin/revert-131469-gh/andrewor14/51/head 2025-07-24T03:47:30.0459220Z * [new branch] revert-156870-gh/skarjala/3/head -> origin/revert-156870-gh/skarjala/3/head 2025-07-24T03:47:30.0459860Z * [new branch] revert-156890-triton_34_update -> origin/revert-156890-triton_34_update 2025-07-24T03:47:30.0460654Z * [new branch] revert-157914-cherry-pick-157503-by-pytorch_bot_bot_ -> origin/revert-157914-cherry-pick-157503-by-pytorch_bot_bot_ 2025-07-24T03:47:30.0461387Z * [new branch] rithesh/fsdp_cpu -> origin/rithesh/fsdp_cpu 2025-07-24T03:47:30.0461862Z * [new branch] rocm-monitoring -> origin/rocm-monitoring 2025-07-24T03:47:30.0462527Z * [new branch] ryanguo99/cleanup-dynamo-expected-failures -> origin/ryanguo99/cleanup-dynamo-expected-failures 2025-07-24T03:47:30.0463237Z * [new branch] ryanguo99/fix-closure-var -> origin/ryanguo99/fix-closure-var 2025-07-24T03:47:30.0463767Z * [new branch] rzou/faketensor_bench -> origin/rzou/faketensor_bench 2025-07-24T03:47:30.0464273Z * [new branch] rzou/njt -> origin/rzou/njt 2025-07-24T03:47:30.0464756Z * [new branch] rzou/operator -> origin/rzou/operator 2025-07-24T03:47:30.0465182Z * [new branch] rzou/pca -> origin/rzou/pca 2025-07-24T03:47:30.0465624Z * [new branch] rzou/pipe_split -> origin/rzou/pipe_split 2025-07-24T03:47:30.0466064Z * [new branch] rzou/realprop -> origin/rzou/realprop 2025-07-24T03:47:30.0466547Z * [new branch] rzou/setup_context -> origin/rzou/setup_context 2025-07-24T03:47:30.0467167Z * [new branch] sanchitintel/refactor_aten_int8_woq_gemm -> origin/sanchitintel/refactor_aten_int8_woq_gemm 2025-07-24T03:47:30.0468027Z * [new branch] sanchitintel/weird_thing_with_test_cpu_select_algorithm -> origin/sanchitintel/weird_thing_with_test_cpu_select_algorithm 2025-07-24T03:47:30.0468796Z * [new branch] sapling-pr-archive-SS-JIA -> origin/sapling-pr-archive-SS-JIA 2025-07-24T03:47:30.0469554Z * [new branch] save -> origin/save 2025-07-24T03:47:30.0469961Z * [new branch] sdym/2.5.1 -> origin/sdym/2.5.1 2025-07-24T03:47:30.0470477Z * [new branch] seemethere-patch-1 -> origin/seemethere-patch-1 2025-07-24T03:47:30.0470998Z * [new branch] share_and_pin_fork -> origin/share_and_pin_fork 2025-07-24T03:47:30.0471482Z * [new branch] shengf/fx-xform-perf -> origin/shengf/fx-xform-perf 2025-07-24T03:47:30.0471997Z * [new branch] shikaili_fp8_allgather -> origin/shikaili_fp8_allgather 2025-07-24T03:47:30.0472501Z * [new branch] shoumikhin-patch-12 -> origin/shoumikhin-patch-12 2025-07-24T03:47:30.0473034Z * [new branch] simplify-fq-per-channel -> origin/simplify-fq-per-channel 2025-07-24T03:47:30.0473560Z * [new branch] solve-accuracy-fix -> origin/solve-accuracy-fix 2025-07-24T03:47:30.0474044Z * [new branch] sqzhang/flight4 -> origin/sqzhang/flight4 2025-07-24T03:47:30.0474526Z * [new branch] sqzhang/flight4plus -> origin/sqzhang/flight4plus 2025-07-24T03:47:30.0475046Z * [new branch] sraikund/record_funct_test -> origin/sraikund/record_funct_test 2025-07-24T03:47:30.0475555Z * [new branch] sraikund16/test -> origin/sraikund16/test 2025-07-24T03:47:30.0476071Z * [new branch] stablize-compilation-time -> origin/stablize-compilation-time 2025-07-24T03:47:30.0476668Z * [new branch] standalone_package_weights -> origin/standalone_package_weights 2025-07-24T03:47:30.0477233Z * [new branch] starterTaskUpdate -> origin/starterTaskUpdate 2025-07-24T03:47:30.0477703Z * [new branch] step2vllmsetup -> origin/step2vllmsetup 2025-07-24T03:47:30.0478151Z * [new branch] subgraph_fuse -> origin/subgraph_fuse 2025-07-24T03:47:30.0478631Z * [new branch] support-b200-runners -> origin/support-b200-runners 2025-07-24T03:47:30.0852555Z * [new branch] support-uv-in-collect_env -> origin/support-uv-in-collect_env 2025-07-24T03:47:30.0853099Z * [new branch] support_gqa_cpu -> origin/support_gqa_cpu 2025-07-24T03:47:30.0853589Z * [new branch] suryasub/fix-nccl-hang -> origin/suryasub/fix-nccl-hang 2025-07-24T03:47:30.0854092Z * [new branch] svekars-patch-1 -> origin/svekars-patch-1 2025-07-24T03:47:30.0854564Z * [new branch] svekars-patch-2 -> origin/svekars-patch-2 2025-07-24T03:47:30.0855003Z * [new branch] switch-bn -> origin/switch-bn 2025-07-24T03:47:30.0855464Z * [new branch] syed-ahmed-patch-1 -> origin/syed-ahmed-patch-1 2025-07-24T03:47:30.0855988Z * [new branch] sympy-bottleneck-repro -> origin/sympy-bottleneck-repro 2025-07-24T03:47:30.0856491Z * [new branch] teja/add_logs -> origin/teja/add_logs 2025-07-24T03:47:30.0856975Z * [new branch] tensordict_integration -> origin/tensordict_integration 2025-07-24T03:47:30.0857472Z * [new branch] test-internal-et -> origin/test-internal-et 2025-07-24T03:47:30.0857991Z * [new branch] test-move-conda-builds -> origin/test-move-conda-builds 2025-07-24T03:47:30.0858563Z * [new branch] test-myst-markdown-docstring -> origin/test-myst-markdown-docstring 2025-07-24T03:47:30.0859095Z * [new branch] test/bmm_heur -> origin/test/bmm_heur 2025-07-24T03:47:30.0859530Z * [new branch] test/inductor -> origin/test/inductor 2025-07-24T03:47:30.0859991Z * [new branch] tidy_performance_cyy -> origin/tidy_performance_cyy 2025-07-24T03:47:30.0860603Z * [new branch] torchtitan_ep -> origin/torchtitan_ep 2025-07-24T03:47:30.0861118Z * [new branch] tp_changes -> origin/tp_changes 2025-07-24T03:47:30.0861609Z * [new branch] trace_fsdp_torchtune_lora -> origin/trace_fsdp_torchtune_lora 2025-07-24T03:47:30.0862149Z * [new branch] traceable_fsdp_unit_tests -> origin/traceable_fsdp_unit_tests 2025-07-24T03:47:30.0862629Z * [new branch] trackMonitor -> origin/trackMonitor 2025-07-24T03:47:30.0863089Z * [new branch] tree_loop_vec_base -> origin/tree_loop_vec_base 2025-07-24T03:47:30.0863538Z * [new branch] tree_vec_base -> origin/tree_vec_base 2025-07-24T03:47:30.0863977Z * [new branch] triton-update -> origin/triton-update 2025-07-24T03:47:30.0864403Z * [new branch] triton_kernel -> origin/triton_kernel 2025-07-24T03:47:30.0864862Z * [new branch] triton_kernel_perf -> origin/triton_kernel_perf 2025-07-24T03:47:30.0865320Z * [new branch] try-runllm -> origin/try-runllm 2025-07-24T03:47:30.0865732Z * [new branch] type_dec -> origin/type_dec 2025-07-24T03:47:30.0866231Z * [new branch] udate-sphinx-dependancies -> origin/udate-sphinx-dependancies 2025-07-24T03:47:30.0866919Z * [new branch] update-audio-commit-hash/15890021967-1637-1 -> origin/update-audio-commit-hash/15890021967-1637-1 2025-07-24T03:47:30.0867724Z * [new branch] update-audio-commit-hash/16157311175-1652-1 -> origin/update-audio-commit-hash/16157311175-1652-1 2025-07-24T03:47:30.0868516Z * [new branch] update-audio-commit-hash/16307312222-1661-1 -> origin/update-audio-commit-hash/16307312222-1661-1 2025-07-24T03:47:30.0869290Z * [new branch] update-audio-commit-hash/16431348808-1673-1 -> origin/update-audio-commit-hash/16431348808-1673-1 2025-07-24T03:47:30.0870142Z * [new branch] update-executorch-commit-hash/15694981040-1626-1 -> origin/update-executorch-commit-hash/15694981040-1626-1 2025-07-24T03:47:30.0871104Z * [new branch] update-triton-commit-hash/13663274526-1487-2 -> origin/update-triton-commit-hash/13663274526-1487-2 2025-07-24T03:47:30.0871924Z * [new branch] update-vision-commit-hash/15336342773-1607-1 -> origin/update-vision-commit-hash/15336342773-1607-1 2025-07-24T03:47:30.0872719Z * [new branch] update-vllm-commit-hash/16431348808-1673-1 -> origin/update-vllm-commit-hash/16431348808-1673-1 2025-07-24T03:47:30.0873476Z * [new branch] update-vllm-commit-hash/16484773233-1682-1 -> origin/update-vllm-commit-hash/16484773233-1682-1 2025-07-24T03:47:30.0874231Z * [new branch] update-xla-commit-hash/15818245712-191-1 -> origin/update-xla-commit-hash/15818245712-191-1 2025-07-24T03:47:30.0874986Z * [new branch] update-xla-commit-hash/16260974441-194-1 -> origin/update-xla-commit-hash/16260974441-194-1 2025-07-24T03:47:30.0875735Z * [new branch] update_docs_torch_multinomial_issue#125388 -> origin/update_docs_torch_multinomial_issue#125388 2025-07-24T03:47:30.0876426Z * [new branch] update_slow_tests_1722488736 -> origin/update_slow_tests_1722488736 2025-07-24T03:47:30.1311667Z * [new branch] update_slow_tests_1722879173 -> origin/update_slow_tests_1722879173 2025-07-24T03:47:30.1312254Z * [new branch] update_slow_tests_1749454889 -> origin/update_slow_tests_1749454889 2025-07-24T03:47:30.1312798Z * [new branch] update_slow_tests_1751874113 -> origin/update_slow_tests_1751874113 2025-07-24T03:47:30.1313338Z * [new branch] update_slow_tests_1752478971 -> origin/update_slow_tests_1752478971 2025-07-24T03:47:30.1313893Z * [new branch] update_submodule_FBGEMM -> origin/update_submodule_FBGEMM 2025-07-24T03:47:30.1314599Z * [new branch] update_submodule_kineto -> origin/update_submodule_kineto 2025-07-24T03:47:30.1315170Z * [new branch] v0.1.2 -> origin/v0.1.2 2025-07-24T03:47:30.1315564Z * [new branch] v1.0.1 -> origin/v1.0.1 2025-07-24T03:47:30.1315967Z * [new branch] v1.0.3 -> origin/v1.0.3 2025-07-24T03:47:30.1316350Z * [new branch] v1.1.0 -> origin/v1.1.0 2025-07-24T03:47:30.1316742Z * [new branch] v1.2.0 -> origin/v1.2.0 2025-07-24T03:47:30.1317122Z * [new branch] v1.3.0 -> origin/v1.3.0 2025-07-24T03:47:30.1317514Z * [new branch] v1.3.1 -> origin/v1.3.1 2025-07-24T03:47:30.1317916Z * [new branch] validate_fn -> origin/validate_fn 2025-07-24T03:47:30.1318350Z * [new branch] validations_2.6 -> origin/validations_2.6 2025-07-24T03:47:30.1318809Z * [new branch] viable/strict -> origin/viable/strict 2025-07-24T03:47:30.1319269Z * [new branch] vkuzo-patch-1 -> origin/vkuzo-patch-1 2025-07-24T03:47:30.1319690Z * [new branch] vllmpin -> origin/vllmpin 2025-07-24T03:47:30.1320111Z * [new branch] vllmpintest -> origin/vllmpintest 2025-07-24T03:47:30.1320536Z * [new branch] wdvr-patch-1 -> origin/wdvr-patch-1 2025-07-24T03:47:30.1320976Z * [new branch] wdvr-patch-2 -> origin/wdvr-patch-2 2025-07-24T03:47:30.1321451Z * [new branch] wdvr/conda_devcontainer -> origin/wdvr/conda_devcontainer 2025-07-24T03:47:30.1321964Z * [new branch] wdvr/fix_logging_test -> origin/wdvr/fix_logging_test 2025-07-24T03:47:30.1322454Z * [new branch] wdvr/iss145259_alt -> origin/wdvr/iss145259_alt 2025-07-24T03:47:30.1322906Z * [new branch] wdvr/iss_145259 -> origin/wdvr/iss_145259 2025-07-24T03:47:30.1323369Z * [new branch] weight_sharing_cpp -> origin/weight_sharing_cpp 2025-07-24T03:47:30.1323813Z * [new branch] whc/flight -> origin/whc/flight 2025-07-24T03:47:30.1324238Z * [new branch] whc/flight4 -> origin/whc/flight4 2025-07-24T03:47:30.1324663Z * [new branch] whc/flight51 -> origin/whc/flight51 2025-07-24T03:47:30.1325082Z * [new branch] whc/flight53 -> origin/whc/flight53 2025-07-24T03:47:30.1325524Z * [new branch] whc/flight_full -> origin/whc/flight_full 2025-07-24T03:47:30.1325957Z * [new branch] whc/p2phang -> origin/whc/p2phang 2025-07-24T03:47:30.1326380Z * [new branch] whc/stage2 -> origin/whc/stage2 2025-07-24T03:47:30.1326795Z * [new branch] whc/uneven -> origin/whc/uneven 2025-07-24T03:47:30.1327231Z * [new branch] whc/uneven-merge -> origin/whc/uneven-merge 2025-07-24T03:47:30.1327681Z * [new branch] win_warnings -> origin/win_warnings 2025-07-24T03:47:30.1328101Z * [new branch] xmfan/ca_0516 -> origin/xmfan/ca_0516 2025-07-24T03:47:30.1328632Z * [new branch] xmfan/ca_1051b93192 -> origin/xmfan/ca_1051b93192 2025-07-24T03:47:30.1329305Z * [new branch] xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 -> origin/xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 2025-07-24T03:47:30.1329982Z * [new branch] xmfan/ca_5a2be192d1 -> origin/xmfan/ca_5a2be192d1 2025-07-24T03:47:30.1330464Z * [new branch] xmfan/ca_9d59b516e9 -> origin/xmfan/ca_9d59b516e9 2025-07-24T03:47:30.1331015Z * [new branch] xmfan/ca_api -> origin/xmfan/ca_api 2025-07-24T03:47:30.1332050Z * [new branch] xmfan/ca_apr8 -> origin/xmfan/ca_apr8 2025-07-24T03:47:30.1332479Z * [new branch] xmfan/ca_base -> origin/xmfan/ca_base 2025-07-24T03:47:30.1332952Z * [new branch] xmfan/ca_cudagraphs -> origin/xmfan/ca_cudagraphs 2025-07-24T03:47:30.1333427Z * [new branch] xmfan/ca_dynamic -> origin/xmfan/ca_dynamic 2025-07-24T03:47:30.1333870Z * [new branch] xmfan/ca_fix_dyn -> origin/xmfan/ca_fix_dyn 2025-07-24T03:47:30.1334336Z * [new branch] xmfan/ca_fix_lowering -> origin/xmfan/ca_fix_lowering 2025-07-24T03:47:30.1334821Z * [new branch] xmfan/ca_fix_polyfills -> origin/xmfan/ca_fix_polyfills 2025-07-24T03:47:30.1736066Z * [new branch] xmfan/ca_jan3 -> origin/xmfan/ca_jan3 2025-07-24T03:47:30.1736550Z * [new branch] xmfan/ca_jun18 -> origin/xmfan/ca_jun18 2025-07-24T03:47:30.1736994Z * [new branch] xmfan/ca_jun24 -> origin/xmfan/ca_jun24 2025-07-24T03:47:30.1737451Z * [new branch] xmfan/ca_mem_base -> origin/xmfan/ca_mem_base 2025-07-24T03:47:30.1737899Z * [new branch] xmfan/ca_mem_fix -> origin/xmfan/ca_mem_fix 2025-07-24T03:47:30.1738368Z * [new branch] xmfan/ca_memory_fix -> origin/xmfan/ca_memory_fix 2025-07-24T03:47:30.1738876Z * [new branch] xmfan/ca_memory_fix_rebased -> origin/xmfan/ca_memory_fix_rebased 2025-07-24T03:47:30.1739409Z * [new branch] xmfan/ca_memory_fix_rebased2 -> origin/xmfan/ca_memory_fix_rebased2 2025-07-24T03:47:30.1739941Z * [new branch] xmfan/ca_move_to_cuda -> origin/xmfan/ca_move_to_cuda 2025-07-24T03:47:30.1740396Z * [new branch] xmfan/ca_nested -> origin/xmfan/ca_nested 2025-07-24T03:47:30.1740856Z * [new branch] xmfan/ca_overhead -> origin/xmfan/ca_overhead 2025-07-24T03:47:30.1741379Z * [new branch] xmfan/ca_overhead_0eba7e5451 -> origin/xmfan/ca_overhead_0eba7e5451 2025-07-24T03:47:30.1741879Z * [new branch] xmfan/ca_scalar -> origin/xmfan/ca_scalar 2025-07-24T03:47:30.1742367Z * [new branch] xmfan/ca_subclass_mem_fix -> origin/xmfan/ca_subclass_mem_fix 2025-07-24T03:47:30.1742855Z * [new branch] xmfan/ca_warm_mem -> origin/xmfan/ca_warm_mem 2025-07-24T03:47:30.1743332Z * [new branch] xmfan/ca_warm_mem_base -> origin/xmfan/ca_warm_mem_base 2025-07-24T03:47:30.1743808Z * [new branch] xmfan/cacu_jun18 -> origin/xmfan/cacu_jun18 2025-07-24T03:47:30.1744253Z * [new branch] xmfan/cacu_jun19 -> origin/xmfan/cacu_jun19 2025-07-24T03:47:30.1744706Z * [new branch] xmfan/cacu_jun4 -> origin/xmfan/cacu_jun4 2025-07-24T03:47:30.1745152Z * [new branch] xmfan/cacu_may27 -> origin/xmfan/cacu_may27 2025-07-24T03:47:30.1745628Z * [new branch] xmfan/circular_dep -> origin/xmfan/circular_dep 2025-07-24T03:47:30.1746170Z * [new branch] xmfan/compiled_autograd_feb_29 -> origin/xmfan/compiled_autograd_feb_29 2025-07-24T03:47:30.1746809Z * [new branch] xmfan/compiled_autograd_graph_breaks -> origin/xmfan/compiled_autograd_graph_breaks 2025-07-24T03:47:30.1747553Z * [new branch] xmfan/compiled_autograd_hypothetical_perf -> origin/xmfan/compiled_autograd_hypothetical_perf 2025-07-24T03:47:30.1748277Z * [new branch] xmfan/compiled_autograd_perf_no_reuse -> origin/xmfan/compiled_autograd_perf_no_reuse 2025-07-24T03:47:30.1748895Z * [new branch] xmfan/disable_duck_shape -> origin/xmfan/disable_duck_shape 2025-07-24T03:47:30.1749476Z * [new branch] xmfan/fca_cpp_node_passthrough -> origin/xmfan/fca_cpp_node_passthrough 2025-07-24T03:47:30.1750299Z * [new branch] xmfan/feb_10_compiled_autograd -> origin/xmfan/feb_10_compiled_autograd 2025-07-24T03:47:30.1750960Z * [new branch] xmfan/feb_10_compiled_autograd_cudagraph -> origin/xmfan/feb_10_compiled_autograd_cudagraph 2025-07-24T03:47:30.1751557Z * [new branch] xmfan/issue_123374 -> origin/xmfan/issue_123374 2025-07-24T03:47:30.1752251Z * [new branch] xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 2025-07-24T03:47:30.1753142Z * [new branch] xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 2025-07-24T03:47:30.1753818Z * [new branch] xmfan/segfault_test -> origin/xmfan/segfault_test 2025-07-24T03:47:30.1754309Z * [new branch] xmfan/single_step -> origin/xmfan/single_step 2025-07-24T03:47:30.1754766Z * [new branch] xmfan/sth_0829 -> origin/xmfan/sth_0829 2025-07-24T03:47:30.1755200Z * [new branch] xmfan/test -> origin/xmfan/test 2025-07-24T03:47:30.1755724Z * [new branch] y-do-we-have-7-build-systems -> origin/y-do-we-have-7-build-systems 2025-07-24T03:47:30.1756287Z * [new branch] yguo/debug-0226-constexpr -> origin/yguo/debug-0226-constexpr 2025-07-24T03:47:30.1756822Z * [new branch] yguo/new_latest_changes -> origin/yguo/new_latest_changes 2025-07-24T03:47:30.1757358Z * [new branch] yguo/patch_constexpr_changes -> origin/yguo/patch_constexpr_changes 2025-07-24T03:47:30.1757895Z * [new branch] yihan_quantization -> origin/yihan_quantization 2025-07-24T03:47:30.1758374Z * [new branch] yiming/bootcamp -> origin/yiming/bootcamp 2025-07-24T03:47:30.1758838Z * [new branch] zainr/canary-test -> origin/zainr/canary-test 2025-07-24T03:47:30.1759371Z * [new branch] zainr/cleanup-gh-runners -> origin/zainr/cleanup-gh-runners 2025-07-24T03:47:30.2139050Z * [new branch] zainr/docs-claude -> origin/zainr/docs-claude 2025-07-24T03:47:30.2139584Z * [new branch] zainr/fixlint -> origin/zainr/fixlint 2025-07-24T03:47:30.2140041Z * [new branch] zainr/lint-py3.9 -> origin/zainr/lint-py3.9 2025-07-24T03:47:30.2140530Z * [new branch] zainr/mypy15-claude -> origin/zainr/mypy15-claude 2025-07-24T03:47:30.2141049Z * [new branch] zainr/pre-push-hooks -> origin/zainr/pre-push-hooks 2025-07-24T03:47:30.2141565Z * [new branch] zainr/pull-migration-c -> origin/zainr/pull-migration-c 2025-07-24T03:47:30.2142076Z * [new branch] zainr/test-workflow -> origin/zainr/test-workflow 2025-07-24T03:47:30.2142533Z * [new branch] zainr/test2 -> origin/zainr/test2 2025-07-24T03:47:30.2142995Z * [new branch] zainr/unstable -> origin/zainr/unstable 2025-07-24T03:47:30.2143456Z * [new branch] zainr/uv-pip-fix -> origin/zainr/uv-pip-fix 2025-07-24T03:47:30.2143933Z * [new branch] zasdfgbnm-patch-3 -> origin/zasdfgbnm-patch-3 2025-07-24T03:47:30.2144378Z * [new branch] zb2p -> origin/zb2p 2025-07-24T03:47:30.2144798Z * [new branch] zdevito-patch-1 -> origin/zdevito-patch-1 2025-07-24T03:47:30.2145308Z * [new branch] zeros-and-scatter-part2 -> origin/zeros-and-scatter-part2 2025-07-24T03:47:30.2145842Z * [new branch] zhxchen17/nativert/0 -> origin/zhxchen17/nativert/0 2025-07-24T03:47:30.2146330Z * [new branch] zhxchen17/scratch/0 -> origin/zhxchen17/scratch/0 2025-07-24T03:47:30.2147498Z * [new branch] zhxhcen17/moodycamel -> origin/zhxhcen17/moodycamel 2025-07-24T03:47:30.2148081Z * [new branch] zxiiro/bazel -> origin/zxiiro/bazel 2025-07-24T03:47:30.2148508Z * [new branch] zxiiro/docs -> origin/zxiiro/docs 2025-07-24T03:47:30.2149019Z * [new branch] zxiiro/get-hardware -> origin/zxiiro/get-hardware 2025-07-24T03:47:30.2149556Z * [new branch] zxiiro/linux-build -> origin/zxiiro/linux-build 2025-07-24T03:47:30.2150076Z * [new branch] zxiiro/linux-test -> origin/zxiiro/linux-test 2025-07-24T03:47:30.2150521Z * [new branch] zxiiro/main -> origin/zxiiro/main 2025-07-24T03:47:30.2150940Z * [new branch] zxiiro/test -> origin/zxiiro/test 2025-07-24T03:47:30.2151367Z * [new branch] zxiiro/windows -> origin/zxiiro/windows 2025-07-24T03:47:30.2152104Z * [new tag] bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug -> bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug 2025-07-24T03:47:30.2152814Z * [new tag] ci/binaries/77164 -> ci/binaries/77164 2025-07-24T03:47:30.2153215Z * [new tag] ciflow/android/149601 -> ciflow/android/149601 2025-07-24T03:47:30.2153643Z * [new tag] ciflow/binaries/143959 -> ciflow/binaries/143959 2025-07-24T03:47:30.2154070Z * [new tag] ciflow/binaries/156049 -> ciflow/binaries/156049 2025-07-24T03:47:30.2154502Z * [new tag] ciflow/binaries/157432 -> ciflow/binaries/157432 2025-07-24T03:47:30.2154928Z * [new tag] ciflow/binaries/157685 -> ciflow/binaries/157685 2025-07-24T03:47:30.2155343Z * [new tag] ciflow/binaries/157689 -> ciflow/binaries/157689 2025-07-24T03:47:30.2155769Z * [new tag] ciflow/binaries/158104 -> ciflow/binaries/158104 2025-07-24T03:47:30.2156193Z * [new tag] ciflow/binaries/158623 -> ciflow/binaries/158623 2025-07-24T03:47:30.2156678Z * [new tag] ciflow/binaries_libtorch/143959 -> ciflow/binaries_libtorch/143959 2025-07-24T03:47:30.2157208Z * [new tag] ciflow/binaries_libtorch/156049 -> ciflow/binaries_libtorch/156049 2025-07-24T03:47:30.2157737Z * [new tag] ciflow/binaries_libtorch/157432 -> ciflow/binaries_libtorch/157432 2025-07-24T03:47:30.2158241Z * [new tag] ciflow/binaries_wheel/143959 -> ciflow/binaries_wheel/143959 2025-07-24T03:47:30.2158713Z * [new tag] ciflow/binaries_wheel/155731 -> ciflow/binaries_wheel/155731 2025-07-24T03:47:30.2159195Z * [new tag] ciflow/binaries_wheel/156049 -> ciflow/binaries_wheel/156049 2025-07-24T03:47:30.2159666Z * [new tag] ciflow/binaries_wheel/157432 -> ciflow/binaries_wheel/157432 2025-07-24T03:47:30.2160139Z * [new tag] ciflow/binaries_wheel/158733 -> ciflow/binaries_wheel/158733 2025-07-24T03:47:30.2160649Z * [new tag] ciflow/h100-distributed/144552 -> ciflow/h100-distributed/144552 2025-07-24T03:47:30.2161157Z * [new tag] ciflow/h100-distributed/150312 -> ciflow/h100-distributed/150312 2025-07-24T03:47:30.2161670Z * [new tag] ciflow/h100-distributed/156703 -> ciflow/h100-distributed/156703 2025-07-24T03:47:30.2162169Z * [new tag] ciflow/h100-distributed/156881 -> ciflow/h100-distributed/156881 2025-07-24T03:47:30.2466529Z * [new tag] ciflow/h100-symm-mem/151845 -> ciflow/h100-symm-mem/151845 2025-07-24T03:47:30.2467026Z * [new tag] ciflow/h100-symm-mem/156881 -> ciflow/h100-symm-mem/156881 2025-07-24T03:47:30.2467478Z * [new tag] ciflow/h100-symm-mem/157026 -> ciflow/h100-symm-mem/157026 2025-07-24T03:47:30.2467936Z * [new tag] ciflow/h100-symm-mem/157029 -> ciflow/h100-symm-mem/157029 2025-07-24T03:47:30.2468540Z * [new tag] ciflow/h100-symm-mem/158515 -> ciflow/h100-symm-mem/158515 2025-07-24T03:47:30.2469130Z * [new tag] ciflow/h100-symm-mem/158676 -> ciflow/h100-symm-mem/158676 2025-07-24T03:47:30.2469592Z * [new tag] ciflow/h100-symm-mem/158718 -> ciflow/h100-symm-mem/158718 2025-07-24T03:47:30.2470240Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/151845 -> ciflow/inductor-perf-test-nightly-rocm/151845 2025-07-24T03:47:30.2471074Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/156592 -> ciflow/inductor-perf-test-nightly-rocm/156592 2025-07-24T03:47:30.2471972Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/158887 -> ciflow/inductor-perf-test-nightly-rocm/158887 2025-07-24T03:47:30.2472773Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/159001 -> ciflow/inductor-perf-test-nightly-rocm/159001 2025-07-24T03:47:30.2473537Z * [new tag] ciflow/inductor-perf-test-nightly/156592 -> ciflow/inductor-perf-test-nightly/156592 2025-07-24T03:47:30.2474170Z * [new tag] ciflow/inductor-periodic/158887 -> ciflow/inductor-periodic/158887 2025-07-24T03:47:30.2474732Z * [new tag] ciflow/inductor-periodic/159001 -> ciflow/inductor-periodic/159001 2025-07-24T03:47:30.2475254Z * [new tag] ciflow/inductor-rocm/151845 -> ciflow/inductor-rocm/151845 2025-07-24T03:47:30.2475726Z * [new tag] ciflow/inductor-rocm/158074 -> ciflow/inductor-rocm/158074 2025-07-24T03:47:30.2476202Z * [new tag] ciflow/inductor-rocm/158747 -> ciflow/inductor-rocm/158747 2025-07-24T03:47:30.2476669Z * [new tag] ciflow/inductor-rocm/158887 -> ciflow/inductor-rocm/158887 2025-07-24T03:47:30.2477146Z * [new tag] ciflow/inductor-rocm/159001 -> ciflow/inductor-rocm/159001 2025-07-24T03:47:30.2477649Z * [new tag] ciflow/inductor/137400 -> ciflow/inductor/137400 2025-07-24T03:47:30.2478123Z * [new tag] ciflow/inductor/139561 -> ciflow/inductor/139561 2025-07-24T03:47:30.2478564Z * [new tag] ciflow/inductor/144556 -> ciflow/inductor/144556 2025-07-24T03:47:30.2478985Z * [new tag] ciflow/inductor/148180 -> ciflow/inductor/148180 2025-07-24T03:47:30.2479423Z * [new tag] ciflow/inductor/148328 -> ciflow/inductor/148328 2025-07-24T03:47:30.2479859Z * [new tag] ciflow/inductor/148408 -> ciflow/inductor/148408 2025-07-24T03:47:30.2480281Z * [new tag] ciflow/inductor/148492 -> ciflow/inductor/148492 2025-07-24T03:47:30.2480718Z * [new tag] ciflow/inductor/149961 -> ciflow/inductor/149961 2025-07-24T03:47:30.2481142Z * [new tag] ciflow/inductor/150569 -> ciflow/inductor/150569 2025-07-24T03:47:30.2481565Z * [new tag] ciflow/inductor/151845 -> ciflow/inductor/151845 2025-07-24T03:47:30.2481987Z * [new tag] ciflow/inductor/152361 -> ciflow/inductor/152361 2025-07-24T03:47:30.2482426Z * [new tag] ciflow/inductor/152622 -> ciflow/inductor/152622 2025-07-24T03:47:30.2482857Z * [new tag] ciflow/inductor/152624 -> ciflow/inductor/152624 2025-07-24T03:47:30.2483273Z * [new tag] ciflow/inductor/154193 -> ciflow/inductor/154193 2025-07-24T03:47:30.2483750Z * [new tag] ciflow/inductor/154650 -> ciflow/inductor/154650 2025-07-24T03:47:30.2484223Z * [new tag] ciflow/inductor/154667 -> ciflow/inductor/154667 2025-07-24T03:47:30.2484660Z * [new tag] ciflow/inductor/154694 -> ciflow/inductor/154694 2025-07-24T03:47:30.2485075Z * [new tag] ciflow/inductor/155452 -> ciflow/inductor/155452 2025-07-24T03:47:30.2485499Z * [new tag] ciflow/inductor/155877 -> ciflow/inductor/155877 2025-07-24T03:47:30.2486013Z * [new tag] ciflow/inductor/155958 -> ciflow/inductor/155958 2025-07-24T03:47:30.2486531Z * [new tag] ciflow/inductor/155962 -> ciflow/inductor/155962 2025-07-24T03:47:30.2486963Z * [new tag] ciflow/inductor/155970 -> ciflow/inductor/155970 2025-07-24T03:47:30.2487381Z * [new tag] ciflow/inductor/156049 -> ciflow/inductor/156049 2025-07-24T03:47:30.2487810Z * [new tag] ciflow/inductor/156141 -> ciflow/inductor/156141 2025-07-24T03:47:30.2488296Z * [new tag] ciflow/inductor/156175 -> ciflow/inductor/156175 2025-07-24T03:47:30.2488732Z * [new tag] ciflow/inductor/156371 -> ciflow/inductor/156371 2025-07-24T03:47:30.2489159Z * [new tag] ciflow/inductor/156416 -> ciflow/inductor/156416 2025-07-24T03:47:30.2812226Z * [new tag] ciflow/inductor/156460 -> ciflow/inductor/156460 2025-07-24T03:47:30.2812701Z * [new tag] ciflow/inductor/156592 -> ciflow/inductor/156592 2025-07-24T03:47:30.2813132Z * [new tag] ciflow/inductor/156599 -> ciflow/inductor/156599 2025-07-24T03:47:30.2813560Z * [new tag] ciflow/inductor/156652 -> ciflow/inductor/156652 2025-07-24T03:47:30.2813982Z * [new tag] ciflow/inductor/156851 -> ciflow/inductor/156851 2025-07-24T03:47:30.2814399Z * [new tag] ciflow/inductor/157572 -> ciflow/inductor/157572 2025-07-24T03:47:30.2814826Z * [new tag] ciflow/inductor/157635 -> ciflow/inductor/157635 2025-07-24T03:47:30.2815250Z * [new tag] ciflow/inductor/157685 -> ciflow/inductor/157685 2025-07-24T03:47:30.2815686Z * [new tag] ciflow/inductor/157686 -> ciflow/inductor/157686 2025-07-24T03:47:30.2816114Z * [new tag] ciflow/inductor/157689 -> ciflow/inductor/157689 2025-07-24T03:47:30.2816540Z * [new tag] ciflow/inductor/157699 -> ciflow/inductor/157699 2025-07-24T03:47:30.2816970Z * [new tag] ciflow/inductor/157743 -> ciflow/inductor/157743 2025-07-24T03:47:30.2817392Z * [new tag] ciflow/inductor/157748 -> ciflow/inductor/157748 2025-07-24T03:47:30.2817830Z * [new tag] ciflow/inductor/157944 -> ciflow/inductor/157944 2025-07-24T03:47:30.2818265Z * [new tag] ciflow/inductor/157979 -> ciflow/inductor/157979 2025-07-24T03:47:30.2818680Z * [new tag] ciflow/inductor/157994 -> ciflow/inductor/157994 2025-07-24T03:47:30.2819109Z * [new tag] ciflow/inductor/158015 -> ciflow/inductor/158015 2025-07-24T03:47:30.2819529Z * [new tag] ciflow/inductor/158049 -> ciflow/inductor/158049 2025-07-24T03:47:30.2819964Z * [new tag] ciflow/inductor/158072 -> ciflow/inductor/158072 2025-07-24T03:47:30.2820409Z * [new tag] ciflow/inductor/158074 -> ciflow/inductor/158074 2025-07-24T03:47:30.2820833Z * [new tag] ciflow/inductor/158084 -> ciflow/inductor/158084 2025-07-24T03:47:30.2821260Z * [new tag] ciflow/inductor/158091 -> ciflow/inductor/158091 2025-07-24T03:47:30.2821678Z * [new tag] ciflow/inductor/158097 -> ciflow/inductor/158097 2025-07-24T03:47:30.2822110Z * [new tag] ciflow/inductor/158098 -> ciflow/inductor/158098 2025-07-24T03:47:30.2822529Z * [new tag] ciflow/inductor/158104 -> ciflow/inductor/158104 2025-07-24T03:47:30.2822964Z * [new tag] ciflow/inductor/158174 -> ciflow/inductor/158174 2025-07-24T03:47:30.2823392Z * [new tag] ciflow/inductor/158193 -> ciflow/inductor/158193 2025-07-24T03:47:30.2823808Z * [new tag] ciflow/inductor/158211 -> ciflow/inductor/158211 2025-07-24T03:47:30.2824380Z * [new tag] ciflow/inductor/158223 -> ciflow/inductor/158223 2025-07-24T03:47:30.2824905Z * [new tag] ciflow/inductor/158289 -> ciflow/inductor/158289 2025-07-24T03:47:30.2825338Z * [new tag] ciflow/inductor/158321 -> ciflow/inductor/158321 2025-07-24T03:47:30.2825777Z * [new tag] ciflow/inductor/158397 -> ciflow/inductor/158397 2025-07-24T03:47:30.2826203Z * [new tag] ciflow/inductor/158410 -> ciflow/inductor/158410 2025-07-24T03:47:30.2826640Z * [new tag] ciflow/inductor/158427 -> ciflow/inductor/158427 2025-07-24T03:47:30.2827058Z * [new tag] ciflow/inductor/158462 -> ciflow/inductor/158462 2025-07-24T03:47:30.2827490Z * [new tag] ciflow/inductor/158501 -> ciflow/inductor/158501 2025-07-24T03:47:30.2827924Z * [new tag] ciflow/inductor/158525 -> ciflow/inductor/158525 2025-07-24T03:47:30.2828345Z * [new tag] ciflow/inductor/158526 -> ciflow/inductor/158526 2025-07-24T03:47:30.2828775Z * [new tag] ciflow/inductor/158527 -> ciflow/inductor/158527 2025-07-24T03:47:30.2829194Z * [new tag] ciflow/inductor/158559 -> ciflow/inductor/158559 2025-07-24T03:47:30.2829619Z * [new tag] ciflow/inductor/158560 -> ciflow/inductor/158560 2025-07-24T03:47:30.2830039Z * [new tag] ciflow/inductor/158567 -> ciflow/inductor/158567 2025-07-24T03:47:30.2830464Z * [new tag] ciflow/inductor/158575 -> ciflow/inductor/158575 2025-07-24T03:47:30.2830887Z * [new tag] ciflow/inductor/158579 -> ciflow/inductor/158579 2025-07-24T03:47:30.2831305Z * [new tag] ciflow/inductor/158586 -> ciflow/inductor/158586 2025-07-24T03:47:30.2831732Z * [new tag] ciflow/inductor/158604 -> ciflow/inductor/158604 2025-07-24T03:47:30.2832149Z * [new tag] ciflow/inductor/158609 -> ciflow/inductor/158609 2025-07-24T03:47:30.2832583Z * [new tag] ciflow/inductor/158613 -> ciflow/inductor/158613 2025-07-24T03:47:30.2833013Z * [new tag] ciflow/inductor/158615 -> ciflow/inductor/158615 2025-07-24T03:47:30.3180029Z * [new tag] ciflow/inductor/158617 -> ciflow/inductor/158617 2025-07-24T03:47:30.3180534Z * [new tag] ciflow/inductor/158624 -> ciflow/inductor/158624 2025-07-24T03:47:30.3180973Z * [new tag] ciflow/inductor/158628 -> ciflow/inductor/158628 2025-07-24T03:47:30.3181409Z * [new tag] ciflow/inductor/158647 -> ciflow/inductor/158647 2025-07-24T03:47:30.3181847Z * [new tag] ciflow/inductor/158656 -> ciflow/inductor/158656 2025-07-24T03:47:30.3182267Z * [new tag] ciflow/inductor/158662 -> ciflow/inductor/158662 2025-07-24T03:47:30.3182748Z * [new tag] ciflow/inductor/158663 -> ciflow/inductor/158663 2025-07-24T03:47:30.3183242Z * [new tag] ciflow/inductor/158692 -> ciflow/inductor/158692 2025-07-24T03:47:30.3183698Z * [new tag] ciflow/inductor/158708 -> ciflow/inductor/158708 2025-07-24T03:47:30.3184126Z * [new tag] ciflow/inductor/158715 -> ciflow/inductor/158715 2025-07-24T03:47:30.3184545Z * [new tag] ciflow/inductor/158734 -> ciflow/inductor/158734 2025-07-24T03:47:30.3184975Z * [new tag] ciflow/inductor/158747 -> ciflow/inductor/158747 2025-07-24T03:47:30.3185395Z * [new tag] ciflow/inductor/158750 -> ciflow/inductor/158750 2025-07-24T03:47:30.3185820Z * [new tag] ciflow/inductor/158758 -> ciflow/inductor/158758 2025-07-24T03:47:30.3186250Z * [new tag] ciflow/inductor/158769 -> ciflow/inductor/158769 2025-07-24T03:47:30.3186663Z * [new tag] ciflow/inductor/158774 -> ciflow/inductor/158774 2025-07-24T03:47:30.3187362Z * [new tag] ciflow/inductor/158776 -> ciflow/inductor/158776 2025-07-24T03:47:30.3187785Z * [new tag] ciflow/inductor/158777 -> ciflow/inductor/158777 2025-07-24T03:47:30.3188226Z * [new tag] ciflow/inductor/158789 -> ciflow/inductor/158789 2025-07-24T03:47:30.3188662Z * [new tag] ciflow/inductor/158797 -> ciflow/inductor/158797 2025-07-24T03:47:30.3189084Z * [new tag] ciflow/inductor/158799 -> ciflow/inductor/158799 2025-07-24T03:47:30.3189520Z * [new tag] ciflow/inductor/158800 -> ciflow/inductor/158800 2025-07-24T03:47:30.3189942Z * [new tag] ciflow/inductor/158803 -> ciflow/inductor/158803 2025-07-24T03:47:30.3190379Z * [new tag] ciflow/inductor/158805 -> ciflow/inductor/158805 2025-07-24T03:47:30.3190807Z * [new tag] ciflow/inductor/158810 -> ciflow/inductor/158810 2025-07-24T03:47:30.3191240Z * [new tag] ciflow/inductor/158811 -> ciflow/inductor/158811 2025-07-24T03:47:30.3191670Z * [new tag] ciflow/inductor/158812 -> ciflow/inductor/158812 2025-07-24T03:47:30.3192097Z * [new tag] ciflow/inductor/158814 -> ciflow/inductor/158814 2025-07-24T03:47:30.3192524Z * [new tag] ciflow/inductor/158815 -> ciflow/inductor/158815 2025-07-24T03:47:30.3192943Z * [new tag] ciflow/inductor/158821 -> ciflow/inductor/158821 2025-07-24T03:47:30.3193369Z * [new tag] ciflow/inductor/158839 -> ciflow/inductor/158839 2025-07-24T03:47:30.3193796Z * [new tag] ciflow/inductor/158847 -> ciflow/inductor/158847 2025-07-24T03:47:30.3194221Z * [new tag] ciflow/inductor/158869 -> ciflow/inductor/158869 2025-07-24T03:47:30.3194645Z * [new tag] ciflow/inductor/158872 -> ciflow/inductor/158872 2025-07-24T03:47:30.3195072Z * [new tag] ciflow/inductor/158877 -> ciflow/inductor/158877 2025-07-24T03:47:30.3195504Z * [new tag] ciflow/inductor/158887 -> ciflow/inductor/158887 2025-07-24T03:47:30.3195939Z * [new tag] ciflow/inductor/158894 -> ciflow/inductor/158894 2025-07-24T03:47:30.3196359Z * [new tag] ciflow/inductor/158897 -> ciflow/inductor/158897 2025-07-24T03:47:30.3196783Z * [new tag] ciflow/inductor/158898 -> ciflow/inductor/158898 2025-07-24T03:47:30.3197198Z * [new tag] ciflow/inductor/158914 -> ciflow/inductor/158914 2025-07-24T03:47:30.3197623Z * [new tag] ciflow/inductor/158924 -> ciflow/inductor/158924 2025-07-24T03:47:30.3198042Z * [new tag] ciflow/inductor/158926 -> ciflow/inductor/158926 2025-07-24T03:47:30.3198473Z * [new tag] ciflow/inductor/158929 -> ciflow/inductor/158929 2025-07-24T03:47:30.3198905Z * [new tag] ciflow/inductor/158931 -> ciflow/inductor/158931 2025-07-24T03:47:30.3199321Z * [new tag] ciflow/inductor/158932 -> ciflow/inductor/158932 2025-07-24T03:47:30.3199748Z * [new tag] ciflow/inductor/158933 -> ciflow/inductor/158933 2025-07-24T03:47:30.3200165Z * [new tag] ciflow/inductor/158947 -> ciflow/inductor/158947 2025-07-24T03:47:30.3200591Z * [new tag] ciflow/inductor/158950 -> ciflow/inductor/158950 2025-07-24T03:47:30.3201018Z * [new tag] ciflow/inductor/158954 -> ciflow/inductor/158954 2025-07-24T03:47:30.3537294Z * [new tag] ciflow/inductor/158960 -> ciflow/inductor/158960 2025-07-24T03:47:30.3537757Z * [new tag] ciflow/inductor/158974 -> ciflow/inductor/158974 2025-07-24T03:47:30.3538180Z * [new tag] ciflow/inductor/158976 -> ciflow/inductor/158976 2025-07-24T03:47:30.3538866Z * [new tag] ciflow/inductor/158979 -> ciflow/inductor/158979 2025-07-24T03:47:30.3539297Z * [new tag] ciflow/inductor/158983 -> ciflow/inductor/158983 2025-07-24T03:47:30.3539715Z * [new tag] ciflow/inductor/158987 -> ciflow/inductor/158987 2025-07-24T03:47:30.3540138Z * [new tag] ciflow/inductor/158991 -> ciflow/inductor/158991 2025-07-24T03:47:30.3540552Z * [new tag] ciflow/inductor/158995 -> ciflow/inductor/158995 2025-07-24T03:47:30.3540980Z * [new tag] ciflow/inductor/158997 -> ciflow/inductor/158997 2025-07-24T03:47:30.3541406Z * [new tag] ciflow/inductor/158998 -> ciflow/inductor/158998 2025-07-24T03:47:30.3541866Z * [new tag] ciflow/inductor/159001 -> ciflow/inductor/159001 2025-07-24T03:47:30.3542296Z * [new tag] ciflow/inductor/159002 -> ciflow/inductor/159002 2025-07-24T03:47:30.3542760Z * [new tag] ciflow/inductor/159003 -> ciflow/inductor/159003 2025-07-24T03:47:30.3543184Z * [new tag] ciflow/inductor/159005 -> ciflow/inductor/159005 2025-07-24T03:47:30.3543623Z * [new tag] ciflow/inductor/159009 -> ciflow/inductor/159009 2025-07-24T03:47:30.3544039Z * [new tag] ciflow/inductor/159010 -> ciflow/inductor/159010 2025-07-24T03:47:30.3544467Z * [new tag] ciflow/inductor/159011 -> ciflow/inductor/159011 2025-07-24T03:47:30.3544895Z * [new tag] ciflow/inductor/3b9a386 -> ciflow/inductor/3b9a386 2025-07-24T03:47:30.3545342Z * [new tag] ciflow/inductor/3d4b92b -> ciflow/inductor/3d4b92b 2025-07-24T03:47:30.3545787Z * [new tag] ciflow/inductor/d224ac7 -> ciflow/inductor/d224ac7 2025-07-24T03:47:30.3546242Z * [new tag] ciflow/linux-aarch64/145260 -> ciflow/linux-aarch64/145260 2025-07-24T03:47:30.3546725Z * [new tag] ciflow/linux-aarch64/152361 -> ciflow/linux-aarch64/152361 2025-07-24T03:47:30.3547184Z * [new tag] ciflow/linux-aarch64/157994 -> ciflow/linux-aarch64/157994 2025-07-24T03:47:30.3547622Z * [new tag] ciflow/mps/148408 -> ciflow/mps/148408 2025-07-24T03:47:30.3548054Z * [new tag] ciflow/mps/150569 -> ciflow/mps/150569 2025-07-24T03:47:30.3548437Z * [new tag] ciflow/mps/150721 -> ciflow/mps/150721 2025-07-24T03:47:30.3548868Z * [new tag] ciflow/mps/152932 -> ciflow/mps/152932 2025-07-24T03:47:30.3549248Z * [new tag] ciflow/mps/155200 -> ciflow/mps/155200 2025-07-24T03:47:30.3549631Z * [new tag] ciflow/mps/157553 -> ciflow/mps/157553 2025-07-24T03:47:30.3550007Z * [new tag] ciflow/mps/157876 -> ciflow/mps/157876 2025-07-24T03:47:30.3550401Z * [new tag] ciflow/mps/158877 -> ciflow/mps/158877 2025-07-24T03:47:30.3550792Z * [new tag] ciflow/mps/158990 -> ciflow/mps/158990 2025-07-24T03:47:30.3551192Z * [new tag] ciflow/nightly/156049 -> ciflow/nightly/156049 2025-07-24T03:47:30.3551613Z * [new tag] ciflow/nightly/158104 -> ciflow/nightly/158104 2025-07-24T03:47:30.3552112Z * [new tag] ciflow/periodic-rocm-mi300/158887 -> ciflow/periodic-rocm-mi300/158887 2025-07-24T03:47:30.3552695Z * [new tag] ciflow/periodic-rocm-mi300/159001 -> ciflow/periodic-rocm-mi300/159001 2025-07-24T03:47:30.3553208Z * [new tag] ciflow/periodic/054a2fd -> ciflow/periodic/054a2fd 2025-07-24T03:47:30.3553644Z * [new tag] ciflow/periodic/143959 -> ciflow/periodic/143959 2025-07-24T03:47:30.3554085Z * [new tag] ciflow/periodic/156900 -> ciflow/periodic/156900 2025-07-24T03:47:30.3554633Z * [new tag] ciflow/periodic/157748 -> ciflow/periodic/157748 2025-07-24T03:47:30.3555199Z * [new tag] ciflow/periodic/158674 -> ciflow/periodic/158674 2025-07-24T03:47:30.3555620Z * [new tag] ciflow/periodic/158887 -> ciflow/periodic/158887 2025-07-24T03:47:30.3556048Z * [new tag] ciflow/periodic/159001 -> ciflow/periodic/159001 2025-07-24T03:47:30.3556488Z * [new tag] ciflow/periodic/2a6d37d -> ciflow/periodic/2a6d37d 2025-07-24T03:47:30.3556929Z * [new tag] ciflow/periodic/317eeb8 -> ciflow/periodic/317eeb8 2025-07-24T03:47:30.3557365Z * [new tag] ciflow/periodic/3c32 -> ciflow/periodic/3c32 2025-07-24T03:47:30.3557785Z * [new tag] ciflow/periodic/3e98831 -> ciflow/periodic/3e98831 2025-07-24T03:47:30.3558255Z * [new tag] ciflow/periodic/94512-point -> ciflow/periodic/94512-point 2025-07-24T03:47:30.3558764Z * [new tag] ciflow/periodic/csl/test87519 -> ciflow/periodic/csl/test87519 2025-07-24T03:47:30.3902170Z * [new tag] ciflow/periodic/csltest88275 -> ciflow/periodic/csltest88275 2025-07-24T03:47:30.3902734Z * [new tag] ciflow/periodic/csltest88761 -> ciflow/periodic/csltest88761 2025-07-24T03:47:30.3903234Z * [new tag] ciflow/periodic/release_1.12 -> ciflow/periodic/release_1.12 2025-07-24T03:47:30.3903751Z * [new tag] ciflow/periodic/release_1.12.0 -> ciflow/periodic/release_1.12.0 2025-07-24T03:47:30.3904261Z * [new tag] ciflow/periodic/sha-ec5b83 -> ciflow/periodic/sha-ec5b83 2025-07-24T03:47:30.3904700Z * [new tag] ciflow/pull/158948 -> ciflow/pull/158948 2025-07-24T03:47:30.3905112Z * [new tag] ciflow/pull/158977 -> ciflow/pull/158977 2025-07-24T03:47:30.3905528Z * [new tag] ciflow/rocm-mi300/158747 -> ciflow/rocm-mi300/158747 2025-07-24T03:47:30.3905995Z * [new tag] ciflow/rocm-mi300/158847 -> ciflow/rocm-mi300/158847 2025-07-24T03:47:30.3906425Z * [new tag] ciflow/rocm-mi300/158887 -> ciflow/rocm-mi300/158887 2025-07-24T03:47:30.3906849Z * [new tag] ciflow/rocm-mi300/159001 -> ciflow/rocm-mi300/159001 2025-07-24T03:47:30.3907263Z * [new tag] ciflow/rocm/148492 -> ciflow/rocm/148492 2025-07-24T03:47:30.3907649Z * [new tag] ciflow/rocm/149601 -> ciflow/rocm/149601 2025-07-24T03:47:30.3908054Z * [new tag] ciflow/rocm/150312 -> ciflow/rocm/150312 2025-07-24T03:47:30.3908446Z * [new tag] ciflow/rocm/151360 -> ciflow/rocm/151360 2025-07-24T03:47:30.3908824Z * [new tag] ciflow/rocm/151845 -> ciflow/rocm/151845 2025-07-24T03:47:30.3909216Z * [new tag] ciflow/rocm/152932 -> ciflow/rocm/152932 2025-07-24T03:47:30.3909604Z * [new tag] ciflow/rocm/155200 -> ciflow/rocm/155200 2025-07-24T03:47:30.3910001Z * [new tag] ciflow/rocm/155877 -> ciflow/rocm/155877 2025-07-24T03:47:30.3910393Z * [new tag] ciflow/rocm/156165 -> ciflow/rocm/156165 2025-07-24T03:47:30.3910773Z * [new tag] ciflow/rocm/156592 -> ciflow/rocm/156592 2025-07-24T03:47:30.3911164Z * [new tag] ciflow/rocm/158037 -> ciflow/rocm/158037 2025-07-24T03:47:30.3911550Z * [new tag] ciflow/rocm/158074 -> ciflow/rocm/158074 2025-07-24T03:47:30.3911943Z * [new tag] ciflow/rocm/158219 -> ciflow/rocm/158219 2025-07-24T03:47:30.3912341Z * [new tag] ciflow/rocm/158220 -> ciflow/rocm/158220 2025-07-24T03:47:30.3912725Z * [new tag] ciflow/rocm/158224 -> ciflow/rocm/158224 2025-07-24T03:47:30.3913262Z * [new tag] ciflow/rocm/158560 -> ciflow/rocm/158560 2025-07-24T03:47:30.3913747Z * [new tag] ciflow/rocm/158747 -> ciflow/rocm/158747 2025-07-24T03:47:30.3914143Z * [new tag] ciflow/rocm/158868 -> ciflow/rocm/158868 2025-07-24T03:47:30.3914536Z * [new tag] ciflow/rocm/158886 -> ciflow/rocm/158886 2025-07-24T03:47:30.3914945Z * [new tag] ciflow/rocm/158887 -> ciflow/rocm/158887 2025-07-24T03:47:30.3915340Z * [new tag] ciflow/rocm/158951 -> ciflow/rocm/158951 2025-07-24T03:47:30.3915725Z * [new tag] ciflow/rocm/159001 -> ciflow/rocm/159001 2025-07-24T03:47:30.3916109Z * [new tag] ciflow/s390/143959 -> ciflow/s390/143959 2025-07-24T03:47:30.3916492Z * [new tag] ciflow/s390/158634 -> ciflow/s390/158634 2025-07-24T03:47:30.3916875Z * [new tag] ciflow/s390/158636 -> ciflow/s390/158636 2025-07-24T03:47:30.3917302Z * [new tag] ciflow/slow/01c7106 -> ciflow/slow/01c7106 2025-07-24T03:47:30.3917691Z * [new tag] ciflow/slow/0577043 -> ciflow/slow/0577043 2025-07-24T03:47:30.3918421Z * [new tag] ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym -> ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym 2025-07-24T03:47:30.3919140Z * [new tag] ciflow/slow/0e81104 -> ciflow/slow/0e81104 2025-07-24T03:47:30.3919539Z * [new tag] ciflow/slow/157748 -> ciflow/slow/157748 2025-07-24T03:47:30.3919924Z * [new tag] ciflow/slow/158222 -> ciflow/slow/158222 2025-07-24T03:47:30.3920315Z * [new tag] ciflow/slow/158805 -> ciflow/slow/158805 2025-07-24T03:47:30.3920702Z * [new tag] ciflow/slow/1732077 -> ciflow/slow/1732077 2025-07-24T03:47:30.3921093Z * [new tag] ciflow/slow/187eb7c -> ciflow/slow/187eb7c 2025-07-24T03:47:30.3921493Z * [new tag] ciflow/slow/1faef89 -> ciflow/slow/1faef89 2025-07-24T03:47:30.3921885Z * [new tag] ciflow/slow/3920ec1 -> ciflow/slow/3920ec1 2025-07-24T03:47:30.3922292Z * [new tag] ciflow/slow/3b7c6b2 -> ciflow/slow/3b7c6b2 2025-07-24T03:47:30.3922688Z * [new tag] ciflow/slow/59a3759 -> ciflow/slow/59a3759 2025-07-24T03:47:30.3923077Z * [new tag] ciflow/slow/70ef0bb -> ciflow/slow/70ef0bb 2025-07-24T03:47:30.4804424Z * [new tag] ciflow/slow/788ff06 -> ciflow/slow/788ff06 2025-07-24T03:47:30.4805162Z * [new tag] ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym -> ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym 2025-07-24T03:47:30.4805846Z * [new tag] ciflow/slow/9d85864 -> ciflow/slow/9d85864 2025-07-24T03:47:30.4806267Z * [new tag] ciflow/slow/9ffad5b -> ciflow/slow/9ffad5b 2025-07-24T03:47:30.4806672Z * [new tag] ciflow/slow/a206e8b -> ciflow/slow/a206e8b 2025-07-24T03:47:30.4807070Z * [new tag] ciflow/slow/a837609 -> ciflow/slow/a837609 2025-07-24T03:47:30.4807463Z * [new tag] ciflow/slow/af841f3 -> ciflow/slow/af841f3 2025-07-24T03:47:30.4808231Z * [new tag] ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym -> ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym 2025-07-24T03:47:30.4808951Z * [new tag] ciflow/trunk/137400 -> ciflow/trunk/137400 2025-07-24T03:47:30.4809349Z * [new tag] ciflow/trunk/138222 -> ciflow/trunk/138222 2025-07-24T03:47:30.4809747Z * [new tag] ciflow/trunk/144557 -> ciflow/trunk/144557 2025-07-24T03:47:30.4810143Z * [new tag] ciflow/trunk/145260 -> ciflow/trunk/145260 2025-07-24T03:47:30.4810770Z * [new tag] ciflow/trunk/147470 -> ciflow/trunk/147470 2025-07-24T03:47:30.4811164Z * [new tag] ciflow/trunk/147501 -> ciflow/trunk/147501 2025-07-24T03:47:30.4811554Z * [new tag] ciflow/trunk/148180 -> ciflow/trunk/148180 2025-07-24T03:47:30.4811956Z * [new tag] ciflow/trunk/148328 -> ciflow/trunk/148328 2025-07-24T03:47:30.4812347Z * [new tag] ciflow/trunk/148492 -> ciflow/trunk/148492 2025-07-24T03:47:30.4812751Z * [new tag] ciflow/trunk/149334 -> ciflow/trunk/149334 2025-07-24T03:47:30.4813144Z * [new tag] ciflow/trunk/149601 -> ciflow/trunk/149601 2025-07-24T03:47:30.4813534Z * [new tag] ciflow/trunk/149961 -> ciflow/trunk/149961 2025-07-24T03:47:30.4813931Z * [new tag] ciflow/trunk/150312 -> ciflow/trunk/150312 2025-07-24T03:47:30.4814321Z * [new tag] ciflow/trunk/151845 -> ciflow/trunk/151845 2025-07-24T03:47:30.4814723Z * [new tag] ciflow/trunk/152624 -> ciflow/trunk/152624 2025-07-24T03:47:30.4815118Z * [new tag] ciflow/trunk/152932 -> ciflow/trunk/152932 2025-07-24T03:47:30.4815504Z * [new tag] ciflow/trunk/153097 -> ciflow/trunk/153097 2025-07-24T03:47:30.4815903Z * [new tag] ciflow/trunk/153835 -> ciflow/trunk/153835 2025-07-24T03:47:30.4816289Z * [new tag] ciflow/trunk/154193 -> ciflow/trunk/154193 2025-07-24T03:47:30.4816682Z * [new tag] ciflow/trunk/154667 -> ciflow/trunk/154667 2025-07-24T03:47:30.4817069Z * [new tag] ciflow/trunk/154694 -> ciflow/trunk/154694 2025-07-24T03:47:30.4817465Z * [new tag] ciflow/trunk/155731 -> ciflow/trunk/155731 2025-07-24T03:47:30.4817863Z * [new tag] ciflow/trunk/155958 -> ciflow/trunk/155958 2025-07-24T03:47:30.4818254Z * [new tag] ciflow/trunk/156049 -> ciflow/trunk/156049 2025-07-24T03:47:30.4818650Z * [new tag] ciflow/trunk/156141 -> ciflow/trunk/156141 2025-07-24T03:47:30.4819041Z * [new tag] ciflow/trunk/156165 -> ciflow/trunk/156165 2025-07-24T03:47:30.4819442Z * [new tag] ciflow/trunk/156175 -> ciflow/trunk/156175 2025-07-24T03:47:30.4819840Z * [new tag] ciflow/trunk/156652 -> ciflow/trunk/156652 2025-07-24T03:47:30.4820231Z * [new tag] ciflow/trunk/156881 -> ciflow/trunk/156881 2025-07-24T03:47:30.4820626Z * [new tag] ciflow/trunk/157026 -> ciflow/trunk/157026 2025-07-24T03:47:30.4821011Z * [new tag] ciflow/trunk/157029 -> ciflow/trunk/157029 2025-07-24T03:47:30.4821402Z * [new tag] ciflow/trunk/157050 -> ciflow/trunk/157050 2025-07-24T03:47:30.4821799Z * [new tag] ciflow/trunk/157432 -> ciflow/trunk/157432 2025-07-24T03:47:30.4822203Z * [new tag] ciflow/trunk/157685 -> ciflow/trunk/157685 2025-07-24T03:47:30.4822597Z * [new tag] ciflow/trunk/157689 -> ciflow/trunk/157689 2025-07-24T03:47:30.4822988Z * [new tag] ciflow/trunk/157699 -> ciflow/trunk/157699 2025-07-24T03:47:30.4823386Z * [new tag] ciflow/trunk/157748 -> ciflow/trunk/157748 2025-07-24T03:47:30.4823770Z * [new tag] ciflow/trunk/157892 -> ciflow/trunk/157892 2025-07-24T03:47:30.4824161Z * [new tag] ciflow/trunk/157908 -> ciflow/trunk/157908 2025-07-24T03:47:30.4824557Z * [new tag] ciflow/trunk/157994 -> ciflow/trunk/157994 2025-07-24T03:47:30.4824942Z * [new tag] ciflow/trunk/158015 -> ciflow/trunk/158015 2025-07-24T03:47:30.4825424Z * [new tag] ciflow/trunk/158037 -> ciflow/trunk/158037 2025-07-24T03:47:30.5174559Z * [new tag] ciflow/trunk/158072 -> ciflow/trunk/158072 2025-07-24T03:47:30.5175008Z * [new tag] ciflow/trunk/158091 -> ciflow/trunk/158091 2025-07-24T03:47:30.5175411Z * [new tag] ciflow/trunk/158104 -> ciflow/trunk/158104 2025-07-24T03:47:30.5175803Z * [new tag] ciflow/trunk/158219 -> ciflow/trunk/158219 2025-07-24T03:47:30.5176198Z * [new tag] ciflow/trunk/158220 -> ciflow/trunk/158220 2025-07-24T03:47:30.5176587Z * [new tag] ciflow/trunk/158222 -> ciflow/trunk/158222 2025-07-24T03:47:30.5176986Z * [new tag] ciflow/trunk/158223 -> ciflow/trunk/158223 2025-07-24T03:47:30.5177381Z * [new tag] ciflow/trunk/158224 -> ciflow/trunk/158224 2025-07-24T03:47:30.5177786Z * [new tag] ciflow/trunk/158289 -> ciflow/trunk/158289 2025-07-24T03:47:30.5178189Z * [new tag] ciflow/trunk/158309 -> ciflow/trunk/158309 2025-07-24T03:47:30.5178575Z * [new tag] ciflow/trunk/158323 -> ciflow/trunk/158323 2025-07-24T03:47:30.5178978Z * [new tag] ciflow/trunk/158397 -> ciflow/trunk/158397 2025-07-24T03:47:30.5179371Z * [new tag] ciflow/trunk/158427 -> ciflow/trunk/158427 2025-07-24T03:47:30.5179772Z * [new tag] ciflow/trunk/158441 -> ciflow/trunk/158441 2025-07-24T03:47:30.5180169Z * [new tag] ciflow/trunk/158488 -> ciflow/trunk/158488 2025-07-24T03:47:30.5180558Z * [new tag] ciflow/trunk/158508 -> ciflow/trunk/158508 2025-07-24T03:47:30.5180951Z * [new tag] ciflow/trunk/158527 -> ciflow/trunk/158527 2025-07-24T03:47:30.5181336Z * [new tag] ciflow/trunk/158529 -> ciflow/trunk/158529 2025-07-24T03:47:30.5181738Z * [new tag] ciflow/trunk/158532 -> ciflow/trunk/158532 2025-07-24T03:47:30.5182131Z * [new tag] ciflow/trunk/158541 -> ciflow/trunk/158541 2025-07-24T03:47:30.5182517Z * [new tag] ciflow/trunk/158560 -> ciflow/trunk/158560 2025-07-24T03:47:30.5182910Z * [new tag] ciflow/trunk/158580 -> ciflow/trunk/158580 2025-07-24T03:47:30.5183297Z * [new tag] ciflow/trunk/158586 -> ciflow/trunk/158586 2025-07-24T03:47:30.5183696Z * [new tag] ciflow/trunk/158603 -> ciflow/trunk/158603 2025-07-24T03:47:30.5184099Z * [new tag] ciflow/trunk/158604 -> ciflow/trunk/158604 2025-07-24T03:47:30.5184489Z * [new tag] ciflow/trunk/158613 -> ciflow/trunk/158613 2025-07-24T03:47:30.5184892Z * [new tag] ciflow/trunk/158624 -> ciflow/trunk/158624 2025-07-24T03:47:30.5185290Z * [new tag] ciflow/trunk/158628 -> ciflow/trunk/158628 2025-07-24T03:47:30.5185694Z * [new tag] ciflow/trunk/158647 -> ciflow/trunk/158647 2025-07-24T03:47:30.5186081Z * [new tag] ciflow/trunk/158670 -> ciflow/trunk/158670 2025-07-24T03:47:30.5186474Z * [new tag] ciflow/trunk/158674 -> ciflow/trunk/158674 2025-07-24T03:47:30.5186868Z * [new tag] ciflow/trunk/158682 -> ciflow/trunk/158682 2025-07-24T03:47:30.5187257Z * [new tag] ciflow/trunk/158708 -> ciflow/trunk/158708 2025-07-24T03:47:30.5187660Z * [new tag] ciflow/trunk/158717 -> ciflow/trunk/158717 2025-07-24T03:47:30.5188045Z * [new tag] ciflow/trunk/158720 -> ciflow/trunk/158720 2025-07-24T03:47:30.5188441Z * [new tag] ciflow/trunk/158747 -> ciflow/trunk/158747 2025-07-24T03:47:30.5188973Z * [new tag] ciflow/trunk/158750 -> ciflow/trunk/158750 2025-07-24T03:47:30.5189448Z * [new tag] ciflow/trunk/158789 -> ciflow/trunk/158789 2025-07-24T03:47:30.5189844Z * [new tag] ciflow/trunk/158803 -> ciflow/trunk/158803 2025-07-24T03:47:30.5190234Z * [new tag] ciflow/trunk/158805 -> ciflow/trunk/158805 2025-07-24T03:47:30.5190635Z * [new tag] ciflow/trunk/158815 -> ciflow/trunk/158815 2025-07-24T03:47:30.5191026Z * [new tag] ciflow/trunk/158818 -> ciflow/trunk/158818 2025-07-24T03:47:30.5191422Z * [new tag] ciflow/trunk/158847 -> ciflow/trunk/158847 2025-07-24T03:47:30.5191812Z * [new tag] ciflow/trunk/158896 -> ciflow/trunk/158896 2025-07-24T03:47:30.5192203Z * [new tag] ciflow/trunk/158898 -> ciflow/trunk/158898 2025-07-24T03:47:30.5192597Z * [new tag] ciflow/trunk/158924 -> ciflow/trunk/158924 2025-07-24T03:47:30.5192990Z * [new tag] ciflow/trunk/158926 -> ciflow/trunk/158926 2025-07-24T03:47:30.5193388Z * [new tag] ciflow/trunk/158929 -> ciflow/trunk/158929 2025-07-24T03:47:30.5193783Z * [new tag] ciflow/trunk/158938 -> ciflow/trunk/158938 2025-07-24T03:47:30.5194174Z * [new tag] ciflow/trunk/158940 -> ciflow/trunk/158940 2025-07-24T03:47:30.5194569Z * [new tag] ciflow/trunk/158942 -> ciflow/trunk/158942 2025-07-24T03:47:30.5535454Z * [new tag] ciflow/trunk/158944 -> ciflow/trunk/158944 2025-07-24T03:47:30.5535914Z * [new tag] ciflow/trunk/158947 -> ciflow/trunk/158947 2025-07-24T03:47:30.5536316Z * [new tag] ciflow/trunk/158960 -> ciflow/trunk/158960 2025-07-24T03:47:30.5536713Z * [new tag] ciflow/trunk/158980 -> ciflow/trunk/158980 2025-07-24T03:47:30.5537131Z * [new tag] ciflow/trunk/158987 -> ciflow/trunk/158987 2025-07-24T03:47:30.5537518Z * [new tag] ciflow/trunk/158989 -> ciflow/trunk/158989 2025-07-24T03:47:30.5537913Z * [new tag] ciflow/trunk/158995 -> ciflow/trunk/158995 2025-07-24T03:47:30.5538351Z * [new tag] ciflow/trunk/158997 -> ciflow/trunk/158997 2025-07-24T03:47:30.5538783Z * [new tag] ciflow/trunk/158999 -> ciflow/trunk/158999 2025-07-24T03:47:30.5539184Z * [new tag] ciflow/trunk/159002 -> ciflow/trunk/159002 2025-07-24T03:47:30.5539574Z * [new tag] ciflow/unstable/123 -> ciflow/unstable/123 2025-07-24T03:47:30.5539978Z * [new tag] ciflow/xpu/138222 -> ciflow/xpu/138222 2025-07-24T03:47:30.5540368Z * [new tag] ciflow/xpu/152932 -> ciflow/xpu/152932 2025-07-24T03:47:30.5540748Z * [new tag] ciflow/xpu/155200 -> ciflow/xpu/155200 2025-07-24T03:47:30.5541142Z * [new tag] ciflow/xpu/156812 -> ciflow/xpu/156812 2025-07-24T03:47:30.5541516Z * [new tag] ciflow/xpu/157699 -> ciflow/xpu/157699 2025-07-24T03:47:30.5541897Z * [new tag] ciflow/xpu/157769 -> ciflow/xpu/157769 2025-07-24T03:47:30.5542279Z * [new tag] ciflow/xpu/157994 -> ciflow/xpu/157994 2025-07-24T03:47:30.5542662Z * [new tag] ciflow/xpu/158015 -> ciflow/xpu/158015 2025-07-24T03:47:30.5543050Z * [new tag] ciflow/xpu/158336 -> ciflow/xpu/158336 2025-07-24T03:47:30.5543427Z * [new tag] ciflow/xpu/158337 -> ciflow/xpu/158337 2025-07-24T03:47:30.5543819Z * [new tag] ciflow/xpu/158533 -> ciflow/xpu/158533 2025-07-24T03:47:30.5544198Z * [new tag] ciflow/xpu/158733 -> ciflow/xpu/158733 2025-07-24T03:47:30.5544857Z * [new tag] cslpull75 -> cslpull75 2025-07-24T03:47:30.5545219Z * [new tag] cslpull76 -> cslpull76 2025-07-24T03:47:30.5545577Z * [new tag] cslpull77 -> cslpull77 2025-07-24T03:47:30.5545931Z * [new tag] cslpull78 -> cslpull78 2025-07-24T03:47:30.5546277Z * [new tag] cslpull79 -> cslpull79 2025-07-24T03:47:30.5546634Z * [new tag] cslpull80 -> cslpull80 2025-07-24T03:47:30.5546976Z * [new tag] cslpull81 -> cslpull81 2025-07-24T03:47:30.5547325Z * [new tag] cslpull82 -> cslpull82 2025-07-24T03:47:30.5547677Z * [new tag] cslpull83 -> cslpull83 2025-07-24T03:47:30.5548018Z * [new tag] cslpull84 -> cslpull84 2025-07-24T03:47:30.5548374Z * [new tag] cslpull85 -> cslpull85 2025-07-24T03:47:30.5548720Z * [new tag] cslpull86 -> cslpull86 2025-07-24T03:47:30.5549067Z * [new tag] cslpull87 -> cslpull87 2025-07-24T03:47:30.5549413Z * [new tag] cslpull88 -> cslpull88 2025-07-24T03:47:30.5549759Z * [new tag] cslpull89 -> cslpull89 2025-07-24T03:47:30.5550111Z * [new tag] cslpull90 -> cslpull90 2025-07-24T03:47:30.5550492Z * [new tag] cslpull91 -> cslpull91 2025-07-24T03:47:30.5550846Z * [new tag] cslpull92 -> cslpull92 2025-07-24T03:47:30.5551231Z * [new tag] flight_5 -> flight_5 2025-07-24T03:47:30.5551585Z * [new tag] flight_5.1 -> flight_5.1 2025-07-24T03:47:30.5551933Z * [new tag] flight_5.2 -> flight_5.2 2025-07-24T03:47:30.5552288Z * [new tag] flight_5.3 -> flight_5.3 2025-07-24T03:47:30.5552640Z * [new tag] forpull1 -> forpull1 2025-07-24T03:47:30.5553017Z * [new tag] malfet/tag-2ef5611 -> malfet/tag-2ef5611 2025-07-24T03:47:30.5553430Z * [new tag] malfet/tag-317b1a0 -> malfet/tag-317b1a0 2025-07-24T03:47:30.5553824Z * [new tag] malfet/tag-ec6f767 -> malfet/tag-ec6f767 2025-07-24T03:47:30.5554224Z * [new tag] nightly-binary -> nightly-binary 2025-07-24T03:47:30.5554627Z * [new tag] sqzhang_flight4_plus -> sqzhang_flight4_plus 2025-07-24T03:47:30.5555020Z * [new tag] sqzhang_flight_3 -> sqzhang_flight_3 2025-07-24T03:47:30.5555640Z * [new tag] trunk/00da8e63ebb3bea5cf4382ea37ad1ae5598ac90d -> trunk/00da8e63ebb3bea5cf4382ea37ad1ae5598ac90d 2025-07-24T03:47:30.5787687Z * [new tag] trunk/0118931e273594996e3bbca10507f8240518041f -> trunk/0118931e273594996e3bbca10507f8240518041f 2025-07-24T03:47:30.5788494Z * [new tag] trunk/0142d5f4e26b1644de58bb8741e4baa04803d67e -> trunk/0142d5f4e26b1644de58bb8741e4baa04803d67e 2025-07-24T03:47:30.5789274Z * [new tag] trunk/0204099762f9f6118b1c95939a9319fda5201393 -> trunk/0204099762f9f6118b1c95939a9319fda5201393 2025-07-24T03:47:30.5790051Z * [new tag] trunk/036eb1f65dc6ed5e1e4b88a94e20afe6e3f356fe -> trunk/036eb1f65dc6ed5e1e4b88a94e20afe6e3f356fe 2025-07-24T03:47:30.5790855Z * [new tag] trunk/04349f9ee541c7d07cc057bbe739f46bd4c30dcc -> trunk/04349f9ee541c7d07cc057bbe739f46bd4c30dcc 2025-07-24T03:47:30.5791639Z * [new tag] trunk/04a393507b7e3fea0ef98024ebc14061173369f0 -> trunk/04a393507b7e3fea0ef98024ebc14061173369f0 2025-07-24T03:47:30.5792553Z * [new tag] trunk/04ac258cf6a60423a01d30cbe0886e741f5ea97d -> trunk/04ac258cf6a60423a01d30cbe0886e741f5ea97d 2025-07-24T03:47:30.5793436Z * [new tag] trunk/07c4c2a792dc4503b32fa2679d436e4aa77352de -> trunk/07c4c2a792dc4503b32fa2679d436e4aa77352de 2025-07-24T03:47:30.5794219Z * [new tag] trunk/07df6ba7f5597488a93b3855d52d2ead55675125 -> trunk/07df6ba7f5597488a93b3855d52d2ead55675125 2025-07-24T03:47:30.5795006Z * [new tag] trunk/08540b13c6a97908b7f4d77e504cc572db9e78f3 -> trunk/08540b13c6a97908b7f4d77e504cc572db9e78f3 2025-07-24T03:47:30.5795803Z * [new tag] trunk/0971637c115d2a41aff08d75deca02751a24f709 -> trunk/0971637c115d2a41aff08d75deca02751a24f709 2025-07-24T03:47:30.5796570Z * [new tag] trunk/09db3a22e8783c4841697317688ba9467c7cc457 -> trunk/09db3a22e8783c4841697317688ba9467c7cc457 2025-07-24T03:47:30.5797368Z * [new tag] trunk/0c0fcb53ff5ee1eb5f0d1f535ed3726d01f8abb5 -> trunk/0c0fcb53ff5ee1eb5f0d1f535ed3726d01f8abb5 2025-07-24T03:47:30.5798167Z * [new tag] trunk/0e46f542861832153ae37d04da23e9fe8593a312 -> trunk/0e46f542861832153ae37d04da23e9fe8593a312 2025-07-24T03:47:30.5798966Z * [new tag] trunk/0eae6b68f424c0fade1e3db0ba179ae8c9f5ad25 -> trunk/0eae6b68f424c0fade1e3db0ba179ae8c9f5ad25 2025-07-24T03:47:30.5799795Z * [new tag] trunk/0ecfb93a0bfad553b98047ed79fb2b9a54052bb8 -> trunk/0ecfb93a0bfad553b98047ed79fb2b9a54052bb8 2025-07-24T03:47:30.5800582Z * [new tag] trunk/1227ed6674100f6efb3f7b0e359c51383397c354 -> trunk/1227ed6674100f6efb3f7b0e359c51383397c354 2025-07-24T03:47:30.5801355Z * [new tag] trunk/15a50dcf1c9492354819179da4bc994014537ab9 -> trunk/15a50dcf1c9492354819179da4bc994014537ab9 2025-07-24T03:47:30.5802144Z * [new tag] trunk/15ef4f28df0a14e9f0d55a57a4e2db415a303be7 -> trunk/15ef4f28df0a14e9f0d55a57a4e2db415a303be7 2025-07-24T03:47:30.5802934Z * [new tag] trunk/16b21fa8b288140e5067d63e46f670aca495b4cd -> trunk/16b21fa8b288140e5067d63e46f670aca495b4cd 2025-07-24T03:47:30.5803736Z * [new tag] trunk/1839e8d04b81ee6eda0cff6fbfc218a7a600f6f7 -> trunk/1839e8d04b81ee6eda0cff6fbfc218a7a600f6f7 2025-07-24T03:47:30.5804531Z * [new tag] trunk/187c2deb408275f980a8a5a73a522767ddb9bd30 -> trunk/187c2deb408275f980a8a5a73a522767ddb9bd30 2025-07-24T03:47:30.5805328Z * [new tag] trunk/193b29ee0c9db3573775ccfd226a4ac55d3ad80e -> trunk/193b29ee0c9db3573775ccfd226a4ac55d3ad80e 2025-07-24T03:47:30.5806128Z * [new tag] trunk/1a6b21c59f08e3c7ae2e22a866828e2fff21db68 -> trunk/1a6b21c59f08e3c7ae2e22a866828e2fff21db68 2025-07-24T03:47:30.5806919Z * [new tag] trunk/1ab1ab38a04e8ee852ff27eb8ae4989662511965 -> trunk/1ab1ab38a04e8ee852ff27eb8ae4989662511965 2025-07-24T03:47:30.5807717Z * [new tag] trunk/1b456c580d8d2b85e5eeb3e8ca92d5284e0e9156 -> trunk/1b456c580d8d2b85e5eeb3e8ca92d5284e0e9156 2025-07-24T03:47:30.5808592Z * [new tag] trunk/1b5fdb23b95f48526212da66b85572450a97355f -> trunk/1b5fdb23b95f48526212da66b85572450a97355f 2025-07-24T03:47:30.5809373Z * [new tag] trunk/1b772de3974ee24f7d3ebcb2b35278d6e3356096 -> trunk/1b772de3974ee24f7d3ebcb2b35278d6e3356096 2025-07-24T03:47:30.5810190Z * [new tag] trunk/1b88da1cac30dec473cbdca4d9efb9b117cb8cdb -> trunk/1b88da1cac30dec473cbdca4d9efb9b117cb8cdb 2025-07-24T03:47:30.5810989Z * [new tag] trunk/1b91954b9ffc2416532fe4d41ed8a97fd974a253 -> trunk/1b91954b9ffc2416532fe4d41ed8a97fd974a253 2025-07-24T03:47:30.5811779Z * [new tag] trunk/1c6328a588d53fe7f779942e3d8c03ee45a79e80 -> trunk/1c6328a588d53fe7f779942e3d8c03ee45a79e80 2025-07-24T03:47:30.5812568Z * [new tag] trunk/1d302eaee80e15d6d011749f70b3f18c2218ae84 -> trunk/1d302eaee80e15d6d011749f70b3f18c2218ae84 2025-07-24T03:47:30.5813446Z * [new tag] trunk/1e86fa2e5bed964fcbc1d9d7c43279ce29eb4def -> trunk/1e86fa2e5bed964fcbc1d9d7c43279ce29eb4def 2025-07-24T03:47:30.6040934Z * [new tag] trunk/1eb6b2089fbc1a01e38448222ef0e6daa7504924 -> trunk/1eb6b2089fbc1a01e38448222ef0e6daa7504924 2025-07-24T03:47:30.6041799Z * [new tag] trunk/216ba6e5f235bbfa0b025303ad4aa5ee473c5a8b -> trunk/216ba6e5f235bbfa0b025303ad4aa5ee473c5a8b 2025-07-24T03:47:30.6042604Z * [new tag] trunk/21c97bd565be29ebdea6c690caf2be22f458698f -> trunk/21c97bd565be29ebdea6c690caf2be22f458698f 2025-07-24T03:47:30.6043398Z * [new tag] trunk/22920c9138fb7a09db325038b70c8cf636b50653 -> trunk/22920c9138fb7a09db325038b70c8cf636b50653 2025-07-24T03:47:30.6044178Z * [new tag] trunk/22d82222c6e2a2ef4badc6b816d233a4cec924c3 -> trunk/22d82222c6e2a2ef4badc6b816d233a4cec924c3 2025-07-24T03:47:30.6044989Z * [new tag] trunk/23550ab735eee1b9cc90609788dc64ccfb242af2 -> trunk/23550ab735eee1b9cc90609788dc64ccfb242af2 2025-07-24T03:47:30.6045796Z * [new tag] trunk/24b49b98810bb77f3cfa4c15baa9a15c9be3db61 -> trunk/24b49b98810bb77f3cfa4c15baa9a15c9be3db61 2025-07-24T03:47:30.6046580Z * [new tag] trunk/255a04baf11f2a999386632271f13ae4e7d3836d -> trunk/255a04baf11f2a999386632271f13ae4e7d3836d 2025-07-24T03:47:30.6047369Z * [new tag] trunk/255c0545e7eac2ec6d00a41a3fc9d6d8201f8f39 -> trunk/255c0545e7eac2ec6d00a41a3fc9d6d8201f8f39 2025-07-24T03:47:30.6048244Z * [new tag] trunk/25f4d7e48271eb4d2f1dbdb4a6380b2c00339b5e -> trunk/25f4d7e48271eb4d2f1dbdb4a6380b2c00339b5e 2025-07-24T03:47:30.6049034Z * [new tag] trunk/25fbf09d5fc14b49a37eba9452db76985c8b4e38 -> trunk/25fbf09d5fc14b49a37eba9452db76985c8b4e38 2025-07-24T03:47:30.6049823Z * [new tag] trunk/27af877f8459988496d47b6e22d80d98c1e80581 -> trunk/27af877f8459988496d47b6e22d80d98c1e80581 2025-07-24T03:47:30.6050596Z * [new tag] trunk/288bf54a23a49dd3b765b4e1c7313c706b46a08a -> trunk/288bf54a23a49dd3b765b4e1c7313c706b46a08a 2025-07-24T03:47:30.6051388Z * [new tag] trunk/2955acaed6a0f93f1f0913df3f840912392bc2ff -> trunk/2955acaed6a0f93f1f0913df3f840912392bc2ff 2025-07-24T03:47:30.6052193Z * [new tag] trunk/2a249f1967d29626fe6ac6a07f28440348d1cc93 -> trunk/2a249f1967d29626fe6ac6a07f28440348d1cc93 2025-07-24T03:47:30.6052977Z * [new tag] trunk/2a60b8fc97cf4fbb408221b5e8cb0ad683f78b04 -> trunk/2a60b8fc97cf4fbb408221b5e8cb0ad683f78b04 2025-07-24T03:47:30.6053772Z * [new tag] trunk/2bb684304d26804ab87103ada05b6ba63e309b59 -> trunk/2bb684304d26804ab87103ada05b6ba63e309b59 2025-07-24T03:47:30.6054568Z * [new tag] trunk/2c16eb9f3db0ba68520e5832d8bb6d3d875bdaeb -> trunk/2c16eb9f3db0ba68520e5832d8bb6d3d875bdaeb 2025-07-24T03:47:30.6055366Z * [new tag] trunk/2c37acfd891298bd3e1f60fe5c50d3ef8146292d -> trunk/2c37acfd891298bd3e1f60fe5c50d3ef8146292d 2025-07-24T03:47:30.6056180Z * [new tag] trunk/2cdafab0bd1510e4bd286f33fd94807c59c7e691 -> trunk/2cdafab0bd1510e4bd286f33fd94807c59c7e691 2025-07-24T03:47:30.6057007Z * [new tag] trunk/2dccff7dcf56b0d168ebfd7ca08bdeca37273c56 -> trunk/2dccff7dcf56b0d168ebfd7ca08bdeca37273c56 2025-07-24T03:47:30.6057817Z * [new tag] trunk/2df2e3bb511eb3d72742334b116e97656539570d -> trunk/2df2e3bb511eb3d72742334b116e97656539570d 2025-07-24T03:47:30.6058598Z * [new tag] trunk/2e038793ef90567cc46e10ff2ca25c4a379428ab -> trunk/2e038793ef90567cc46e10ff2ca25c4a379428ab 2025-07-24T03:47:30.6059375Z * [new tag] trunk/2ecf083b7247f265a03ec296ba9d7b795f035118 -> trunk/2ecf083b7247f265a03ec296ba9d7b795f035118 2025-07-24T03:47:30.6060180Z * [new tag] trunk/30b0ad5c683ec0a391ae8b6e12de9fdfced67ddb -> trunk/30b0ad5c683ec0a391ae8b6e12de9fdfced67ddb 2025-07-24T03:47:30.6060984Z * [new tag] trunk/32aade9d8d39d58c33215f50afe5382458d70821 -> trunk/32aade9d8d39d58c33215f50afe5382458d70821 2025-07-24T03:47:30.6062542Z * [new tag] trunk/33c9b414aaa59ab03b7969599afc0de915353519 -> trunk/33c9b414aaa59ab03b7969599afc0de915353519 2025-07-24T03:47:30.6063332Z * [new tag] trunk/350d6af52c76481d0f386208b6b86be93b7ff22d -> trunk/350d6af52c76481d0f386208b6b86be93b7ff22d 2025-07-24T03:47:30.6064120Z * [new tag] trunk/35df895d0564cc53dfcad829732fc6b3a9b7eb86 -> trunk/35df895d0564cc53dfcad829732fc6b3a9b7eb86 2025-07-24T03:47:30.6064923Z * [new tag] trunk/35f1b4ad9ef022ce59a1084fe237ceb35c7aab99 -> trunk/35f1b4ad9ef022ce59a1084fe237ceb35c7aab99 2025-07-24T03:47:30.6065722Z * [new tag] trunk/3639d29ea178c7c0e8be7ac55d4753772f428bc3 -> trunk/3639d29ea178c7c0e8be7ac55d4753772f428bc3 2025-07-24T03:47:30.6066499Z * [new tag] trunk/3703dabe42493af642104945d27a1ef6c3a6cea6 -> trunk/3703dabe42493af642104945d27a1ef6c3a6cea6 2025-07-24T03:47:30.6284988Z * [new tag] trunk/371ffaf415baf6251b9d98466c8ee970b3556282 -> trunk/371ffaf415baf6251b9d98466c8ee970b3556282 2025-07-24T03:47:30.6285827Z * [new tag] trunk/37ded2ac906c2a15f5613e134d7eeb8a8f953bb7 -> trunk/37ded2ac906c2a15f5613e134d7eeb8a8f953bb7 2025-07-24T03:47:30.6286613Z * [new tag] trunk/38c04415a9440d9e5348be34f7bd71a12ed58af8 -> trunk/38c04415a9440d9e5348be34f7bd71a12ed58af8 2025-07-24T03:47:30.6287384Z * [new tag] trunk/392fa75411a1f293e891395f005615b257c03eda -> trunk/392fa75411a1f293e891395f005615b257c03eda 2025-07-24T03:47:30.6288234Z * [new tag] trunk/393377d2156cf4dfb0a7d53c79a85a8b24055ae0 -> trunk/393377d2156cf4dfb0a7d53c79a85a8b24055ae0 2025-07-24T03:47:30.6289080Z * [new tag] trunk/393fecb2cc43c03b54ade0c11078dd4e353d8b2f -> trunk/393fecb2cc43c03b54ade0c11078dd4e353d8b2f 2025-07-24T03:47:30.6289880Z * [new tag] trunk/39ac189808c61588f3594dbc2fc1d69bb6194c47 -> trunk/39ac189808c61588f3594dbc2fc1d69bb6194c47 2025-07-24T03:47:30.6290663Z * [new tag] trunk/39b54b78d73884c0f2daa2826f3d63c352cb5e39 -> trunk/39b54b78d73884c0f2daa2826f3d63c352cb5e39 2025-07-24T03:47:30.6291455Z * [new tag] trunk/3a67bf9c620e8958a1677e68779be08eb34dafa3 -> trunk/3a67bf9c620e8958a1677e68779be08eb34dafa3 2025-07-24T03:47:30.6292250Z * [new tag] trunk/3bb729df97ed632e4629b706eb18a30dffebc310 -> trunk/3bb729df97ed632e4629b706eb18a30dffebc310 2025-07-24T03:47:30.6293018Z * [new tag] trunk/4060f3004264dc4414239cdc3145b7e46fa3729f -> trunk/4060f3004264dc4414239cdc3145b7e46fa3729f 2025-07-24T03:47:30.6293806Z * [new tag] trunk/415dfabe9b569b71098a2f874f3fc67ad2a4fc2e -> trunk/415dfabe9b569b71098a2f874f3fc67ad2a4fc2e 2025-07-24T03:47:30.6294673Z * [new tag] trunk/41b2c4d1196311ac619d6a025f0181e3977bbe8c -> trunk/41b2c4d1196311ac619d6a025f0181e3977bbe8c 2025-07-24T03:47:30.6295460Z * [new tag] trunk/41b6cdaf76180a3d1308c898c094736305c7ceec -> trunk/41b6cdaf76180a3d1308c898c094736305c7ceec 2025-07-24T03:47:30.6296261Z * [new tag] trunk/42a69f7c2b11cc4c6a28424c6e0ea3ca8e9a0b5f -> trunk/42a69f7c2b11cc4c6a28424c6e0ea3ca8e9a0b5f 2025-07-24T03:47:30.6297051Z * [new tag] trunk/4366610f5a18ffe72e947fab9adb5ee072d74b91 -> trunk/4366610f5a18ffe72e947fab9adb5ee072d74b91 2025-07-24T03:47:30.6297836Z * [new tag] trunk/4869f7117009fb99a57482fce56b00c6163fbce6 -> trunk/4869f7117009fb99a57482fce56b00c6163fbce6 2025-07-24T03:47:30.6298611Z * [new tag] trunk/4b02bd76d3e9a74609d6fcf7a749801ad253916d -> trunk/4b02bd76d3e9a74609d6fcf7a749801ad253916d 2025-07-24T03:47:30.6299390Z * [new tag] trunk/4d055982e38f59fdb2a4c9d8855e58548bc42c12 -> trunk/4d055982e38f59fdb2a4c9d8855e58548bc42c12 2025-07-24T03:47:30.6300232Z * [new tag] trunk/4d3ecefda5a41df678fd68b020c521db95e9fbde -> trunk/4d3ecefda5a41df678fd68b020c521db95e9fbde 2025-07-24T03:47:30.6301279Z * [new tag] trunk/4d5d56a30edf3b524f907ae07b7985d6698a2c4b -> trunk/4d5d56a30edf3b524f907ae07b7985d6698a2c4b 2025-07-24T03:47:30.6302072Z * [new tag] trunk/4d5d627e5ff3310318f9df80348ee419324228df -> trunk/4d5d627e5ff3310318f9df80348ee419324228df 2025-07-24T03:47:30.6302868Z * [new tag] trunk/4d9d884c3f5adc89b59d25d5a080498b76f9bb39 -> trunk/4d9d884c3f5adc89b59d25d5a080498b76f9bb39 2025-07-24T03:47:30.6303658Z * [new tag] trunk/4da98351b9e231bbbe83b5c590cf7d2ea382333a -> trunk/4da98351b9e231bbbe83b5c590cf7d2ea382333a 2025-07-24T03:47:30.6304469Z * [new tag] trunk/4dce5b71a0751aa4287c3a80adf07afc773ec4db -> trunk/4dce5b71a0751aa4287c3a80adf07afc773ec4db 2025-07-24T03:47:30.6305261Z * [new tag] trunk/4e13eca713c60ca63c1116823b99d2461a7422ef -> trunk/4e13eca713c60ca63c1116823b99d2461a7422ef 2025-07-24T03:47:30.6306040Z * [new tag] trunk/4e19477196547eb2e8157d6d132689373ffcf0fa -> trunk/4e19477196547eb2e8157d6d132689373ffcf0fa 2025-07-24T03:47:30.6306913Z * [new tag] trunk/4e8dd11be17a974e0ee5503b3061d4d47467844f -> trunk/4e8dd11be17a974e0ee5503b3061d4d47467844f 2025-07-24T03:47:30.6307699Z * [new tag] trunk/4ebd2690654ffe487c43941ebaea41b99914d8b7 -> trunk/4ebd2690654ffe487c43941ebaea41b99914d8b7 2025-07-24T03:47:30.6308486Z * [new tag] trunk/4ed1b03f7275075b1783d1deab946ced4ceba4d6 -> trunk/4ed1b03f7275075b1783d1deab946ced4ceba4d6 2025-07-24T03:47:30.6309270Z * [new tag] trunk/4ee4863232b9e07728d85254768bcba3aadc9b9a -> trunk/4ee4863232b9e07728d85254768bcba3aadc9b9a 2025-07-24T03:47:30.6310054Z * [new tag] trunk/4f36743f5eef2d9c40357eb5d8d8b1aeeacfbb2a -> trunk/4f36743f5eef2d9c40357eb5d8d8b1aeeacfbb2a 2025-07-24T03:47:30.6310843Z * [new tag] trunk/4f5b34427b57e8b876d12e6ce551f04a7c31cacf -> trunk/4f5b34427b57e8b876d12e6ce551f04a7c31cacf 2025-07-24T03:47:30.6523666Z * [new tag] trunk/4f5be5661240427fbbfbe1d137dce53ca32846b5 -> trunk/4f5be5661240427fbbfbe1d137dce53ca32846b5 2025-07-24T03:47:30.6524508Z * [new tag] trunk/4f70fbbd16d1f0d62af082246a95e56cffccc860 -> trunk/4f70fbbd16d1f0d62af082246a95e56cffccc860 2025-07-24T03:47:30.6525321Z * [new tag] trunk/4ff0e033c16aae064f05ee9300053cd304891673 -> trunk/4ff0e033c16aae064f05ee9300053cd304891673 2025-07-24T03:47:30.6526105Z * [new tag] trunk/4ff9b7fa3116b1c429e577830ac6e816734ad029 -> trunk/4ff9b7fa3116b1c429e577830ac6e816734ad029 2025-07-24T03:47:30.6526884Z * [new tag] trunk/502486d9466e81cda76c91d33eb869235480bee9 -> trunk/502486d9466e81cda76c91d33eb869235480bee9 2025-07-24T03:47:30.6527661Z * [new tag] trunk/503362d019b3782581492af7767945dbd75ca1c9 -> trunk/503362d019b3782581492af7767945dbd75ca1c9 2025-07-24T03:47:30.6528494Z * [new tag] trunk/508cdc4fc9f7a91b5fd3f20de38d673daebf1af3 -> trunk/508cdc4fc9f7a91b5fd3f20de38d673daebf1af3 2025-07-24T03:47:30.6529308Z * [new tag] trunk/50940270ae179134cd4f9072f04ffdd55daf808e -> trunk/50940270ae179134cd4f9072f04ffdd55daf808e 2025-07-24T03:47:30.6530092Z * [new tag] trunk/50b2069b61942e923528c94ccbbc8ab5e92c381e -> trunk/50b2069b61942e923528c94ccbbc8ab5e92c381e 2025-07-24T03:47:30.6530922Z * [new tag] trunk/50d8168c8b62990fda86398c9dee1dc8cbd6908d -> trunk/50d8168c8b62990fda86398c9dee1dc8cbd6908d 2025-07-24T03:47:30.6531734Z * [new tag] trunk/510c398a4f1dff9217938159d605290149358332 -> trunk/510c398a4f1dff9217938159d605290149358332 2025-07-24T03:47:30.6532497Z * [new tag] trunk/5116293f7eb587ada6076f3c3ea1711a0ec7ab4a -> trunk/5116293f7eb587ada6076f3c3ea1711a0ec7ab4a 2025-07-24T03:47:30.6533289Z * [new tag] trunk/5118a8f8a5a7906e26bcbd35370de3416b5cdab0 -> trunk/5118a8f8a5a7906e26bcbd35370de3416b5cdab0 2025-07-24T03:47:30.6534674Z * [new tag] trunk/51560797ce70aea353585d8381ee88c2e6c81075 -> trunk/51560797ce70aea353585d8381ee88c2e6c81075 2025-07-24T03:47:30.6535536Z * [new tag] trunk/517d2995e09603017f07f065c1ae5b8d25962cd2 -> trunk/517d2995e09603017f07f065c1ae5b8d25962cd2 2025-07-24T03:47:30.6536319Z * [new tag] trunk/51853b358e698f6a42c1eef045ab8fa766129ee1 -> trunk/51853b358e698f6a42c1eef045ab8fa766129ee1 2025-07-24T03:47:30.6537103Z * [new tag] trunk/51a708ffc679b13f99e4c7cf19bc00082a3266a6 -> trunk/51a708ffc679b13f99e4c7cf19bc00082a3266a6 2025-07-24T03:47:30.6537908Z * [new tag] trunk/51eb8e8f84bb9aa901cff17dd649e18b17a8908c -> trunk/51eb8e8f84bb9aa901cff17dd649e18b17a8908c 2025-07-24T03:47:30.6547209Z * [new tag] trunk/52214485747ceb0ea47ce5a09babb0b82b3282b8 -> trunk/52214485747ceb0ea47ce5a09babb0b82b3282b8 2025-07-24T03:47:30.6548026Z * [new tag] trunk/522a18bd6c094c766c0de9ef539682d1a3f04a15 -> trunk/522a18bd6c094c766c0de9ef539682d1a3f04a15 2025-07-24T03:47:30.6548849Z * [new tag] trunk/523b637cbeb69665072a2cf489ec1c5313b57670 -> trunk/523b637cbeb69665072a2cf489ec1c5313b57670 2025-07-24T03:47:30.6549628Z * [new tag] trunk/524e8270955788c53473497fd2cc16c5aa0e4c67 -> trunk/524e8270955788c53473497fd2cc16c5aa0e4c67 2025-07-24T03:47:30.6550402Z * [new tag] trunk/5264f8cd8d08272003298cdefe6bd60b1b8c80b4 -> trunk/5264f8cd8d08272003298cdefe6bd60b1b8c80b4 2025-07-24T03:47:30.6551187Z * [new tag] trunk/52772765e034622d1a86476e4bb19c28e3945f74 -> trunk/52772765e034622d1a86476e4bb19c28e3945f74 2025-07-24T03:47:30.6551936Z * [new tag] trunk/5285d1024376396a00fe750fe3d628c65dc26254 -> trunk/5285d1024376396a00fe750fe3d628c65dc26254 2025-07-24T03:47:30.6552713Z * [new tag] trunk/529e0357c6c4e74f8cd32c29198c5f1c9f6e329d -> trunk/529e0357c6c4e74f8cd32c29198c5f1c9f6e329d 2025-07-24T03:47:30.6553509Z * [new tag] trunk/52c294008ee764d1931d4f0c1aece984431e4596 -> trunk/52c294008ee764d1931d4f0c1aece984431e4596 2025-07-24T03:47:30.6554301Z * [new tag] trunk/52e4e41cbc36a5cf44395ff84ca2d069263560de -> trunk/52e4e41cbc36a5cf44395ff84ca2d069263560de 2025-07-24T03:47:30.6555113Z * [new tag] trunk/52edfb2cbcdded865645cc82bb1bb501fdcbdb52 -> trunk/52edfb2cbcdded865645cc82bb1bb501fdcbdb52 2025-07-24T03:47:30.6555905Z * [new tag] trunk/52f873adc23e7069ce95933d97ee514022cfbf7d -> trunk/52f873adc23e7069ce95933d97ee514022cfbf7d 2025-07-24T03:47:30.6556693Z * [new tag] trunk/53057fc16af2d381a61fe891b52ac8731ee9dfae -> trunk/53057fc16af2d381a61fe891b52ac8731ee9dfae 2025-07-24T03:47:30.6557486Z * [new tag] trunk/534c454e77ac0eefd52d63c60d42911e7f9617ea -> trunk/534c454e77ac0eefd52d63c60d42911e7f9617ea 2025-07-24T03:47:30.6757530Z * [new tag] trunk/53ab73090eb66d96e45ec134e41cf67266208954 -> trunk/53ab73090eb66d96e45ec134e41cf67266208954 2025-07-24T03:47:30.6758396Z * [new tag] trunk/53cd18f6b31bc2ea62985fda87e96aa17cd11bc1 -> trunk/53cd18f6b31bc2ea62985fda87e96aa17cd11bc1 2025-07-24T03:47:30.6759211Z * [new tag] trunk/53d06e18d9b165cb8aa0a5a3cbb6837ac3000c59 -> trunk/53d06e18d9b165cb8aa0a5a3cbb6837ac3000c59 2025-07-24T03:47:30.6759997Z * [new tag] trunk/53e0b9c3936176521ed8d71c00abd5b7499057c2 -> trunk/53e0b9c3936176521ed8d71c00abd5b7499057c2 2025-07-24T03:47:30.6760795Z * [new tag] trunk/541297daae63f74a90bac52c5db3540bf84bc971 -> trunk/541297daae63f74a90bac52c5db3540bf84bc971 2025-07-24T03:47:30.6761584Z * [new tag] trunk/5430990bd7d050f249b1cdf1f7d1016c4b17488d -> trunk/5430990bd7d050f249b1cdf1f7d1016c4b17488d 2025-07-24T03:47:30.6762369Z * [new tag] trunk/5435e7539930be7bd038683ce096038b30c5bb5f -> trunk/5435e7539930be7bd038683ce096038b30c5bb5f 2025-07-24T03:47:30.6763312Z * [new tag] trunk/545fbd58dc8b4f688f6b259cb671b3ec16a46810 -> trunk/545fbd58dc8b4f688f6b259cb671b3ec16a46810 2025-07-24T03:47:30.6764178Z * [new tag] trunk/54701a0c943245402fceeab0e55d7aa394303c20 -> trunk/54701a0c943245402fceeab0e55d7aa394303c20 2025-07-24T03:47:30.6764962Z * [new tag] trunk/5484890539823d9867c74209588abe095c9232a1 -> trunk/5484890539823d9867c74209588abe095c9232a1 2025-07-24T03:47:30.6765746Z * [new tag] trunk/548c9d8281d9b3d6d12e90c40b3387faf0e24c61 -> trunk/548c9d8281d9b3d6d12e90c40b3387faf0e24c61 2025-07-24T03:47:30.6766535Z * [new tag] trunk/54976bca103fcf2b5037cc0cd1b37c4639fcf779 -> trunk/54976bca103fcf2b5037cc0cd1b37c4639fcf779 2025-07-24T03:47:30.6767331Z * [new tag] trunk/54998c2daaf5b8919cf82367492dd3c5177ab935 -> trunk/54998c2daaf5b8919cf82367492dd3c5177ab935 2025-07-24T03:47:30.6768155Z * [new tag] trunk/54a4d34d100f4ebe45f486451967daba896e839c -> trunk/54a4d34d100f4ebe45f486451967daba896e839c 2025-07-24T03:47:30.6768963Z * [new tag] trunk/54a7e5b5983d237b324b50703bcb0919a6c4c296 -> trunk/54a7e5b5983d237b324b50703bcb0919a6c4c296 2025-07-24T03:47:30.6769758Z * [new tag] trunk/54b8087f638de57c1c93c4624d03f2f2c512b90e -> trunk/54b8087f638de57c1c93c4624d03f2f2c512b90e 2025-07-24T03:47:30.6770536Z * [new tag] trunk/55108074c0795be3b617d3b13b06794f63e1f8ca -> trunk/55108074c0795be3b617d3b13b06794f63e1f8ca 2025-07-24T03:47:30.6771308Z * [new tag] trunk/554b5680405e6197a985040ffe88157beb637450 -> trunk/554b5680405e6197a985040ffe88157beb637450 2025-07-24T03:47:30.6772075Z * [new tag] trunk/555f3562541992b66a550eca8e8740884b1247f8 -> trunk/555f3562541992b66a550eca8e8740884b1247f8 2025-07-24T03:47:30.6772860Z * [new tag] trunk/5596cefba623fcc0739f1e9568131a85973cf1f9 -> trunk/5596cefba623fcc0739f1e9568131a85973cf1f9 2025-07-24T03:47:30.6773724Z * [new tag] trunk/55d888a616be3c94d8e4073b4d1580541692997d -> trunk/55d888a616be3c94d8e4073b4d1580541692997d 2025-07-24T03:47:30.6774573Z * [new tag] trunk/55dae0bf7a4b501be91d0e022e675337dfe288ff -> trunk/55dae0bf7a4b501be91d0e022e675337dfe288ff 2025-07-24T03:47:30.6775391Z * [new tag] trunk/55ef7b15e0b2de903bfc26adfb0788ecfbcb4ed4 -> trunk/55ef7b15e0b2de903bfc26adfb0788ecfbcb4ed4 2025-07-24T03:47:30.6776215Z * [new tag] trunk/55ff4f85e9f31a3fced069ad526ced16e543cef3 -> trunk/55ff4f85e9f31a3fced069ad526ced16e543cef3 2025-07-24T03:47:30.6777029Z * [new tag] trunk/5606c516fd87e5c3594177e4ca64c3cac7fdafd5 -> trunk/5606c516fd87e5c3594177e4ca64c3cac7fdafd5 2025-07-24T03:47:30.6777822Z * [new tag] trunk/5619bf997112447a66cf6c1e4f4c4186813afad5 -> trunk/5619bf997112447a66cf6c1e4f4c4186813afad5 2025-07-24T03:47:30.6778605Z * [new tag] trunk/5633283574c458bd6a3cbb6a0a890f0cb9c8b2b5 -> trunk/5633283574c458bd6a3cbb6a0a890f0cb9c8b2b5 2025-07-24T03:47:30.6779393Z * [new tag] trunk/563fd95563c5edd732ae260b3bd3d0c38822ab57 -> trunk/563fd95563c5edd732ae260b3bd3d0c38822ab57 2025-07-24T03:47:30.6780201Z * [new tag] trunk/565fd079099d33a81c11d7b36581f09441ba6efa -> trunk/565fd079099d33a81c11d7b36581f09441ba6efa 2025-07-24T03:47:30.6780976Z * [new tag] trunk/568ca89bac9a80a66d664593a26ae69ac604796e -> trunk/568ca89bac9a80a66d664593a26ae69ac604796e 2025-07-24T03:47:30.6781774Z * [new tag] trunk/5692cbb818f1af9fcce9234e202d232afa5f3fa3 -> trunk/5692cbb818f1af9fcce9234e202d232afa5f3fa3 2025-07-24T03:47:30.6782569Z * [new tag] trunk/56b03df6ac5b4185a2b7b92f253565500a5b51ca -> trunk/56b03df6ac5b4185a2b7b92f253565500a5b51ca 2025-07-24T03:47:30.6783351Z * [new tag] trunk/56b3bf0c74f5837fd4fa6293bc515d353cb10295 -> trunk/56b3bf0c74f5837fd4fa6293bc515d353cb10295 2025-07-24T03:47:30.6980070Z * [new tag] trunk/56c69bedcc7e2211e5a3d6249e51b1674be5d10e -> trunk/56c69bedcc7e2211e5a3d6249e51b1674be5d10e 2025-07-24T03:47:30.6981164Z * [new tag] trunk/56d07d0bde5507cbd0b1298a372ba2e0d7b969d2 -> trunk/56d07d0bde5507cbd0b1298a372ba2e0d7b969d2 2025-07-24T03:47:30.6981987Z * [new tag] trunk/56df025d5156a84c846a4e469c922c0f08fb3265 -> trunk/56df025d5156a84c846a4e469c922c0f08fb3265 2025-07-24T03:47:30.6982758Z * [new tag] trunk/57024913c409764f129d6a7792625f5b05462e31 -> trunk/57024913c409764f129d6a7792625f5b05462e31 2025-07-24T03:47:30.6983548Z * [new tag] trunk/576253c47603baff6709353631e92e8da7d8d7dd -> trunk/576253c47603baff6709353631e92e8da7d8d7dd 2025-07-24T03:47:30.6984391Z * [new tag] trunk/5763ec5f8d11df5eea962bedc74563394c0e273f -> trunk/5763ec5f8d11df5eea962bedc74563394c0e273f 2025-07-24T03:47:30.6985227Z * [new tag] trunk/577baa411675ed241c7d5cf79f25c13e29dac583 -> trunk/577baa411675ed241c7d5cf79f25c13e29dac583 2025-07-24T03:47:30.6986043Z * [new tag] trunk/57e4d7b5ccb8e35b434b62cc1f9aafb7d4d82b55 -> trunk/57e4d7b5ccb8e35b434b62cc1f9aafb7d4d82b55 2025-07-24T03:47:30.6986854Z * [new tag] trunk/583138d170ff8b60a321211cce8d2e5be6c9ae0b -> trunk/583138d170ff8b60a321211cce8d2e5be6c9ae0b 2025-07-24T03:47:30.6987643Z * [new tag] trunk/584a0510b30b2472e54197d6b67b6f5f5e8ac807 -> trunk/584a0510b30b2472e54197d6b67b6f5f5e8ac807 2025-07-24T03:47:30.6988438Z * [new tag] trunk/588b5fb94bc6d2195ba5a4287b7feebe736da7db -> trunk/588b5fb94bc6d2195ba5a4287b7feebe736da7db 2025-07-24T03:47:30.6989244Z * [new tag] trunk/58c7cf9ede6311da5533dbcaf238a912176a6a85 -> trunk/58c7cf9ede6311da5533dbcaf238a912176a6a85 2025-07-24T03:47:30.6990104Z * [new tag] trunk/58e5d20c57e6baafd82b3b49c0e52931f5ae5d51 -> trunk/58e5d20c57e6baafd82b3b49c0e52931f5ae5d51 2025-07-24T03:47:30.6990942Z * [new tag] trunk/590607c5992d200b86361c5b68d53c93d8099193 -> trunk/590607c5992d200b86361c5b68d53c93d8099193 2025-07-24T03:47:30.6991734Z * [new tag] trunk/590fe4d2d7565f2045ef1ad4f4aad1f3b3de7aa3 -> trunk/590fe4d2d7565f2045ef1ad4f4aad1f3b3de7aa3 2025-07-24T03:47:30.6992553Z * [new tag] trunk/5951fcd50acc51bb91beae8488758f35219da849 -> trunk/5951fcd50acc51bb91beae8488758f35219da849 2025-07-24T03:47:30.6993339Z * [new tag] trunk/596b418391aa5d520e69310250c1f86c6c0a1107 -> trunk/596b418391aa5d520e69310250c1f86c6c0a1107 2025-07-24T03:47:30.6994136Z * [new tag] trunk/5998cd4eaaf50d5a427f0b0ec14f2135e4a46723 -> trunk/5998cd4eaaf50d5a427f0b0ec14f2135e4a46723 2025-07-24T03:47:30.6994939Z * [new tag] trunk/599f94e7b9ffd7481cc51a37093a2d17a5116889 -> trunk/599f94e7b9ffd7481cc51a37093a2d17a5116889 2025-07-24T03:47:30.6995728Z * [new tag] trunk/59c3cac4547aafd2f718b7c64053098cc5886878 -> trunk/59c3cac4547aafd2f718b7c64053098cc5886878 2025-07-24T03:47:30.6996591Z * [new tag] trunk/59eb61b2d1e4b64debbefa036acd0d8c7d55f0a3 -> trunk/59eb61b2d1e4b64debbefa036acd0d8c7d55f0a3 2025-07-24T03:47:30.6997445Z * [new tag] trunk/59f9b25f3cfc635053843372ea29ff4bf754da3f -> trunk/59f9b25f3cfc635053843372ea29ff4bf754da3f 2025-07-24T03:47:30.6998242Z * [new tag] trunk/5a2db5152d23f76dbb45d20008d9af68e761e8d1 -> trunk/5a2db5152d23f76dbb45d20008d9af68e761e8d1 2025-07-24T03:47:30.6999033Z * [new tag] trunk/5a533f74a160f6a570c2b9770ffdd89874ba59e2 -> trunk/5a533f74a160f6a570c2b9770ffdd89874ba59e2 2025-07-24T03:47:30.6999824Z * [new tag] trunk/5a54db14e3843cfa87fd8d27487dbf2f2dfb6c47 -> trunk/5a54db14e3843cfa87fd8d27487dbf2f2dfb6c47 2025-07-24T03:47:30.7000632Z * [new tag] trunk/5a56e6a72b8d805a665e67a23b0ca2decf4d8cc2 -> trunk/5a56e6a72b8d805a665e67a23b0ca2decf4d8cc2 2025-07-24T03:47:30.7001427Z * [new tag] trunk/5a5a05a6a3be376130848e235df73b752eef0230 -> trunk/5a5a05a6a3be376130848e235df73b752eef0230 2025-07-24T03:47:30.7002325Z * [new tag] trunk/5ab257c74c8e3ffe99380790de2134ba8013555e -> trunk/5ab257c74c8e3ffe99380790de2134ba8013555e 2025-07-24T03:47:30.7003243Z * [new tag] trunk/5ab6a3fb6fd37c542060c606edd4b95c7e3cae82 -> trunk/5ab6a3fb6fd37c542060c606edd4b95c7e3cae82 2025-07-24T03:47:30.7004042Z * [new tag] trunk/5ad2bee2c8a7defd2580bb138145a49c37146fcc -> trunk/5ad2bee2c8a7defd2580bb138145a49c37146fcc 2025-07-24T03:47:30.7004865Z * [new tag] trunk/5aee022d8b2bc9d31ddaf877315ffb8ad9d62985 -> trunk/5aee022d8b2bc9d31ddaf877315ffb8ad9d62985 2025-07-24T03:47:30.7005673Z * [new tag] trunk/5b10b0a96f9abf8c2751db324f0773aa433ec783 -> trunk/5b10b0a96f9abf8c2751db324f0773aa433ec783 2025-07-24T03:47:30.7236014Z * [new tag] trunk/5b40f6581eac8a2e92af8dd986df7c22ad4584ce -> trunk/5b40f6581eac8a2e92af8dd986df7c22ad4584ce 2025-07-24T03:47:30.7236935Z * [new tag] trunk/5b4e0255d7ed756c312fb74ffcf17fe62c903bd7 -> trunk/5b4e0255d7ed756c312fb74ffcf17fe62c903bd7 2025-07-24T03:47:30.7237745Z * [new tag] trunk/5b656289064311e8bb08e1148db7d9b41f9d7ac8 -> trunk/5b656289064311e8bb08e1148db7d9b41f9d7ac8 2025-07-24T03:47:30.7238538Z * [new tag] trunk/5b9db4335e61c1c903cb0769282cbea588e49036 -> trunk/5b9db4335e61c1c903cb0769282cbea588e49036 2025-07-24T03:47:30.7239325Z * [new tag] trunk/5bd7804be2186f1756fba75ecc900d3b19016ad5 -> trunk/5bd7804be2186f1756fba75ecc900d3b19016ad5 2025-07-24T03:47:30.7240121Z * [new tag] trunk/5c79a55e7e58c6382c7ce02da1cd07d358239d94 -> trunk/5c79a55e7e58c6382c7ce02da1cd07d358239d94 2025-07-24T03:47:30.7240893Z * [new tag] trunk/5c7e1d39ab81647300d60e7cc22b24acf2641457 -> trunk/5c7e1d39ab81647300d60e7cc22b24acf2641457 2025-07-24T03:47:30.7241688Z * [new tag] trunk/5cc4e856fda4accb2e9291527693a91dc2a18d89 -> trunk/5cc4e856fda4accb2e9291527693a91dc2a18d89 2025-07-24T03:47:30.7242481Z * [new tag] trunk/5cdb3d896e153265da9ac7e320a19c4a9205b425 -> trunk/5cdb3d896e153265da9ac7e320a19c4a9205b425 2025-07-24T03:47:30.7243283Z * [new tag] trunk/5cde34473c33ed7f8df07489783a2b86058ebb3f -> trunk/5cde34473c33ed7f8df07489783a2b86058ebb3f 2025-07-24T03:47:30.7244080Z * [new tag] trunk/5cfe4377d6f3b5845ba1f67122e5fbda8d642ecd -> trunk/5cfe4377d6f3b5845ba1f67122e5fbda8d642ecd 2025-07-24T03:47:30.7244886Z * [new tag] trunk/5d5a5b3501dfb0759ed36d0a88b65cdcd87c1e27 -> trunk/5d5a5b3501dfb0759ed36d0a88b65cdcd87c1e27 2025-07-24T03:47:30.7245677Z * [new tag] trunk/5d8d126249f83a9581f6b086f0891753bbb7175e -> trunk/5d8d126249f83a9581f6b086f0891753bbb7175e 2025-07-24T03:47:30.7246454Z * [new tag] trunk/5db9a2b54ae69917753be5b2eef0e15ad3cfd19b -> trunk/5db9a2b54ae69917753be5b2eef0e15ad3cfd19b 2025-07-24T03:47:30.7247263Z * [new tag] trunk/5dc75f72d4ede12067ddca459e02c8ee8a95e02c -> trunk/5dc75f72d4ede12067ddca459e02c8ee8a95e02c 2025-07-24T03:47:30.7248069Z * [new tag] trunk/5dd07c70e53a86b73f49711b8186d86dc4f1b32a -> trunk/5dd07c70e53a86b73f49711b8186d86dc4f1b32a 2025-07-24T03:47:30.7248921Z * [new tag] trunk/5dd9652389ed7959a842323e4ce063f553710e47 -> trunk/5dd9652389ed7959a842323e4ce063f553710e47 2025-07-24T03:47:30.7249712Z * [new tag] trunk/5df3bf13ec4e436abefe9d3822230727c04c2ab7 -> trunk/5df3bf13ec4e436abefe9d3822230727c04c2ab7 2025-07-24T03:47:30.7250541Z * [new tag] trunk/5dfd8a9c7a464bb42e81b8594eefd2fa865e5423 -> trunk/5dfd8a9c7a464bb42e81b8594eefd2fa865e5423 2025-07-24T03:47:30.7251355Z * [new tag] trunk/5dfe1787b5ed372fe1e9f0d73fab4e53a61bd17a -> trunk/5dfe1787b5ed372fe1e9f0d73fab4e53a61bd17a 2025-07-24T03:47:30.7252159Z * [new tag] trunk/5e1232871b641762aa1fdd84ba441a8fc9e34043 -> trunk/5e1232871b641762aa1fdd84ba441a8fc9e34043 2025-07-24T03:47:30.7253081Z * [new tag] trunk/5e149a64822fb3fdb2f1e28b947a056a64d306c5 -> trunk/5e149a64822fb3fdb2f1e28b947a056a64d306c5 2025-07-24T03:47:30.7253965Z * [new tag] trunk/5e17932c226b79d8510fb8c76babbf898a68ae33 -> trunk/5e17932c226b79d8510fb8c76babbf898a68ae33 2025-07-24T03:47:30.7254834Z * [new tag] trunk/5e18bc333144473f1f10bc8a5ba05dba7950fb8a -> trunk/5e18bc333144473f1f10bc8a5ba05dba7950fb8a 2025-07-24T03:47:30.7255624Z * [new tag] trunk/5e386eec9426f174eea130c0c012d9f65ebe65fb -> trunk/5e386eec9426f174eea130c0c012d9f65ebe65fb 2025-07-24T03:47:30.7256422Z * [new tag] trunk/5e636d664ae0ccfdc1f0c5b060eb50fabf56e91b -> trunk/5e636d664ae0ccfdc1f0c5b060eb50fabf56e91b 2025-07-24T03:47:30.7257231Z * [new tag] trunk/5e93abe3c0106cf6fc694a38433909f20ee6a92c -> trunk/5e93abe3c0106cf6fc694a38433909f20ee6a92c 2025-07-24T03:47:30.7258019Z * [new tag] trunk/5eb5c3700bf51015e6a46f9f20c0e0e20cf55ab6 -> trunk/5eb5c3700bf51015e6a46f9f20c0e0e20cf55ab6 2025-07-24T03:47:30.7258817Z * [new tag] trunk/5f1225ef487a4c3954499a8ae5b5a55751e3ef2b -> trunk/5f1225ef487a4c3954499a8ae5b5a55751e3ef2b 2025-07-24T03:47:30.7259612Z * [new tag] trunk/5fb07acbc32874a932cd26087cf752b2f4cc72df -> trunk/5fb07acbc32874a932cd26087cf752b2f4cc72df 2025-07-24T03:47:30.7260398Z * [new tag] trunk/5fbaa041e75af11c7ff892e544707820232bd750 -> trunk/5fbaa041e75af11c7ff892e544707820232bd750 2025-07-24T03:47:30.7261177Z * [new tag] trunk/602044068359a3be08b2030a1bb1efb4dc107767 -> trunk/602044068359a3be08b2030a1bb1efb4dc107767 2025-07-24T03:47:30.7261943Z * [new tag] trunk/603a54a9b33e1aabe1407721d7935b881a160968 -> trunk/603a54a9b33e1aabe1407721d7935b881a160968 2025-07-24T03:47:30.7467821Z * [new tag] trunk/606d73bde495b055984206986fb7dd8918570e89 -> trunk/606d73bde495b055984206986fb7dd8918570e89 2025-07-24T03:47:30.7468669Z * [new tag] trunk/6098209bfffa453ec2cea08b0c9991b3b7e2bfeb -> trunk/6098209bfffa453ec2cea08b0c9991b3b7e2bfeb 2025-07-24T03:47:30.7469478Z * [new tag] trunk/60abb0d3273749cb2a7d583c7c2863bd2819e87e -> trunk/60abb0d3273749cb2a7d583c7c2863bd2819e87e 2025-07-24T03:47:30.7470271Z * [new tag] trunk/60ac3414ebefc9281538abff87622059125dcfad -> trunk/60ac3414ebefc9281538abff87622059125dcfad 2025-07-24T03:47:30.7471070Z * [new tag] trunk/60b41de0ca0e5240eccf15c26a2b55b4a34d6f47 -> trunk/60b41de0ca0e5240eccf15c26a2b55b4a34d6f47 2025-07-24T03:47:30.7471906Z * [new tag] trunk/60b9b06a53e13100709d66df8a7555ed167d5a1e -> trunk/60b9b06a53e13100709d66df8a7555ed167d5a1e 2025-07-24T03:47:30.7472745Z * [new tag] trunk/60e66d11ab3d62273cafa7f6b104db7e20f75dfd -> trunk/60e66d11ab3d62273cafa7f6b104db7e20f75dfd 2025-07-24T03:47:30.7473537Z * [new tag] trunk/6100ed457c9bf19dd80e0d53301c7bae691da8d3 -> trunk/6100ed457c9bf19dd80e0d53301c7bae691da8d3 2025-07-24T03:47:30.7474336Z * [new tag] trunk/61712e6f2ba58cce354a742d918934ec7293ee43 -> trunk/61712e6f2ba58cce354a742d918934ec7293ee43 2025-07-24T03:47:30.7475118Z * [new tag] trunk/617e3f69f8479197be57a28cc31e001c3feec407 -> trunk/617e3f69f8479197be57a28cc31e001c3feec407 2025-07-24T03:47:30.7475898Z * [new tag] trunk/61a7b09ef39907b6c4b47445f965c4c77cc6c2ed -> trunk/61a7b09ef39907b6c4b47445f965c4c77cc6c2ed 2025-07-24T03:47:30.7476691Z * [new tag] trunk/61b271e0f3f93209325dea9dccb1e97e7bc16b41 -> trunk/61b271e0f3f93209325dea9dccb1e97e7bc16b41 2025-07-24T03:47:30.7477485Z * [new tag] trunk/61e13782ddddf9e957c984ef11d7bb7643b871e7 -> trunk/61e13782ddddf9e957c984ef11d7bb7643b871e7 2025-07-24T03:47:30.7478354Z * [new tag] trunk/61eaaa21a42398941ea3fb01585a0926e9544831 -> trunk/61eaaa21a42398941ea3fb01585a0926e9544831 2025-07-24T03:47:30.7479297Z * [new tag] trunk/61f6aa36b9f9a168bd3c710c449f0a78c0301972 -> trunk/61f6aa36b9f9a168bd3c710c449f0a78c0301972 2025-07-24T03:47:30.7480160Z * [new tag] trunk/6200584193b770411b7f91880bbff6f746acfcb0 -> trunk/6200584193b770411b7f91880bbff6f746acfcb0 2025-07-24T03:47:30.7480945Z * [new tag] trunk/620415e018cd67e45d5c0a87964aff8751c9bf71 -> trunk/620415e018cd67e45d5c0a87964aff8751c9bf71 2025-07-24T03:47:30.7481732Z * [new tag] trunk/6215e90b7b9af8275c5dbfaa5fd58d7ec08b6764 -> trunk/6215e90b7b9af8275c5dbfaa5fd58d7ec08b6764 2025-07-24T03:47:30.7482518Z * [new tag] trunk/62272d5b24e7f505a02175de3c56ecc287557d2a -> trunk/62272d5b24e7f505a02175de3c56ecc287557d2a 2025-07-24T03:47:30.7483306Z * [new tag] trunk/627ba411366bcc15019c49756d3f22fd3914bd50 -> trunk/627ba411366bcc15019c49756d3f22fd3914bd50 2025-07-24T03:47:30.7484182Z * [new tag] trunk/62fa3f5aebfe763f5de27e687e4c81df7c7080e3 -> trunk/62fa3f5aebfe763f5de27e687e4c81df7c7080e3 2025-07-24T03:47:30.7484982Z * [new tag] trunk/6303cc41b71c02af9c855f3cc85b1146a97fc7a8 -> trunk/6303cc41b71c02af9c855f3cc85b1146a97fc7a8 2025-07-24T03:47:30.7485775Z * [new tag] trunk/63360e64da814de8ce271f1e4b6e2380a03b585e -> trunk/63360e64da814de8ce271f1e4b6e2380a03b585e 2025-07-24T03:47:30.7486554Z * [new tag] trunk/633d5faf3f0b764cb19d74943d6d78d1917c8d8c -> trunk/633d5faf3f0b764cb19d74943d6d78d1917c8d8c 2025-07-24T03:47:30.7487358Z * [new tag] trunk/637e75433cb4ffc61a057fbdd5597db501cb05a7 -> trunk/637e75433cb4ffc61a057fbdd5597db501cb05a7 2025-07-24T03:47:30.7488210Z * [new tag] trunk/63a96eaeb84f5af6e83c7360c09f5540a44d19ca -> trunk/63a96eaeb84f5af6e83c7360c09f5540a44d19ca 2025-07-24T03:47:30.7489016Z * [new tag] trunk/63e87d6d05dc05ed7cc642c0cf8fd1cd2e3b93a1 -> trunk/63e87d6d05dc05ed7cc642c0cf8fd1cd2e3b93a1 2025-07-24T03:47:30.7489867Z * [new tag] trunk/6401d1d53d13cb2d564d48a30a8cf4f952ff773d -> trunk/6401d1d53d13cb2d564d48a30a8cf4f952ff773d 2025-07-24T03:47:30.7490697Z * [new tag] trunk/640703d95f210876f20f8f16c868442dad17b477 -> trunk/640703d95f210876f20f8f16c868442dad17b477 2025-07-24T03:47:30.7491462Z * [new tag] trunk/640f5a70905b01405f1ce397d25308d3e6a1d421 -> trunk/640f5a70905b01405f1ce397d25308d3e6a1d421 2025-07-24T03:47:30.7492246Z * [new tag] trunk/6442ae9256a6936bc8efe31fc5326d5c1c1f660b -> trunk/6442ae9256a6936bc8efe31fc5326d5c1c1f660b 2025-07-24T03:47:30.7493025Z * [new tag] trunk/64436c38c956b252d8c9f6f68e94fb46c34efdac -> trunk/64436c38c956b252d8c9f6f68e94fb46c34efdac 2025-07-24T03:47:30.7705638Z * [new tag] trunk/644cc58dfffe1b5bd15688495551b49462c163f6 -> trunk/644cc58dfffe1b5bd15688495551b49462c163f6 2025-07-24T03:47:30.7706472Z * [new tag] trunk/6499420e45298bad5ef0241d0f04f029825abc60 -> trunk/6499420e45298bad5ef0241d0f04f029825abc60 2025-07-24T03:47:30.7707271Z * [new tag] trunk/64bb6317a57d14c37339d86cded7c6b860c7d638 -> trunk/64bb6317a57d14c37339d86cded7c6b860c7d638 2025-07-24T03:47:30.7708202Z * [new tag] trunk/64dabb2cf5c4112c7c169fb76dabe9ab905c8e7c -> trunk/64dabb2cf5c4112c7c169fb76dabe9ab905c8e7c 2025-07-24T03:47:30.7709023Z * [new tag] trunk/64e8d7d66bd786a12a62db795da52400ac63e039 -> trunk/64e8d7d66bd786a12a62db795da52400ac63e039 2025-07-24T03:47:30.7709803Z * [new tag] trunk/64f2ec77f869a7d495694519fb482e9ecaaa6da1 -> trunk/64f2ec77f869a7d495694519fb482e9ecaaa6da1 2025-07-24T03:47:30.7710587Z * [new tag] trunk/651b4a68f2a60d55d266e40776709247ef347d68 -> trunk/651b4a68f2a60d55d266e40776709247ef347d68 2025-07-24T03:47:30.7711358Z * [new tag] trunk/653c52fe52254e6783d75a73c3a8abbfd9cd2b3c -> trunk/653c52fe52254e6783d75a73c3a8abbfd9cd2b3c 2025-07-24T03:47:30.7712153Z * [new tag] trunk/655b3b14ffba4ae73e26a63b4289329e8d160a6f -> trunk/655b3b14ffba4ae73e26a63b4289329e8d160a6f 2025-07-24T03:47:30.7713175Z * [new tag] trunk/656885b6147e7e77db38de2898ef27f389e06461 -> trunk/656885b6147e7e77db38de2898ef27f389e06461 2025-07-24T03:47:30.7713951Z * [new tag] trunk/659bfbf44329c44b9451e197e2b5eb83d48311d2 -> trunk/659bfbf44329c44b9451e197e2b5eb83d48311d2 2025-07-24T03:47:30.7714761Z * [new tag] trunk/65b9c13cce43a7a8666ca1ef12b554a5dcfd2492 -> trunk/65b9c13cce43a7a8666ca1ef12b554a5dcfd2492 2025-07-24T03:47:30.7715567Z * [new tag] trunk/65fcca4f8c97de82d35d51ad9b790d10433e9b91 -> trunk/65fcca4f8c97de82d35d51ad9b790d10433e9b91 2025-07-24T03:47:30.7716371Z * [new tag] trunk/660695f11dd73efbe2694be0ed5826e4624f22e4 -> trunk/660695f11dd73efbe2694be0ed5826e4624f22e4 2025-07-24T03:47:30.7717163Z * [new tag] trunk/660dbea909b98f19dc0239a7ae565f8a52cfe846 -> trunk/660dbea909b98f19dc0239a7ae565f8a52cfe846 2025-07-24T03:47:30.7717961Z * [new tag] trunk/6629eaf0c658b523eed47a98c0a3e6b44fd89c6b -> trunk/6629eaf0c658b523eed47a98c0a3e6b44fd89c6b 2025-07-24T03:47:30.7718770Z * [new tag] trunk/662c1cfed2bf3262709f1150fcb11e96bc29e142 -> trunk/662c1cfed2bf3262709f1150fcb11e96bc29e142 2025-07-24T03:47:30.7719573Z * [new tag] trunk/662dd7db5b60dde71ef249041b9970ca36ef79e7 -> trunk/662dd7db5b60dde71ef249041b9970ca36ef79e7 2025-07-24T03:47:30.7720394Z * [new tag] trunk/6673ac746c5fade3eaf0aa37547a2e0e76d81860 -> trunk/6673ac746c5fade3eaf0aa37547a2e0e76d81860 2025-07-24T03:47:30.7721186Z * [new tag] trunk/66c9bc5062503da58991a1fb0a9eab5d501b2891 -> trunk/66c9bc5062503da58991a1fb0a9eab5d501b2891 2025-07-24T03:47:30.7721961Z * [new tag] trunk/670dab6c630552b32189911f22896ec453e55ab7 -> trunk/670dab6c630552b32189911f22896ec453e55ab7 2025-07-24T03:47:30.7722732Z * [new tag] trunk/671a9d175b7e15b4947c97f50b931dba1cc35a63 -> trunk/671a9d175b7e15b4947c97f50b931dba1cc35a63 2025-07-24T03:47:30.7723512Z * [new tag] trunk/672ac2ec86d8ffe080399363df96597437e51115 -> trunk/672ac2ec86d8ffe080399363df96597437e51115 2025-07-24T03:47:30.7724305Z * [new tag] trunk/67be2f27e17db0214d52d636945399a0c6257d65 -> trunk/67be2f27e17db0214d52d636945399a0c6257d65 2025-07-24T03:47:30.7725078Z * [new tag] trunk/67ee0c6725e8dd2d0372ff902775b7040631aaf7 -> trunk/67ee0c6725e8dd2d0372ff902775b7040631aaf7 2025-07-24T03:47:30.7725851Z * [new tag] trunk/67f8270516ef877aec85801e4a8d0b533687e938 -> trunk/67f8270516ef877aec85801e4a8d0b533687e938 2025-07-24T03:47:30.7726632Z * [new tag] trunk/6835ba1b3409d9764c6e704cdc0311d53ea0841a -> trunk/6835ba1b3409d9764c6e704cdc0311d53ea0841a 2025-07-24T03:47:30.7727399Z * [new tag] trunk/68996dc18306ac0320ac5e6979f1a7a7a226b3cc -> trunk/68996dc18306ac0320ac5e6979f1a7a7a226b3cc 2025-07-24T03:47:30.7728290Z * [new tag] trunk/68f36683f0c0dfe7befeba2b65dee30faf88f7cc -> trunk/68f36683f0c0dfe7befeba2b65dee30faf88f7cc 2025-07-24T03:47:30.7729116Z * [new tag] trunk/691736ae07af36787ab7c77ffe5ce55bbba72b2e -> trunk/691736ae07af36787ab7c77ffe5ce55bbba72b2e 2025-07-24T03:47:30.7729892Z * [new tag] trunk/6918758f554790e1155fe9f3ee4120692347680a -> trunk/6918758f554790e1155fe9f3ee4120692347680a 2025-07-24T03:47:30.7730665Z * [new tag] trunk/693116f765ede6632d3dd8ef3ffe01cc40b960b9 -> trunk/693116f765ede6632d3dd8ef3ffe01cc40b960b9 2025-07-24T03:47:30.7731444Z * [new tag] trunk/694028f50269c9f34721db813e9ee1a8221c99b2 -> trunk/694028f50269c9f34721db813e9ee1a8221c99b2 2025-07-24T03:47:30.7930277Z * [new tag] trunk/6959b5febe090375e261e678902681533d2e2528 -> trunk/6959b5febe090375e261e678902681533d2e2528 2025-07-24T03:47:30.7931112Z * [new tag] trunk/69f2e09cc241176d6128a8f92f9490422c5b81b3 -> trunk/69f2e09cc241176d6128a8f92f9490422c5b81b3 2025-07-24T03:47:30.7932063Z * [new tag] trunk/6a3d00aa3b1e54feeb040891bfe2c59c36b9443c -> trunk/6a3d00aa3b1e54feeb040891bfe2c59c36b9443c 2025-07-24T03:47:30.7932970Z * [new tag] trunk/6abe450a6fda580714a276ed2dd695ab99074b93 -> trunk/6abe450a6fda580714a276ed2dd695ab99074b93 2025-07-24T03:47:30.7933761Z * [new tag] trunk/6b0526a2c47f517a28619a9aa0e8e0260e91ff46 -> trunk/6b0526a2c47f517a28619a9aa0e8e0260e91ff46 2025-07-24T03:47:30.7934540Z * [new tag] trunk/6b05842e4785f52ab89a8fa2a88f9e6f2316cbbd -> trunk/6b05842e4785f52ab89a8fa2a88f9e6f2316cbbd 2025-07-24T03:47:30.7935333Z * [new tag] trunk/6b1211df294e57d59c1e1717b1fedc671ec5bd5a -> trunk/6b1211df294e57d59c1e1717b1fedc671ec5bd5a 2025-07-24T03:47:30.7936138Z * [new tag] trunk/6b2bef10afae4acb18f230a496392b673c954ce7 -> trunk/6b2bef10afae4acb18f230a496392b673c954ce7 2025-07-24T03:47:30.7936947Z * [new tag] trunk/6b3eef6d316ce33ef0f0416c2f3f6a827ac4fe30 -> trunk/6b3eef6d316ce33ef0f0416c2f3f6a827ac4fe30 2025-07-24T03:47:30.7937734Z * [new tag] trunk/6b45af38a5991134f45d9750b79c767688ba3761 -> trunk/6b45af38a5991134f45d9750b79c767688ba3761 2025-07-24T03:47:30.7938514Z * [new tag] trunk/6b7767fc8d759017b5fc2a7002051cf5c05615a9 -> trunk/6b7767fc8d759017b5fc2a7002051cf5c05615a9 2025-07-24T03:47:30.7939298Z * [new tag] trunk/6b84cb29f97957032c5aa91b4e2a6bfa166db04d -> trunk/6b84cb29f97957032c5aa91b4e2a6bfa166db04d 2025-07-24T03:47:30.7940093Z * [new tag] trunk/6bc263809de610e2fcdf594c122a0f99c6c7d96f -> trunk/6bc263809de610e2fcdf594c122a0f99c6c7d96f 2025-07-24T03:47:30.7940872Z * [new tag] trunk/6c008e2fb5a94342c5c4047d034c61bb067fa2b7 -> trunk/6c008e2fb5a94342c5c4047d034c61bb067fa2b7 2025-07-24T03:47:30.7941670Z * [new tag] trunk/6c05f2fca049344fbbb55eed7a6c866f34c8a477 -> trunk/6c05f2fca049344fbbb55eed7a6c866f34c8a477 2025-07-24T03:47:30.7942477Z * [new tag] trunk/6c0b42fd2f2c070f4c7ef9a3914698726f61ef3a -> trunk/6c0b42fd2f2c070f4c7ef9a3914698726f61ef3a 2025-07-24T03:47:30.7943268Z * [new tag] trunk/6c24c6633a00608d8c20805a77fae55f6b8fe9a6 -> trunk/6c24c6633a00608d8c20805a77fae55f6b8fe9a6 2025-07-24T03:47:30.7944048Z * [new tag] trunk/6c42afe1964496e1b02be1442470f254e35eb199 -> trunk/6c42afe1964496e1b02be1442470f254e35eb199 2025-07-24T03:47:30.7944817Z * [new tag] trunk/6c5227ba00a2904365af566c24b4681cd01a041c -> trunk/6c5227ba00a2904365af566c24b4681cd01a041c 2025-07-24T03:47:30.7945589Z * [new tag] trunk/6c795306378c47341d58109da03371bba2bec46e -> trunk/6c795306378c47341d58109da03371bba2bec46e 2025-07-24T03:47:30.7946370Z * [new tag] trunk/6cc490d40b16b3be7ecc8943fe1bc594246caab3 -> trunk/6cc490d40b16b3be7ecc8943fe1bc594246caab3 2025-07-24T03:47:30.7947145Z * [new tag] trunk/6d02321472ee0761092166dd273eb3ec386cf0c0 -> trunk/6d02321472ee0761092166dd273eb3ec386cf0c0 2025-07-24T03:47:30.7947913Z * [new tag] trunk/6d2155db498375317e2101068a220439dba80939 -> trunk/6d2155db498375317e2101068a220439dba80939 2025-07-24T03:47:30.7948679Z * [new tag] trunk/6d31d38965ef0bc81f3a5a49882d200c69218ccf -> trunk/6d31d38965ef0bc81f3a5a49882d200c69218ccf 2025-07-24T03:47:30.7949538Z * [new tag] trunk/6d3a4356f61b28a14abd95f641e2615deb186365 -> trunk/6d3a4356f61b28a14abd95f641e2615deb186365 2025-07-24T03:47:30.7950662Z * [new tag] trunk/6d5c789ad5f5d162426a5a10c84813ec923dd8ee -> trunk/6d5c789ad5f5d162426a5a10c84813ec923dd8ee 2025-07-24T03:47:30.7951446Z * [new tag] trunk/6dc2b22269f82a1feec06b5e3e79b184704cc0ba -> trunk/6dc2b22269f82a1feec06b5e3e79b184704cc0ba 2025-07-24T03:47:30.7952249Z * [new tag] trunk/6de41ce0f899604c3f8b33e1f8d37eb89b3a963e -> trunk/6de41ce0f899604c3f8b33e1f8d37eb89b3a963e 2025-07-24T03:47:30.7953148Z * [new tag] trunk/6defd5084e3fd330561095252c30ea50efa8e0ca -> trunk/6defd5084e3fd330561095252c30ea50efa8e0ca 2025-07-24T03:47:30.7954026Z * [new tag] trunk/6dfada220e4f46c28df3a6bdf57260ca0717c4bd -> trunk/6dfada220e4f46c28df3a6bdf57260ca0717c4bd 2025-07-24T03:47:30.7954831Z * [new tag] trunk/6e07d6a0ff386d99d8c2f1d25978b0683988a4cb -> trunk/6e07d6a0ff386d99d8c2f1d25978b0683988a4cb 2025-07-24T03:47:30.7955626Z * [new tag] trunk/6e17315cd33892919dc6deb6a9ecb568dda6195e -> trunk/6e17315cd33892919dc6deb6a9ecb568dda6195e 2025-07-24T03:47:31.1415375Z * [new tag] trunk/6e185c53124e1b5a0fe391959060c1249178bcb6 -> trunk/6e185c53124e1b5a0fe391959060c1249178bcb6 2025-07-24T03:47:31.1416209Z * [new tag] trunk/6e2992a9984f2c3f6469564008c7e45869b84678 -> trunk/6e2992a9984f2c3f6469564008c7e45869b84678 2025-07-24T03:47:31.1416991Z * [new tag] trunk/6ea91f067256447cda6fae533f806c1f8baafbe2 -> trunk/6ea91f067256447cda6fae533f806c1f8baafbe2 2025-07-24T03:47:31.1417841Z * [new tag] trunk/6eb6f198e1a28e904ce00a132c43aa2536419664 -> trunk/6eb6f198e1a28e904ce00a132c43aa2536419664 2025-07-24T03:47:31.1418657Z * [new tag] trunk/6ebe9a4f47e9cd1c9ccd467bcdfdea9445fd98d6 -> trunk/6ebe9a4f47e9cd1c9ccd467bcdfdea9445fd98d6 2025-07-24T03:47:31.1419453Z * [new tag] trunk/6ed85bfe6a1704a87a492a3381414186eb439f5e -> trunk/6ed85bfe6a1704a87a492a3381414186eb439f5e 2025-07-24T03:47:31.1420260Z * [new tag] trunk/6ef70edd9a9acee76a607bdd22bac400c8e29434 -> trunk/6ef70edd9a9acee76a607bdd22bac400c8e29434 2025-07-24T03:47:31.1421068Z * [new tag] trunk/6f05d58f2b0bc4779fbed9db5b0f80af1c686dcd -> trunk/6f05d58f2b0bc4779fbed9db5b0f80af1c686dcd 2025-07-24T03:47:31.1421844Z * [new tag] trunk/6f23f53599629a47d6e097b2a027048658a142d4 -> trunk/6f23f53599629a47d6e097b2a027048658a142d4 2025-07-24T03:47:31.1422625Z * [new tag] trunk/6f60cfe9b1445271f8b83f58b4c4f12578d837d3 -> trunk/6f60cfe9b1445271f8b83f58b4c4f12578d837d3 2025-07-24T03:47:31.1423401Z * [new tag] trunk/6f73e067963e31d16840fbc34993a64cee698746 -> trunk/6f73e067963e31d16840fbc34993a64cee698746 2025-07-24T03:47:31.1424174Z * [new tag] trunk/6fb62931593fc10252e4994cd1a0595ebf8e990f -> trunk/6fb62931593fc10252e4994cd1a0595ebf8e990f 2025-07-24T03:47:31.1424958Z * [new tag] trunk/6fd6fc418d9846e5e7e73513b9bcea7bf7feb4b4 -> trunk/6fd6fc418d9846e5e7e73513b9bcea7bf7feb4b4 2025-07-24T03:47:31.1425755Z * [new tag] trunk/6fe7456aa1a2d025d1d06e15ba3896e6adba94b8 -> trunk/6fe7456aa1a2d025d1d06e15ba3896e6adba94b8 2025-07-24T03:47:31.1426553Z * [new tag] trunk/6ffa03ef9e18299f41da076f421abbd32e51e175 -> trunk/6ffa03ef9e18299f41da076f421abbd32e51e175 2025-07-24T03:47:31.1427340Z * [new tag] trunk/7001d6fbc9fde3086159ec26d80a927e894b25a0 -> trunk/7001d6fbc9fde3086159ec26d80a927e894b25a0 2025-07-24T03:47:31.1428162Z * [new tag] trunk/702a304b0785d2dfe3d9bd4eed535c38e969818d -> trunk/702a304b0785d2dfe3d9bd4eed535c38e969818d 2025-07-24T03:47:31.1428961Z * [new tag] trunk/706bc41c4c3caa2654a926382c2ef0ef4d0bc55e -> trunk/706bc41c4c3caa2654a926382c2ef0ef4d0bc55e 2025-07-24T03:47:31.1429754Z * [new tag] trunk/706e236b080cadd5b8a016e4bf972cdb0886d57b -> trunk/706e236b080cadd5b8a016e4bf972cdb0886d57b 2025-07-24T03:47:31.1430540Z * [new tag] trunk/7070ab318061d44f195a83b6dc11ef9299603dfe -> trunk/7070ab318061d44f195a83b6dc11ef9299603dfe 2025-07-24T03:47:31.1431309Z * [new tag] trunk/7081b8233a64c350c64e9f00c9b9d00e52020241 -> trunk/7081b8233a64c350c64e9f00c9b9d00e52020241 2025-07-24T03:47:31.1432094Z * [new tag] trunk/70b4a8880b1c3fb5e92c5fcd75bda6b6f299abac -> trunk/70b4a8880b1c3fb5e92c5fcd75bda6b6f299abac 2025-07-24T03:47:31.1433059Z * [new tag] trunk/70b68caf58815419924ddeda231cbf6535181c53 -> trunk/70b68caf58815419924ddeda231cbf6535181c53 2025-07-24T03:47:31.1433980Z * [new tag] trunk/70bb34929aabc9c11d9ec9bbb53a4f9fc32e5e19 -> trunk/70bb34929aabc9c11d9ec9bbb53a4f9fc32e5e19 2025-07-24T03:47:31.1434760Z * [new tag] trunk/710b92cf3b577036d551708b351b4043817233f5 -> trunk/710b92cf3b577036d551708b351b4043817233f5 2025-07-24T03:47:31.1435531Z * [new tag] trunk/717a099d427d97a62c26fee58f9da9a0893d4233 -> trunk/717a099d427d97a62c26fee58f9da9a0893d4233 2025-07-24T03:47:31.1436322Z * [new tag] trunk/71a650ad565fe75ca752acbc8b40fb9ce677f40f -> trunk/71a650ad565fe75ca752acbc8b40fb9ce677f40f 2025-07-24T03:47:31.1437126Z * [new tag] trunk/7205458b85aca1377f73bdbacd8a9cd83b2eebbc -> trunk/7205458b85aca1377f73bdbacd8a9cd83b2eebbc 2025-07-24T03:47:31.1437922Z * [new tag] trunk/720c2c46b181ad446bf970d70a27fd0ce149114d -> trunk/720c2c46b181ad446bf970d70a27fd0ce149114d 2025-07-24T03:47:31.1438704Z * [new tag] trunk/721d2580dbf9a4922adc1c7d1cc8237126d3cdd6 -> trunk/721d2580dbf9a4922adc1c7d1cc8237126d3cdd6 2025-07-24T03:47:31.1439495Z * [new tag] trunk/72453a66769294e93a183dfb5bdefa23de873d89 -> trunk/72453a66769294e93a183dfb5bdefa23de873d89 2025-07-24T03:47:31.1440272Z * [new tag] trunk/725c3272848c408d0fa2cba4de76affe90f793b5 -> trunk/725c3272848c408d0fa2cba4de76affe90f793b5 2025-07-24T03:47:31.1441134Z * [new tag] trunk/725cdb218ec7b117b88baf5c6f4ac39c863a4b17 -> trunk/725cdb218ec7b117b88baf5c6f4ac39c863a4b17 2025-07-24T03:47:31.1665136Z * [new tag] trunk/7275f280454f790414b24147a2ba7f94d0eabcf6 -> trunk/7275f280454f790414b24147a2ba7f94d0eabcf6 2025-07-24T03:47:31.1665918Z * [new tag] trunk/728cf6721e2996490922d0eacb23081953e45fc7 -> trunk/728cf6721e2996490922d0eacb23081953e45fc7 2025-07-24T03:47:31.1666697Z * [new tag] trunk/72c8751b61e0b2c7b88003a41ed737a65768063c -> trunk/72c8751b61e0b2c7b88003a41ed737a65768063c 2025-07-24T03:47:31.1667517Z * [new tag] trunk/72db0a98a34a9f8982f7cf83145bf57b85e36817 -> trunk/72db0a98a34a9f8982f7cf83145bf57b85e36817 2025-07-24T03:47:31.1668297Z * [new tag] trunk/731351bb4ac572fb47d46c70b7425c209c81570a -> trunk/731351bb4ac572fb47d46c70b7425c209c81570a 2025-07-24T03:47:31.1669079Z * [new tag] trunk/73220d52fd67b5f4f5b15e0e0433e09733c93f31 -> trunk/73220d52fd67b5f4f5b15e0e0433e09733c93f31 2025-07-24T03:47:31.1669940Z * [new tag] trunk/734826d88e54642f574ea6c0f5e66cf6da6a8157 -> trunk/734826d88e54642f574ea6c0f5e66cf6da6a8157 2025-07-24T03:47:31.1670774Z * [new tag] trunk/73772919d2db560c9cc8ed617c94c77450542a94 -> trunk/73772919d2db560c9cc8ed617c94c77450542a94 2025-07-24T03:47:31.1671542Z * [new tag] trunk/7381c777245a836f88e9622005c6ea16009a3a0d -> trunk/7381c777245a836f88e9622005c6ea16009a3a0d 2025-07-24T03:47:31.1672302Z * [new tag] trunk/7392470da4386e654f303eb526dfba7e7777b06b -> trunk/7392470da4386e654f303eb526dfba7e7777b06b 2025-07-24T03:47:31.1673105Z * [new tag] trunk/7444debaca7de16b2cf71d0cd82dc8998c3a73c4 -> trunk/7444debaca7de16b2cf71d0cd82dc8998c3a73c4 2025-07-24T03:47:31.1673899Z * [new tag] trunk/7485ef078f182af981b5f17d06602de68816492c -> trunk/7485ef078f182af981b5f17d06602de68816492c 2025-07-24T03:47:31.1674658Z * [new tag] trunk/749757ac1b66485459e751b0e58b5a7c64d5f561 -> trunk/749757ac1b66485459e751b0e58b5a7c64d5f561 2025-07-24T03:47:31.1675445Z * [new tag] trunk/74ebd8d14e0d612ed35557ab254a90facf73b029 -> trunk/74ebd8d14e0d612ed35557ab254a90facf73b029 2025-07-24T03:47:31.1676340Z * [new tag] trunk/74f4cf4bd5aaa0123e7b3d91cc0cbcbd69030015 -> trunk/74f4cf4bd5aaa0123e7b3d91cc0cbcbd69030015 2025-07-24T03:47:31.1677172Z * [new tag] trunk/7521cd91118c1c1a55b8f7146d7e22bf60fe06bf -> trunk/7521cd91118c1c1a55b8f7146d7e22bf60fe06bf 2025-07-24T03:47:31.1678225Z * [new tag] trunk/752f202ef3445d2e28e2abeb6feed56eee9da5a9 -> trunk/752f202ef3445d2e28e2abeb6feed56eee9da5a9 2025-07-24T03:47:31.1679001Z * [new tag] trunk/7531bd64911774fc2656f290601834d5d02d3925 -> trunk/7531bd64911774fc2656f290601834d5d02d3925 2025-07-24T03:47:31.1679781Z * [new tag] trunk/754699610b0abec2fe3f5a73269b1dd09a330445 -> trunk/754699610b0abec2fe3f5a73269b1dd09a330445 2025-07-24T03:47:31.1680582Z * [new tag] trunk/754c04aa062d8f3c0449aec4bbcaab00bfca4bf2 -> trunk/754c04aa062d8f3c0449aec4bbcaab00bfca4bf2 2025-07-24T03:47:31.1681364Z * [new tag] trunk/75824035d392595de3bd0b8588e63c2fc6d09139 -> trunk/75824035d392595de3bd0b8588e63c2fc6d09139 2025-07-24T03:47:31.1682135Z * [new tag] trunk/7597988f1b5a41c0b91d379e0ce51111fd7cc95a -> trunk/7597988f1b5a41c0b91d379e0ce51111fd7cc95a 2025-07-24T03:47:31.1683015Z * [new tag] trunk/7599bebead35dd21bad3d3e85f62f400ad2c3139 -> trunk/7599bebead35dd21bad3d3e85f62f400ad2c3139 2025-07-24T03:47:31.1683856Z * [new tag] trunk/75a7d9e86842b57f9001a0fa6fd716927614dbf9 -> trunk/75a7d9e86842b57f9001a0fa6fd716927614dbf9 2025-07-24T03:47:31.1684637Z * [new tag] trunk/75e2628782c1ccb626603a0ae852478dbf11b1d0 -> trunk/75e2628782c1ccb626603a0ae852478dbf11b1d0 2025-07-24T03:47:31.1685410Z * [new tag] trunk/75f258dd1feeb90b8084849155e049fb57ba3521 -> trunk/75f258dd1feeb90b8084849155e049fb57ba3521 2025-07-24T03:47:31.1686208Z * [new tag] trunk/75f3e5a88df60caef27fd9c9df3fd51161378fcc -> trunk/75f3e5a88df60caef27fd9c9df3fd51161378fcc 2025-07-24T03:47:31.1686999Z * [new tag] trunk/75f489d37f048ec8a9106163ca16201156f05499 -> trunk/75f489d37f048ec8a9106163ca16201156f05499 2025-07-24T03:47:31.1687760Z * [new tag] trunk/764c02b78b935ba61c46277cb7409e6419460058 -> trunk/764c02b78b935ba61c46277cb7409e6419460058 2025-07-24T03:47:31.1688604Z * [new tag] trunk/76644c9ff58285c95764ffd27d629df219aab140 -> trunk/76644c9ff58285c95764ffd27d629df219aab140 2025-07-24T03:47:31.1689367Z * [new tag] trunk/767791943d5dd325bf3572c45886f7156e69dd5b -> trunk/767791943d5dd325bf3572c45886f7156e69dd5b 2025-07-24T03:47:31.1690140Z * [new tag] trunk/769d754ab2469813a3b790ec58c25c466099dd3d -> trunk/769d754ab2469813a3b790ec58c25c466099dd3d 2025-07-24T03:47:31.1904284Z * [new tag] trunk/76be282e3a4893e4c4d2761e862428c615f9e260 -> trunk/76be282e3a4893e4c4d2761e862428c615f9e260 2025-07-24T03:47:31.1905107Z * [new tag] trunk/76ca23c41c7edcf7b4c60ff6162eedcdf06ef359 -> trunk/76ca23c41c7edcf7b4c60ff6162eedcdf06ef359 2025-07-24T03:47:31.1905916Z * [new tag] trunk/76d07e919f66c24a55746bbc060c14b3df02ffa8 -> trunk/76d07e919f66c24a55746bbc060c14b3df02ffa8 2025-07-24T03:47:31.1906719Z * [new tag] trunk/76fe88fa56c8aac7377127fb5553de94e16e9070 -> trunk/76fe88fa56c8aac7377127fb5553de94e16e9070 2025-07-24T03:47:31.1907543Z * [new tag] trunk/770285522805745959221b902f23776a13d56df8 -> trunk/770285522805745959221b902f23776a13d56df8 2025-07-24T03:47:31.1908351Z * [new tag] trunk/7709ff55123dbdcaaa44004738fb767324f05dbd -> trunk/7709ff55123dbdcaaa44004738fb767324f05dbd 2025-07-24T03:47:31.1909126Z * [new tag] trunk/771be857043bf794cd219a9b925e308e31f12314 -> trunk/771be857043bf794cd219a9b925e308e31f12314 2025-07-24T03:47:31.1909898Z * [new tag] trunk/772d5904152abc9702bf49037e46ab6203b83f55 -> trunk/772d5904152abc9702bf49037e46ab6203b83f55 2025-07-24T03:47:31.1910659Z * [new tag] trunk/77518d1a13cc105637814bc157387478384dc897 -> trunk/77518d1a13cc105637814bc157387478384dc897 2025-07-24T03:47:31.1911430Z * [new tag] trunk/77676753ecabf6a6645bdd3abfe01939e5751e76 -> trunk/77676753ecabf6a6645bdd3abfe01939e5751e76 2025-07-24T03:47:31.1912367Z * [new tag] trunk/777eca9f16aeecd7c362a235cf25e6b8e6eda57f -> trunk/777eca9f16aeecd7c362a235cf25e6b8e6eda57f 2025-07-24T03:47:31.1913276Z * [new tag] trunk/77ac3a096532ee08211dae38c2a9336c970d1785 -> trunk/77ac3a096532ee08211dae38c2a9336c970d1785 2025-07-24T03:47:31.1914134Z * [new tag] trunk/77f884c2ec62df9df930ae86e9b8437364900346 -> trunk/77f884c2ec62df9df930ae86e9b8437364900346 2025-07-24T03:47:31.1914925Z * [new tag] trunk/783a4c1f5002bf1749833821c450360a417d40c7 -> trunk/783a4c1f5002bf1749833821c450360a417d40c7 2025-07-24T03:47:31.1915707Z * [new tag] trunk/78684e27ace1ebd51ccc93d4b6b8a6a3ec3b4c14 -> trunk/78684e27ace1ebd51ccc93d4b6b8a6a3ec3b4c14 2025-07-24T03:47:31.1916504Z * [new tag] trunk/7892f5a007859ae02b9cac5441cd51f37147ef04 -> trunk/7892f5a007859ae02b9cac5441cd51f37147ef04 2025-07-24T03:47:31.1917300Z * [new tag] trunk/78ee2ee90eed957aec3dc80423b108b16938a8ae -> trunk/78ee2ee90eed957aec3dc80423b108b16938a8ae 2025-07-24T03:47:31.1918083Z * [new tag] trunk/7918978653ff4f21c284b34809acf88784deb0de -> trunk/7918978653ff4f21c284b34809acf88784deb0de 2025-07-24T03:47:31.1918863Z * [new tag] trunk/794b95d54bb2c49d704169ddb777acfd8da8cfad -> trunk/794b95d54bb2c49d704169ddb777acfd8da8cfad 2025-07-24T03:47:31.1919710Z * [new tag] trunk/794ef6c9b8f173a0cbab5288efb2d68aef9c90b9 -> trunk/794ef6c9b8f173a0cbab5288efb2d68aef9c90b9 2025-07-24T03:47:31.1920553Z * [new tag] trunk/795a6a0affd349adfb4e3df298b604b74f27b44e -> trunk/795a6a0affd349adfb4e3df298b604b74f27b44e 2025-07-24T03:47:31.1921349Z * [new tag] trunk/7982b8c703e24a36c0e0a01b8cf22cd272369b28 -> trunk/7982b8c703e24a36c0e0a01b8cf22cd272369b28 2025-07-24T03:47:31.1922132Z * [new tag] trunk/7986c0dba6e1044d90b7f607f9cca15922339bb4 -> trunk/7986c0dba6e1044d90b7f607f9cca15922339bb4 2025-07-24T03:47:31.1922945Z * [new tag] trunk/799443605bffbd0d80fb3f2edbfe5517e0e2b4a3 -> trunk/799443605bffbd0d80fb3f2edbfe5517e0e2b4a3 2025-07-24T03:47:31.1923751Z * [new tag] trunk/7999735d23aeca844d4a7b23de6ac2370767099a -> trunk/7999735d23aeca844d4a7b23de6ac2370767099a 2025-07-24T03:47:31.1924520Z * [new tag] trunk/79ab84e9b8fe561a55931b2108af45993a670276 -> trunk/79ab84e9b8fe561a55931b2108af45993a670276 2025-07-24T03:47:31.1925318Z * [new tag] trunk/79aef141695f2daea4a9aeb0f385726c5794a242 -> trunk/79aef141695f2daea4a9aeb0f385726c5794a242 2025-07-24T03:47:31.1926200Z * [new tag] trunk/79bdafe5b61f6f073dcd276e135076ff3277a951 -> trunk/79bdafe5b61f6f073dcd276e135076ff3277a951 2025-07-24T03:47:31.1926988Z * [new tag] trunk/79d7c754ab8ae0e5c3a614521632d2cfbfa0fdba -> trunk/79d7c754ab8ae0e5c3a614521632d2cfbfa0fdba 2025-07-24T03:47:31.1927794Z * [new tag] trunk/79e49efaddf3a049adbe2de839cc65d73a1edd42 -> trunk/79e49efaddf3a049adbe2de839cc65d73a1edd42 2025-07-24T03:47:31.1928727Z * [new tag] trunk/7a03b0d2ca3946b770bc817571fc36bd5c608b38 -> trunk/7a03b0d2ca3946b770bc817571fc36bd5c608b38 2025-07-24T03:47:31.1929511Z * [new tag] trunk/7a08755c5f3630150c50d09e16c0abf9501dea1e -> trunk/7a08755c5f3630150c50d09e16c0abf9501dea1e 2025-07-24T03:47:31.1930292Z * [new tag] trunk/7a41f207943cc6c88160d7a531fc57bdbe149253 -> trunk/7a41f207943cc6c88160d7a531fc57bdbe149253 2025-07-24T03:47:31.2156046Z * [new tag] trunk/7a48cc699006879a6ec185ac5bd4eaad0c0b7e36 -> trunk/7a48cc699006879a6ec185ac5bd4eaad0c0b7e36 2025-07-24T03:47:31.2156963Z * [new tag] trunk/7a92b5119654c07d15f5c0818e6ae804b01e836c -> trunk/7a92b5119654c07d15f5c0818e6ae804b01e836c 2025-07-24T03:47:31.2157827Z * [new tag] trunk/7ae7c1414354ad225c4a36b3228e30a2baf94923 -> trunk/7ae7c1414354ad225c4a36b3228e30a2baf94923 2025-07-24T03:47:31.2158846Z * [new tag] trunk/7afb834f939eccbb3262e646f0922eed070074a7 -> trunk/7afb834f939eccbb3262e646f0922eed070074a7 2025-07-24T03:47:31.2159866Z * [new tag] trunk/7b0118884e0855e4918af53d44c3fbfc185a1ee9 -> trunk/7b0118884e0855e4918af53d44c3fbfc185a1ee9 2025-07-24T03:47:31.2160730Z * [new tag] trunk/7b05bdd925f0f4b49e68662f9761fabaa27f2faf -> trunk/7b05bdd925f0f4b49e68662f9761fabaa27f2faf 2025-07-24T03:47:31.2161615Z * [new tag] trunk/7b392bac13a8007d1e0c6c789aa9bc515119faba -> trunk/7b392bac13a8007d1e0c6c789aa9bc515119faba 2025-07-24T03:47:31.2162535Z * [new tag] trunk/7b72e5b3ad989d02802909b64f322b2b7b69913b -> trunk/7b72e5b3ad989d02802909b64f322b2b7b69913b 2025-07-24T03:47:31.2163400Z * [new tag] trunk/7b7cd56f5e2a965ae8a48c69441dd4f58bf68ceb -> trunk/7b7cd56f5e2a965ae8a48c69441dd4f58bf68ceb 2025-07-24T03:47:31.2164286Z * [new tag] trunk/7be862ab8f2b9040b34c58e1b77ce74c2512f062 -> trunk/7be862ab8f2b9040b34c58e1b77ce74c2512f062 2025-07-24T03:47:31.2165197Z * [new tag] trunk/7c1f62782875a4ac70b96aed0e6c9525b6e4eaf3 -> trunk/7c1f62782875a4ac70b96aed0e6c9525b6e4eaf3 2025-07-24T03:47:31.2166077Z * [new tag] trunk/7c51619e7fbd346e2299255c468cc43bd69425d7 -> trunk/7c51619e7fbd346e2299255c468cc43bd69425d7 2025-07-24T03:47:31.2166956Z * [new tag] trunk/7caf6c801ddfaf556a3ca191173b50002c4261f4 -> trunk/7caf6c801ddfaf556a3ca191173b50002c4261f4 2025-07-24T03:47:31.2167832Z * [new tag] trunk/7cc1a9546c135f8e7635e0d38aa2bba797f8907d -> trunk/7cc1a9546c135f8e7635e0d38aa2bba797f8907d 2025-07-24T03:47:31.2168818Z * [new tag] trunk/7cc5d03dfc0077bc670c39abd101c72a04b2737f -> trunk/7cc5d03dfc0077bc670c39abd101c72a04b2737f 2025-07-24T03:47:31.2169667Z * [new tag] trunk/7cda4017ddda554752e89069ae205be5e8388f59 -> trunk/7cda4017ddda554752e89069ae205be5e8388f59 2025-07-24T03:47:31.2170457Z * [new tag] trunk/7cf31b4a426f3791af30159cea420687f347cd7a -> trunk/7cf31b4a426f3791af30159cea420687f347cd7a 2025-07-24T03:47:31.2171260Z * [new tag] trunk/7cf38d2a0521c5ca292a720bce00617be749a0e7 -> trunk/7cf38d2a0521c5ca292a720bce00617be749a0e7 2025-07-24T03:47:31.2172044Z * [new tag] trunk/7cfd054075b0713642fab8dc4313fc1e5d992599 -> trunk/7cfd054075b0713642fab8dc4313fc1e5d992599 2025-07-24T03:47:31.2172828Z * [new tag] trunk/7d1b3f599d6968a3efe70b7401310e3127949f13 -> trunk/7d1b3f599d6968a3efe70b7401310e3127949f13 2025-07-24T03:47:31.2173621Z * [new tag] trunk/7d296d5c19750cecd82e2b95f6fb0f8dd918282e -> trunk/7d296d5c19750cecd82e2b95f6fb0f8dd918282e 2025-07-24T03:47:31.2174458Z * [new tag] trunk/7d2ceaff21a6faf430470fc88642dad0e80386b4 -> trunk/7d2ceaff21a6faf430470fc88642dad0e80386b4 2025-07-24T03:47:31.2175351Z * [new tag] trunk/7d4228dbfd13d1ac8fac2c78c042dbb8314f042d -> trunk/7d4228dbfd13d1ac8fac2c78c042dbb8314f042d 2025-07-24T03:47:31.2176156Z * [new tag] trunk/7d6f3402380de06cee9d10f708e373e36aa9bd9c -> trunk/7d6f3402380de06cee9d10f708e373e36aa9bd9c 2025-07-24T03:47:31.2176945Z * [new tag] trunk/7dcc77e422dcf97ce35991a138ab635a5cb88731 -> trunk/7dcc77e422dcf97ce35991a138ab635a5cb88731 2025-07-24T03:47:31.2177733Z * [new tag] trunk/7e34f9c292940e16e06f0b85fce99c14af708569 -> trunk/7e34f9c292940e16e06f0b85fce99c14af708569 2025-07-24T03:47:31.2178497Z * [new tag] trunk/7e433d5f423248914c5e9838d3ea145db7964923 -> trunk/7e433d5f423248914c5e9838d3ea145db7964923 2025-07-24T03:47:31.2179281Z * [new tag] trunk/7e4c097b0752ae79a8b5dd1de21a51aaafba2ef9 -> trunk/7e4c097b0752ae79a8b5dd1de21a51aaafba2ef9 2025-07-24T03:47:31.2180070Z * [new tag] trunk/7e54c02a35b905e758497b856a1953eb009ba836 -> trunk/7e54c02a35b905e758497b856a1953eb009ba836 2025-07-24T03:47:31.2181013Z * [new tag] trunk/7e83d5084588bdb51151f869b53c92c07bc9f544 -> trunk/7e83d5084588bdb51151f869b53c92c07bc9f544 2025-07-24T03:47:31.2181939Z * [new tag] trunk/7ebbf2cae7e55d5f64a15a1e8912e55ff0a6c9a4 -> trunk/7ebbf2cae7e55d5f64a15a1e8912e55ff0a6c9a4 2025-07-24T03:47:31.2182776Z * [new tag] trunk/7f0cddfb55d426b414cf7b4482c6a371618b349c -> trunk/7f0cddfb55d426b414cf7b4482c6a371618b349c 2025-07-24T03:47:31.4044062Z * [new tag] trunk/7f14b42adf70196d82340c59a9981ffcadf0c53c -> trunk/7f14b42adf70196d82340c59a9981ffcadf0c53c 2025-07-24T03:47:31.4044917Z * [new tag] trunk/7f649ed4f83ed4c5c11a85042d3ca15d273bf57d -> trunk/7f649ed4f83ed4c5c11a85042d3ca15d273bf57d 2025-07-24T03:47:31.4045729Z * [new tag] trunk/7f6e7103a3aefd2d96b3cc6702be931a66b44977 -> trunk/7f6e7103a3aefd2d96b3cc6702be931a66b44977 2025-07-24T03:47:31.4046549Z * [new tag] trunk/7f9fc7e67ce9853a1bb4b16c901c708f78c1c5cd -> trunk/7f9fc7e67ce9853a1bb4b16c901c708f78c1c5cd 2025-07-24T03:47:31.4047369Z * [new tag] trunk/7fcad0231cb0ae9ba6a0004098b5ffd82c62858f -> trunk/7fcad0231cb0ae9ba6a0004098b5ffd82c62858f 2025-07-24T03:47:31.4048273Z * [new tag] trunk/805297981ae4e2aa08d133161477a477f5da274f -> trunk/805297981ae4e2aa08d133161477a477f5da274f 2025-07-24T03:47:31.4049078Z * [new tag] trunk/8088958793841191eba1faf98849904ee769bbfd -> trunk/8088958793841191eba1faf98849904ee769bbfd 2025-07-24T03:47:31.4049858Z * [new tag] trunk/80ac73c0575d860993beab58bb718e727c82bc22 -> trunk/80ac73c0575d860993beab58bb718e727c82bc22 2025-07-24T03:47:31.4050638Z * [new tag] trunk/80bcaa4195944d0f00f16abcbb702bde4d582d14 -> trunk/80bcaa4195944d0f00f16abcbb702bde4d582d14 2025-07-24T03:47:31.4051435Z * [new tag] trunk/80d89974c173c9d7a2c59fe9dfce2fe1301e2833 -> trunk/80d89974c173c9d7a2c59fe9dfce2fe1301e2833 2025-07-24T03:47:31.4052221Z * [new tag] trunk/8134684d44f3f9d09e775f3adc513bdef72245c9 -> trunk/8134684d44f3f9d09e775f3adc513bdef72245c9 2025-07-24T03:47:31.4053015Z * [new tag] trunk/813c76b98d5bffbffb087502c4f02a043b924d59 -> trunk/813c76b98d5bffbffb087502c4f02a043b924d59 2025-07-24T03:47:31.4053798Z * [new tag] trunk/8142a0286016e63a0e91b5667e1fb1a5e868ffd7 -> trunk/8142a0286016e63a0e91b5667e1fb1a5e868ffd7 2025-07-24T03:47:31.4054658Z * [new tag] trunk/8147c4a9044913e62ba3aab7f1eaaafead4f5930 -> trunk/8147c4a9044913e62ba3aab7f1eaaafead4f5930 2025-07-24T03:47:31.4055443Z * [new tag] trunk/8153340d1073c190ecf221e51abbd983286782a8 -> trunk/8153340d1073c190ecf221e51abbd983286782a8 2025-07-24T03:47:31.4056221Z * [new tag] trunk/815545f2dd6ade563cb1263f8bb7813f355edb2e -> trunk/815545f2dd6ade563cb1263f8bb7813f355edb2e 2025-07-24T03:47:31.4057012Z * [new tag] trunk/81759afed4fa4fa3a03f9ff671abe270679cc006 -> trunk/81759afed4fa4fa3a03f9ff671abe270679cc006 2025-07-24T03:47:31.4057807Z * [new tag] trunk/8186af5a26bc6a628f283c4791c8d68ef6fa1336 -> trunk/8186af5a26bc6a628f283c4791c8d68ef6fa1336 2025-07-24T03:47:31.4058602Z * [new tag] trunk/81b0b308cafae44339b8a123e8b1bec3bf9eb8ad -> trunk/81b0b308cafae44339b8a123e8b1bec3bf9eb8ad 2025-07-24T03:47:31.4059374Z * [new tag] trunk/81bf278537c081279a574157e1359ec7f0b65daf -> trunk/81bf278537c081279a574157e1359ec7f0b65daf 2025-07-24T03:47:31.4060183Z * [new tag] trunk/81c7445eb97f910ed89da9b11140d914651a1675 -> trunk/81c7445eb97f910ed89da9b11140d914651a1675 2025-07-24T03:47:31.4061001Z * [new tag] trunk/823e2238934fe65133741ad0ab9debaacfd4abe8 -> trunk/823e2238934fe65133741ad0ab9debaacfd4abe8 2025-07-24T03:47:31.4061771Z * [new tag] trunk/82672206b724a767dcb8c2541074449100de701b -> trunk/82672206b724a767dcb8c2541074449100de701b 2025-07-24T03:47:31.4062536Z * [new tag] trunk/826f12b829070e3d5bfd050f001b61aaf78e5447 -> trunk/826f12b829070e3d5bfd050f001b61aaf78e5447 2025-07-24T03:47:31.4064330Z * [new tag] trunk/82765dad16d7cda1ea382497dbf8c1ab2d07bfdd -> trunk/82765dad16d7cda1ea382497dbf8c1ab2d07bfdd 2025-07-24T03:47:31.4065138Z * [new tag] trunk/82a1ee1135b054d371d10081883b848ac7b7419f -> trunk/82a1ee1135b054d371d10081883b848ac7b7419f 2025-07-24T03:47:31.4065966Z * [new tag] trunk/82e6475d920991ef3be5d5637a72bf49313cc604 -> trunk/82e6475d920991ef3be5d5637a72bf49313cc604 2025-07-24T03:47:31.4066795Z * [new tag] trunk/82eefaedd98b63de8a87e34275af781f8eb177e1 -> trunk/82eefaedd98b63de8a87e34275af781f8eb177e1 2025-07-24T03:47:31.4067609Z * [new tag] trunk/82f8e04f27adeda0bb848aea7ddc61859ea899c7 -> trunk/82f8e04f27adeda0bb848aea7ddc61859ea899c7 2025-07-24T03:47:31.4068397Z * [new tag] trunk/82fb904140d258604a185154287b9c6fde047fc5 -> trunk/82fb904140d258604a185154287b9c6fde047fc5 2025-07-24T03:47:31.4069183Z * [new tag] trunk/830a335a7da5fec00395d440ba568749cb4e2e9e -> trunk/830a335a7da5fec00395d440ba568749cb4e2e9e 2025-07-24T03:47:31.4069971Z * [new tag] trunk/831c9010c7d7460fd78bc59b3fa28a65a0339e5d -> trunk/831c9010c7d7460fd78bc59b3fa28a65a0339e5d 2025-07-24T03:47:31.4070756Z * [new tag] trunk/832ab990c99545ab5c80eefbc30ab2e14c617a4b -> trunk/832ab990c99545ab5c80eefbc30ab2e14c617a4b 2025-07-24T03:47:31.4276404Z * [new tag] trunk/8347268edcf3cc4f638474d860450bb0cd7a9908 -> trunk/8347268edcf3cc4f638474d860450bb0cd7a9908 2025-07-24T03:47:31.4277212Z * [new tag] trunk/836bb1941b593063f002394c1de3ec382c2ce50e -> trunk/836bb1941b593063f002394c1de3ec382c2ce50e 2025-07-24T03:47:31.4277983Z * [new tag] trunk/83700b448874cac8e89356ab06292e4289577269 -> trunk/83700b448874cac8e89356ab06292e4289577269 2025-07-24T03:47:31.4278749Z * [new tag] trunk/8372d0986a495d41f41c5d7684f1428ff847c699 -> trunk/8372d0986a495d41f41c5d7684f1428ff847c699 2025-07-24T03:47:31.4279532Z * [new tag] trunk/838798425731e6c90df4a885e90ec03f18eea10b -> trunk/838798425731e6c90df4a885e90ec03f18eea10b 2025-07-24T03:47:31.4280305Z * [new tag] trunk/83d22256f84232c5440b25a08459c649a32b9a4f -> trunk/83d22256f84232c5440b25a08459c649a32b9a4f 2025-07-24T03:47:31.4281052Z * [new tag] trunk/84085229765698166f07c9220d5544023ab80d47 -> trunk/84085229765698166f07c9220d5544023ab80d47 2025-07-24T03:47:31.4281785Z * [new tag] trunk/8485f1950710d383fd8d0d772fc978933c6fc175 -> trunk/8485f1950710d383fd8d0d772fc978933c6fc175 2025-07-24T03:47:31.4282564Z * [new tag] trunk/84b77ec1280a56bece8408a2e0e179b9eb95e1e2 -> trunk/84b77ec1280a56bece8408a2e0e179b9eb95e1e2 2025-07-24T03:47:31.4283343Z * [new tag] trunk/84c14361c28e1b553ea405ef5020cf0a90468850 -> trunk/84c14361c28e1b553ea405ef5020cf0a90468850 2025-07-24T03:47:31.4284121Z * [new tag] trunk/84c588e5eada9e7921608065edc444a15c22cb1c -> trunk/84c588e5eada9e7921608065edc444a15c22cb1c 2025-07-24T03:47:31.4284917Z * [new tag] trunk/84dec060b79078e68dcb6be1e7f308dad05d00e2 -> trunk/84dec060b79078e68dcb6be1e7f308dad05d00e2 2025-07-24T03:47:31.4285706Z * [new tag] trunk/85111cd165f108ffabb4a90083d59d7a867ebd9f -> trunk/85111cd165f108ffabb4a90083d59d7a867ebd9f 2025-07-24T03:47:31.4286499Z * [new tag] trunk/851a6fa82df251fbc368f0284d941ce78f68e7b1 -> trunk/851a6fa82df251fbc368f0284d941ce78f68e7b1 2025-07-24T03:47:31.4287274Z * [new tag] trunk/851e953f68a614921c4315467209b741206774af -> trunk/851e953f68a614921c4315467209b741206774af 2025-07-24T03:47:31.4288013Z * [new tag] trunk/85320336799e38411d15c0e159b41248cda01218 -> trunk/85320336799e38411d15c0e159b41248cda01218 2025-07-24T03:47:31.4288874Z * [new tag] trunk/8554c8007ddaa8029e7e01bb1af12f358bf597c2 -> trunk/8554c8007ddaa8029e7e01bb1af12f358bf597c2 2025-07-24T03:47:31.4289808Z * [new tag] trunk/85857181ebca86e9c709e9922a9d9ef41a9c4ef9 -> trunk/85857181ebca86e9c709e9922a9d9ef41a9c4ef9 2025-07-24T03:47:31.4290701Z * [new tag] trunk/85df746892d9b0e87e7a5dfa78ef81a84aec6de0 -> trunk/85df746892d9b0e87e7a5dfa78ef81a84aec6de0 2025-07-24T03:47:31.4291494Z * [new tag] trunk/85ee2fb8c5c57b513526b0cc968ba13012167572 -> trunk/85ee2fb8c5c57b513526b0cc968ba13012167572 2025-07-24T03:47:31.4292277Z * [new tag] trunk/86251eff4069c468efebdb481dd18fe8d42856f0 -> trunk/86251eff4069c468efebdb481dd18fe8d42856f0 2025-07-24T03:47:31.4293057Z * [new tag] trunk/863327ae496471654344e1e04ccaa713a44a135d -> trunk/863327ae496471654344e1e04ccaa713a44a135d 2025-07-24T03:47:31.4293833Z * [new tag] trunk/86670b39fa3df63a652a9a06b59b73f92d70c392 -> trunk/86670b39fa3df63a652a9a06b59b73f92d70c392 2025-07-24T03:47:31.4294620Z * [new tag] trunk/86675af3f02e54fed4bbae68d6316274b93b373f -> trunk/86675af3f02e54fed4bbae68d6316274b93b373f 2025-07-24T03:47:31.4295407Z * [new tag] trunk/86996c15dc4294c400c3a552d1a9e8e90aa6c7f6 -> trunk/86996c15dc4294c400c3a552d1a9e8e90aa6c7f6 2025-07-24T03:47:31.4296179Z * [new tag] trunk/86ced144534c2c78460a2d0f1d9ed2ba048f2514 -> trunk/86ced144534c2c78460a2d0f1d9ed2ba048f2514 2025-07-24T03:47:31.4296965Z * [new tag] trunk/86d8af6a6cc648134289de89d393d0dce5b3a5f4 -> trunk/86d8af6a6cc648134289de89d393d0dce5b3a5f4 2025-07-24T03:47:31.4297767Z * [new tag] trunk/86dbc0ef677ba9f9a4ca41fe168775e49cb0f1ba -> trunk/86dbc0ef677ba9f9a4ca41fe168775e49cb0f1ba 2025-07-24T03:47:31.4298574Z * [new tag] trunk/86df3ff1f18da58e0ffc21eebfb8b498f60d6683 -> trunk/86df3ff1f18da58e0ffc21eebfb8b498f60d6683 2025-07-24T03:47:31.4299373Z * [new tag] trunk/86eaf452c330bd871262b7590ff8bd1bf432e2d7 -> trunk/86eaf452c330bd871262b7590ff8bd1bf432e2d7 2025-07-24T03:47:31.4300167Z * [new tag] trunk/87d615efab194482a00d241e4d9aebc513635cf5 -> trunk/87d615efab194482a00d241e4d9aebc513635cf5 2025-07-24T03:47:31.4300944Z * [new tag] trunk/8823138e47a3200c313f6bf2d21eb689d8150f39 -> trunk/8823138e47a3200c313f6bf2d21eb689d8150f39 2025-07-24T03:47:31.4506360Z * [new tag] trunk/8892b782a85b9de9f51334e65e009b3d59899b02 -> trunk/8892b782a85b9de9f51334e65e009b3d59899b02 2025-07-24T03:47:31.4507239Z * [new tag] trunk/88b9c285e0eb68134c5f834ceccdb99bc1d255d0 -> trunk/88b9c285e0eb68134c5f834ceccdb99bc1d255d0 2025-07-24T03:47:31.4508027Z * [new tag] trunk/88c6199db09372b6e2d55a5349ab545527842727 -> trunk/88c6199db09372b6e2d55a5349ab545527842727 2025-07-24T03:47:31.4508821Z * [new tag] trunk/88cd9f34b00c22e4edefa223490fcdd6c4ff272a -> trunk/88cd9f34b00c22e4edefa223490fcdd6c4ff272a 2025-07-24T03:47:31.4509617Z * [new tag] trunk/898179331e82e5ee1ff64737f508fd6a6da711f9 -> trunk/898179331e82e5ee1ff64737f508fd6a6da711f9 2025-07-24T03:47:31.4510423Z * [new tag] trunk/89850bbc073c4e27ca51b0b205742e1d316e7097 -> trunk/89850bbc073c4e27ca51b0b205742e1d316e7097 2025-07-24T03:47:31.4511206Z * [new tag] trunk/899d3d3e9eec4756a2e759f0203334dbe08f664e -> trunk/899d3d3e9eec4756a2e759f0203334dbe08f664e 2025-07-24T03:47:31.4512029Z * [new tag] trunk/89d842fec5229fff0df5342b2db121368d51e717 -> trunk/89d842fec5229fff0df5342b2db121368d51e717 2025-07-24T03:47:31.4512855Z * [new tag] trunk/8a2255130025abc80e03adaeb0b90d6463f2f916 -> trunk/8a2255130025abc80e03adaeb0b90d6463f2f916 2025-07-24T03:47:31.4513648Z * [new tag] trunk/8a396c56350ade97c18a6e13b3d97939f1eea075 -> trunk/8a396c56350ade97c18a6e13b3d97939f1eea075 2025-07-24T03:47:31.4514432Z * [new tag] trunk/8a47f9d03be0e0118a43443ff5f60db7be85102b -> trunk/8a47f9d03be0e0118a43443ff5f60db7be85102b 2025-07-24T03:47:31.4515846Z * [new tag] trunk/8a88c6e85abe345d95d970d424a0295cbc89b69c -> trunk/8a88c6e85abe345d95d970d424a0295cbc89b69c 2025-07-24T03:47:31.4516740Z * [new tag] trunk/8a8fac11318778aa5e4479b369b37fdb9e10ec17 -> trunk/8a8fac11318778aa5e4479b369b37fdb9e10ec17 2025-07-24T03:47:31.4517535Z * [new tag] trunk/8ad6197b466e91eb5fbbde2c76688d40fa472ac3 -> trunk/8ad6197b466e91eb5fbbde2c76688d40fa472ac3 2025-07-24T03:47:31.4518440Z * [new tag] trunk/8b0e0e4f2301f4aeb9fccf52cd2c6d8ac13da131 -> trunk/8b0e0e4f2301f4aeb9fccf52cd2c6d8ac13da131 2025-07-24T03:47:31.4519235Z * [new tag] trunk/8b2a6505728b5a12d170175d65f17a00aec50632 -> trunk/8b2a6505728b5a12d170175d65f17a00aec50632 2025-07-24T03:47:31.4520025Z * [new tag] trunk/8b68e5b1bb4a0014a64eab25c54b716968e109a9 -> trunk/8b68e5b1bb4a0014a64eab25c54b716968e109a9 2025-07-24T03:47:31.4520807Z * [new tag] trunk/8b8684466a11ae6ac27c85dbc6a02091dadac749 -> trunk/8b8684466a11ae6ac27c85dbc6a02091dadac749 2025-07-24T03:47:31.4521605Z * [new tag] trunk/8b97e4dd8cbe23101801043fe343d7350e527540 -> trunk/8b97e4dd8cbe23101801043fe343d7350e527540 2025-07-24T03:47:31.4522405Z * [new tag] trunk/8bda95228fbefa6ce204bf4da8b632d1516431bb -> trunk/8bda95228fbefa6ce204bf4da8b632d1516431bb 2025-07-24T03:47:31.4523198Z * [new tag] trunk/8c0df6fe1769c813f57da766528ff3cc4e56943e -> trunk/8c0df6fe1769c813f57da766528ff3cc4e56943e 2025-07-24T03:47:31.4524035Z * [new tag] trunk/8c2e45008282cf5202b72a0ecb0c2951438abeea -> trunk/8c2e45008282cf5202b72a0ecb0c2951438abeea 2025-07-24T03:47:31.4524866Z * [new tag] trunk/8c3f206457a1b9d75bc95a6c30a101135fcee329 -> trunk/8c3f206457a1b9d75bc95a6c30a101135fcee329 2025-07-24T03:47:31.4525645Z * [new tag] trunk/8c3f84908b085a26a6d8c7a90ce7c94ab2fe6f0a -> trunk/8c3f84908b085a26a6d8c7a90ce7c94ab2fe6f0a 2025-07-24T03:47:31.4526452Z * [new tag] trunk/8c5b070d1f7cf4a9b58b09a28a0aeb5fdca28679 -> trunk/8c5b070d1f7cf4a9b58b09a28a0aeb5fdca28679 2025-07-24T03:47:31.4527252Z * [new tag] trunk/8c928372b3560bb512e2cf98c94efd923caf5fa7 -> trunk/8c928372b3560bb512e2cf98c94efd923caf5fa7 2025-07-24T03:47:31.4528120Z * [new tag] trunk/8cb0c4a4da0e017834d63f3d7dc2ab29e0ad6424 -> trunk/8cb0c4a4da0e017834d63f3d7dc2ab29e0ad6424 2025-07-24T03:47:31.4528915Z * [new tag] trunk/8d070187e34d5474ae88cefe56754f729138756b -> trunk/8d070187e34d5474ae88cefe56754f729138756b 2025-07-24T03:47:31.4529702Z * [new tag] trunk/8d7ee0f4fb7e41e8a49a5a24b6686b2324c493ba -> trunk/8d7ee0f4fb7e41e8a49a5a24b6686b2324c493ba 2025-07-24T03:47:31.4530601Z * [new tag] trunk/8da774d81feace041ff39de4ba2ddd43086370d3 -> trunk/8da774d81feace041ff39de4ba2ddd43086370d3 2025-07-24T03:47:31.4531417Z * [new tag] trunk/8dcebaa7b088f9ae8c08975310e63c81a154153f -> trunk/8dcebaa7b088f9ae8c08975310e63c81a154153f 2025-07-24T03:47:31.4532208Z * [new tag] trunk/8dff457f42c9a20f9936d22773239df33cb48c9d -> trunk/8dff457f42c9a20f9936d22773239df33cb48c9d 2025-07-24T03:47:31.4533009Z * [new tag] trunk/8e02cd9c5ab151faad80e18e648c82a204fc3735 -> trunk/8e02cd9c5ab151faad80e18e648c82a204fc3735 2025-07-24T03:47:31.9745827Z * [new tag] trunk/8e57cdb746b4ab28865fdf01532f87b0d21700e9 -> trunk/8e57cdb746b4ab28865fdf01532f87b0d21700e9 2025-07-24T03:47:31.9746699Z * [new tag] trunk/8e8bbfc80340f0bf0a31a03d61b9b4dd72a40469 -> trunk/8e8bbfc80340f0bf0a31a03d61b9b4dd72a40469 2025-07-24T03:47:31.9747565Z * [new tag] trunk/8e8d4b13b0f6358e249a1e6fea9831b91b41b6d0 -> trunk/8e8d4b13b0f6358e249a1e6fea9831b91b41b6d0 2025-07-24T03:47:31.9748385Z * [new tag] trunk/8e99714204271a6c60866c10c4360166c24ae68e -> trunk/8e99714204271a6c60866c10c4360166c24ae68e 2025-07-24T03:47:31.9749405Z * [new tag] trunk/8eaa9f2701277f328d9d6aea1bfe7cba20792f7c -> trunk/8eaa9f2701277f328d9d6aea1bfe7cba20792f7c 2025-07-24T03:47:31.9750342Z * [new tag] trunk/8eb3c5b7a18205974fff0353b97e599ea3d0e2a4 -> trunk/8eb3c5b7a18205974fff0353b97e599ea3d0e2a4 2025-07-24T03:47:31.9751141Z * [new tag] trunk/8ed5e1844c77d952bcea89ca7d0225d876fec4e8 -> trunk/8ed5e1844c77d952bcea89ca7d0225d876fec4e8 2025-07-24T03:47:31.9751918Z * [new tag] trunk/8f02161d1012143263fdbca47ee62983448e2c7e -> trunk/8f02161d1012143263fdbca47ee62983448e2c7e 2025-07-24T03:47:31.9752706Z * [new tag] trunk/8f0998aafe5e9594ade50cd263d5c63a5aad9333 -> trunk/8f0998aafe5e9594ade50cd263d5c63a5aad9333 2025-07-24T03:47:31.9753501Z * [new tag] trunk/8f5f01bf19e01f4b74add7f3d558966152a398c7 -> trunk/8f5f01bf19e01f4b74add7f3d558966152a398c7 2025-07-24T03:47:31.9754299Z * [new tag] trunk/8f9a191db6efcf44510db87c8f6f6e96c67e9b11 -> trunk/8f9a191db6efcf44510db87c8f6f6e96c67e9b11 2025-07-24T03:47:31.9755110Z * [new tag] trunk/8fcda2c60d974e4970ce939bc828bece9903c304 -> trunk/8fcda2c60d974e4970ce939bc828bece9903c304 2025-07-24T03:47:31.9755912Z * [new tag] trunk/900fba4c073b121b6c9ce581ea27e25c13a354e5 -> trunk/900fba4c073b121b6c9ce581ea27e25c13a354e5 2025-07-24T03:47:31.9756702Z * [new tag] trunk/9056279f8159b052599a31b591a78da1acc4224c -> trunk/9056279f8159b052599a31b591a78da1acc4224c 2025-07-24T03:47:31.9757450Z * [new tag] trunk/905b0846903a0193ee651a44762e72c881f83950 -> trunk/905b0846903a0193ee651a44762e72c881f83950 2025-07-24T03:47:31.9758232Z * [new tag] trunk/905b194a2e3d1d1c9ec136dfc1b6be7e62ff4b2c -> trunk/905b194a2e3d1d1c9ec136dfc1b6be7e62ff4b2c 2025-07-24T03:47:31.9759004Z * [new tag] trunk/90618581e971d28ac6950305d72521af05ed3a42 -> trunk/90618581e971d28ac6950305d72521af05ed3a42 2025-07-24T03:47:31.9759770Z * [new tag] trunk/907aea032d2f709f26dec78b762481c4604cc186 -> trunk/907aea032d2f709f26dec78b762481c4604cc186 2025-07-24T03:47:31.9760558Z * [new tag] trunk/907d0931cc8868164c2890b0452eda5d4da49278 -> trunk/907d0931cc8868164c2890b0452eda5d4da49278 2025-07-24T03:47:31.9761336Z * [new tag] trunk/90b082e207bff79dd09d89cfef9be49de5c2ad83 -> trunk/90b082e207bff79dd09d89cfef9be49de5c2ad83 2025-07-24T03:47:31.9762127Z * [new tag] trunk/90b973a2e228f2a5e2c158e5f5cf8f59d9118fc8 -> trunk/90b973a2e228f2a5e2c158e5f5cf8f59d9118fc8 2025-07-24T03:47:31.9762904Z * [new tag] trunk/91602a92548d1dd351979cdc6e778c505c32c2b9 -> trunk/91602a92548d1dd351979cdc6e778c505c32c2b9 2025-07-24T03:47:31.9763689Z * [new tag] trunk/91b69deeb0f67a4b4ad7b36cdbb7d5f805b375a0 -> trunk/91b69deeb0f67a4b4ad7b36cdbb7d5f805b375a0 2025-07-24T03:47:31.9764608Z * [new tag] trunk/91ee9ee82d40bcc36afbe9fed8dfc2f8c19c7316 -> trunk/91ee9ee82d40bcc36afbe9fed8dfc2f8c19c7316 2025-07-24T03:47:31.9765458Z * [new tag] trunk/9222552572890fd7ff1d75884cc6a99a55ab90bc -> trunk/9222552572890fd7ff1d75884cc6a99a55ab90bc 2025-07-24T03:47:31.9766238Z * [new tag] trunk/92388bb2ab14dae7b63c2088de4d6add413d1c27 -> trunk/92388bb2ab14dae7b63c2088de4d6add413d1c27 2025-07-24T03:47:31.9767043Z * [new tag] trunk/92409b6c89fbfbd3caa79c81b1e3d9e7917d3bc7 -> trunk/92409b6c89fbfbd3caa79c81b1e3d9e7917d3bc7 2025-07-24T03:47:31.9767836Z * [new tag] trunk/924fc52e1842de756a7632e7b2777aeed77d60e5 -> trunk/924fc52e1842de756a7632e7b2777aeed77d60e5 2025-07-24T03:47:31.9768686Z * [new tag] trunk/925fbfca27580f2ec8d5f9bfd549b1fe2e665617 -> trunk/925fbfca27580f2ec8d5f9bfd549b1fe2e665617 2025-07-24T03:47:31.9769478Z * [new tag] trunk/9281625a9b5c8f3912626e933bcc2639e7cadd3e -> trunk/9281625a9b5c8f3912626e933bcc2639e7cadd3e 2025-07-24T03:47:31.9770252Z * [new tag] trunk/9285b8245c0ce17cd4e3b7e09e5f908693fb93ca -> trunk/9285b8245c0ce17cd4e3b7e09e5f908693fb93ca 2025-07-24T03:47:31.9771233Z * [new tag] trunk/92b7ed6d07fcd6af31cddc7b4276e626b023bd0b -> trunk/92b7ed6d07fcd6af31cddc7b4276e626b023bd0b 2025-07-24T03:47:31.9969299Z * [new tag] trunk/92c79f36dbbdb01e0aab6efb8f52df828e1046d5 -> trunk/92c79f36dbbdb01e0aab6efb8f52df828e1046d5 2025-07-24T03:47:31.9970146Z * [new tag] trunk/92ee5bd9f6bef38b3e3e81a37f4d5374395aeb40 -> trunk/92ee5bd9f6bef38b3e3e81a37f4d5374395aeb40 2025-07-24T03:47:31.9970955Z * [new tag] trunk/92f41ccc2651ab284118ec7087977ab455027eb0 -> trunk/92f41ccc2651ab284118ec7087977ab455027eb0 2025-07-24T03:47:31.9971739Z * [new tag] trunk/9308261a2afb69d807ea06508bb8582b066d9ccd -> trunk/9308261a2afb69d807ea06508bb8582b066d9ccd 2025-07-24T03:47:31.9972519Z * [new tag] trunk/930b575389f9233efddf70ea7b7804ed06af80d5 -> trunk/930b575389f9233efddf70ea7b7804ed06af80d5 2025-07-24T03:47:31.9973325Z * [new tag] trunk/9328a7fb589f6372ea478e47cdae8d124030f383 -> trunk/9328a7fb589f6372ea478e47cdae8d124030f383 2025-07-24T03:47:31.9974123Z * [new tag] trunk/9338d85d4594f981c198bcbb7edfccf6b92643be -> trunk/9338d85d4594f981c198bcbb7edfccf6b92643be 2025-07-24T03:47:31.9974920Z * [new tag] trunk/9345279c6ebdbad95b7b53bc2cb6f63a4e57b2cc -> trunk/9345279c6ebdbad95b7b53bc2cb6f63a4e57b2cc 2025-07-24T03:47:31.9975693Z * [new tag] trunk/937529f0b31788726e53890f5601886c64dc9eec -> trunk/937529f0b31788726e53890f5601886c64dc9eec 2025-07-24T03:47:31.9976452Z * [new tag] trunk/938515fa75f4e9d28c62a2aaa3e0e5428c867c36 -> trunk/938515fa75f4e9d28c62a2aaa3e0e5428c867c36 2025-07-24T03:47:31.9977242Z * [new tag] trunk/93854e83b7bfde94090662e9b372d8bf44ccf5d4 -> trunk/93854e83b7bfde94090662e9b372d8bf44ccf5d4 2025-07-24T03:47:31.9978028Z * [new tag] trunk/944a140e90389eced1ec38e14cb4345811ed0b1a -> trunk/944a140e90389eced1ec38e14cb4345811ed0b1a 2025-07-24T03:47:31.9978806Z * [new tag] trunk/9462106b7e41d9a24308255e15613b464ab086ce -> trunk/9462106b7e41d9a24308255e15613b464ab086ce 2025-07-24T03:47:31.9979572Z * [new tag] trunk/94716db22214912896cf680dc3eb88574f611a42 -> trunk/94716db22214912896cf680dc3eb88574f611a42 2025-07-24T03:47:31.9980333Z * [new tag] trunk/94763f5ca75330206777f3c1b36ff124706bd9d9 -> trunk/94763f5ca75330206777f3c1b36ff124706bd9d9 2025-07-24T03:47:31.9981104Z * [new tag] trunk/9498d95b9c07bb140b7548aae8b19cb2f6b96fce -> trunk/9498d95b9c07bb140b7548aae8b19cb2f6b96fce 2025-07-24T03:47:31.9981877Z * [new tag] trunk/94995eba07763890b86465d53c4647c089f48d0a -> trunk/94995eba07763890b86465d53c4647c089f48d0a 2025-07-24T03:47:31.9982653Z * [new tag] trunk/94ae61533719defecb08d11f63c5d9fe9a826c00 -> trunk/94ae61533719defecb08d11f63c5d9fe9a826c00 2025-07-24T03:47:31.9983460Z * [new tag] trunk/94c746bb43484787a3f5bbdc2f72bd4fb02f2964 -> trunk/94c746bb43484787a3f5bbdc2f72bd4fb02f2964 2025-07-24T03:47:31.9984271Z * [new tag] trunk/94d7f0c1ef9a4cb4db0eb5d6b1ffc55941cbeab1 -> trunk/94d7f0c1ef9a4cb4db0eb5d6b1ffc55941cbeab1 2025-07-24T03:47:31.9985076Z * [new tag] trunk/94da4523ec4362dabbf9f08f9f2efce79ab70b73 -> trunk/94da4523ec4362dabbf9f08f9f2efce79ab70b73 2025-07-24T03:47:31.9985871Z * [new tag] trunk/94f8679019ea4b1272f1ad58ad7cad87147cf5a7 -> trunk/94f8679019ea4b1272f1ad58ad7cad87147cf5a7 2025-07-24T03:47:31.9986638Z * [new tag] trunk/9508d73307b4bc1fe453677526a096e5e10a7575 -> trunk/9508d73307b4bc1fe453677526a096e5e10a7575 2025-07-24T03:47:31.9987417Z * [new tag] trunk/9513b9d03fa8950ba5d2b59cc0b1a1aab3a41c06 -> trunk/9513b9d03fa8950ba5d2b59cc0b1a1aab3a41c06 2025-07-24T03:47:31.9988223Z * [new tag] trunk/95448b2ce61c3995ecdae0bfec655a5ef81a117d -> trunk/95448b2ce61c3995ecdae0bfec655a5ef81a117d 2025-07-24T03:47:31.9989138Z * [new tag] trunk/954ce949500746763a487a8ed9800035e7cd87d4 -> trunk/954ce949500746763a487a8ed9800035e7cd87d4 2025-07-24T03:47:31.9990126Z * [new tag] trunk/95a7d1912a86d857a9f4adb55b73b57518ce1e7b -> trunk/95a7d1912a86d857a9f4adb55b73b57518ce1e7b 2025-07-24T03:47:31.9990912Z * [new tag] trunk/95b658427df55f36f638186de9ed4115d4d99941 -> trunk/95b658427df55f36f638186de9ed4115d4d99941 2025-07-24T03:47:31.9991691Z * [new tag] trunk/95bc3da9f8555897d5d2b90f75385e3b2ff7bc43 -> trunk/95bc3da9f8555897d5d2b90f75385e3b2ff7bc43 2025-07-24T03:47:31.9992481Z * [new tag] trunk/95cb42c45d17f532222611e8028c9307622cc3c9 -> trunk/95cb42c45d17f532222611e8028c9307622cc3c9 2025-07-24T03:47:31.9993253Z * [new tag] trunk/9620994067b18e846a097d1e99af85ec2426ef0a -> trunk/9620994067b18e846a097d1e99af85ec2426ef0a 2025-07-24T03:47:31.9994035Z * [new tag] trunk/9636e2cfd3e995ef977f670ad47e8e895296d992 -> trunk/9636e2cfd3e995ef977f670ad47e8e895296d992 2025-07-24T03:47:31.9994829Z * [new tag] trunk/9642c7568967ab424c5d0e04ef2cd1e82a54b5f8 -> trunk/9642c7568967ab424c5d0e04ef2cd1e82a54b5f8 2025-07-24T03:47:32.0181435Z * [new tag] trunk/9656251bb1bee12c0e2f21828dc14a4c3c06afdd -> trunk/9656251bb1bee12c0e2f21828dc14a4c3c06afdd 2025-07-24T03:47:32.0182367Z * [new tag] trunk/9665702c64af633ab23499228d552a49660a9fa2 -> trunk/9665702c64af633ab23499228d552a49660a9fa2 2025-07-24T03:47:32.0183225Z * [new tag] trunk/96897e721b76f3b72aa406696165711d74f8d260 -> trunk/96897e721b76f3b72aa406696165711d74f8d260 2025-07-24T03:47:32.0184040Z * [new tag] trunk/968f90ce7344223c788eeba59200cc22b9f94dcd -> trunk/968f90ce7344223c788eeba59200cc22b9f94dcd 2025-07-24T03:47:32.0184918Z * [new tag] trunk/96d082d06bda98addd4ad7903d315477404dc272 -> trunk/96d082d06bda98addd4ad7903d315477404dc272 2025-07-24T03:47:32.0185794Z * [new tag] trunk/96df86641048a282a4622ac93d19e4c7b6c38b8e -> trunk/96df86641048a282a4622ac93d19e4c7b6c38b8e 2025-07-24T03:47:32.0186607Z * [new tag] trunk/96e4c95cd8d03037765ffd4b8fcdaa06c4b2c51c -> trunk/96e4c95cd8d03037765ffd4b8fcdaa06c4b2c51c 2025-07-24T03:47:32.0187394Z * [new tag] trunk/9768d393fa62df8a508136f5b6634bf955d8365d -> trunk/9768d393fa62df8a508136f5b6634bf955d8365d 2025-07-24T03:47:32.0188168Z * [new tag] trunk/977abe786d907c1ff76528a550e3d53c9f3b1044 -> trunk/977abe786d907c1ff76528a550e3d53c9f3b1044 2025-07-24T03:47:32.0188961Z * [new tag] trunk/97d7dc197f9eec99a3e2a163a4fa78f97e6b75a8 -> trunk/97d7dc197f9eec99a3e2a163a4fa78f97e6b75a8 2025-07-24T03:47:32.0189762Z * [new tag] trunk/981c99fdffd9a4f510e4b89245d16aa427ee0978 -> trunk/981c99fdffd9a4f510e4b89245d16aa427ee0978 2025-07-24T03:47:32.0190549Z * [new tag] trunk/987314aa96fdf8aa051e3643b26f4209b7fe166d -> trunk/987314aa96fdf8aa051e3643b26f4209b7fe166d 2025-07-24T03:47:32.0191395Z * [new tag] trunk/9894d43b6cba4bd30271c8dc065e5f3af4b6859d -> trunk/9894d43b6cba4bd30271c8dc065e5f3af4b6859d 2025-07-24T03:47:32.0192250Z * [new tag] trunk/98a34e8d4b4d73504afbf49f70284221e6303314 -> trunk/98a34e8d4b4d73504afbf49f70284221e6303314 2025-07-24T03:47:32.0193075Z * [new tag] trunk/98bb0c0e7888a84de1d22c4952de69a5d5b1a0b3 -> trunk/98bb0c0e7888a84de1d22c4952de69a5d5b1a0b3 2025-07-24T03:47:32.0193945Z * [new tag] trunk/9905ed616a65a3195c7ebc2bd44301c2c442f050 -> trunk/9905ed616a65a3195c7ebc2bd44301c2c442f050 2025-07-24T03:47:32.0194805Z * [new tag] trunk/9944cd0949e96d656746de6df0cb3a5a954597e4 -> trunk/9944cd0949e96d656746de6df0cb3a5a954597e4 2025-07-24T03:47:32.0195634Z * [new tag] trunk/996206e66fcafff25d0af5177497e8f792000869 -> trunk/996206e66fcafff25d0af5177497e8f792000869 2025-07-24T03:47:32.0196641Z * [new tag] trunk/9963845a4e55a3e8d35ea49deb8f8c1f6c53cb74 -> trunk/9963845a4e55a3e8d35ea49deb8f8c1f6c53cb74 2025-07-24T03:47:32.0197604Z * [new tag] trunk/9968c854b6a38857d05fb1da7bea797fbf23c880 -> trunk/9968c854b6a38857d05fb1da7bea797fbf23c880 2025-07-24T03:47:32.0198479Z * [new tag] trunk/9968edd00256fdb47e2e0129df918c5b23c06419 -> trunk/9968edd00256fdb47e2e0129df918c5b23c06419 2025-07-24T03:47:32.0199375Z * [new tag] trunk/99c1a6bdd98ecb1f9b2fb8310bcd891c8c6adf57 -> trunk/99c1a6bdd98ecb1f9b2fb8310bcd891c8c6adf57 2025-07-24T03:47:32.0200277Z * [new tag] trunk/99e99d5bfe57eddfce23f7dc9ede016cb1393c52 -> trunk/99e99d5bfe57eddfce23f7dc9ede016cb1393c52 2025-07-24T03:47:32.0201159Z * [new tag] trunk/9a28e23d9792551d5a070cec8c67d0e499358825 -> trunk/9a28e23d9792551d5a070cec8c67d0e499358825 2025-07-24T03:47:32.0201970Z * [new tag] trunk/9a2c669425379eb264f896390b8fcd8d3f2ce959 -> trunk/9a2c669425379eb264f896390b8fcd8d3f2ce959 2025-07-24T03:47:32.0202832Z * [new tag] trunk/9a42f01586267b52fe303c0c1b7a71d50cc4178e -> trunk/9a42f01586267b52fe303c0c1b7a71d50cc4178e 2025-07-24T03:47:32.0203695Z * [new tag] trunk/9a4c08ddfc9b43c07cd16355277d359dfcef50d6 -> trunk/9a4c08ddfc9b43c07cd16355277d359dfcef50d6 2025-07-24T03:47:32.0204577Z * [new tag] trunk/9a5278225fc5e7b46d54a65ae1a3f049ee49824f -> trunk/9a5278225fc5e7b46d54a65ae1a3f049ee49824f 2025-07-24T03:47:32.0205399Z * [new tag] trunk/9a5c59368d46d3793e09b72a2782ef4d12e74392 -> trunk/9a5c59368d46d3793e09b72a2782ef4d12e74392 2025-07-24T03:47:32.0206261Z * [new tag] trunk/9a7c2f1f64b1dba1df9ca12249ef659394ffe13d -> trunk/9a7c2f1f64b1dba1df9ca12249ef659394ffe13d 2025-07-24T03:47:32.0207137Z * [new tag] trunk/9aaa184105b2f436b5834187c4c004c02e438491 -> trunk/9aaa184105b2f436b5834187c4c004c02e438491 2025-07-24T03:47:32.0208090Z * [new tag] trunk/9afee0fa969fd4ebab86a2cbad3217c8bade156e -> trunk/9afee0fa969fd4ebab86a2cbad3217c8bade156e 2025-07-24T03:47:32.0417807Z * [new tag] trunk/9b0013c6bb98d7161e921d03be76c81bbc0eebef -> trunk/9b0013c6bb98d7161e921d03be76c81bbc0eebef 2025-07-24T03:47:32.0418643Z * [new tag] trunk/9b122aab5dcd419b96d4a1137c45e99bde94f14e -> trunk/9b122aab5dcd419b96d4a1137c45e99bde94f14e 2025-07-24T03:47:32.0419459Z * [new tag] trunk/9b498d3bb28b8e3411ce464dd2755c5b96d92c8f -> trunk/9b498d3bb28b8e3411ce464dd2755c5b96d92c8f 2025-07-24T03:47:32.0420390Z * [new tag] trunk/9b4a748e29a720d0fade7e1298a68cc36cfd5f5e -> trunk/9b4a748e29a720d0fade7e1298a68cc36cfd5f5e 2025-07-24T03:47:32.0421197Z * [new tag] trunk/9b4d938f04c95cebe0fbd96974f64c935567e039 -> trunk/9b4d938f04c95cebe0fbd96974f64c935567e039 2025-07-24T03:47:32.0421997Z * [new tag] trunk/9b4db093cb63555654c868ba9e3ab68ef4c722e5 -> trunk/9b4db093cb63555654c868ba9e3ab68ef4c722e5 2025-07-24T03:47:32.0422821Z * [new tag] trunk/9bae2fcf990cd51891218895ac1b3cfe70ffc2c3 -> trunk/9bae2fcf990cd51891218895ac1b3cfe70ffc2c3 2025-07-24T03:47:32.0423633Z * [new tag] trunk/9bd0830ed8d3e753afc3e9fff2553f4c5871f6f9 -> trunk/9bd0830ed8d3e753afc3e9fff2553f4c5871f6f9 2025-07-24T03:47:32.0424529Z * [new tag] trunk/9bd42c15707a4b410ee005d5916e882a7db432bb -> trunk/9bd42c15707a4b410ee005d5916e882a7db432bb 2025-07-24T03:47:32.0425331Z * [new tag] trunk/9bdf87e8918b9a3f78d7bcb8a770c19f7c82ac15 -> trunk/9bdf87e8918b9a3f78d7bcb8a770c19f7c82ac15 2025-07-24T03:47:32.0426128Z * [new tag] trunk/9be5860bc34b643abd02ac5b5a89d820efcdfbc9 -> trunk/9be5860bc34b643abd02ac5b5a89d820efcdfbc9 2025-07-24T03:47:32.0426936Z * [new tag] trunk/9bf41633d76f7816fdcc0b7ae22a42dc91821004 -> trunk/9bf41633d76f7816fdcc0b7ae22a42dc91821004 2025-07-24T03:47:32.0427846Z * [new tag] trunk/9bf6593e96b711641606e6008a4936173fd3b458 -> trunk/9bf6593e96b711641606e6008a4936173fd3b458 2025-07-24T03:47:32.0428723Z * [new tag] trunk/9bfefda296d2df31ce9bb90410d91d8f18127545 -> trunk/9bfefda296d2df31ce9bb90410d91d8f18127545 2025-07-24T03:47:32.0429536Z * [new tag] trunk/9c189ed29a2cfa08ff357cb5042ff8c34f07d668 -> trunk/9c189ed29a2cfa08ff357cb5042ff8c34f07d668 2025-07-24T03:47:32.0430327Z * [new tag] trunk/9c39bc24807a5843f8affdf56bd71836760dc554 -> trunk/9c39bc24807a5843f8affdf56bd71836760dc554 2025-07-24T03:47:32.0431137Z * [new tag] trunk/9ca080db87f66becb2bb2c61598c0beabae73d5f -> trunk/9ca080db87f66becb2bb2c61598c0beabae73d5f 2025-07-24T03:47:32.0431969Z * [new tag] trunk/9cced33c7c9cdfc68e9ed85c4b45bdfd05dac92d -> trunk/9cced33c7c9cdfc68e9ed85c4b45bdfd05dac92d 2025-07-24T03:47:32.0432793Z * [new tag] trunk/9cd521de4dad5fc6bca94e253a9334b9a521acb0 -> trunk/9cd521de4dad5fc6bca94e253a9334b9a521acb0 2025-07-24T03:47:32.0433608Z * [new tag] trunk/9d175bc7e615b062d8ea57df6ca17edb8a6b951f -> trunk/9d175bc7e615b062d8ea57df6ca17edb8a6b951f 2025-07-24T03:47:32.0434424Z * [new tag] trunk/9d184bda2f190a3ba72a4a0d95e1fde26d6bfc08 -> trunk/9d184bda2f190a3ba72a4a0d95e1fde26d6bfc08 2025-07-24T03:47:32.0435214Z * [new tag] trunk/9d2d2270037c5a014767cdfa531863da8062bf9d -> trunk/9d2d2270037c5a014767cdfa531863da8062bf9d 2025-07-24T03:47:32.0435992Z * [new tag] trunk/9d59b516e9b3026948918e3ff8c2ef55a33d13ad -> trunk/9d59b516e9b3026948918e3ff8c2ef55a33d13ad 2025-07-24T03:47:32.0436757Z * [new tag] trunk/9d677389cb5eb75d423860c55519b522961a9195 -> trunk/9d677389cb5eb75d423860c55519b522961a9195 2025-07-24T03:47:32.0437560Z * [new tag] trunk/9de23d0c29dfac8dc0f6f234bdbcd85a6375fa81 -> trunk/9de23d0c29dfac8dc0f6f234bdbcd85a6375fa81 2025-07-24T03:47:32.0438366Z * [new tag] trunk/9df0176408518b30ac172837bd697c9d19b19a98 -> trunk/9df0176408518b30ac172837bd697c9d19b19a98 2025-07-24T03:47:32.0439143Z * [new tag] trunk/9df0f565972a8a034fd77d65aff2c53e6e9856d1 -> trunk/9df0f565972a8a034fd77d65aff2c53e6e9856d1 2025-07-24T03:47:32.0439942Z * [new tag] trunk/9df2e8020f190bdad02258aff2b2f88f7db3dcab -> trunk/9df2e8020f190bdad02258aff2b2f88f7db3dcab 2025-07-24T03:47:32.0440726Z * [new tag] trunk/9e0473b56621162bd85e94943a516be4727e5651 -> trunk/9e0473b56621162bd85e94943a516be4727e5651 2025-07-24T03:47:32.0441480Z * [new tag] trunk/9e132b770e06c2399f827d3d1963fe036e9744e6 -> trunk/9e132b770e06c2399f827d3d1963fe036e9744e6 2025-07-24T03:47:32.0442253Z * [new tag] trunk/9e5f4a844c0aebf964a435094005c92713fbe99a -> trunk/9e5f4a844c0aebf964a435094005c92713fbe99a 2025-07-24T03:47:32.0443026Z * [new tag] trunk/9e88d6c857fd2b276427f4527130e2ecb7ed731e -> trunk/9e88d6c857fd2b276427f4527130e2ecb7ed731e 2025-07-24T03:47:32.0443811Z * [new tag] trunk/9e9484d022f8d65e2066b5683b75c84ba0f36332 -> trunk/9e9484d022f8d65e2066b5683b75c84ba0f36332 2025-07-24T03:47:32.0635661Z * [new tag] trunk/9ed0060225a7b78c60c42f29be94444b537edd4a -> trunk/9ed0060225a7b78c60c42f29be94444b537edd4a 2025-07-24T03:47:32.0636488Z * [new tag] trunk/9f18482d41227df3cf2248dfa54bd6601e61e1ca -> trunk/9f18482d41227df3cf2248dfa54bd6601e61e1ca 2025-07-24T03:47:32.0637297Z * [new tag] trunk/9f37cce69334bccebf4b21503f0047d0c0bb320c -> trunk/9f37cce69334bccebf4b21503f0047d0c0bb320c 2025-07-24T03:47:32.0638103Z * [new tag] trunk/9f5153b1a495b3b2b7ad9f22a064fe4074d742aa -> trunk/9f5153b1a495b3b2b7ad9f22a064fe4074d742aa 2025-07-24T03:47:32.0638880Z * [new tag] trunk/9f5276dc07c788533af8945b1605df47a33313e7 -> trunk/9f5276dc07c788533af8945b1605df47a33313e7 2025-07-24T03:47:32.0639727Z * [new tag] trunk/9fe2d156a9f81d67e248c0edaf7feee1a8d6c4d5 -> trunk/9fe2d156a9f81d67e248c0edaf7feee1a8d6c4d5 2025-07-24T03:47:32.0640810Z * [new tag] trunk/9fed2addedb42da86b657165fe14eadc911232cf -> trunk/9fed2addedb42da86b657165fe14eadc911232cf 2025-07-24T03:47:32.0641612Z * [new tag] trunk/a00442421a14448f95fc28790325f941662d97f2 -> trunk/a00442421a14448f95fc28790325f941662d97f2 2025-07-24T03:47:32.0642383Z * [new tag] trunk/a00a697c1748937b0c6d13508ff76b8af4957d8a -> trunk/a00a697c1748937b0c6d13508ff76b8af4957d8a 2025-07-24T03:47:32.0643176Z * [new tag] trunk/a00cd8cf252a0b061f2eef6b5b42ae967acf5f64 -> trunk/a00cd8cf252a0b061f2eef6b5b42ae967acf5f64 2025-07-24T03:47:32.0643980Z * [new tag] trunk/a0308edb6cdfd8983e80a499890d9f320556e844 -> trunk/a0308edb6cdfd8983e80a499890d9f320556e844 2025-07-24T03:47:32.0644781Z * [new tag] trunk/a04a13c44908fe0ace4f76a228d045dbf5c015bc -> trunk/a04a13c44908fe0ace4f76a228d045dbf5c015bc 2025-07-24T03:47:32.0645625Z * [new tag] trunk/a04bd11895f7523f8b210dc42bbc064cb2ca06e8 -> trunk/a04bd11895f7523f8b210dc42bbc064cb2ca06e8 2025-07-24T03:47:32.0646472Z * [new tag] trunk/a0e0abd0379ed403adc926d3cc5459fa35aff0a0 -> trunk/a0e0abd0379ed403adc926d3cc5459fa35aff0a0 2025-07-24T03:47:32.0647267Z * [new tag] trunk/a10024d7dea47c52469059a47efe376eb20adca0 -> trunk/a10024d7dea47c52469059a47efe376eb20adca0 2025-07-24T03:47:32.0648121Z * [new tag] trunk/a1057cda31fe890d237fe9a2e6b3314cd4be3439 -> trunk/a1057cda31fe890d237fe9a2e6b3314cd4be3439 2025-07-24T03:47:32.0648926Z * [new tag] trunk/a1257446f8eaf81eb758e89b4e784bed47b9c733 -> trunk/a1257446f8eaf81eb758e89b4e784bed47b9c733 2025-07-24T03:47:32.0649699Z * [new tag] trunk/a1282b18239204b0344884ebd232b33b2d8b748f -> trunk/a1282b18239204b0344884ebd232b33b2d8b748f 2025-07-24T03:47:32.0650497Z * [new tag] trunk/a14f427db68e54500ef4cd9ed34cb9537263bb74 -> trunk/a14f427db68e54500ef4cd9ed34cb9537263bb74 2025-07-24T03:47:32.0651316Z * [new tag] trunk/a155f742adc5f5bf169ff9ac8bf2e98a22ddcacb -> trunk/a155f742adc5f5bf169ff9ac8bf2e98a22ddcacb 2025-07-24T03:47:32.0652220Z * [new tag] trunk/a1cfe7f1df3ddf72f1cf361cef96c69fc4a91a2b -> trunk/a1cfe7f1df3ddf72f1cf361cef96c69fc4a91a2b 2025-07-24T03:47:32.0653039Z * [new tag] trunk/a1dad2f2d2c082e2a3784c3d585ef0204b7ccf75 -> trunk/a1dad2f2d2c082e2a3784c3d585ef0204b7ccf75 2025-07-24T03:47:32.0653822Z * [new tag] trunk/a1e4f1f98a0b9596fe52aaf2f85b0778498d5f49 -> trunk/a1e4f1f98a0b9596fe52aaf2f85b0778498d5f49 2025-07-24T03:47:32.0654626Z * [new tag] trunk/a205e8fd7357cf5c2b95eb4bec7c8ff7b5c41651 -> trunk/a205e8fd7357cf5c2b95eb4bec7c8ff7b5c41651 2025-07-24T03:47:32.0655430Z * [new tag] trunk/a21806f0386c2671fc11ae37fe2fe96c4aeb37d9 -> trunk/a21806f0386c2671fc11ae37fe2fe96c4aeb37d9 2025-07-24T03:47:32.0656214Z * [new tag] trunk/a23f4471b952d8cd630b860639e0aaa9be957d60 -> trunk/a23f4471b952d8cd630b860639e0aaa9be957d60 2025-07-24T03:47:32.0657028Z * [new tag] trunk/a24afbff3f44399ac9513addce6bd50cacab22d2 -> trunk/a24afbff3f44399ac9513addce6bd50cacab22d2 2025-07-24T03:47:32.0657884Z * [new tag] trunk/a24ce67deedab025531660ddb44c148bb066edf8 -> trunk/a24ce67deedab025531660ddb44c148bb066edf8 2025-07-24T03:47:32.0658722Z * [new tag] trunk/a25d1443fae79a9984eaa44e973b2f5645c85da8 -> trunk/a25d1443fae79a9984eaa44e973b2f5645c85da8 2025-07-24T03:47:32.0659511Z * [new tag] trunk/a26bf3892778ca7cc457c772a1f5194c11b6f33c -> trunk/a26bf3892778ca7cc457c772a1f5194c11b6f33c 2025-07-24T03:47:32.0660305Z * [new tag] trunk/a28e6ae38f1e1de33ecf48b679ff1eda71fc2efc -> trunk/a28e6ae38f1e1de33ecf48b679ff1eda71fc2efc 2025-07-24T03:47:32.0661125Z * [new tag] trunk/a2a75be0f8d680cf1dc36c50f34f225b0c7c4d6a -> trunk/a2a75be0f8d680cf1dc36c50f34f225b0c7c4d6a 2025-07-24T03:47:32.0662013Z * [new tag] trunk/a2ad16be72bf989c01b96c4c56b1c108a71c087f -> trunk/a2ad16be72bf989c01b96c4c56b1c108a71c087f 2025-07-24T03:47:32.0849647Z * [new tag] trunk/a2b0b2698d5b953861b2e4f3cdee11136f07bd3b -> trunk/a2b0b2698d5b953861b2e4f3cdee11136f07bd3b 2025-07-24T03:47:32.0850479Z * [new tag] trunk/a3098a74d494020dbb906c05ef047013e1921662 -> trunk/a3098a74d494020dbb906c05ef047013e1921662 2025-07-24T03:47:32.0851272Z * [new tag] trunk/a317c63d1b70a7989a4cab09394691fb7a3d8323 -> trunk/a317c63d1b70a7989a4cab09394691fb7a3d8323 2025-07-24T03:47:32.0852055Z * [new tag] trunk/a3396a9b855cc759d6669729dff3e0dc379bc79f -> trunk/a3396a9b855cc759d6669729dff3e0dc379bc79f 2025-07-24T03:47:32.0852857Z * [new tag] trunk/a355158fcba807fda1e47e5ee42babdbcf447947 -> trunk/a355158fcba807fda1e47e5ee42babdbcf447947 2025-07-24T03:47:32.0853655Z * [new tag] trunk/a35b3a9b95bbe0703de33802162a83cb7970ddc0 -> trunk/a35b3a9b95bbe0703de33802162a83cb7970ddc0 2025-07-24T03:47:32.0854455Z * [new tag] trunk/a369350065493109d1abfbb994695777ab11bcf4 -> trunk/a369350065493109d1abfbb994695777ab11bcf4 2025-07-24T03:47:32.0855232Z * [new tag] trunk/a38f433be2e94a64b095a44ba39879d02d0c2316 -> trunk/a38f433be2e94a64b095a44ba39879d02d0c2316 2025-07-24T03:47:32.0856031Z * [new tag] trunk/a3aacd6cb2ee581b7bdb45cdbe6f70695c04f4ab -> trunk/a3aacd6cb2ee581b7bdb45cdbe6f70695c04f4ab 2025-07-24T03:47:32.0856852Z * [new tag] trunk/a3ec6d64b24fdbd61164240f3bcd8530434812b5 -> trunk/a3ec6d64b24fdbd61164240f3bcd8530434812b5 2025-07-24T03:47:32.0857638Z * [new tag] trunk/a46ea8a364e528828c4369d58d53802291f0b49b -> trunk/a46ea8a364e528828c4369d58d53802291f0b49b 2025-07-24T03:47:32.0858419Z * [new tag] trunk/a47ca4fc746a663c0e97d55a87815d0965d0a7e9 -> trunk/a47ca4fc746a663c0e97d55a87815d0965d0a7e9 2025-07-24T03:47:32.0859211Z * [new tag] trunk/a4b59498c5222a02a706fa1e1308a6035d65feab -> trunk/a4b59498c5222a02a706fa1e1308a6035d65feab 2025-07-24T03:47:32.0859992Z * [new tag] trunk/a4c7e7f98373ad8f309e419c6f98b0134933dcda -> trunk/a4c7e7f98373ad8f309e419c6f98b0134933dcda 2025-07-24T03:47:32.0860777Z * [new tag] trunk/a4d753295ee5662056bdfd1b00fa242071ac7125 -> trunk/a4d753295ee5662056bdfd1b00fa242071ac7125 2025-07-24T03:47:32.0861570Z * [new tag] trunk/a4ea242edc8626250e54a62aa073cba0e5322af2 -> trunk/a4ea242edc8626250e54a62aa073cba0e5322af2 2025-07-24T03:47:32.0862356Z * [new tag] trunk/a4ec381302f8acd279033707b182bed30ffd2091 -> trunk/a4ec381302f8acd279033707b182bed30ffd2091 2025-07-24T03:47:32.0863135Z * [new tag] trunk/a527e816935957a164d74dd7c5069310b2857695 -> trunk/a527e816935957a164d74dd7c5069310b2857695 2025-07-24T03:47:32.0863910Z * [new tag] trunk/a529a5daf5d348f4f8dac4fcd85521153b6a3d4d -> trunk/a529a5daf5d348f4f8dac4fcd85521153b6a3d4d 2025-07-24T03:47:32.0864709Z * [new tag] trunk/a5938ff431202864c92fec7d9042574348b1c15b -> trunk/a5938ff431202864c92fec7d9042574348b1c15b 2025-07-24T03:47:32.0865489Z * [new tag] trunk/a5b4463d60e5beaec546843b24876ce573890784 -> trunk/a5b4463d60e5beaec546843b24876ce573890784 2025-07-24T03:47:32.0866283Z * [new tag] trunk/a5c61eb78dda6b7b4c4beb8bc616f9545ea4807b -> trunk/a5c61eb78dda6b7b4c4beb8bc616f9545ea4807b 2025-07-24T03:47:32.0867082Z * [new tag] trunk/a5cbb2bcb3c005909a3c10042605e861e6390927 -> trunk/a5cbb2bcb3c005909a3c10042605e861e6390927 2025-07-24T03:47:32.0867885Z * [new tag] trunk/a5df6ffbc2cf8d61fc98bca1c10f22ff64b2318e -> trunk/a5df6ffbc2cf8d61fc98bca1c10f22ff64b2318e 2025-07-24T03:47:32.0868678Z * [new tag] trunk/a5e68814d556cf67c6511876410970dd08c3dd6d -> trunk/a5e68814d556cf67c6511876410970dd08c3dd6d 2025-07-24T03:47:32.0869592Z * [new tag] trunk/a5f59cc2eab3a5201712c52fe48c268357ba4f3c -> trunk/a5f59cc2eab3a5201712c52fe48c268357ba4f3c 2025-07-24T03:47:32.0870453Z * [new tag] trunk/a6084b71edb8d2856356724b5e71c4e2a861867f -> trunk/a6084b71edb8d2856356724b5e71c4e2a861867f 2025-07-24T03:47:32.0871234Z * [new tag] trunk/a6210fd07b8fe1924f24229bb30562608af4f41a -> trunk/a6210fd07b8fe1924f24229bb30562608af4f41a 2025-07-24T03:47:32.0872026Z * [new tag] trunk/a626dc8f1604ce24dadbcdf257f92d0b15bf9367 -> trunk/a626dc8f1604ce24dadbcdf257f92d0b15bf9367 2025-07-24T03:47:32.0872817Z * [new tag] trunk/a666cf3b38f5e7739f94b175f152b127a6d51344 -> trunk/a666cf3b38f5e7739f94b175f152b127a6d51344 2025-07-24T03:47:32.0873612Z * [new tag] trunk/a67eb1a0d627d59d95a99722d37cab3bf054261f -> trunk/a67eb1a0d627d59d95a99722d37cab3bf054261f 2025-07-24T03:47:32.0874411Z * [new tag] trunk/a69e27ca5ad4287add73972ef1b34b469e3c7d23 -> trunk/a69e27ca5ad4287add73972ef1b34b469e3c7d23 2025-07-24T03:47:32.1069902Z * [new tag] trunk/a6a3a441442a96f38d0771c985f753223cea2ba0 -> trunk/a6a3a441442a96f38d0771c985f753223cea2ba0 2025-07-24T03:47:32.1070738Z * [new tag] trunk/a6a8641c8aee5797324c3d41749bcae62b4e5de8 -> trunk/a6a8641c8aee5797324c3d41749bcae62b4e5de8 2025-07-24T03:47:32.1071550Z * [new tag] trunk/a6b7bea2448e03bd5c6e876f92de752c3a616646 -> trunk/a6b7bea2448e03bd5c6e876f92de752c3a616646 2025-07-24T03:47:32.1072345Z * [new tag] trunk/a6fab82b16011213cb010c8c50461b9a680748a2 -> trunk/a6fab82b16011213cb010c8c50461b9a680748a2 2025-07-24T03:47:32.1073145Z * [new tag] trunk/a73d9e0aec9319e56ba0c9b0ccc25db69c739faf -> trunk/a73d9e0aec9319e56ba0c9b0ccc25db69c739faf 2025-07-24T03:47:32.1073930Z * [new tag] trunk/a74109415943d56a0b681cbd4cf772ca07208818 -> trunk/a74109415943d56a0b681cbd4cf772ca07208818 2025-07-24T03:47:32.1074725Z * [new tag] trunk/a767e50adca9e08dd638be60c9e5604de15b9f15 -> trunk/a767e50adca9e08dd638be60c9e5604de15b9f15 2025-07-24T03:47:32.1075535Z * [new tag] trunk/a78fb63dbdf98a1db219095293de1a11005e0390 -> trunk/a78fb63dbdf98a1db219095293de1a11005e0390 2025-07-24T03:47:32.1076335Z * [new tag] trunk/a7b29c88b1f55bac02f38bf1faba68b6c4be4c9c -> trunk/a7b29c88b1f55bac02f38bf1faba68b6c4be4c9c 2025-07-24T03:47:32.1077152Z * [new tag] trunk/a7eb153bba0534daaa1b652d44bb9fb5bd1ac7c7 -> trunk/a7eb153bba0534daaa1b652d44bb9fb5bd1ac7c7 2025-07-24T03:47:32.1077951Z * [new tag] trunk/a82c171bb26949dda5f5932051a905a9bab38761 -> trunk/a82c171bb26949dda5f5932051a905a9bab38761 2025-07-24T03:47:32.1078741Z * [new tag] trunk/a835dbc096dd5206b91449b3ccc60c069d288506 -> trunk/a835dbc096dd5206b91449b3ccc60c069d288506 2025-07-24T03:47:32.1079522Z * [new tag] trunk/a85ad5552532926b78d489d1b60671f74bf6dc8e -> trunk/a85ad5552532926b78d489d1b60671f74bf6dc8e 2025-07-24T03:47:32.1080305Z * [new tag] trunk/a87dfc7480bc98d33dab274d7e95723aa9cf7840 -> trunk/a87dfc7480bc98d33dab274d7e95723aa9cf7840 2025-07-24T03:47:32.1081101Z * [new tag] trunk/a8b973673798ca79dfe616c9080415d09f9e990d -> trunk/a8b973673798ca79dfe616c9080415d09f9e990d 2025-07-24T03:47:32.1081905Z * [new tag] trunk/a8ec7babcf27584cf068c3a5a04bb3ea0102ab99 -> trunk/a8ec7babcf27584cf068c3a5a04bb3ea0102ab99 2025-07-24T03:47:32.1082698Z * [new tag] trunk/a8fe982993221048ee1665ce28add1b02888784d -> trunk/a8fe982993221048ee1665ce28add1b02888784d 2025-07-24T03:47:32.1083487Z * [new tag] trunk/a92b24cd839aa6807f3c9ea8b8787da99c4490c0 -> trunk/a92b24cd839aa6807f3c9ea8b8787da99c4490c0 2025-07-24T03:47:32.1084276Z * [new tag] trunk/a9352bd25e9f070e8f846b8fdbcd7c90ad5c66b3 -> trunk/a9352bd25e9f070e8f846b8fdbcd7c90ad5c66b3 2025-07-24T03:47:32.1085198Z * [new tag] trunk/a952956d05dd617355007ae31d8e936474a35f14 -> trunk/a952956d05dd617355007ae31d8e936474a35f14 2025-07-24T03:47:32.1086067Z * [new tag] trunk/a9537b626c91ce617139ade60b9107a2805a4248 -> trunk/a9537b626c91ce617139ade60b9107a2805a4248 2025-07-24T03:47:32.1086839Z * [new tag] trunk/a95504b10fff38b5308660e0b535961beed6c9f1 -> trunk/a95504b10fff38b5308660e0b535961beed6c9f1 2025-07-24T03:47:32.1087630Z * [new tag] trunk/a991e285ae35159680b0ad4be24669906a6fa256 -> trunk/a991e285ae35159680b0ad4be24669906a6fa256 2025-07-24T03:47:32.1088499Z * [new tag] trunk/a9a0501ec40d8fab07b0f8d2fcbf8eb7147c1ae8 -> trunk/a9a0501ec40d8fab07b0f8d2fcbf8eb7147c1ae8 2025-07-24T03:47:32.1089323Z * [new tag] trunk/a9ac9f2635a9be28eaf267ed41070081a4ce05d8 -> trunk/a9ac9f2635a9be28eaf267ed41070081a4ce05d8 2025-07-24T03:47:32.1090119Z * [new tag] trunk/a9d5157e2596e1d830158e83fab618aab1d4ee39 -> trunk/a9d5157e2596e1d830158e83fab618aab1d4ee39 2025-07-24T03:47:32.1090906Z * [new tag] trunk/a9ee4250d55c6342b80e2d57a8ad9a1992ddcdce -> trunk/a9ee4250d55c6342b80e2d57a8ad9a1992ddcdce 2025-07-24T03:47:32.1091713Z * [new tag] trunk/a9ef7c4d044d386993a6e82b5ad37b7db759b502 -> trunk/a9ef7c4d044d386993a6e82b5ad37b7db759b502 2025-07-24T03:47:32.1092510Z * [new tag] trunk/a9f84021fb5963019f3df895d7d3eeae4606cf79 -> trunk/a9f84021fb5963019f3df895d7d3eeae4606cf79 2025-07-24T03:47:32.1093300Z * [new tag] trunk/a9f902add02383ca1b0386eb865767641975fede -> trunk/a9f902add02383ca1b0386eb865767641975fede 2025-07-24T03:47:32.1094094Z * [new tag] trunk/aa116285768ba6a8cd34bf8d245e38d04c88810a -> trunk/aa116285768ba6a8cd34bf8d245e38d04c88810a 2025-07-24T03:47:32.1094878Z * [new tag] trunk/aa280ea19fb20923d048909fa98af092e18ca2fb -> trunk/aa280ea19fb20923d048909fa98af092e18ca2fb 2025-07-24T03:47:32.1095660Z * [new tag] trunk/aa2d54148d476383986855af3fe53862da861dda -> trunk/aa2d54148d476383986855af3fe53862da861dda 2025-07-24T03:47:32.1306653Z * [new tag] trunk/aab949aa96a6b197b75ffa25608fa84049ff68ad -> trunk/aab949aa96a6b197b75ffa25608fa84049ff68ad 2025-07-24T03:47:32.1307488Z * [new tag] trunk/aac0e8f0e998a9381f0eb5dd303a853515109eb0 -> trunk/aac0e8f0e998a9381f0eb5dd303a853515109eb0 2025-07-24T03:47:32.1308295Z * [new tag] trunk/aacb9440791f4e9567e2123f19bb062e75c2d242 -> trunk/aacb9440791f4e9567e2123f19bb062e75c2d242 2025-07-24T03:47:32.1309094Z * [new tag] trunk/ab2294d8289a7757a2fc321cdefac88e2b378edf -> trunk/ab2294d8289a7757a2fc321cdefac88e2b378edf 2025-07-24T03:47:32.1309906Z * [new tag] trunk/ab3393e923514438c9bdfc1afcd0b2aac8be8de9 -> trunk/ab3393e923514438c9bdfc1afcd0b2aac8be8de9 2025-07-24T03:47:32.1310717Z * [new tag] trunk/ab51a937371e61f91cacae7d9fb4b1fe61f24f03 -> trunk/ab51a937371e61f91cacae7d9fb4b1fe61f24f03 2025-07-24T03:47:32.1311512Z * [new tag] trunk/ab557421a473993b6c7c841cc0d2ff490c718ea4 -> trunk/ab557421a473993b6c7c841cc0d2ff490c718ea4 2025-07-24T03:47:32.1312301Z * [new tag] trunk/ab56e5add9c36f611a4d9af2f43213926b65d7b4 -> trunk/ab56e5add9c36f611a4d9af2f43213926b65d7b4 2025-07-24T03:47:32.1313088Z * [new tag] trunk/ab655816b8f76f511fb2262d45276d8d1b13d59c -> trunk/ab655816b8f76f511fb2262d45276d8d1b13d59c 2025-07-24T03:47:32.1313867Z * [new tag] trunk/ab6cb34480a14f3cf2446519189ee5f0c5e7278d -> trunk/ab6cb34480a14f3cf2446519189ee5f0c5e7278d 2025-07-24T03:47:32.1314656Z * [new tag] trunk/ab81fb846cd0e52bbc6a2eb366706350639e209f -> trunk/ab81fb846cd0e52bbc6a2eb366706350639e209f 2025-07-24T03:47:32.1315454Z * [new tag] trunk/ab8874bd26894a8ab956408ceee2e89c9ad7f450 -> trunk/ab8874bd26894a8ab956408ceee2e89c9ad7f450 2025-07-24T03:47:32.1316241Z * [new tag] trunk/abbdf9f3632af505b3265b4258a6c185b257edde -> trunk/abbdf9f3632af505b3265b4258a6c185b257edde 2025-07-24T03:47:32.1317273Z * [new tag] trunk/abe0c9538a1abcb0528ac2107bd3ac5de628be89 -> trunk/abe0c9538a1abcb0528ac2107bd3ac5de628be89 2025-07-24T03:47:32.1318086Z * [new tag] trunk/abeae997a35b1920a45be9c26eff7474f2c6c5dd -> trunk/abeae997a35b1920a45be9c26eff7474f2c6c5dd 2025-07-24T03:47:32.1318896Z * [new tag] trunk/abf4da0d242274ba7ab4c0859d105cae74a2dbc5 -> trunk/abf4da0d242274ba7ab4c0859d105cae74a2dbc5 2025-07-24T03:47:32.1319703Z * [new tag] trunk/ac706bfc7f942b8a97401486a840dd8f6452f5cb -> trunk/ac706bfc7f942b8a97401486a840dd8f6452f5cb 2025-07-24T03:47:32.1320484Z * [new tag] trunk/ac86ec0e60370c037e018137f2048cafd47c5c28 -> trunk/ac86ec0e60370c037e018137f2048cafd47c5c28 2025-07-24T03:47:32.1321292Z * [new tag] trunk/acaf6ba3c6d0bdec88ab3f6c2ef82650050558d2 -> trunk/acaf6ba3c6d0bdec88ab3f6c2ef82650050558d2 2025-07-24T03:47:32.1322121Z * [new tag] trunk/ad223a6c5fec7e143f3c0fd56a492f0a79f61711 -> trunk/ad223a6c5fec7e143f3c0fd56a492f0a79f61711 2025-07-24T03:47:32.1322933Z * [new tag] trunk/ad2dec1997077e3dc3e0ed8a26abce2261c04f86 -> trunk/ad2dec1997077e3dc3e0ed8a26abce2261c04f86 2025-07-24T03:47:32.1323786Z * [new tag] trunk/ad86c05b78d343f3346d07a07e17639e421d2cf4 -> trunk/ad86c05b78d343f3346d07a07e17639e421d2cf4 2025-07-24T03:47:32.1324607Z * [new tag] trunk/ada44e5ba78be9377814678d1986556af2d6e570 -> trunk/ada44e5ba78be9377814678d1986556af2d6e570 2025-07-24T03:47:32.1325410Z * [new tag] trunk/add0b450bd9907ba9d089c79ca4af96c0590d8ff -> trunk/add0b450bd9907ba9d089c79ca4af96c0590d8ff 2025-07-24T03:47:32.1326222Z * [new tag] trunk/adf6dd1e44c1b006ea6078576b64d5616cecfa5a -> trunk/adf6dd1e44c1b006ea6078576b64d5616cecfa5a 2025-07-24T03:47:32.1327011Z * [new tag] trunk/adf9644440e0d007853e7fdfd67b6a59248f4fbb -> trunk/adf9644440e0d007853e7fdfd67b6a59248f4fbb 2025-07-24T03:47:32.1327809Z * [new tag] trunk/ae0f1f89847564b04bdc43395e664e48f08aaca2 -> trunk/ae0f1f89847564b04bdc43395e664e48f08aaca2 2025-07-24T03:47:32.1328680Z * [new tag] trunk/ae1094b72b7db368f292ed6033de5b495dcdc878 -> trunk/ae1094b72b7db368f292ed6033de5b495dcdc878 2025-07-24T03:47:32.1329470Z * [new tag] trunk/ae86e8f6c829a3cfa9204949156fce2d048c919b -> trunk/ae86e8f6c829a3cfa9204949156fce2d048c919b 2025-07-24T03:47:32.1330279Z * [new tag] trunk/aec569da2325c09487ab659a0f28c3b51e60d779 -> trunk/aec569da2325c09487ab659a0f28c3b51e60d779 2025-07-24T03:47:32.1331087Z * [new tag] trunk/aee2bfc5bae2974f5a3023d51dfa8e3e641144cc -> trunk/aee2bfc5bae2974f5a3023d51dfa8e3e641144cc 2025-07-24T03:47:32.1331900Z * [new tag] trunk/aee8a2e98589886ee80767bcbd10c03d13fb19ec -> trunk/aee8a2e98589886ee80767bcbd10c03d13fb19ec 2025-07-24T03:47:32.1524360Z * [new tag] trunk/aeffb68d3466635e4e95c50bffd7dfebaba94da2 -> trunk/aeffb68d3466635e4e95c50bffd7dfebaba94da2 2025-07-24T03:47:32.1525243Z * [new tag] trunk/af284b45d5cbfd19d168bf1d118b3a40cd8b3a92 -> trunk/af284b45d5cbfd19d168bf1d118b3a40cd8b3a92 2025-07-24T03:47:32.1526045Z * [new tag] trunk/af3d06909400413801b726a96f3ff52b5ee9ebb5 -> trunk/af3d06909400413801b726a96f3ff52b5ee9ebb5 2025-07-24T03:47:32.1526862Z * [new tag] trunk/af6624023e4a9347d68db8517fad684a68b391a2 -> trunk/af6624023e4a9347d68db8517fad684a68b391a2 2025-07-24T03:47:32.1527724Z * [new tag] trunk/af9c92b4cb9f406129dfd8c64c082c0aaf7c723f -> trunk/af9c92b4cb9f406129dfd8c64c082c0aaf7c723f 2025-07-24T03:47:32.1528582Z * [new tag] trunk/aff9c1eec599b8fa97240d192534b0f650c16b1b -> trunk/aff9c1eec599b8fa97240d192534b0f650c16b1b 2025-07-24T03:47:32.1529377Z * [new tag] trunk/b00b641ff1fbfa8f4f6152ffc631e0d24145a7a8 -> trunk/b00b641ff1fbfa8f4f6152ffc631e0d24145a7a8 2025-07-24T03:47:32.1530329Z * [new tag] trunk/b020971e7806bba39aecf636e59e743911831ad8 -> trunk/b020971e7806bba39aecf636e59e743911831ad8 2025-07-24T03:47:32.1531204Z * [new tag] trunk/b0556110e58e3bcf2c872b933e4fd4a0d34398ad -> trunk/b0556110e58e3bcf2c872b933e4fd4a0d34398ad 2025-07-24T03:47:32.1531975Z * [new tag] trunk/b07725a9516028a485153c4b5356b3e33b990f81 -> trunk/b07725a9516028a485153c4b5356b3e33b990f81 2025-07-24T03:47:32.1532754Z * [new tag] trunk/b096341963c4af3b2b0d7f598eba1cdc1c74fb6e -> trunk/b096341963c4af3b2b0d7f598eba1cdc1c74fb6e 2025-07-24T03:47:32.1533643Z * [new tag] trunk/b09bd414a6ccba158c09f586a278051588d90936 -> trunk/b09bd414a6ccba158c09f586a278051588d90936 2025-07-24T03:47:32.1534429Z * [new tag] trunk/b0e325c2c85c5d056a394aa9201f246ee25f8d26 -> trunk/b0e325c2c85c5d056a394aa9201f246ee25f8d26 2025-07-24T03:47:32.1535260Z * [new tag] trunk/b0fbbef1361ccaab8a5aec8e7cd62150e7b361de -> trunk/b0fbbef1361ccaab8a5aec8e7cd62150e7b361de 2025-07-24T03:47:32.1536075Z * [new tag] trunk/b146ca74f01df3cf711fd0f855e05805e490156c -> trunk/b146ca74f01df3cf711fd0f855e05805e490156c 2025-07-24T03:47:32.1536871Z * [new tag] trunk/b146e1a264960e5fb79cf4621ebe4b1345db3e64 -> trunk/b146e1a264960e5fb79cf4621ebe4b1345db3e64 2025-07-24T03:47:32.1537653Z * [new tag] trunk/b147b6c0e31d43a405416743fde1b0b606aa3839 -> trunk/b147b6c0e31d43a405416743fde1b0b606aa3839 2025-07-24T03:47:32.1538416Z * [new tag] trunk/b1713c665516d8355f5491d10b31f98c74ce27f1 -> trunk/b1713c665516d8355f5491d10b31f98c74ce27f1 2025-07-24T03:47:32.1539253Z * [new tag] trunk/b1a0c34dd3b581f645842f06f9d0187e7a6562c8 -> trunk/b1a0c34dd3b581f645842f06f9d0187e7a6562c8 2025-07-24T03:47:32.1540091Z * [new tag] trunk/b1a54fab9bcb0cc167773f9a885d4170447e1c68 -> trunk/b1a54fab9bcb0cc167773f9a885d4170447e1c68 2025-07-24T03:47:32.1540891Z * [new tag] trunk/b1b8e57cda03bd016594a4fc4944fa5e7f9dd961 -> trunk/b1b8e57cda03bd016594a4fc4944fa5e7f9dd961 2025-07-24T03:47:32.1541688Z * [new tag] trunk/b1d62febd03ac421197d5516596f98d3c46e9b44 -> trunk/b1d62febd03ac421197d5516596f98d3c46e9b44 2025-07-24T03:47:32.1542466Z * [new tag] trunk/b221be9140689d180ec339db05c5e235a95949d3 -> trunk/b221be9140689d180ec339db05c5e235a95949d3 2025-07-24T03:47:32.1543251Z * [new tag] trunk/b22b93a6babf86e823e979528bc0aab88fb7a012 -> trunk/b22b93a6babf86e823e979528bc0aab88fb7a012 2025-07-24T03:47:32.1544050Z * [new tag] trunk/b26da7741be37693ab1cd21115f3fca15b1cdb6b -> trunk/b26da7741be37693ab1cd21115f3fca15b1cdb6b 2025-07-24T03:47:32.1544832Z * [new tag] trunk/b2d473c8f8a6d0677940c174b38511f5ab3c3b65 -> trunk/b2d473c8f8a6d0677940c174b38511f5ab3c3b65 2025-07-24T03:47:32.1545671Z * [new tag] trunk/b2fc9cfea16c8eb52c1ce79b2032793dd1a545fb -> trunk/b2fc9cfea16c8eb52c1ce79b2032793dd1a545fb 2025-07-24T03:47:32.1546525Z * [new tag] trunk/b30e04b3c8a83e19dc9123f2f0229d80e208fb50 -> trunk/b30e04b3c8a83e19dc9123f2f0229d80e208fb50 2025-07-24T03:47:32.1547318Z * [new tag] trunk/b354328ecd6a313eab905ab6f74aed5ea2d3a2ce -> trunk/b354328ecd6a313eab905ab6f74aed5ea2d3a2ce 2025-07-24T03:47:32.1548112Z * [new tag] trunk/b359571c6043b40c4ae4fbb07135fd0f04902e21 -> trunk/b359571c6043b40c4ae4fbb07135fd0f04902e21 2025-07-24T03:47:32.1548885Z * [new tag] trunk/b3b4d28f4cf149cb7448c556d359ca852d815ab1 -> trunk/b3b4d28f4cf149cb7448c556d359ca852d815ab1 2025-07-24T03:47:32.1549673Z * [new tag] trunk/b3c868d603e8f7b6661c93cd3d50c9a7b213ad6c -> trunk/b3c868d603e8f7b6661c93cd3d50c9a7b213ad6c 2025-07-24T03:47:32.1550467Z * [new tag] trunk/b40981c63078d99bb07afbdcfec1ce8f7519f26b -> trunk/b40981c63078d99bb07afbdcfec1ce8f7519f26b 2025-07-24T03:47:32.1761365Z * [new tag] trunk/b40c0b61eb5f5b6104cb732e709819e84518faa7 -> trunk/b40c0b61eb5f5b6104cb732e709819e84518faa7 2025-07-24T03:47:32.1762288Z * [new tag] trunk/b4228a94d11b1ba6599f443267824d2d918644f2 -> trunk/b4228a94d11b1ba6599f443267824d2d918644f2 2025-07-24T03:47:32.1763069Z * [new tag] trunk/b4358c5e8731c1035af8bd0d6260de9d239a3e5d -> trunk/b4358c5e8731c1035af8bd0d6260de9d239a3e5d 2025-07-24T03:47:32.1763854Z * [new tag] trunk/b44306d3681d5b248e6b439d293ea0d5a8903a61 -> trunk/b44306d3681d5b248e6b439d293ea0d5a8903a61 2025-07-24T03:47:32.1764629Z * [new tag] trunk/b4442f42a93390760bb923cbe13b80993f5e8e78 -> trunk/b4442f42a93390760bb923cbe13b80993f5e8e78 2025-07-24T03:47:32.1765412Z * [new tag] trunk/b4476ca378be50034bd5cdc1eaa95104337c998a -> trunk/b4476ca378be50034bd5cdc1eaa95104337c998a 2025-07-24T03:47:32.1766191Z * [new tag] trunk/b487003182b7f2d6697064f184515369bf6c8cce -> trunk/b487003182b7f2d6697064f184515369bf6c8cce 2025-07-24T03:47:32.1766973Z * [new tag] trunk/b49edc0d6c72f744d744a026b0ce0d689e34b83b -> trunk/b49edc0d6c72f744d744a026b0ce0d689e34b83b 2025-07-24T03:47:32.1767776Z * [new tag] trunk/b4abf414254ed4d8779bad291dd0141097f019e7 -> trunk/b4abf414254ed4d8779bad291dd0141097f019e7 2025-07-24T03:47:32.1768631Z * [new tag] trunk/b4e3c9ea34cb607324639cd0bb0129740c300721 -> trunk/b4e3c9ea34cb607324639cd0bb0129740c300721 2025-07-24T03:47:32.1769427Z * [new tag] trunk/b4fc42ca807efc1a1b78f52d5481711a4e8bbea3 -> trunk/b4fc42ca807efc1a1b78f52d5481711a4e8bbea3 2025-07-24T03:47:32.1770218Z * [new tag] trunk/b50075343aeb519d135e00c44ff3577eaa25c61b -> trunk/b50075343aeb519d135e00c44ff3577eaa25c61b 2025-07-24T03:47:32.1771099Z * [new tag] trunk/b54eac2a5ed31106393bbc338de8637817809a1f -> trunk/b54eac2a5ed31106393bbc338de8637817809a1f 2025-07-24T03:47:32.1771939Z * [new tag] trunk/b5bfbba1841da810305262c7f47ee2dae54f335e -> trunk/b5bfbba1841da810305262c7f47ee2dae54f335e 2025-07-24T03:47:32.1772744Z * [new tag] trunk/b5c8b8d09f006b1b2911858882a56dfe6e325f36 -> trunk/b5c8b8d09f006b1b2911858882a56dfe6e325f36 2025-07-24T03:47:32.1773531Z * [new tag] trunk/b5ce77c1f5964293299eb1366f341872a4e47fa6 -> trunk/b5ce77c1f5964293299eb1366f341872a4e47fa6 2025-07-24T03:47:32.1774303Z * [new tag] trunk/b60569ed946ddcc267150a675916d68d7cac9085 -> trunk/b60569ed946ddcc267150a675916d68d7cac9085 2025-07-24T03:47:32.1775085Z * [new tag] trunk/b6188174795956f959feae0cbc33cbdb7901c4b6 -> trunk/b6188174795956f959feae0cbc33cbdb7901c4b6 2025-07-24T03:47:32.1775873Z * [new tag] trunk/b642a5c118baf4cd47dd7fe0190b83e04cee960f -> trunk/b642a5c118baf4cd47dd7fe0190b83e04cee960f 2025-07-24T03:47:32.1776672Z * [new tag] trunk/b6454a9058f2e50be9a3c26c128fec843b09c154 -> trunk/b6454a9058f2e50be9a3c26c128fec843b09c154 2025-07-24T03:47:32.1777473Z * [new tag] trunk/b66f4298278c269bdca9a71883cacfa6e975a393 -> trunk/b66f4298278c269bdca9a71883cacfa6e975a393 2025-07-24T03:47:32.1778262Z * [new tag] trunk/b6add8c8ba927a9f1687134ec2734b02a6ccb3c0 -> trunk/b6add8c8ba927a9f1687134ec2734b02a6ccb3c0 2025-07-24T03:47:32.1779080Z * [new tag] trunk/b6c00dfe249a7bfc1d61a322d5bc30f164353abf -> trunk/b6c00dfe249a7bfc1d61a322d5bc30f164353abf 2025-07-24T03:47:32.1779880Z * [new tag] trunk/b6e625e34f358c71b62409f96dc1e22e4791beef -> trunk/b6e625e34f358c71b62409f96dc1e22e4791beef 2025-07-24T03:47:32.1780664Z * [new tag] trunk/b6f84b3b0fef781653911420253dcff6767197dc -> trunk/b6f84b3b0fef781653911420253dcff6767197dc 2025-07-24T03:47:32.1781445Z * [new tag] trunk/b754b1fa43d20f5b31e17c396487ab56991912da -> trunk/b754b1fa43d20f5b31e17c396487ab56991912da 2025-07-24T03:47:32.1782227Z * [new tag] trunk/b7860c7863df9139bceabf5b0c186e6e4287aa4c -> trunk/b7860c7863df9139bceabf5b0c186e6e4287aa4c 2025-07-24T03:47:32.1783199Z * [new tag] trunk/b7a73a2cdbbe46e04aa145fb8c1615e608dcbde9 -> trunk/b7a73a2cdbbe46e04aa145fb8c1615e608dcbde9 2025-07-24T03:47:32.1784012Z * [new tag] trunk/b7b1109f49f5d0bd6145ae47c5c7d7d18c5659b0 -> trunk/b7b1109f49f5d0bd6145ae47c5c7d7d18c5659b0 2025-07-24T03:47:32.1784819Z * [new tag] trunk/b7def5ff1ca72fbb06350ffc75117efc68e149fb -> trunk/b7def5ff1ca72fbb06350ffc75117efc68e149fb 2025-07-24T03:47:32.1785626Z * [new tag] trunk/b83d8827bcd63501d7298267d94d103bf591c6c2 -> trunk/b83d8827bcd63501d7298267d94d103bf591c6c2 2025-07-24T03:47:32.1786416Z * [new tag] trunk/b85f10ea5006e8ae8fc769f48659ab7ad5eafb69 -> trunk/b85f10ea5006e8ae8fc769f48659ab7ad5eafb69 2025-07-24T03:47:32.1997465Z * [new tag] trunk/b86d5cef68d56f3924dc199424e65904a32d0743 -> trunk/b86d5cef68d56f3924dc199424e65904a32d0743 2025-07-24T03:47:32.1998301Z * [new tag] trunk/b87471e66fb989385483b074b5e5942e8fbbbd8d -> trunk/b87471e66fb989385483b074b5e5942e8fbbbd8d 2025-07-24T03:47:32.1999106Z * [new tag] trunk/b878ca0c91bdccbdd907c15a01e5dcf249f0783c -> trunk/b878ca0c91bdccbdd907c15a01e5dcf249f0783c 2025-07-24T03:47:32.1999905Z * [new tag] trunk/b87e50db5e2712608e0b912a8063f0336554bfc3 -> trunk/b87e50db5e2712608e0b912a8063f0336554bfc3 2025-07-24T03:47:32.2000691Z * [new tag] trunk/b8ace6f95105751d0535cb0ce0d2c8f656c8b96c -> trunk/b8ace6f95105751d0535cb0ce0d2c8f656c8b96c 2025-07-24T03:47:32.2001585Z * [new tag] trunk/b8aee84fb9692f1a46c8c2a0ae6685df440f6e8f -> trunk/b8aee84fb9692f1a46c8c2a0ae6685df440f6e8f 2025-07-24T03:47:32.2002391Z * [new tag] trunk/b8bc2c2660e84034ff15232e2161e3ef9a6656d0 -> trunk/b8bc2c2660e84034ff15232e2161e3ef9a6656d0 2025-07-24T03:47:32.2003189Z * [new tag] trunk/b8c2d4c259b16f3dc044d049d964c44907ccecb6 -> trunk/b8c2d4c259b16f3dc044d049d964c44907ccecb6 2025-07-24T03:47:32.2003979Z * [new tag] trunk/b8d96c3f78a27e193f4fa9580f8d28298c8180e3 -> trunk/b8d96c3f78a27e193f4fa9580f8d28298c8180e3 2025-07-24T03:47:32.2004782Z * [new tag] trunk/b8fc5e0c0dda5da8315f9bc108a83a0f92252513 -> trunk/b8fc5e0c0dda5da8315f9bc108a83a0f92252513 2025-07-24T03:47:32.2005587Z * [new tag] trunk/b916d8a583cf4fb018c44eaf5efefa9ca76da366 -> trunk/b916d8a583cf4fb018c44eaf5efefa9ca76da366 2025-07-24T03:47:32.2006392Z * [new tag] trunk/b95dadd7170626273bb03b1264f04f3f051908da -> trunk/b95dadd7170626273bb03b1264f04f3f051908da 2025-07-24T03:47:32.2007248Z * [new tag] trunk/b981fb6744d034a0b2a0baf7e138cfb8dc83ca96 -> trunk/b981fb6744d034a0b2a0baf7e138cfb8dc83ca96 2025-07-24T03:47:32.2008137Z * [new tag] trunk/b9afdd9bcc738697c6eefc90899508ab783bf6ab -> trunk/b9afdd9bcc738697c6eefc90899508ab783bf6ab 2025-07-24T03:47:32.2008988Z * [new tag] trunk/b9b84d8011b08ac62cabf9100043c65863372fea -> trunk/b9b84d8011b08ac62cabf9100043c65863372fea 2025-07-24T03:47:32.2009792Z * [new tag] trunk/b9dc2fa4f7aa237a19248705abf82f5eae662182 -> trunk/b9dc2fa4f7aa237a19248705abf82f5eae662182 2025-07-24T03:47:32.2010590Z * [new tag] trunk/ba0d0de5e652650f8a59c85fc25a90f4ed9e2dc1 -> trunk/ba0d0de5e652650f8a59c85fc25a90f4ed9e2dc1 2025-07-24T03:47:32.2011391Z * [new tag] trunk/badf0020144a6c00ebe7a1cdbeb74f716d48968a -> trunk/badf0020144a6c00ebe7a1cdbeb74f716d48968a 2025-07-24T03:47:32.2012201Z * [new tag] trunk/badfebf29e46c3e41d7cf54a7a807865a90277b0 -> trunk/badfebf29e46c3e41d7cf54a7a807865a90277b0 2025-07-24T03:47:32.2013060Z * [new tag] trunk/bb1f3d1a55e3f8eafb279995824c1ef87f24b341 -> trunk/bb1f3d1a55e3f8eafb279995824c1ef87f24b341 2025-07-24T03:47:32.2013907Z * [new tag] trunk/bb3c911c2d64ccad03349e50a0a220a2889ae85c -> trunk/bb3c911c2d64ccad03349e50a0a220a2889ae85c 2025-07-24T03:47:32.2015477Z * [new tag] trunk/bb462a6237c163774c99e01462703ebce55f4589 -> trunk/bb462a6237c163774c99e01462703ebce55f4589 2025-07-24T03:47:32.2016265Z * [new tag] trunk/bb476310a456b1fd418c79573ed34ad68b4871d4 -> trunk/bb476310a456b1fd418c79573ed34ad68b4871d4 2025-07-24T03:47:32.2017072Z * [new tag] trunk/bbb930aba2e769e3ed981f2a035133891de36dae -> trunk/bbb930aba2e769e3ed981f2a035133891de36dae 2025-07-24T03:47:32.2017876Z * [new tag] trunk/bbbced94a43cf764ddfe719e7d4c161a3992830c -> trunk/bbbced94a43cf764ddfe719e7d4c161a3992830c 2025-07-24T03:47:32.2018709Z * [new tag] trunk/bbc32d680fdd6c23ee0e57d18f5643edd0750a3f -> trunk/bbc32d680fdd6c23ee0e57d18f5643edd0750a3f 2025-07-24T03:47:32.2019606Z * [new tag] trunk/bbe681ed510227ce05f99db2a36c1af5c2cc302b -> trunk/bbe681ed510227ce05f99db2a36c1af5c2cc302b 2025-07-24T03:47:32.2020427Z * [new tag] trunk/bbf1a6feac0e88772be103a1b159b871b5c00b4a -> trunk/bbf1a6feac0e88772be103a1b159b871b5c00b4a 2025-07-24T03:47:32.2021237Z * [new tag] trunk/bc379aebe2e69d306d1b05938a9e86c80f6b98cb -> trunk/bc379aebe2e69d306d1b05938a9e86c80f6b98cb 2025-07-24T03:47:32.2022032Z * [new tag] trunk/bc3972b80a7abe85036f48b610532fce39ea5097 -> trunk/bc3972b80a7abe85036f48b610532fce39ea5097 2025-07-24T03:47:32.2022902Z * [new tag] trunk/bc5a11b58180d40157175f45c69d60a9b9961315 -> trunk/bc5a11b58180d40157175f45c69d60a9b9961315 2025-07-24T03:47:32.2023840Z * [new tag] trunk/bc65253369933160a2da3fc786d027a572faf6b7 -> trunk/bc65253369933160a2da3fc786d027a572faf6b7 2025-07-24T03:47:32.2024708Z * [new tag] trunk/bc6e0661a6ec7e536bee60b9c929f71643bb6c89 -> trunk/bc6e0661a6ec7e536bee60b9c929f71643bb6c89 2025-07-24T03:47:32.2242824Z * [new tag] trunk/bc7b1f5252a667e72ce3c6c13e18af46dd0a7d99 -> trunk/bc7b1f5252a667e72ce3c6c13e18af46dd0a7d99 2025-07-24T03:47:32.2243645Z * [new tag] trunk/bc9091a524a1ebe4de16af4dd8f442db7d1cb138 -> trunk/bc9091a524a1ebe4de16af4dd8f442db7d1cb138 2025-07-24T03:47:32.2244476Z * [new tag] trunk/bc9bd2a766ae8cf2aba8f3d0153cd8ecd05b4465 -> trunk/bc9bd2a766ae8cf2aba8f3d0153cd8ecd05b4465 2025-07-24T03:47:32.2245292Z * [new tag] trunk/bcad962550f2bfd850684250a3c881c9f38ad601 -> trunk/bcad962550f2bfd850684250a3c881c9f38ad601 2025-07-24T03:47:32.2246078Z * [new tag] trunk/bcc98bb2a4dd11ac696082731f8980b72deb6750 -> trunk/bcc98bb2a4dd11ac696082731f8980b72deb6750 2025-07-24T03:47:32.2252540Z * [new tag] trunk/bccb8473fed94dbc6f1392d0c5b4a51150ee4a9a -> trunk/bccb8473fed94dbc6f1392d0c5b4a51150ee4a9a 2025-07-24T03:47:32.2253468Z * [new tag] trunk/bcf50636ba1b93a833267c645d887888df06e9ea -> trunk/bcf50636ba1b93a833267c645d887888df06e9ea 2025-07-24T03:47:32.2254292Z * [new tag] trunk/bd364c901d5b20500ec5cbe275e93c955809d900 -> trunk/bd364c901d5b20500ec5cbe275e93c955809d900 2025-07-24T03:47:32.2255094Z * [new tag] trunk/bd3c32916cf5f85ddb9dd3c36e7311adfa8808af -> trunk/bd3c32916cf5f85ddb9dd3c36e7311adfa8808af 2025-07-24T03:47:32.2255921Z * [new tag] trunk/bd6b5fddbf5fb0b603ab8a7428079d9a86cf532a -> trunk/bd6b5fddbf5fb0b603ab8a7428079d9a86cf532a 2025-07-24T03:47:32.2256745Z * [new tag] trunk/bdacf08b8682b9fbe3a8656a53b1f8b1cb007fd8 -> trunk/bdacf08b8682b9fbe3a8656a53b1f8b1cb007fd8 2025-07-24T03:47:32.2257549Z * [new tag] trunk/bdb1553b77bb28df580ea41d726417ac91028ec6 -> trunk/bdb1553b77bb28df580ea41d726417ac91028ec6 2025-07-24T03:47:32.2258349Z * [new tag] trunk/bdb78191662c01ab1263108febac29a8560337d0 -> trunk/bdb78191662c01ab1263108febac29a8560337d0 2025-07-24T03:47:32.2259141Z * [new tag] trunk/bdbf2792a8f15907f6bbf231f73dab0e8efe1c50 -> trunk/bdbf2792a8f15907f6bbf231f73dab0e8efe1c50 2025-07-24T03:47:32.2260078Z * [new tag] trunk/be124a61a4933603795644d068d2c0e5f444e766 -> trunk/be124a61a4933603795644d068d2c0e5f444e766 2025-07-24T03:47:32.2260951Z * [new tag] trunk/be2ab96347a1e7206a57f69b58263c4455ff8f76 -> trunk/be2ab96347a1e7206a57f69b58263c4455ff8f76 2025-07-24T03:47:32.2261746Z * [new tag] trunk/be2ad70cfa1360da5c23a04ff6ca3480fa02f278 -> trunk/be2ad70cfa1360da5c23a04ff6ca3480fa02f278 2025-07-24T03:47:32.2262566Z * [new tag] trunk/be2e43264d0bce254efabcc60c368d1418bde57f -> trunk/be2e43264d0bce254efabcc60c368d1418bde57f 2025-07-24T03:47:32.2263379Z * [new tag] trunk/be483a54817fbfbf184af363bf9469d01bfa15ef -> trunk/be483a54817fbfbf184af363bf9469d01bfa15ef 2025-07-24T03:47:32.2264187Z * [new tag] trunk/be56a8d7ac0dc72f6946354d7ac5be9ece0f1c35 -> trunk/be56a8d7ac0dc72f6946354d7ac5be9ece0f1c35 2025-07-24T03:47:32.2264998Z * [new tag] trunk/be72bcf828b536e0d81359a37c0f150b69fce5d4 -> trunk/be72bcf828b536e0d81359a37c0f150b69fce5d4 2025-07-24T03:47:32.2265787Z * [new tag] trunk/be896d6b41f560e59c87f9d28df109b1553139a4 -> trunk/be896d6b41f560e59c87f9d28df109b1553139a4 2025-07-24T03:47:32.2266598Z * [new tag] trunk/beb52f5c0ac8efddeafa862f274bc247db989695 -> trunk/beb52f5c0ac8efddeafa862f274bc247db989695 2025-07-24T03:47:32.2267417Z * [new tag] trunk/bee93f9f0d16f4f563812bb5c16e862de15724c1 -> trunk/bee93f9f0d16f4f563812bb5c16e862de15724c1 2025-07-24T03:47:32.2268217Z * [new tag] trunk/beed033b6e6ac57c0b4a1f47eb436e115a52e41b -> trunk/beed033b6e6ac57c0b4a1f47eb436e115a52e41b 2025-07-24T03:47:32.2269077Z * [new tag] trunk/bf06190e21fdf539c13e1ec01271653d0729733a -> trunk/bf06190e21fdf539c13e1ec01271653d0729733a 2025-07-24T03:47:32.2269957Z * [new tag] trunk/bf1ebe0531e1b0390ea09d66ac78500d3c6d3a15 -> trunk/bf1ebe0531e1b0390ea09d66ac78500d3c6d3a15 2025-07-24T03:47:32.2270759Z * [new tag] trunk/bf4aa7827905a2fca96bf266b242a7a16e489af4 -> trunk/bf4aa7827905a2fca96bf266b242a7a16e489af4 2025-07-24T03:47:32.2271569Z * [new tag] trunk/bf50d715539acedcb31a6d8f787149eff6213fdb -> trunk/bf50d715539acedcb31a6d8f787149eff6213fdb 2025-07-24T03:47:32.2272351Z * [new tag] trunk/bf798a2f016ca0001750436150e7a2bdb2676d1a -> trunk/bf798a2f016ca0001750436150e7a2bdb2676d1a 2025-07-24T03:47:32.2273143Z * [new tag] trunk/bf7e290854b7f0ab3fb89251d0100821f1b3a70e -> trunk/bf7e290854b7f0ab3fb89251d0100821f1b3a70e 2025-07-24T03:47:32.2273947Z * [new tag] trunk/bf897b4cea2b7481499a81afa30bfc69a8e685c4 -> trunk/bf897b4cea2b7481499a81afa30bfc69a8e685c4 2025-07-24T03:47:32.2467052Z * [new tag] trunk/bfcababbcb95ec42046737dbcf61f8e258075ace -> trunk/bfcababbcb95ec42046737dbcf61f8e258075ace 2025-07-24T03:47:32.2467955Z * [new tag] trunk/bfccfa0b31221d5df0b263de5a41fb9f7c84b97d -> trunk/bfccfa0b31221d5df0b263de5a41fb9f7c84b97d 2025-07-24T03:47:32.2468782Z * [new tag] trunk/bfe5674e2294a6c73ff671116a91f6ae7220b3f8 -> trunk/bfe5674e2294a6c73ff671116a91f6ae7220b3f8 2025-07-24T03:47:32.2469579Z * [new tag] trunk/bff69f25c2e98adc2e4a765d9fa47f230e2fef45 -> trunk/bff69f25c2e98adc2e4a765d9fa47f230e2fef45 2025-07-24T03:47:32.2470383Z * [new tag] trunk/c038719731abdcd415a5e82c5f3826f2358229fc -> trunk/c038719731abdcd415a5e82c5f3826f2358229fc 2025-07-24T03:47:32.2471178Z * [new tag] trunk/c04a4e709410936c12cdc9db5aaf47164f74a367 -> trunk/c04a4e709410936c12cdc9db5aaf47164f74a367 2025-07-24T03:47:32.2471963Z * [new tag] trunk/c062550a3598d27c2d6572db7c0f4ff90a84cc84 -> trunk/c062550a3598d27c2d6572db7c0f4ff90a84cc84 2025-07-24T03:47:32.2472796Z * [new tag] trunk/c06c2569ee53c169c96f42b45bdb64f390d2f23b -> trunk/c06c2569ee53c169c96f42b45bdb64f390d2f23b 2025-07-24T03:47:32.2474303Z * [new tag] trunk/c09b05487877a3f8b239523b3806f5dd9fc82051 -> trunk/c09b05487877a3f8b239523b3806f5dd9fc82051 2025-07-24T03:47:32.2475200Z * [new tag] trunk/c09cf29d7d010c0547f2f6771921a0ee2ec4904b -> trunk/c09cf29d7d010c0547f2f6771921a0ee2ec4904b 2025-07-24T03:47:32.2475999Z * [new tag] trunk/c09eba877f9c16908b3a925ef694604c1c761b85 -> trunk/c09eba877f9c16908b3a925ef694604c1c761b85 2025-07-24T03:47:32.2476792Z * [new tag] trunk/c0e155a8d230b04f186d1b7540b01213be2b9fc6 -> trunk/c0e155a8d230b04f186d1b7540b01213be2b9fc6 2025-07-24T03:47:32.2477597Z * [new tag] trunk/c0ee01c2fb54e2ae924270f7fd53069915a61a50 -> trunk/c0ee01c2fb54e2ae924270f7fd53069915a61a50 2025-07-24T03:47:32.2478383Z * [new tag] trunk/c10339559de1464c2c5aeb16649c382eefcfb572 -> trunk/c10339559de1464c2c5aeb16649c382eefcfb572 2025-07-24T03:47:32.2479218Z * [new tag] trunk/c11888e7a6557ff64e24ca06e22946c116a7c1e4 -> trunk/c11888e7a6557ff64e24ca06e22946c116a7c1e4 2025-07-24T03:47:32.2480063Z * [new tag] trunk/c13e725edd8dd21406c629bf625f2d6c59ceedd1 -> trunk/c13e725edd8dd21406c629bf625f2d6c59ceedd1 2025-07-24T03:47:32.2480851Z * [new tag] trunk/c14110056f1b6e989850f20ae56d47fbc775e890 -> trunk/c14110056f1b6e989850f20ae56d47fbc775e890 2025-07-24T03:47:32.2481652Z * [new tag] trunk/c1446e1e9d2f5a1bae5fb3d58e58f16c15bb15c3 -> trunk/c1446e1e9d2f5a1bae5fb3d58e58f16c15bb15c3 2025-07-24T03:47:32.2482445Z * [new tag] trunk/c165b36a31585d4e061a84e1977428afd931b82d -> trunk/c165b36a31585d4e061a84e1977428afd931b82d 2025-07-24T03:47:32.2483233Z * [new tag] trunk/c174f3a6a55864cedb8f6d9014e9b8cadf91186b -> trunk/c174f3a6a55864cedb8f6d9014e9b8cadf91186b 2025-07-24T03:47:32.2484058Z * [new tag] trunk/c177abd217ecef5cc096d50adbf5990525714dd3 -> trunk/c177abd217ecef5cc096d50adbf5990525714dd3 2025-07-24T03:47:32.2484864Z * [new tag] trunk/c199a4d0fd03ab3f7e36c6133839cfaf34ba59da -> trunk/c199a4d0fd03ab3f7e36c6133839cfaf34ba59da 2025-07-24T03:47:32.2485761Z * [new tag] trunk/c1a629f76d0afc2ddb4a5c7c1925caa1d12b5a5e -> trunk/c1a629f76d0afc2ddb4a5c7c1925caa1d12b5a5e 2025-07-24T03:47:32.2486578Z * [new tag] trunk/c1ad4b8e7a16f54c35a3908b56ed7d9f95eef586 -> trunk/c1ad4b8e7a16f54c35a3908b56ed7d9f95eef586 2025-07-24T03:47:32.2487381Z * [new tag] trunk/c1ae768baa9598ea97f301999a227b34a2efdecf -> trunk/c1ae768baa9598ea97f301999a227b34a2efdecf 2025-07-24T03:47:32.2488279Z * [new tag] trunk/c1cbaca7fd9937c0a089d98aa69066daf35c898f -> trunk/c1cbaca7fd9937c0a089d98aa69066daf35c898f 2025-07-24T03:47:32.2489096Z * [new tag] trunk/c1f531f0b0e6faf443d90f8de2936e866c8c27c2 -> trunk/c1f531f0b0e6faf443d90f8de2936e866c8c27c2 2025-07-24T03:47:32.2489881Z * [new tag] trunk/c202a7329ad798da676762a8af2aa588f882d288 -> trunk/c202a7329ad798da676762a8af2aa588f882d288 2025-07-24T03:47:32.2490680Z * [new tag] trunk/c2185dc4a5626848df37cad214b73d5ae7dd4f17 -> trunk/c2185dc4a5626848df37cad214b73d5ae7dd4f17 2025-07-24T03:47:32.2491514Z * [new tag] trunk/c219dbd2fc70227ba543c98e9740a84723ba36da -> trunk/c219dbd2fc70227ba543c98e9740a84723ba36da 2025-07-24T03:47:32.2492350Z * [new tag] trunk/c2510fcd86152028c3e6cf483740b177a10ac9b9 -> trunk/c2510fcd86152028c3e6cf483740b177a10ac9b9 2025-07-24T03:47:32.2493141Z * [new tag] trunk/c26ce593d8737cab4b55483b62956a6fea9e4375 -> trunk/c26ce593d8737cab4b55483b62956a6fea9e4375 2025-07-24T03:47:32.2493925Z * [new tag] trunk/c27f83dd91ff3599b5157866e6be014c20b967a0 -> trunk/c27f83dd91ff3599b5157866e6be014c20b967a0 2025-07-24T03:47:32.2703540Z * [new tag] trunk/c28e74e45743feac10559c30dbf71cc35bc12ccb -> trunk/c28e74e45743feac10559c30dbf71cc35bc12ccb 2025-07-24T03:47:32.2704467Z * [new tag] trunk/c2beeadeb40e927c51bc5bcd409b3f28374a5190 -> trunk/c2beeadeb40e927c51bc5bcd409b3f28374a5190 2025-07-24T03:47:32.2705576Z * [new tag] trunk/c2c88846a9c75185660f3b2a8b72c3aa2f8ae3dc -> trunk/c2c88846a9c75185660f3b2a8b72c3aa2f8ae3dc 2025-07-24T03:47:32.2706465Z * [new tag] trunk/c2d1b225e62bdf3adbba91891f53bc60315adaac -> trunk/c2d1b225e62bdf3adbba91891f53bc60315adaac 2025-07-24T03:47:32.2707360Z * [new tag] trunk/c2f4cc59a70bfd7d7e46e9b5596bae8e4ae2cf9c -> trunk/c2f4cc59a70bfd7d7e46e9b5596bae8e4ae2cf9c 2025-07-24T03:47:32.2708261Z * [new tag] trunk/c329a8f19cc94cb7f9d3fc814484cded138ee3ca -> trunk/c329a8f19cc94cb7f9d3fc814484cded138ee3ca 2025-07-24T03:47:32.2709126Z * [new tag] trunk/c37ddcaefbe9b877e1816ce97dedb8ad26d09450 -> trunk/c37ddcaefbe9b877e1816ce97dedb8ad26d09450 2025-07-24T03:47:32.2710009Z * [new tag] trunk/c3ecabf0593066750156989fc75acbeeaddf0791 -> trunk/c3ecabf0593066750156989fc75acbeeaddf0791 2025-07-24T03:47:32.2710900Z * [new tag] trunk/c48d0f4643b7a69ebe24069e932ce1465a31cdbe -> trunk/c48d0f4643b7a69ebe24069e932ce1465a31cdbe 2025-07-24T03:47:32.2711691Z * [new tag] trunk/c4b93e6579c8e2f1252067c4923cbb859c476fb4 -> trunk/c4b93e6579c8e2f1252067c4923cbb859c476fb4 2025-07-24T03:47:32.2712474Z * [new tag] trunk/c4cdcda754e2b73b030902dd06fb651c7a026510 -> trunk/c4cdcda754e2b73b030902dd06fb651c7a026510 2025-07-24T03:47:32.2713272Z * [new tag] trunk/c515385b0ac4a94deef652159e71fe0912615d14 -> trunk/c515385b0ac4a94deef652159e71fe0912615d14 2025-07-24T03:47:32.2714055Z * [new tag] trunk/c54778625ec45b94eb97f52da3ad6c2eb3d3c3c9 -> trunk/c54778625ec45b94eb97f52da3ad6c2eb3d3c3c9 2025-07-24T03:47:32.2714855Z * [new tag] trunk/c553c55be76daaf70d977a4ac7664b46cbcfa7c4 -> trunk/c553c55be76daaf70d977a4ac7664b46cbcfa7c4 2025-07-24T03:47:32.2715660Z * [new tag] trunk/c5589074e64b28afd737174ae1e9c2ba0b925e56 -> trunk/c5589074e64b28afd737174ae1e9c2ba0b925e56 2025-07-24T03:47:32.2716494Z * [new tag] trunk/c55eef79f8880e4b610a0ca6f6131e690dc948dd -> trunk/c55eef79f8880e4b610a0ca6f6131e690dc948dd 2025-07-24T03:47:32.2717378Z * [new tag] trunk/c5a4fe9c17bc20eb46b15fda554d17030bb6a5b9 -> trunk/c5a4fe9c17bc20eb46b15fda554d17030bb6a5b9 2025-07-24T03:47:32.2718252Z * [new tag] trunk/c5b46b5408e136a5a3060b11a96afa51bd009fd5 -> trunk/c5b46b5408e136a5a3060b11a96afa51bd009fd5 2025-07-24T03:47:32.2719084Z * [new tag] trunk/c5d00e150ad503510bf28adf09f69201aeb94f5c -> trunk/c5d00e150ad503510bf28adf09f69201aeb94f5c 2025-07-24T03:47:32.2719963Z * [new tag] trunk/c5d3e7a4ff460eed70b8443485a7e3568e87aee9 -> trunk/c5d3e7a4ff460eed70b8443485a7e3568e87aee9 2025-07-24T03:47:32.2720832Z * [new tag] trunk/c60327ba74f4db232a2832f2c7ca4b2db43a3132 -> trunk/c60327ba74f4db232a2832f2c7ca4b2db43a3132 2025-07-24T03:47:32.2721668Z * [new tag] trunk/c60d8188d23801d44343c96746ec2e7d2971c5d7 -> trunk/c60d8188d23801d44343c96746ec2e7d2971c5d7 2025-07-24T03:47:32.2722524Z * [new tag] trunk/c620d0b5c7e8679413d620624725471223ce8359 -> trunk/c620d0b5c7e8679413d620624725471223ce8359 2025-07-24T03:47:32.2723381Z * [new tag] trunk/c665594c1edca9a507b0ec8b18ab74a0ecb65bc3 -> trunk/c665594c1edca9a507b0ec8b18ab74a0ecb65bc3 2025-07-24T03:47:32.2724290Z * [new tag] trunk/c68af9af1b3652a8e25bd6d0ff8dae89f206a81a -> trunk/c68af9af1b3652a8e25bd6d0ff8dae89f206a81a 2025-07-24T03:47:32.2725161Z * [new tag] trunk/c6a27bae3656021720074520ac6dad9cebe83ff5 -> trunk/c6a27bae3656021720074520ac6dad9cebe83ff5 2025-07-24T03:47:32.2726011Z * [new tag] trunk/c6b4f98625bb6b22bb9a60112a6d58e684a97e1b -> trunk/c6b4f98625bb6b22bb9a60112a6d58e684a97e1b 2025-07-24T03:47:32.2726887Z * [new tag] trunk/c74fd35050a7241f0c439501ef735aa6cdde751f -> trunk/c74fd35050a7241f0c439501ef735aa6cdde751f 2025-07-24T03:47:32.2727921Z * [new tag] trunk/c75c732481915c25295a0ae6321d39aa314eaa93 -> trunk/c75c732481915c25295a0ae6321d39aa314eaa93 2025-07-24T03:47:32.2728849Z * [new tag] trunk/c774180e59409996fb123d6ff9261c2fc356c2f7 -> trunk/c774180e59409996fb123d6ff9261c2fc356c2f7 2025-07-24T03:47:32.2729699Z * [new tag] trunk/c78bbdf4102d2c13bf6aa1abe4352aa7bca401ca -> trunk/c78bbdf4102d2c13bf6aa1abe4352aa7bca401ca 2025-07-24T03:47:32.2730591Z * [new tag] trunk/c78fce9e79b79686b87f4007cbaec819bdd0223f -> trunk/c78fce9e79b79686b87f4007cbaec819bdd0223f 2025-07-24T03:47:32.2940183Z * [new tag] trunk/c79c7bbe615265b6b3d7df39d6d5a68afd7d6b2a -> trunk/c79c7bbe615265b6b3d7df39d6d5a68afd7d6b2a 2025-07-24T03:47:32.2941055Z * [new tag] trunk/c7b6c98d1097bec9dc92bde2fe324aa126a5daa2 -> trunk/c7b6c98d1097bec9dc92bde2fe324aa126a5daa2 2025-07-24T03:47:32.2941888Z * [new tag] trunk/c808af514d59e25ea4a880c1e1e07d3232984e5d -> trunk/c808af514d59e25ea4a880c1e1e07d3232984e5d 2025-07-24T03:47:32.2942722Z * [new tag] trunk/c811f41cf58238b49e9c2f0a9fa00dcc471b2e10 -> trunk/c811f41cf58238b49e9c2f0a9fa00dcc471b2e10 2025-07-24T03:47:32.2943531Z * [new tag] trunk/c82a174ceab79f77ba18405dd263eb03692608fd -> trunk/c82a174ceab79f77ba18405dd263eb03692608fd 2025-07-24T03:47:32.2944331Z * [new tag] trunk/c83041cac2e9ca537b210b74876dbcee5e08ae9a -> trunk/c83041cac2e9ca537b210b74876dbcee5e08ae9a 2025-07-24T03:47:32.2945133Z * [new tag] trunk/c843909d9e32f92b2e31cf9b8f066daf311a6f18 -> trunk/c843909d9e32f92b2e31cf9b8f066daf311a6f18 2025-07-24T03:47:32.2945918Z * [new tag] trunk/c88e87f3553b7ef0b743fb030317fabb6fe2dc29 -> trunk/c88e87f3553b7ef0b743fb030317fabb6fe2dc29 2025-07-24T03:47:32.2946718Z * [new tag] trunk/c8c221c0b3abbb8b5e20138080644dd5f5cd0aa1 -> trunk/c8c221c0b3abbb8b5e20138080644dd5f5cd0aa1 2025-07-24T03:47:32.2947534Z * [new tag] trunk/c8c892b4a50fdad624753db5b8d2bbb0fc5bb110 -> trunk/c8c892b4a50fdad624753db5b8d2bbb0fc5bb110 2025-07-24T03:47:32.2948330Z * [new tag] trunk/c8d39a10457ea5d65184c6e8f037f46c5525d869 -> trunk/c8d39a10457ea5d65184c6e8f037f46c5525d869 2025-07-24T03:47:32.2949124Z * [new tag] trunk/c9174a20f75ba007b0f520326ced5c65d8a2b269 -> trunk/c9174a20f75ba007b0f520326ced5c65d8a2b269 2025-07-24T03:47:32.2949921Z * [new tag] trunk/c917c63282c467ef942c99da3ce4fa57bceba603 -> trunk/c917c63282c467ef942c99da3ce4fa57bceba603 2025-07-24T03:47:32.2950715Z * [new tag] trunk/c92f1075aaf3649f6368af2a3df9b5167f941b3f -> trunk/c92f1075aaf3649f6368af2a3df9b5167f941b3f 2025-07-24T03:47:32.2951514Z * [new tag] trunk/c9404faacb7c18af17086be26587b46e141afbcc -> trunk/c9404faacb7c18af17086be26587b46e141afbcc 2025-07-24T03:47:32.2952303Z * [new tag] trunk/c95705dac2da8134c946cdd573944632ef22f230 -> trunk/c95705dac2da8134c946cdd573944632ef22f230 2025-07-24T03:47:32.2953088Z * [new tag] trunk/c95f7fa874a3116f1067f9092456ee7281003614 -> trunk/c95f7fa874a3116f1067f9092456ee7281003614 2025-07-24T03:47:32.2953877Z * [new tag] trunk/c996aff6ed353050f14fb3d5b98731926be90db8 -> trunk/c996aff6ed353050f14fb3d5b98731926be90db8 2025-07-24T03:47:32.2954669Z * [new tag] trunk/c9a5bf09baa1a6776555e901331b1baefe6691bc -> trunk/c9a5bf09baa1a6776555e901331b1baefe6691bc 2025-07-24T03:47:32.2955479Z * [new tag] trunk/c9afcffed0870c211d2e8be422812d6a70aef3e2 -> trunk/c9afcffed0870c211d2e8be422812d6a70aef3e2 2025-07-24T03:47:32.2956288Z * [new tag] trunk/c9e9a0c82316ed59f6ef989a6000f0d5231b9b16 -> trunk/c9e9a0c82316ed59f6ef989a6000f0d5231b9b16 2025-07-24T03:47:32.2957083Z * [new tag] trunk/ca3cabd24ace1899ca4669431f5b0556c5ab9ebf -> trunk/ca3cabd24ace1899ca4669431f5b0556c5ab9ebf 2025-07-24T03:47:32.2958026Z * [new tag] trunk/ca5a40395d8b212dce0a57df01ca056eae55446f -> trunk/ca5a40395d8b212dce0a57df01ca056eae55446f 2025-07-24T03:47:32.2958903Z * [new tag] trunk/cab28330f8c49cdb66d6a299755dc09c87c14a9d -> trunk/cab28330f8c49cdb66d6a299755dc09c87c14a9d 2025-07-24T03:47:32.2959712Z * [new tag] trunk/cab96b587944d324dde2528d4b1ec5819bc52ce9 -> trunk/cab96b587944d324dde2528d4b1ec5819bc52ce9 2025-07-24T03:47:32.2960520Z * [new tag] trunk/cadcb5d36802579441da3dbe3c2eecc74a0eae78 -> trunk/cadcb5d36802579441da3dbe3c2eecc74a0eae78 2025-07-24T03:47:32.2961318Z * [new tag] trunk/cb711c8fa04673d3490306e2b14539ab7dca3c23 -> trunk/cb711c8fa04673d3490306e2b14539ab7dca3c23 2025-07-24T03:47:32.2962108Z * [new tag] trunk/cb853945a77af54d9989ae7ac36d0007c0215b10 -> trunk/cb853945a77af54d9989ae7ac36d0007c0215b10 2025-07-24T03:47:32.2962907Z * [new tag] trunk/cb9b479f4f799eea058de9be3a0e09f977fc82da -> trunk/cb9b479f4f799eea058de9be3a0e09f977fc82da 2025-07-24T03:47:32.2963712Z * [new tag] trunk/cbafba57941c1d5f78640845320ac89157570b44 -> trunk/cbafba57941c1d5f78640845320ac89157570b44 2025-07-24T03:47:32.2964512Z * [new tag] trunk/cbcffce48a3422a5e9a2103888248c82d52d199c -> trunk/cbcffce48a3422a5e9a2103888248c82d52d199c 2025-07-24T03:47:32.2965323Z * [new tag] trunk/cbe1cb70183dd0d08dd555353eeca72399401ae8 -> trunk/cbe1cb70183dd0d08dd555353eeca72399401ae8 2025-07-24T03:47:32.2966128Z * [new tag] trunk/cc09d3a5ba2a5ae032078570e6123d523952ed22 -> trunk/cc09d3a5ba2a5ae032078570e6123d523952ed22 2025-07-24T03:47:32.3160433Z * [new tag] trunk/cc0faeb80fff17b3d170aa70041865aafb1790a9 -> trunk/cc0faeb80fff17b3d170aa70041865aafb1790a9 2025-07-24T03:47:32.3161292Z * [new tag] trunk/cc372ad557446863f8422f1ca5f415bc78531fa6 -> trunk/cc372ad557446863f8422f1ca5f415bc78531fa6 2025-07-24T03:47:32.3162184Z * [new tag] trunk/cc3ea2d84004b6348c77a285ba2639932b87c101 -> trunk/cc3ea2d84004b6348c77a285ba2639932b87c101 2025-07-24T03:47:32.3162986Z * [new tag] trunk/cc410d3761001499611bca6cf835239b86093791 -> trunk/cc410d3761001499611bca6cf835239b86093791 2025-07-24T03:47:32.3163771Z * [new tag] trunk/ccb1f687d63f0215ebcf3c1340c6682edeaccd28 -> trunk/ccb1f687d63f0215ebcf3c1340c6682edeaccd28 2025-07-24T03:47:32.3164564Z * [new tag] trunk/ccb67f39b4d75943cdc531d9032b3ba9235cfd56 -> trunk/ccb67f39b4d75943cdc531d9032b3ba9235cfd56 2025-07-24T03:47:32.3165362Z * [new tag] trunk/ccc6279b4086d55cd1f7e2d699473478610d8a7b -> trunk/ccc6279b4086d55cd1f7e2d699473478610d8a7b 2025-07-24T03:47:32.3166152Z * [new tag] trunk/cce4d213a67b7536dce431fd29c92f9791c9f81d -> trunk/cce4d213a67b7536dce431fd29c92f9791c9f81d 2025-07-24T03:47:32.3166960Z * [new tag] trunk/cd1a924dba145334aacb7c1b7276d6cef7ca41cc -> trunk/cd1a924dba145334aacb7c1b7276d6cef7ca41cc 2025-07-24T03:47:32.3167824Z * [new tag] trunk/cd361fc247a9abdbe9851867e31ac3cefcff299e -> trunk/cd361fc247a9abdbe9851867e31ac3cefcff299e 2025-07-24T03:47:32.3168753Z * [new tag] trunk/cd66ff80307862ef8e75520054ecd19a5eff9f7e -> trunk/cd66ff80307862ef8e75520054ecd19a5eff9f7e 2025-07-24T03:47:32.3169570Z * [new tag] trunk/cd75cf3cabedeac2ae4bbb266c05ca9b64181abe -> trunk/cd75cf3cabedeac2ae4bbb266c05ca9b64181abe 2025-07-24T03:47:32.3170400Z * [new tag] trunk/cd80f9a4c35a63ef415dbf6a361e4520a9cabf7b -> trunk/cd80f9a4c35a63ef415dbf6a361e4520a9cabf7b 2025-07-24T03:47:32.3171187Z * [new tag] trunk/cd82096973985042ed2eaa84e69fbf0f067f9301 -> trunk/cd82096973985042ed2eaa84e69fbf0f067f9301 2025-07-24T03:47:32.3171977Z * [new tag] trunk/cd995bfb2aac8891465809be3ce29543bd524287 -> trunk/cd995bfb2aac8891465809be3ce29543bd524287 2025-07-24T03:47:32.3172910Z * [new tag] trunk/cdb144fcf0aa4300c6de7158cb18ff7503d48492 -> trunk/cdb144fcf0aa4300c6de7158cb18ff7503d48492 2025-07-24T03:47:32.3173796Z * [new tag] trunk/cdfa33a328f2d3fdaeb645fde186194ddc2e66c0 -> trunk/cdfa33a328f2d3fdaeb645fde186194ddc2e66c0 2025-07-24T03:47:32.3174701Z * [new tag] trunk/ce1a07570d95cdd1543b9b2d45b3899c59e6802f -> trunk/ce1a07570d95cdd1543b9b2d45b3899c59e6802f 2025-07-24T03:47:32.3175489Z * [new tag] trunk/ce3406817d50b3357fa644784cc84ff167ce40ce -> trunk/ce3406817d50b3357fa644784cc84ff167ce40ce 2025-07-24T03:47:32.3176262Z * [new tag] trunk/ce44877961af7c8ec618f525853ce7edf3efa4eb -> trunk/ce44877961af7c8ec618f525853ce7edf3efa4eb 2025-07-24T03:47:32.3177045Z * [new tag] trunk/ce6e0523f9911c605860c4f5f278c2dad893dde9 -> trunk/ce6e0523f9911c605860c4f5f278c2dad893dde9 2025-07-24T03:47:32.3177824Z * [new tag] trunk/ce73b0c53f1f215345dcfe3953871a4aaf170a0c -> trunk/ce73b0c53f1f215345dcfe3953871a4aaf170a0c 2025-07-24T03:47:32.3178606Z * [new tag] trunk/ce79056471737557dcc64378985cd2b036e7322c -> trunk/ce79056471737557dcc64378985cd2b036e7322c 2025-07-24T03:47:32.3179388Z * [new tag] trunk/ce8180a61de405c519e00ac48eab8ff765ea71e6 -> trunk/ce8180a61de405c519e00ac48eab8ff765ea71e6 2025-07-24T03:47:32.3180241Z * [new tag] trunk/ce97a5dcfa3cb10c7805ff5cb44abd6a16b4ae8b -> trunk/ce97a5dcfa3cb10c7805ff5cb44abd6a16b4ae8b 2025-07-24T03:47:32.3181097Z * [new tag] trunk/ce9ba071fd29013e72100dd97728d01c860720d9 -> trunk/ce9ba071fd29013e72100dd97728d01c860720d9 2025-07-24T03:47:32.3181883Z * [new tag] trunk/cec264c8c6d74d4fbf5ee31983737b8b5e316dd0 -> trunk/cec264c8c6d74d4fbf5ee31983737b8b5e316dd0 2025-07-24T03:47:32.3182700Z * [new tag] trunk/cec59b76ca606c3e5d34ac0d0f9e0e22b8cfe5bb -> trunk/cec59b76ca606c3e5d34ac0d0f9e0e22b8cfe5bb 2025-07-24T03:47:32.3183506Z * [new tag] trunk/ced5cf042de1d4b573f258c9f770581d9574b990 -> trunk/ced5cf042de1d4b573f258c9f770581d9574b990 2025-07-24T03:47:32.3184306Z * [new tag] trunk/cf0749c92fdfcb8a583ea15f351add88c4d33618 -> trunk/cf0749c92fdfcb8a583ea15f351add88c4d33618 2025-07-24T03:47:32.3185114Z * [new tag] trunk/cf3247b74aaeb956b3c2b31d05e965a0aca5a8b4 -> trunk/cf3247b74aaeb956b3c2b31d05e965a0aca5a8b4 2025-07-24T03:47:32.3185917Z * [new tag] trunk/cf90c9f8d1632777ec5f4b6ccaa14bc5bf259e9c -> trunk/cf90c9f8d1632777ec5f4b6ccaa14bc5bf259e9c 2025-07-24T03:47:32.3390508Z * [new tag] trunk/cf9878d7a20b11d761934ae7732b01644ae137d6 -> trunk/cf9878d7a20b11d761934ae7732b01644ae137d6 2025-07-24T03:47:32.3391364Z * [new tag] trunk/d061a02e6ecf3b62f409578c7d05a564264d1288 -> trunk/d061a02e6ecf3b62f409578c7d05a564264d1288 2025-07-24T03:47:32.3392167Z * [new tag] trunk/d06a406656bf0b4bc9af2d056558dc1630a6e5b9 -> trunk/d06a406656bf0b4bc9af2d056558dc1630a6e5b9 2025-07-24T03:47:32.3392968Z * [new tag] trunk/d083841c0e0d879e460aebb45daac086a240a7dd -> trunk/d083841c0e0d879e460aebb45daac086a240a7dd 2025-07-24T03:47:32.3393786Z * [new tag] trunk/d0a9629435aaceb5acbf31aad70f2109cb8a3ea2 -> trunk/d0a9629435aaceb5acbf31aad70f2109cb8a3ea2 2025-07-24T03:47:32.3394595Z * [new tag] trunk/d0c00d9a69df296cdcc659e6e25b1bdc0ac5317c -> trunk/d0c00d9a69df296cdcc659e6e25b1bdc0ac5317c 2025-07-24T03:47:32.3395401Z * [new tag] trunk/d0cfa3e5bf662b72068e26e06a1a5c2e640ce8d9 -> trunk/d0cfa3e5bf662b72068e26e06a1a5c2e640ce8d9 2025-07-24T03:47:32.3396214Z * [new tag] trunk/d158e9ea82ce3440e2e9a1bbbecae53a79869404 -> trunk/d158e9ea82ce3440e2e9a1bbbecae53a79869404 2025-07-24T03:47:32.3396999Z * [new tag] trunk/d1947a87074c5db2568038878b1948ea3a33cc23 -> trunk/d1947a87074c5db2568038878b1948ea3a33cc23 2025-07-24T03:47:32.3397809Z * [new tag] trunk/d1b4e0fa9a5feb22fc6de1d36dc4c9dac685caed -> trunk/d1b4e0fa9a5feb22fc6de1d36dc4c9dac685caed 2025-07-24T03:47:32.3398819Z * [new tag] trunk/d1c924c68aaf650439c2193f74cfefc9f16076f1 -> trunk/d1c924c68aaf650439c2193f74cfefc9f16076f1 2025-07-24T03:47:32.3399632Z * [new tag] trunk/d26ca5de058dbcf56ac52bb43e84dd98df2ace97 -> trunk/d26ca5de058dbcf56ac52bb43e84dd98df2ace97 2025-07-24T03:47:32.3400461Z * [new tag] trunk/d27d36136ce35d5d6dc3faa818ba840ba61d4357 -> trunk/d27d36136ce35d5d6dc3faa818ba840ba61d4357 2025-07-24T03:47:32.3401252Z * [new tag] trunk/d283fc79b15844ac470b3429b4dac5661621ae5c -> trunk/d283fc79b15844ac470b3429b4dac5661621ae5c 2025-07-24T03:47:32.3402036Z * [new tag] trunk/d293022c477ea3b94a215315793408bcc61440cf -> trunk/d293022c477ea3b94a215315793408bcc61440cf 2025-07-24T03:47:32.3402824Z * [new tag] trunk/d2a2bfcb5867d4920e0a45113861cde6f74857b9 -> trunk/d2a2bfcb5867d4920e0a45113861cde6f74857b9 2025-07-24T03:47:32.3403611Z * [new tag] trunk/d2f06d2b062c9d868a898044bc324547f34c4760 -> trunk/d2f06d2b062c9d868a898044bc324547f34c4760 2025-07-24T03:47:32.3404409Z * [new tag] trunk/d309cd1d502eab8e9cb536876bf5eed88634eb41 -> trunk/d309cd1d502eab8e9cb536876bf5eed88634eb41 2025-07-24T03:47:32.3405210Z * [new tag] trunk/d32deb664a1dfc0e36f0a8d670695046632ebf2a -> trunk/d32deb664a1dfc0e36f0a8d670695046632ebf2a 2025-07-24T03:47:32.3406013Z * [new tag] trunk/d34cee4cf3bdf67621a05315f11014c6e05f1c05 -> trunk/d34cee4cf3bdf67621a05315f11014c6e05f1c05 2025-07-24T03:47:32.3406801Z * [new tag] trunk/d352c28dd176572120dc99f556b29c77b98e7a2b -> trunk/d352c28dd176572120dc99f556b29c77b98e7a2b 2025-07-24T03:47:32.3407593Z * [new tag] trunk/d36afac83b01c3de214db91f3d4b3f447f9a77b7 -> trunk/d36afac83b01c3de214db91f3d4b3f447f9a77b7 2025-07-24T03:47:32.3408512Z * [new tag] trunk/d3d64c6db090ee9be051202e6ac6fd4acd5d3e97 -> trunk/d3d64c6db090ee9be051202e6ac6fd4acd5d3e97 2025-07-24T03:47:32.3409344Z * [new tag] trunk/d3d655ad14ee4cd1c135ac57bbf75d5623fc9fa6 -> trunk/d3d655ad14ee4cd1c135ac57bbf75d5623fc9fa6 2025-07-24T03:47:32.3410141Z * [new tag] trunk/d3d9bc1c312cb8415d504a7af5682e75a97d3541 -> trunk/d3d9bc1c312cb8415d504a7af5682e75a97d3541 2025-07-24T03:47:32.3410960Z * [new tag] trunk/d3da03d6fa02aecd01ff41246def793b8fc630bf -> trunk/d3da03d6fa02aecd01ff41246def793b8fc630bf 2025-07-24T03:47:32.3411783Z * [new tag] trunk/d3efd732348f8a455ca23e7fcae043651e41f65e -> trunk/d3efd732348f8a455ca23e7fcae043651e41f65e 2025-07-24T03:47:32.3412568Z * [new tag] trunk/d3f9107d682d2fb554d09f1f14e81850de793e7a -> trunk/d3f9107d682d2fb554d09f1f14e81850de793e7a 2025-07-24T03:47:32.3413353Z * [new tag] trunk/d40aaa42ee8d7283d8de02c68c5625d67acf668a -> trunk/d40aaa42ee8d7283d8de02c68c5625d67acf668a 2025-07-24T03:47:32.3414160Z * [new tag] trunk/d41f62b7a06c51e4a57df4d58e7a2d86d2faa875 -> trunk/d41f62b7a06c51e4a57df4d58e7a2d86d2faa875 2025-07-24T03:47:32.3414940Z * [new tag] trunk/d42c11819f003a848c782d6090f44bbca11c7d60 -> trunk/d42c11819f003a848c782d6090f44bbca11c7d60 2025-07-24T03:47:32.3415718Z * [new tag] trunk/d42c40976727fed4c9908d4194f26917d0a3da66 -> trunk/d42c40976727fed4c9908d4194f26917d0a3da66 2025-07-24T03:47:32.3416508Z * [new tag] trunk/d43c0bdf46d82806cff195a6d2bfa103ab46dc14 -> trunk/d43c0bdf46d82806cff195a6d2bfa103ab46dc14 2025-07-24T03:47:32.3615189Z * [new tag] trunk/d4ad28042993dd09c80775d7fc5756fb4d13fdd4 -> trunk/d4ad28042993dd09c80775d7fc5756fb4d13fdd4 2025-07-24T03:47:32.3616040Z * [new tag] trunk/d4d0ede6bacb4b3b33c0e4aa4cb0e79d34e697ec -> trunk/d4d0ede6bacb4b3b33c0e4aa4cb0e79d34e697ec 2025-07-24T03:47:32.3616853Z * [new tag] trunk/d512584718838876ae14b32bb53cd836a1ceccae -> trunk/d512584718838876ae14b32bb53cd836a1ceccae 2025-07-24T03:47:32.3617835Z * [new tag] trunk/d55dc00f8479699f454e91c779b53e2a16cffc21 -> trunk/d55dc00f8479699f454e91c779b53e2a16cffc21 2025-07-24T03:47:32.3618621Z * [new tag] trunk/d56f11a1f275f2dc037cd5099b70240745990693 -> trunk/d56f11a1f275f2dc037cd5099b70240745990693 2025-07-24T03:47:32.3619399Z * [new tag] trunk/d5781c8d21b3dca35715a093ba52c5698551ad9b -> trunk/d5781c8d21b3dca35715a093ba52c5698551ad9b 2025-07-24T03:47:32.3620205Z * [new tag] trunk/d58ed04d89c34c6930d0f28be351c53db407078f -> trunk/d58ed04d89c34c6930d0f28be351c53db407078f 2025-07-24T03:47:32.3621007Z * [new tag] trunk/d59ed21d0fdcbb34b5c4b121a3b49ae64d8da367 -> trunk/d59ed21d0fdcbb34b5c4b121a3b49ae64d8da367 2025-07-24T03:47:32.3621792Z * [new tag] trunk/d5a29fc58a0f974871841075072164f852c61b65 -> trunk/d5a29fc58a0f974871841075072164f852c61b65 2025-07-24T03:47:32.3622580Z * [new tag] trunk/d5a89178b05db3124f16c733e9b00f8c5c4ab038 -> trunk/d5a89178b05db3124f16c733e9b00f8c5c4ab038 2025-07-24T03:47:32.3623389Z * [new tag] trunk/d5af0eca8def9a4ae1af69638de3983f3bec778c -> trunk/d5af0eca8def9a4ae1af69638de3983f3bec778c 2025-07-24T03:47:32.3624182Z * [new tag] trunk/d5b4a329607514b30944c7682efcf79cf8950ed3 -> trunk/d5b4a329607514b30944c7682efcf79cf8950ed3 2025-07-24T03:47:32.3624959Z * [new tag] trunk/d5d14ee823e70224a154884a5c2912643d648094 -> trunk/d5d14ee823e70224a154884a5c2912643d648094 2025-07-24T03:47:32.3625730Z * [new tag] trunk/d5e6f4209424b96237ea5468dd47899e1124dfcb -> trunk/d5e6f4209424b96237ea5468dd47899e1124dfcb 2025-07-24T03:47:32.3626506Z * [new tag] trunk/d6237721c074484ea5e72fc05614587886e57fd6 -> trunk/d6237721c074484ea5e72fc05614587886e57fd6 2025-07-24T03:47:32.3627292Z * [new tag] trunk/d632cf2cc9aac8ab0e03d1537982265e42be95e5 -> trunk/d632cf2cc9aac8ab0e03d1537982265e42be95e5 2025-07-24T03:47:32.3628102Z * [new tag] trunk/d66b4bcc3f89ac6b9d2ccfd4cb01b0aa85d4e3fd -> trunk/d66b4bcc3f89ac6b9d2ccfd4cb01b0aa85d4e3fd 2025-07-24T03:47:32.3628917Z * [new tag] trunk/d6ee5144cab20141c8e0cf48856a90a6517753f1 -> trunk/d6ee5144cab20141c8e0cf48856a90a6517753f1 2025-07-24T03:47:32.3629716Z * [new tag] trunk/d75d30eeb610b164e69d0678a2e2b2dea81eec0f -> trunk/d75d30eeb610b164e69d0678a2e2b2dea81eec0f 2025-07-24T03:47:32.3630501Z * [new tag] trunk/d76323d41742cbc05ec6857319b267d2c7ea8fd9 -> trunk/d76323d41742cbc05ec6857319b267d2c7ea8fd9 2025-07-24T03:47:32.3631275Z * [new tag] trunk/d79651571fb082a7a20631059563ecdf9d11b7e6 -> trunk/d79651571fb082a7a20631059563ecdf9d11b7e6 2025-07-24T03:47:32.3632039Z * [new tag] trunk/d797038ea9f3951c7602e8710f4866f73d7e7acd -> trunk/d797038ea9f3951c7602e8710f4866f73d7e7acd 2025-07-24T03:47:32.3632824Z * [new tag] trunk/d7e1b8b11d7430c7633dcad6f6596b5df8fa02f7 -> trunk/d7e1b8b11d7430c7633dcad6f6596b5df8fa02f7 2025-07-24T03:47:32.3633629Z * [new tag] trunk/d7e3c9ce8289f26704b140e68dac2849df750040 -> trunk/d7e3c9ce8289f26704b140e68dac2849df750040 2025-07-24T03:47:32.3634408Z * [new tag] trunk/d7e657da358d6d393e2105f94f1312fb969654a2 -> trunk/d7e657da358d6d393e2105f94f1312fb969654a2 2025-07-24T03:47:32.3635202Z * [new tag] trunk/d83ff89d3bf54ecc95d441411ecbf07831cc0e5a -> trunk/d83ff89d3bf54ecc95d441411ecbf07831cc0e5a 2025-07-24T03:47:32.3635999Z * [new tag] trunk/d8425e9c7504dc932c82bed165160a7a055c70f0 -> trunk/d8425e9c7504dc932c82bed165160a7a055c70f0 2025-07-24T03:47:32.3636772Z * [new tag] trunk/d846e213553621cb4581f1f36ac0023e528ddb65 -> trunk/d846e213553621cb4581f1f36ac0023e528ddb65 2025-07-24T03:47:32.3637564Z * [new tag] trunk/d84efde3f02bdc4780e5c9ec43f9c515c744e9be -> trunk/d84efde3f02bdc4780e5c9ec43f9c515c744e9be 2025-07-24T03:47:32.3638423Z * [new tag] trunk/d859e65826d511f8379db4a8c4109417e26e0772 -> trunk/d859e65826d511f8379db4a8c4109417e26e0772 2025-07-24T03:47:32.3639272Z * [new tag] trunk/d898d0d437bfdc0719e6c69d5005606c5e64fca8 -> trunk/d898d0d437bfdc0719e6c69d5005606c5e64fca8 2025-07-24T03:47:32.3640080Z * [new tag] trunk/d89f30ad45b9d4bfe5cf5ab441b53e849e55df7b -> trunk/d89f30ad45b9d4bfe5cf5ab441b53e849e55df7b 2025-07-24T03:47:32.3852072Z * [new tag] trunk/d8b084312b54e97bdbaf6a178fe2fc628a23243b -> trunk/d8b084312b54e97bdbaf6a178fe2fc628a23243b 2025-07-24T03:47:32.3852907Z * [new tag] trunk/d8bb5ac260dd81f75c8add6eadd8ce11e62be1a3 -> trunk/d8bb5ac260dd81f75c8add6eadd8ce11e62be1a3 2025-07-24T03:47:32.3853717Z * [new tag] trunk/d9426a81d2ab54f809a3b32a6ab2e606073fe66f -> trunk/d9426a81d2ab54f809a3b32a6ab2e606073fe66f 2025-07-24T03:47:32.3854521Z * [new tag] trunk/d9577df312d477e8fa5b9d7bc61fb1f2c07b8e48 -> trunk/d9577df312d477e8fa5b9d7bc61fb1f2c07b8e48 2025-07-24T03:47:32.3855383Z * [new tag] trunk/d96dec84151dfdea1aa2bf568deebdc182214f45 -> trunk/d96dec84151dfdea1aa2bf568deebdc182214f45 2025-07-24T03:47:32.3856196Z * [new tag] trunk/d9799a2ee7adb9d15f7a2d47ee17fc39c588af60 -> trunk/d9799a2ee7adb9d15f7a2d47ee17fc39c588af60 2025-07-24T03:47:32.3857041Z * [new tag] trunk/d984143a74e5e726e2be35f6531582aab45bcf4c -> trunk/d984143a74e5e726e2be35f6531582aab45bcf4c 2025-07-24T03:47:32.3857860Z * [new tag] trunk/d98fa4a1033079ae19591aff5c3c354617bff482 -> trunk/d98fa4a1033079ae19591aff5c3c354617bff482 2025-07-24T03:47:32.3858650Z * [new tag] trunk/d99cac28160428a8b006890abffaaa0754bd28e1 -> trunk/d99cac28160428a8b006890abffaaa0754bd28e1 2025-07-24T03:47:32.3859444Z * [new tag] trunk/d9b8369f3976e89eef96c903dfede746fb438f63 -> trunk/d9b8369f3976e89eef96c903dfede746fb438f63 2025-07-24T03:47:32.3860234Z * [new tag] trunk/da05b7fb94fa6382c43e165a525a76d8ae62cadd -> trunk/da05b7fb94fa6382c43e165a525a76d8ae62cadd 2025-07-24T03:47:32.3861037Z * [new tag] trunk/da1f337bc43ce2d720aca1349f9c09712e037382 -> trunk/da1f337bc43ce2d720aca1349f9c09712e037382 2025-07-24T03:47:32.3861853Z * [new tag] trunk/da1f8980dfd646f14dc33bf0bc70fcb4d09096b3 -> trunk/da1f8980dfd646f14dc33bf0bc70fcb4d09096b3 2025-07-24T03:47:32.3862664Z * [new tag] trunk/da4c7b4cedbaaf10754cca34cf5b052d9e880e6a -> trunk/da4c7b4cedbaaf10754cca34cf5b052d9e880e6a 2025-07-24T03:47:32.3863471Z * [new tag] trunk/da4e7c77a12746b0806a63af58d7c913ed241f55 -> trunk/da4e7c77a12746b0806a63af58d7c913ed241f55 2025-07-24T03:47:32.3864264Z * [new tag] trunk/da50835bdebd43275e0be4b1362e1bb92b568e72 -> trunk/da50835bdebd43275e0be4b1362e1bb92b568e72 2025-07-24T03:47:32.3865055Z * [new tag] trunk/da910e603a764c1f935dd0409b4c18bd84b1f045 -> trunk/da910e603a764c1f935dd0409b4c18bd84b1f045 2025-07-24T03:47:32.3865852Z * [new tag] trunk/da94023b0205bf98c3da366f2f86e0a443f4db17 -> trunk/da94023b0205bf98c3da366f2f86e0a443f4db17 2025-07-24T03:47:32.3866639Z * [new tag] trunk/dabb55baff2292ddd7728882b4e2113b8cb9e23b -> trunk/dabb55baff2292ddd7728882b4e2113b8cb9e23b 2025-07-24T03:47:32.3867446Z * [new tag] trunk/db01f1032ff133dc7cc3097b76bfb1b73ff533ce -> trunk/db01f1032ff133dc7cc3097b76bfb1b73ff533ce 2025-07-24T03:47:32.3868229Z * [new tag] trunk/db188503cb705230664c94d8b3a85165a00d632d -> trunk/db188503cb705230664c94d8b3a85165a00d632d 2025-07-24T03:47:32.3869017Z * [new tag] trunk/db491825e05e8bed9c7ed5d9fdd6ce206ab3167c -> trunk/db491825e05e8bed9c7ed5d9fdd6ce206ab3167c 2025-07-24T03:47:32.3869808Z * [new tag] trunk/db5970c1a67968f3b76d204d75789021d4304337 -> trunk/db5970c1a67968f3b76d204d75789021d4304337 2025-07-24T03:47:32.3870714Z * [new tag] trunk/dbec08bc1cc9113c13652128a4ddcfcf2426a8c0 -> trunk/dbec08bc1cc9113c13652128a4ddcfcf2426a8c0 2025-07-24T03:47:32.3871605Z * [new tag] trunk/dbf7d421dabced2335d17c7d7e57c1770f2f12c0 -> trunk/dbf7d421dabced2335d17c7d7e57c1770f2f12c0 2025-07-24T03:47:32.3872422Z * [new tag] trunk/dc5e8f7999cccb51efcf0f5fe197a740a918c73d -> trunk/dc5e8f7999cccb51efcf0f5fe197a740a918c73d 2025-07-24T03:47:32.3873227Z * [new tag] trunk/dcb97cd519e4e4974bc3bd4960512b557216f3e6 -> trunk/dcb97cd519e4e4974bc3bd4960512b557216f3e6 2025-07-24T03:47:32.3874053Z * [new tag] trunk/dd0adc9386226fdbfb1ddaf0c1e74de54dfbc83e -> trunk/dd0adc9386226fdbfb1ddaf0c1e74de54dfbc83e 2025-07-24T03:47:32.3874871Z * [new tag] trunk/dd1b6621bc04a37b60ac304d913a3c838b0b1e4d -> trunk/dd1b6621bc04a37b60ac304d913a3c838b0b1e4d 2025-07-24T03:47:32.3875663Z * [new tag] trunk/dd3e7170c20cade9a308900aa4df46ab7656d253 -> trunk/dd3e7170c20cade9a308900aa4df46ab7656d253 2025-07-24T03:47:32.3876473Z * [new tag] trunk/dd41a3907cde3ce19fb69bd79c4055233a1e28d3 -> trunk/dd41a3907cde3ce19fb69bd79c4055233a1e28d3 2025-07-24T03:47:32.3877292Z * [new tag] trunk/dd78d6e7eaecf0aa5317076a721bc719c96b41f8 -> trunk/dd78d6e7eaecf0aa5317076a721bc719c96b41f8 2025-07-24T03:47:32.3878082Z * [new tag] trunk/dd93883231226576220a8ec0fa266c9e22eae82c -> trunk/dd93883231226576220a8ec0fa266c9e22eae82c 2025-07-24T03:47:32.4077263Z * [new tag] trunk/ddbecdfb663172512875db4a873d8a4913a9ac83 -> trunk/ddbecdfb663172512875db4a873d8a4913a9ac83 2025-07-24T03:47:32.4078121Z * [new tag] trunk/ddd74d10fcc3e51b9df438faec95f8f207cb1c37 -> trunk/ddd74d10fcc3e51b9df438faec95f8f207cb1c37 2025-07-24T03:47:32.4078992Z * [new tag] trunk/ddf502c988133835a89959bef945bf9c5f06b428 -> trunk/ddf502c988133835a89959bef945bf9c5f06b428 2025-07-24T03:47:32.4079844Z * [new tag] trunk/de1930a4290a27f3f03dd1d3454fb6ef9d12f3ea -> trunk/de1930a4290a27f3f03dd1d3454fb6ef9d12f3ea 2025-07-24T03:47:32.4080646Z * [new tag] trunk/de45c5f673ce261e9a82c54280beeda36cff640e -> trunk/de45c5f673ce261e9a82c54280beeda36cff640e 2025-07-24T03:47:32.4081451Z * [new tag] trunk/dea4864ce08115a0cdc871b84dd3080567d8b5e4 -> trunk/dea4864ce08115a0cdc871b84dd3080567d8b5e4 2025-07-24T03:47:32.4082269Z * [new tag] trunk/dec0d3101c4cb4165bcecd6971fc4ba8ce6dc6ab -> trunk/dec0d3101c4cb4165bcecd6971fc4ba8ce6dc6ab 2025-07-24T03:47:32.4083055Z * [new tag] trunk/df72078fe1339751e702c7511c23b4597d022dcc -> trunk/df72078fe1339751e702c7511c23b4597d022dcc 2025-07-24T03:47:32.4083821Z * [new tag] trunk/dfa2649434f539d7580d38f08890176e73d45158 -> trunk/dfa2649434f539d7580d38f08890176e73d45158 2025-07-24T03:47:32.4084593Z * [new tag] trunk/dfc31b3345d78b0a49d446dcc1957404606a3aa2 -> trunk/dfc31b3345d78b0a49d446dcc1957404606a3aa2 2025-07-24T03:47:32.4085482Z * [new tag] trunk/dfcda613b65499e4b593b5bbb64812d57194858e -> trunk/dfcda613b65499e4b593b5bbb64812d57194858e 2025-07-24T03:47:32.4086309Z * [new tag] trunk/dfdd636cfa06ac70c4aa7ad5ee5e854c46b25a8e -> trunk/dfdd636cfa06ac70c4aa7ad5ee5e854c46b25a8e 2025-07-24T03:47:32.4087124Z * [new tag] trunk/dfef1e44085bb156abc4aff0f34a0b82a4a337b8 -> trunk/dfef1e44085bb156abc4aff0f34a0b82a4a337b8 2025-07-24T03:47:32.4087922Z * [new tag] trunk/e01fde82131c7f0b4c122222694911ee6fab36ca -> trunk/e01fde82131c7f0b4c122222694911ee6fab36ca 2025-07-24T03:47:32.4088807Z * [new tag] trunk/e0447bb5f84dca38e7515d1b1fdea42c647e5acd -> trunk/e0447bb5f84dca38e7515d1b1fdea42c647e5acd 2025-07-24T03:47:32.4089614Z * [new tag] trunk/e071837594f26a3bbaeee11eaa74f3bfd9c998ce -> trunk/e071837594f26a3bbaeee11eaa74f3bfd9c998ce 2025-07-24T03:47:32.4090416Z * [new tag] trunk/e0850123355a919427be3cb02f40c9a9e144fc3c -> trunk/e0850123355a919427be3cb02f40c9a9e144fc3c 2025-07-24T03:47:32.4091545Z * [new tag] trunk/e0ab1b538a646bff0739830d74a8e6ea6bf1eddd -> trunk/e0ab1b538a646bff0739830d74a8e6ea6bf1eddd 2025-07-24T03:47:32.4092372Z * [new tag] trunk/e0ae4ecca87928a96c97fb60cbb36aca0fc182f2 -> trunk/e0ae4ecca87928a96c97fb60cbb36aca0fc182f2 2025-07-24T03:47:32.4093193Z * [new tag] trunk/e0fd48be7d526625cacfd093f3db13506ca9cc17 -> trunk/e0fd48be7d526625cacfd093f3db13506ca9cc17 2025-07-24T03:47:32.4093998Z * [new tag] trunk/e1180c7228ba8c8b16cabf78706d4a67ca189a6b -> trunk/e1180c7228ba8c8b16cabf78706d4a67ca189a6b 2025-07-24T03:47:32.4094807Z * [new tag] trunk/e124a0d88ca2aa04bfaca2dcabf5de6244048e45 -> trunk/e124a0d88ca2aa04bfaca2dcabf5de6244048e45 2025-07-24T03:47:32.4095603Z * [new tag] trunk/e12597090c482ebf1eff7739794667a92cbff657 -> trunk/e12597090c482ebf1eff7739794667a92cbff657 2025-07-24T03:47:32.4096403Z * [new tag] trunk/e15848669f84d3767bfca724a29a6a6dde3308b9 -> trunk/e15848669f84d3767bfca724a29a6a6dde3308b9 2025-07-24T03:47:32.4097238Z * [new tag] trunk/e15ea965a1e84029eb900b93f5776767a39fd91e -> trunk/e15ea965a1e84029eb900b93f5776767a39fd91e 2025-07-24T03:47:32.4098061Z * [new tag] trunk/e15f4248ad2797539f1bf965bd0a3500b8ed15ed -> trunk/e15f4248ad2797539f1bf965bd0a3500b8ed15ed 2025-07-24T03:47:32.4098838Z * [new tag] trunk/e1723098805fcbf3ab7f3d20750fb0665bf65004 -> trunk/e1723098805fcbf3ab7f3d20750fb0665bf65004 2025-07-24T03:47:32.4099618Z * [new tag] trunk/e17538022a81c453276cb27468223ddbe4e3e883 -> trunk/e17538022a81c453276cb27468223ddbe4e3e883 2025-07-24T03:47:32.4100873Z * [new tag] trunk/e1a20988f3724317a7ee79c1777d574a8282a122 -> trunk/e1a20988f3724317a7ee79c1777d574a8282a122 2025-07-24T03:47:32.4102187Z * [new tag] trunk/e1aee86646aa6d1b9cb9d34351e43936401c5efc -> trunk/e1aee86646aa6d1b9cb9d34351e43936401c5efc 2025-07-24T03:47:32.4103582Z * [new tag] trunk/e1db10e05aa720aef1989773adcf48f311bcf920 -> trunk/e1db10e05aa720aef1989773adcf48f311bcf920 2025-07-24T03:47:32.4104937Z * [new tag] trunk/e1f28fe17bc55389fc5a31bad588d22e5ecca722 -> trunk/e1f28fe17bc55389fc5a31bad588d22e5ecca722 2025-07-24T03:47:32.4305665Z * [new tag] trunk/e20784f228abca24ab263cf0f69534667365ecba -> trunk/e20784f228abca24ab263cf0f69534667365ecba 2025-07-24T03:47:32.4306518Z * [new tag] trunk/e2351f2dcf7d300460edb9d0c2eb0ea11cc547c5 -> trunk/e2351f2dcf7d300460edb9d0c2eb0ea11cc547c5 2025-07-24T03:47:32.4307339Z * [new tag] trunk/e25ce0f928bfdd545323fcc2f88209233309bbbc -> trunk/e25ce0f928bfdd545323fcc2f88209233309bbbc 2025-07-24T03:47:32.4308141Z * [new tag] trunk/e265b719bd67f7c0a2b9001daef442a70232dcc8 -> trunk/e265b719bd67f7c0a2b9001daef442a70232dcc8 2025-07-24T03:47:32.4308948Z * [new tag] trunk/e28925aa7566da3ffe4f13dd8d59a6767bf97b2e -> trunk/e28925aa7566da3ffe4f13dd8d59a6767bf97b2e 2025-07-24T03:47:32.4309759Z * [new tag] trunk/e290a4c645e00926f0bfa44488f9f7dbd7cb2d0b -> trunk/e290a4c645e00926f0bfa44488f9f7dbd7cb2d0b 2025-07-24T03:47:32.4310551Z * [new tag] trunk/e2c9d8d6414927ce754bbc40b767edf103cf16da -> trunk/e2c9d8d6414927ce754bbc40b767edf103cf16da 2025-07-24T03:47:32.4311354Z * [new tag] trunk/e2f64eedafc6f0dcad9256ac1f38c0359477679a -> trunk/e2f64eedafc6f0dcad9256ac1f38c0359477679a 2025-07-24T03:47:32.4312172Z * [new tag] trunk/e311886e3d57c83a88b97a084dd0b95d6d1537a8 -> trunk/e311886e3d57c83a88b97a084dd0b95d6d1537a8 2025-07-24T03:47:32.4312929Z * [new tag] trunk/e31f20529276356092b5c63c2920d5b17ca9f4ba -> trunk/e31f20529276356092b5c63c2920d5b17ca9f4ba 2025-07-24T03:47:32.4313715Z * [new tag] trunk/e323d46b617c1552cc0f017ad8ec80189eacf187 -> trunk/e323d46b617c1552cc0f017ad8ec80189eacf187 2025-07-24T03:47:32.4314613Z * [new tag] trunk/e3320965b48d87b7257997c35db722302d923ead -> trunk/e3320965b48d87b7257997c35db722302d923ead 2025-07-24T03:47:32.4315483Z * [new tag] trunk/e3351b3ddff06c90b2786b23312f80fda2ddb4a6 -> trunk/e3351b3ddff06c90b2786b23312f80fda2ddb4a6 2025-07-24T03:47:32.4316304Z * [new tag] trunk/e375d21bb9b0ef6fefe7a8af5a054a17de8c63c9 -> trunk/e375d21bb9b0ef6fefe7a8af5a054a17de8c63c9 2025-07-24T03:47:32.4317117Z * [new tag] trunk/e3977e843de6c9c43be00ee8c67c533debfc0dc9 -> trunk/e3977e843de6c9c43be00ee8c67c533debfc0dc9 2025-07-24T03:47:32.4317916Z * [new tag] trunk/e3afbb03623559fa3fa7ba607c07c86ebed889f0 -> trunk/e3afbb03623559fa3fa7ba607c07c86ebed889f0 2025-07-24T03:47:32.4318720Z * [new tag] trunk/e3b44edfd837199880aed3ec802383617da731f3 -> trunk/e3b44edfd837199880aed3ec802383617da731f3 2025-07-24T03:47:32.4319495Z * [new tag] trunk/e3f2597b4529927b812b443cf8da19b44ed8dea4 -> trunk/e3f2597b4529927b812b443cf8da19b44ed8dea4 2025-07-24T03:47:32.4320279Z * [new tag] trunk/e3f8141c25b7213885f0b7b64f2b0ccc7858be95 -> trunk/e3f8141c25b7213885f0b7b64f2b0ccc7858be95 2025-07-24T03:47:32.4321068Z * [new tag] trunk/e3fe001d9e38153a7797ad25377fdfa34e461113 -> trunk/e3fe001d9e38153a7797ad25377fdfa34e461113 2025-07-24T03:47:32.4321849Z * [new tag] trunk/e40ade5182233f548b25f2732effe3719d16e9ad -> trunk/e40ade5182233f548b25f2732effe3719d16e9ad 2025-07-24T03:47:32.4322634Z * [new tag] trunk/e44e05f7ae3ac81675d4636475f562ee1fee9a9c -> trunk/e44e05f7ae3ac81675d4636475f562ee1fee9a9c 2025-07-24T03:47:32.4323415Z * [new tag] trunk/e466dab164d9236bfe5817ec8e4d24c7b9d3e392 -> trunk/e466dab164d9236bfe5817ec8e4d24c7b9d3e392 2025-07-24T03:47:32.4324216Z * [new tag] trunk/e472daa80963aae389089f9dc324b04261e2a5ef -> trunk/e472daa80963aae389089f9dc324b04261e2a5ef 2025-07-24T03:47:32.4325018Z * [new tag] trunk/e4ae60a413b99688d308794baaa1c685b5c19025 -> trunk/e4ae60a413b99688d308794baaa1c685b5c19025 2025-07-24T03:47:32.4325812Z * [new tag] trunk/e4c17d5e1ccd0e730caef484af291243bc1d9cde -> trunk/e4c17d5e1ccd0e730caef484af291243bc1d9cde 2025-07-24T03:47:32.4326621Z * [new tag] trunk/e4c9f6d9a286bd367ce3a157428f588e267d2630 -> trunk/e4c9f6d9a286bd367ce3a157428f588e267d2630 2025-07-24T03:47:32.4327411Z * [new tag] trunk/e517066f41342f0f01043121dcb8ac6b235ee40c -> trunk/e517066f41342f0f01043121dcb8ac6b235ee40c 2025-07-24T03:47:32.4328273Z * [new tag] trunk/e53ddaf1f6ef3f1d22075ad33a5922fb8b277fe0 -> trunk/e53ddaf1f6ef3f1d22075ad33a5922fb8b277fe0 2025-07-24T03:47:32.4329081Z * [new tag] trunk/e581f015eebf483eb6f19447caf2d2452a602c2f -> trunk/e581f015eebf483eb6f19447caf2d2452a602c2f 2025-07-24T03:47:32.4329870Z * [new tag] trunk/e583b888194c8c74ebbd332c09c394acebbbbcff -> trunk/e583b888194c8c74ebbd332c09c394acebbbbcff 2025-07-24T03:47:32.4330679Z * [new tag] trunk/e5a0b73ce9e7bc489150932b60f673155d6ddc30 -> trunk/e5a0b73ce9e7bc489150932b60f673155d6ddc30 2025-07-24T03:47:32.4331472Z * [new tag] trunk/e5a11971919009b5e5bd050b3ed52e324f1ce894 -> trunk/e5a11971919009b5e5bd050b3ed52e324f1ce894 2025-07-24T03:47:32.4517757Z * [new tag] trunk/e5ea24fb27e0ef5dbb0c4039d88c0f4faa221fef -> trunk/e5ea24fb27e0ef5dbb0c4039d88c0f4faa221fef 2025-07-24T03:47:32.4518627Z * [new tag] trunk/e5ed267f830ce9fc6579f928082e563fbed37e3f -> trunk/e5ed267f830ce9fc6579f928082e563fbed37e3f 2025-07-24T03:47:32.4519550Z * [new tag] trunk/e5edd013ab418b8b3609cb3cb1df3804b69d8eef -> trunk/e5edd013ab418b8b3609cb3cb1df3804b69d8eef 2025-07-24T03:47:32.4520363Z * [new tag] trunk/e5f6ffd8109bee99416d9b127f961ab0e253a1c2 -> trunk/e5f6ffd8109bee99416d9b127f961ab0e253a1c2 2025-07-24T03:47:32.4521306Z * [new tag] trunk/e600e044a770d29d1fe5d9638b274a7d4f22f969 -> trunk/e600e044a770d29d1fe5d9638b274a7d4f22f969 2025-07-24T03:47:32.4522186Z * [new tag] trunk/e6252f62efa5e6e4ab0d56967d7461f1e8a7eb7c -> trunk/e6252f62efa5e6e4ab0d56967d7461f1e8a7eb7c 2025-07-24T03:47:32.4522967Z * [new tag] trunk/e694280d1215caf70f41575f2611bfa26c69ebdb -> trunk/e694280d1215caf70f41575f2611bfa26c69ebdb 2025-07-24T03:47:32.4523762Z * [new tag] trunk/e6d71f37896e99ced7daf9ee43a30c0ec03d60f2 -> trunk/e6d71f37896e99ced7daf9ee43a30c0ec03d60f2 2025-07-24T03:47:32.4524560Z * [new tag] trunk/e6d8ed02cbeabe961d1a5303973a6d89ee851736 -> trunk/e6d8ed02cbeabe961d1a5303973a6d89ee851736 2025-07-24T03:47:32.4525448Z * [new tag] trunk/e6ed4074e8411000eea2f0de0c0829d909e4701f -> trunk/e6ed4074e8411000eea2f0de0c0829d909e4701f 2025-07-24T03:47:32.4526250Z * [new tag] trunk/e71bb021b9553ddc2db6cb8ea7bf8643552f09fc -> trunk/e71bb021b9553ddc2db6cb8ea7bf8643552f09fc 2025-07-24T03:47:32.4527053Z * [new tag] trunk/e7698ff5cf40729d11df6c32c6df0a163e5d0ce0 -> trunk/e7698ff5cf40729d11df6c32c6df0a163e5d0ce0 2025-07-24T03:47:32.4527849Z * [new tag] trunk/e78f2ac92b709a060aa323d6e527ec2ecc36fb93 -> trunk/e78f2ac92b709a060aa323d6e527ec2ecc36fb93 2025-07-24T03:47:32.4528693Z * [new tag] trunk/e7a66166ce5294a52bf3966aef49562f94343475 -> trunk/e7a66166ce5294a52bf3966aef49562f94343475 2025-07-24T03:47:32.4529483Z * [new tag] trunk/e7da21806fbc96d47ac03ea8f6507deb0ab48481 -> trunk/e7da21806fbc96d47ac03ea8f6507deb0ab48481 2025-07-24T03:47:32.4530281Z * [new tag] trunk/e8217ad8becd2b297682c685a9179997cb0a98cc -> trunk/e8217ad8becd2b297682c685a9179997cb0a98cc 2025-07-24T03:47:32.4531113Z * [new tag] trunk/e882c761dd2bd2f32d1ac5b6f846c9951564e9e7 -> trunk/e882c761dd2bd2f32d1ac5b6f846c9951564e9e7 2025-07-24T03:47:32.4531954Z * [new tag] trunk/e895e9689c625cbcd8f46880115e0d093713fa37 -> trunk/e895e9689c625cbcd8f46880115e0d093713fa37 2025-07-24T03:47:32.4532750Z * [new tag] trunk/e8af168ee09243dd2179ae1cc5c9e8330e2f5614 -> trunk/e8af168ee09243dd2179ae1cc5c9e8330e2f5614 2025-07-24T03:47:32.4533554Z * [new tag] trunk/e8b3dfa7c0b6d74fc84714dbb79cb6a8bad43ae7 -> trunk/e8b3dfa7c0b6d74fc84714dbb79cb6a8bad43ae7 2025-07-24T03:47:32.4534367Z * [new tag] trunk/e8bfce9a43960f417a36636a0e7f6a58b7dc56d2 -> trunk/e8bfce9a43960f417a36636a0e7f6a58b7dc56d2 2025-07-24T03:47:32.4535176Z * [new tag] trunk/e8cf5ff5641c1ce4c3046a85df55b15eaaea38b2 -> trunk/e8cf5ff5641c1ce4c3046a85df55b15eaaea38b2 2025-07-24T03:47:32.4535980Z * [new tag] trunk/e8d29c45e02402bcb4ae7726abd415bebd441852 -> trunk/e8d29c45e02402bcb4ae7726abd415bebd441852 2025-07-24T03:47:32.4536771Z * [new tag] trunk/e90148c91d3b8a759db558374c8539e47338926b -> trunk/e90148c91d3b8a759db558374c8539e47338926b 2025-07-24T03:47:32.4537652Z * [new tag] trunk/e92e3eaf4eb815ea28db9a5af9d9ee48c3f7be3f -> trunk/e92e3eaf4eb815ea28db9a5af9d9ee48c3f7be3f 2025-07-24T03:47:32.4538461Z * [new tag] trunk/e9367a7a4288e626f01fada3912d68756f1ca6d3 -> trunk/e9367a7a4288e626f01fada3912d68756f1ca6d3 2025-07-24T03:47:32.4539249Z * [new tag] trunk/e959dd017d7dcd7c6351c9ef303f3667aebe11f5 -> trunk/e959dd017d7dcd7c6351c9ef303f3667aebe11f5 2025-07-24T03:47:32.4540035Z * [new tag] trunk/e95e8eed0a96f024dc84012494f465b34eae9d22 -> trunk/e95e8eed0a96f024dc84012494f465b34eae9d22 2025-07-24T03:47:32.4540838Z * [new tag] trunk/e96f530af5bf8ceaeaa87ec7f4651490a25bce07 -> trunk/e96f530af5bf8ceaeaa87ec7f4651490a25bce07 2025-07-24T03:47:32.4541634Z * [new tag] trunk/e98dd95446e009ace1722498effbf32250d623e4 -> trunk/e98dd95446e009ace1722498effbf32250d623e4 2025-07-24T03:47:32.4542521Z * [new tag] trunk/e99a2a2dba90c9b6276219104bc99aff2f67e2f7 -> trunk/e99a2a2dba90c9b6276219104bc99aff2f67e2f7 2025-07-24T03:47:32.4543441Z * [new tag] trunk/e99cc126a4f4bd5233ff363f27d14a0fff4b4392 -> trunk/e99cc126a4f4bd5233ff363f27d14a0fff4b4392 2025-07-24T03:47:32.4761994Z * [new tag] trunk/e9fdaf8701b599fd943bb899639b5e8a4966b3c3 -> trunk/e9fdaf8701b599fd943bb899639b5e8a4966b3c3 2025-07-24T03:47:32.4762825Z * [new tag] trunk/ea23eb4b98ae8af40f0c38538a9e63f1b0dc40e2 -> trunk/ea23eb4b98ae8af40f0c38538a9e63f1b0dc40e2 2025-07-24T03:47:32.4763654Z * [new tag] trunk/ea37f720995616d8570045c63486198a021f8285 -> trunk/ea37f720995616d8570045c63486198a021f8285 2025-07-24T03:47:32.4764544Z * [new tag] trunk/ea5b06ed5bc0e84f0d6a88a5b2b12ce71db78ac6 -> trunk/ea5b06ed5bc0e84f0d6a88a5b2b12ce71db78ac6 2025-07-24T03:47:32.4765379Z * [new tag] trunk/ea74fdd24aa7d98433231f4a3d75cfd241d8720e -> trunk/ea74fdd24aa7d98433231f4a3d75cfd241d8720e 2025-07-24T03:47:32.4766185Z * [new tag] trunk/eab45643f22e58ee12d95d8b0162d51ca0a50801 -> trunk/eab45643f22e58ee12d95d8b0162d51ca0a50801 2025-07-24T03:47:32.4766993Z * [new tag] trunk/eabf7cd3c552e6c17321a63d7e5a19da92909910 -> trunk/eabf7cd3c552e6c17321a63d7e5a19da92909910 2025-07-24T03:47:32.4767797Z * [new tag] trunk/eac777c4f46b381106f2f2b78fe05b506f8c558c -> trunk/eac777c4f46b381106f2f2b78fe05b506f8c558c 2025-07-24T03:47:32.4768642Z * [new tag] trunk/eaceb243df6fc17a37a2c1d9f8775d1561a0f67c -> trunk/eaceb243df6fc17a37a2c1d9f8775d1561a0f67c 2025-07-24T03:47:32.4769453Z * [new tag] trunk/ead80f3202b23ad16daa3a250754ddb91d64e9f8 -> trunk/ead80f3202b23ad16daa3a250754ddb91d64e9f8 2025-07-24T03:47:32.4770262Z * [new tag] trunk/eaf32fffb7e83b5331951b254ad213ceb2ae72f8 -> trunk/eaf32fffb7e83b5331951b254ad213ceb2ae72f8 2025-07-24T03:47:32.4771065Z * [new tag] trunk/eaf704914eb63efffafeb402633f76f2cd521ef4 -> trunk/eaf704914eb63efffafeb402633f76f2cd521ef4 2025-07-24T03:47:32.4771897Z * [new tag] trunk/eb152ab1dd9eafc777b6642bb141ab1b8376359a -> trunk/eb152ab1dd9eafc777b6642bb141ab1b8376359a 2025-07-24T03:47:32.4772706Z * [new tag] trunk/eb2af14f8e75c22c0a2fcf407005d2e8173d0df5 -> trunk/eb2af14f8e75c22c0a2fcf407005d2e8173d0df5 2025-07-24T03:47:32.4773514Z * [new tag] trunk/eb331b59fedb7f70229ca491029f2f7f27bbff54 -> trunk/eb331b59fedb7f70229ca491029f2f7f27bbff54 2025-07-24T03:47:32.4774318Z * [new tag] trunk/eb4cf59ecdf69dd53805a37525a7f750c8f1e0dd -> trunk/eb4cf59ecdf69dd53805a37525a7f750c8f1e0dd 2025-07-24T03:47:32.4775099Z * [new tag] trunk/eb7365072315be2bc4259114e25e269801441748 -> trunk/eb7365072315be2bc4259114e25e269801441748 2025-07-24T03:47:32.4775887Z * [new tag] trunk/eb9efb37c8f315f1d30e86d5797490c6a8666889 -> trunk/eb9efb37c8f315f1d30e86d5797490c6a8666889 2025-07-24T03:47:32.4776686Z * [new tag] trunk/eba5fc91ac924a7a05569c33b0f90f0faf22696d -> trunk/eba5fc91ac924a7a05569c33b0f90f0faf22696d 2025-07-24T03:47:32.4777491Z * [new tag] trunk/ebab2799423987a16975ab07ee49dd944e5315e6 -> trunk/ebab2799423987a16975ab07ee49dd944e5315e6 2025-07-24T03:47:32.4778283Z * [new tag] trunk/ebb032a2025684ebc3e1824bef635ef3548366d1 -> trunk/ebb032a2025684ebc3e1824bef635ef3548366d1 2025-07-24T03:47:32.4779067Z * [new tag] trunk/ebf83b8b7772632c0558db9a88281ee10ff2df38 -> trunk/ebf83b8b7772632c0558db9a88281ee10ff2df38 2025-07-24T03:47:32.4779868Z * [new tag] trunk/ec0276103fc023b93c6eb17639d4605656ea4f10 -> trunk/ec0276103fc023b93c6eb17639d4605656ea4f10 2025-07-24T03:47:32.4780756Z * [new tag] trunk/ec08eb8ba22e66b113e4f2aba1f6afb738f9d861 -> trunk/ec08eb8ba22e66b113e4f2aba1f6afb738f9d861 2025-07-24T03:47:32.4781596Z * [new tag] trunk/ec0b5389619eec7d62ae8321407ce436b2593673 -> trunk/ec0b5389619eec7d62ae8321407ce436b2593673 2025-07-24T03:47:32.4782590Z * [new tag] trunk/ec816d73b4c8f74a14e275891939de6cfd6891b6 -> trunk/ec816d73b4c8f74a14e275891939de6cfd6891b6 2025-07-24T03:47:32.4783388Z * [new tag] trunk/ecd73c58eeaf7e919316f9b9596f8c677af96c66 -> trunk/ecd73c58eeaf7e919316f9b9596f8c677af96c66 2025-07-24T03:47:32.4784201Z * [new tag] trunk/ed03492238c9ef76f5c1df6cfa54da83a2a384e1 -> trunk/ed03492238c9ef76f5c1df6cfa54da83a2a384e1 2025-07-24T03:47:32.4784990Z * [new tag] trunk/ed051c308464904e07d33c39524b3931dc8c947a -> trunk/ed051c308464904e07d33c39524b3931dc8c947a 2025-07-24T03:47:32.4785761Z * [new tag] trunk/ed508cc0182b923789555d4e1ec1f8b23707b7db -> trunk/ed508cc0182b923789555d4e1ec1f8b23707b7db 2025-07-24T03:47:32.4786545Z * [new tag] trunk/ed5d6d2a200a0f03b164053322341bb10acc051d -> trunk/ed5d6d2a200a0f03b164053322341bb10acc051d 2025-07-24T03:47:32.4787339Z * [new tag] trunk/ed661a5f11de116539f70882f4f59a61d5e3e209 -> trunk/ed661a5f11de116539f70882f4f59a61d5e3e209 2025-07-24T03:47:32.4788115Z * [new tag] trunk/ed6ae20cf0e31d49d54177251293267205e24021 -> trunk/ed6ae20cf0e31d49d54177251293267205e24021 2025-07-24T03:47:32.4977599Z * [new tag] trunk/ed6df0e324233fda094e3c1cb4de4009d1ba2413 -> trunk/ed6df0e324233fda094e3c1cb4de4009d1ba2413 2025-07-24T03:47:32.4978426Z * [new tag] trunk/ed911747c2a56cf84d648d677403d5bf6b2ebd0b -> trunk/ed911747c2a56cf84d648d677403d5bf6b2ebd0b 2025-07-24T03:47:32.4979238Z * [new tag] trunk/eda0a9cc90b9a63127a49d617329f98b6404e90d -> trunk/eda0a9cc90b9a63127a49d617329f98b6404e90d 2025-07-24T03:47:32.4980044Z * [new tag] trunk/edb92e16ba9ad12bd51c4f73389556e163e9cc08 -> trunk/edb92e16ba9ad12bd51c4f73389556e163e9cc08 2025-07-24T03:47:32.4980837Z * [new tag] trunk/edd45f3a020f892c17672cc2d08f64cb960006ad -> trunk/edd45f3a020f892c17672cc2d08f64cb960006ad 2025-07-24T03:47:32.4981671Z * [new tag] trunk/edd9c09e73aaa8d1a1667fa7ea5a337aa31fa6ec -> trunk/edd9c09e73aaa8d1a1667fa7ea5a337aa31fa6ec 2025-07-24T03:47:32.4982504Z * [new tag] trunk/eddddea9087a8840ce5ae1bbb3c6f59556d7c0f0 -> trunk/eddddea9087a8840ce5ae1bbb3c6f59556d7c0f0 2025-07-24T03:47:32.4983353Z * [new tag] trunk/ede6ead8cd8e925cb093f2b3016342e645bd728d -> trunk/ede6ead8cd8e925cb093f2b3016342e645bd728d 2025-07-24T03:47:32.4984209Z * [new tag] trunk/edf7bb4f514220f96ddfa646ae6e9e930a305ec1 -> trunk/edf7bb4f514220f96ddfa646ae6e9e930a305ec1 2025-07-24T03:47:32.4984995Z * [new tag] trunk/ee0992871c99fc6a1e19eb839ab65391a168d2f8 -> trunk/ee0992871c99fc6a1e19eb839ab65391a168d2f8 2025-07-24T03:47:32.4985800Z * [new tag] trunk/ee4d343499c80be16a58d5ac604da6e2130cd94d -> trunk/ee4d343499c80be16a58d5ac604da6e2130cd94d 2025-07-24T03:47:32.4986601Z * [new tag] trunk/ee56e9f8a8202bfa02c2d9ae3cfa07d4a41ab567 -> trunk/ee56e9f8a8202bfa02c2d9ae3cfa07d4a41ab567 2025-07-24T03:47:32.4987407Z * [new tag] trunk/ee5a434f8ce96a8f13b8c655356222137483c4db -> trunk/ee5a434f8ce96a8f13b8c655356222137483c4db 2025-07-24T03:47:32.4988215Z * [new tag] trunk/ee5c2908cbfcbda6e8a5737d9939d36ba417d627 -> trunk/ee5c2908cbfcbda6e8a5737d9939d36ba417d627 2025-07-24T03:47:32.4989016Z * [new tag] trunk/ee72338f0ca91df825306cb9f780b0274c07e9ae -> trunk/ee72338f0ca91df825306cb9f780b0274c07e9ae 2025-07-24T03:47:32.4989899Z * [new tag] trunk/ee9ac36c2316f430c4de2a0982bde3cb8087cbe7 -> trunk/ee9ac36c2316f430c4de2a0982bde3cb8087cbe7 2025-07-24T03:47:32.4990723Z * [new tag] trunk/eea3bcb3d146f16a8f8c91a9e2a8f1b76c5917f4 -> trunk/eea3bcb3d146f16a8f8c91a9e2a8f1b76c5917f4 2025-07-24T03:47:32.4991527Z * [new tag] trunk/eeaefa133694811aac1fd215bcae2e7f1e098d1d -> trunk/eeaefa133694811aac1fd215bcae2e7f1e098d1d 2025-07-24T03:47:32.4992451Z * [new tag] trunk/eeb0783fe6357fd59a91b65c5dba0a00b21506b7 -> trunk/eeb0783fe6357fd59a91b65c5dba0a00b21506b7 2025-07-24T03:47:32.4993918Z * [new tag] trunk/eecaa0bbc6a39c89366f9ec97797479c27f6d760 -> trunk/eecaa0bbc6a39c89366f9ec97797479c27f6d760 2025-07-24T03:47:32.4994723Z * [new tag] trunk/eeda1a75ace75ce8a6763050fb91d236a6d3287b -> trunk/eeda1a75ace75ce8a6763050fb91d236a6d3287b 2025-07-24T03:47:32.4995571Z * [new tag] trunk/eef253d9f6fc8b9774d199889a817f50e89572c2 -> trunk/eef253d9f6fc8b9774d199889a817f50e89572c2 2025-07-24T03:47:32.4996415Z * [new tag] trunk/ef256ad17b7b4fd9b79c4b580b4023f2c50eef11 -> trunk/ef256ad17b7b4fd9b79c4b580b4023f2c50eef11 2025-07-24T03:47:32.4997207Z * [new tag] trunk/ef38edb2847c87702db7c3a7c71413eb59f40b2b -> trunk/ef38edb2847c87702db7c3a7c71413eb59f40b2b 2025-07-24T03:47:32.4998012Z * [new tag] trunk/ef4cca2d79eba61441da46906b30f8f6165cc455 -> trunk/ef4cca2d79eba61441da46906b30f8f6165cc455 2025-07-24T03:47:32.4998814Z * [new tag] trunk/ef6d2cee7a93c1e8f52a7595b6f630d0fcd83692 -> trunk/ef6d2cee7a93c1e8f52a7595b6f630d0fcd83692 2025-07-24T03:47:32.4999633Z * [new tag] trunk/ef6dfa06a9ff84bf04b0d83cfab4cb396a508a0e -> trunk/ef6dfa06a9ff84bf04b0d83cfab4cb396a508a0e 2025-07-24T03:47:32.5000447Z * [new tag] trunk/ef97bd47131423e0819b293dc227b62d0c376023 -> trunk/ef97bd47131423e0819b293dc227b62d0c376023 2025-07-24T03:47:32.5001241Z * [new tag] trunk/efbf07e7ea46c33c936cac882eb1c8b782d1d070 -> trunk/efbf07e7ea46c33c936cac882eb1c8b782d1d070 2025-07-24T03:47:32.5002133Z * [new tag] trunk/effe376db07c7071fa4d704dd0787a394a5eda50 -> trunk/effe376db07c7071fa4d704dd0787a394a5eda50 2025-07-24T03:47:32.5002942Z * [new tag] trunk/f04fd4dc4eaf16557f9212240bdaa8377d51bad1 -> trunk/f04fd4dc4eaf16557f9212240bdaa8377d51bad1 2025-07-24T03:47:32.5003734Z * [new tag] trunk/f096820d0f845f36529fe774cf761d5fc4ad02a8 -> trunk/f096820d0f845f36529fe774cf761d5fc4ad02a8 2025-07-24T03:47:32.5252945Z * [new tag] trunk/f09a484b8164aaadd57a79354f0ccf47733f365e -> trunk/f09a484b8164aaadd57a79354f0ccf47733f365e 2025-07-24T03:47:32.5253778Z * [new tag] trunk/f0b388665efd20c1ec35fc48afb115a0f15116ce -> trunk/f0b388665efd20c1ec35fc48afb115a0f15116ce 2025-07-24T03:47:32.5254610Z * [new tag] trunk/f0bee87eea03f6ded538590e2a073cc62ecd2818 -> trunk/f0bee87eea03f6ded538590e2a073cc62ecd2818 2025-07-24T03:47:32.5255477Z * [new tag] trunk/f10e4430e272e40b5d7dbdc4bfa34e6d7a124aa5 -> trunk/f10e4430e272e40b5d7dbdc4bfa34e6d7a124aa5 2025-07-24T03:47:32.5256351Z * [new tag] trunk/f1331f3f1b43d1848341a0f0da66a13cb05570d0 -> trunk/f1331f3f1b43d1848341a0f0da66a13cb05570d0 2025-07-24T03:47:32.5257150Z * [new tag] trunk/f140fac8dcfa6ec20d594bc4637417a83bc90036 -> trunk/f140fac8dcfa6ec20d594bc4637417a83bc90036 2025-07-24T03:47:32.5257964Z * [new tag] trunk/f151b201236f959e3874b73dde9bfae5e10dae78 -> trunk/f151b201236f959e3874b73dde9bfae5e10dae78 2025-07-24T03:47:32.5258746Z * [new tag] trunk/f154f9b3040369a7979d5de7acb6fe21433eda83 -> trunk/f154f9b3040369a7979d5de7acb6fe21433eda83 2025-07-24T03:47:32.5259540Z * [new tag] trunk/f16053f0c9a09fa337fbf85aaf64f88712b8dcdb -> trunk/f16053f0c9a09fa337fbf85aaf64f88712b8dcdb 2025-07-24T03:47:32.5260332Z * [new tag] trunk/f168cf49a8e2e81dcd4cd3c631325221a4f3faac -> trunk/f168cf49a8e2e81dcd4cd3c631325221a4f3faac 2025-07-24T03:47:32.5261135Z * [new tag] trunk/f179b7198522e6d93bd103efba1a1ebd5a2cf891 -> trunk/f179b7198522e6d93bd103efba1a1ebd5a2cf891 2025-07-24T03:47:32.5261927Z * [new tag] trunk/f17f6581252ff07e75f33fdce0b4248acdb5da0b -> trunk/f17f6581252ff07e75f33fdce0b4248acdb5da0b 2025-07-24T03:47:32.5262839Z * [new tag] trunk/f1f49e56b079bfc73b1b2fb061d150ec787ee716 -> trunk/f1f49e56b079bfc73b1b2fb061d150ec787ee716 2025-07-24T03:47:32.5263729Z * [new tag] trunk/f2b44424a1f3481ddc066e8dd62c0cafa1298e92 -> trunk/f2b44424a1f3481ddc066e8dd62c0cafa1298e92 2025-07-24T03:47:32.5264543Z * [new tag] trunk/f2d70898c6fad6c6e867d9bf60eced6aacfa9782 -> trunk/f2d70898c6fad6c6e867d9bf60eced6aacfa9782 2025-07-24T03:47:32.5265342Z * [new tag] trunk/f2e712ca14dbbb8435427fd536b0dd63994a9265 -> trunk/f2e712ca14dbbb8435427fd536b0dd63994a9265 2025-07-24T03:47:32.5266146Z * [new tag] trunk/f2ecf6145fde55baa8a91e27b6b3489172f0e639 -> trunk/f2ecf6145fde55baa8a91e27b6b3489172f0e639 2025-07-24T03:47:32.5266990Z * [new tag] trunk/f34335bf3373301ba3af3ff8268cd0cd1715bd2e -> trunk/f34335bf3373301ba3af3ff8268cd0cd1715bd2e 2025-07-24T03:47:32.5267868Z * [new tag] trunk/f34ab1628b6798cc62f55260dfad872f5df8fd94 -> trunk/f34ab1628b6798cc62f55260dfad872f5df8fd94 2025-07-24T03:47:32.5268658Z * [new tag] trunk/f3e6c8e834a49f738e329b802b4b10912e33915f -> trunk/f3e6c8e834a49f738e329b802b4b10912e33915f 2025-07-24T03:47:32.5269458Z * [new tag] trunk/f3ec16c26a24bcbdcb96c692e321be1a4464067c -> trunk/f3ec16c26a24bcbdcb96c692e321be1a4464067c 2025-07-24T03:47:32.5270271Z * [new tag] trunk/f402eed4d9515dee5bb9b11a2b157de57a5988c1 -> trunk/f402eed4d9515dee5bb9b11a2b157de57a5988c1 2025-07-24T03:47:32.5271067Z * [new tag] trunk/f40efde2a474ffd77c021686da2f14864d6aeb6d -> trunk/f40efde2a474ffd77c021686da2f14864d6aeb6d 2025-07-24T03:47:32.5271880Z * [new tag] trunk/f41d017aa6ca1bd121cee6e428875b7fd31a7ad0 -> trunk/f41d017aa6ca1bd121cee6e428875b7fd31a7ad0 2025-07-24T03:47:32.5272672Z * [new tag] trunk/f4376cac54978b9d7c859c1e3495a57d72ab9601 -> trunk/f4376cac54978b9d7c859c1e3495a57d72ab9601 2025-07-24T03:47:32.5273452Z * [new tag] trunk/f4406689b8805ed23dfef34c6320bb99ea6d3767 -> trunk/f4406689b8805ed23dfef34c6320bb99ea6d3767 2025-07-24T03:47:32.5274264Z * [new tag] trunk/f44a9eee4778d2a2aafe3a0beeea7a37ab8d380e -> trunk/f44a9eee4778d2a2aafe3a0beeea7a37ab8d380e 2025-07-24T03:47:32.5275078Z * [new tag] trunk/f45f483884ef524f2d8260dcf2b2ba2c203eab2f -> trunk/f45f483884ef524f2d8260dcf2b2ba2c203eab2f 2025-07-24T03:47:32.5275876Z * [new tag] trunk/f45f6e86b9ef3d9c94b87c2240dbe9a07bb9fd3d -> trunk/f45f6e86b9ef3d9c94b87c2240dbe9a07bb9fd3d 2025-07-24T03:47:32.5276660Z * [new tag] trunk/f48a1576606186cf2104c82be367b617912322de -> trunk/f48a1576606186cf2104c82be367b617912322de 2025-07-24T03:47:32.5277445Z * [new tag] trunk/f4d60a68dd2fb9fda92af83df016f4cfe3af00ba -> trunk/f4d60a68dd2fb9fda92af83df016f4cfe3af00ba 2025-07-24T03:47:32.5278256Z * [new tag] trunk/f4d8bc46c7706f872abcb4ec41f0b32207d5d826 -> trunk/f4d8bc46c7706f872abcb4ec41f0b32207d5d826 2025-07-24T03:47:32.5279063Z * [new tag] trunk/f56bfb3030acff03e21d568089f3af9e09ec7cb2 -> trunk/f56bfb3030acff03e21d568089f3af9e09ec7cb2 2025-07-24T03:47:32.5467004Z * [new tag] trunk/f58a680d09e13658a52c6ba05c63c15759846bcc -> trunk/f58a680d09e13658a52c6ba05c63c15759846bcc 2025-07-24T03:47:32.5467817Z * [new tag] trunk/f59c76b5494f83abbb2ca169e13201439396c1aa -> trunk/f59c76b5494f83abbb2ca169e13201439396c1aa 2025-07-24T03:47:32.5468628Z * [new tag] trunk/f5bbaa22536437e9f689db8ee7a5ca472fdf4bd0 -> trunk/f5bbaa22536437e9f689db8ee7a5ca472fdf4bd0 2025-07-24T03:47:32.5469417Z * [new tag] trunk/f5e1b24945cf7852a1425923ca543e1f83be14b1 -> trunk/f5e1b24945cf7852a1425923ca543e1f83be14b1 2025-07-24T03:47:32.5470198Z * [new tag] trunk/f5e6e52f2504d0d2c553fd292c89d999b2033616 -> trunk/f5e6e52f2504d0d2c553fd292c89d999b2033616 2025-07-24T03:47:32.5471626Z * [new tag] trunk/f5eb42e4c0405141134e9c52919ebb36ec77ca5f -> trunk/f5eb42e4c0405141134e9c52919ebb36ec77ca5f 2025-07-24T03:47:32.5472544Z * [new tag] trunk/f5f4beaf562911b5cf1a9e8b9eae5e5946681f3c -> trunk/f5f4beaf562911b5cf1a9e8b9eae5e5946681f3c 2025-07-24T03:47:32.5473349Z * [new tag] trunk/f63988ae00f856d8a3a6f748310962ba55361f0b -> trunk/f63988ae00f856d8a3a6f748310962ba55361f0b 2025-07-24T03:47:32.5474118Z * [new tag] trunk/f6d138807f138868de0397936e2bee482c1fb987 -> trunk/f6d138807f138868de0397936e2bee482c1fb987 2025-07-24T03:47:32.5474889Z * [new tag] trunk/f6e18bc1054624bb148632a85c10371d6cc62492 -> trunk/f6e18bc1054624bb148632a85c10371d6cc62492 2025-07-24T03:47:32.5475673Z * [new tag] trunk/f70c80105ebc2a118af848c80a18d6efff820f72 -> trunk/f70c80105ebc2a118af848c80a18d6efff820f72 2025-07-24T03:47:32.5476464Z * [new tag] trunk/f7127b9b940a98596599acda1f89fc5153635a5d -> trunk/f7127b9b940a98596599acda1f89fc5153635a5d 2025-07-24T03:47:32.5477262Z * [new tag] trunk/f7130c097efa826313df44f0dcfa7d4d2e4253ec -> trunk/f7130c097efa826313df44f0dcfa7d4d2e4253ec 2025-07-24T03:47:32.5478051Z * [new tag] trunk/f742b32a2ff6326f67512d2b426cdc2da8413a75 -> trunk/f742b32a2ff6326f67512d2b426cdc2da8413a75 2025-07-24T03:47:32.5478858Z * [new tag] trunk/f76f4abf3f10bd36a47e7cebdce90290ce76e564 -> trunk/f76f4abf3f10bd36a47e7cebdce90290ce76e564 2025-07-24T03:47:32.5479660Z * [new tag] trunk/f79689bd3d145e76746e4cf81e99c40df8272a72 -> trunk/f79689bd3d145e76746e4cf81e99c40df8272a72 2025-07-24T03:47:32.5480459Z * [new tag] trunk/f7a5ad6c2987ee5a83aa5d868cee3b8067d3de94 -> trunk/f7a5ad6c2987ee5a83aa5d868cee3b8067d3de94 2025-07-24T03:47:32.5481260Z * [new tag] trunk/f7f550649f129370d47ec9ec7f8383eaa5b2f849 -> trunk/f7f550649f129370d47ec9ec7f8383eaa5b2f849 2025-07-24T03:47:32.5482062Z * [new tag] trunk/f80a61adf57badf999387efe47b8b2ff3388bd96 -> trunk/f80a61adf57badf999387efe47b8b2ff3388bd96 2025-07-24T03:47:32.5482850Z * [new tag] trunk/f80f97d192253336940c67fd9bf6004ff8711088 -> trunk/f80f97d192253336940c67fd9bf6004ff8711088 2025-07-24T03:47:32.5483643Z * [new tag] trunk/f810480dbefabbff6cf0852c9f610f84dd440b8d -> trunk/f810480dbefabbff6cf0852c9f610f84dd440b8d 2025-07-24T03:47:32.5484427Z * [new tag] trunk/f810e98143b7b1fe3436d5315101b22aa8438775 -> trunk/f810e98143b7b1fe3436d5315101b22aa8438775 2025-07-24T03:47:32.5485203Z * [new tag] trunk/f8293116f55a9ad399e4938f0fe3e34c6faa47c4 -> trunk/f8293116f55a9ad399e4938f0fe3e34c6faa47c4 2025-07-24T03:47:32.5485992Z * [new tag] trunk/f85954e043a5b6affb589012e8cc5eff8fdb5358 -> trunk/f85954e043a5b6affb589012e8cc5eff8fdb5358 2025-07-24T03:47:32.5486772Z * [new tag] trunk/f860992db5601a78f73eefc0a56af1d7158d6953 -> trunk/f860992db5601a78f73eefc0a56af1d7158d6953 2025-07-24T03:47:32.5487559Z * [new tag] trunk/f87d1179391d66854e3c6ca20717803cfa22f878 -> trunk/f87d1179391d66854e3c6ca20717803cfa22f878 2025-07-24T03:47:32.5488433Z * [new tag] trunk/f88d7a7a34d5a54d58f0a7edc01ff69f46221b6c -> trunk/f88d7a7a34d5a54d58f0a7edc01ff69f46221b6c 2025-07-24T03:47:32.5489234Z * [new tag] trunk/f8baec8984ed90b526fdc03eec19d8039e7d373b -> trunk/f8baec8984ed90b526fdc03eec19d8039e7d373b 2025-07-24T03:47:32.5490035Z * [new tag] trunk/f8c0a4bd28087b02958b92d7b4f41ebc607292b7 -> trunk/f8c0a4bd28087b02958b92d7b4f41ebc607292b7 2025-07-24T03:47:32.5490826Z * [new tag] trunk/f8cc4c0af802269fbe16a418386a94b3b6547c74 -> trunk/f8cc4c0af802269fbe16a418386a94b3b6547c74 2025-07-24T03:47:32.5491630Z * [new tag] trunk/f92a2035e41699b026abc25a1a8dde6971bfe477 -> trunk/f92a2035e41699b026abc25a1a8dde6971bfe477 2025-07-24T03:47:32.5492430Z * [new tag] trunk/f97f03c7efcf2b7a45384b9094eb6be4cb419546 -> trunk/f97f03c7efcf2b7a45384b9094eb6be4cb419546 2025-07-24T03:47:32.5711172Z * [new tag] trunk/fa0ea57f5e083daab1eb9cda39ab53a5159b077d -> trunk/fa0ea57f5e083daab1eb9cda39ab53a5159b077d 2025-07-24T03:47:32.5712041Z * [new tag] trunk/fa1c20ae9285f7994a73d2d06025065f96b67a57 -> trunk/fa1c20ae9285f7994a73d2d06025065f96b67a57 2025-07-24T03:47:32.5712842Z * [new tag] trunk/fa3c38c7ae17b8d8fccd0958831f9f1ced9e46b3 -> trunk/fa3c38c7ae17b8d8fccd0958831f9f1ced9e46b3 2025-07-24T03:47:32.5713642Z * [new tag] trunk/fa4f07b5b80bdcf99a1c7452de41939d2ab5886f -> trunk/fa4f07b5b80bdcf99a1c7452de41939d2ab5886f 2025-07-24T03:47:32.5714452Z * [new tag] trunk/fa705f791249c5eee912096f1d7ac7b2d5b60e8c -> trunk/fa705f791249c5eee912096f1d7ac7b2d5b60e8c 2025-07-24T03:47:32.5715268Z * [new tag] trunk/fab53dfdf1d89cecd5e82b12cced9b6dd217e87c -> trunk/fab53dfdf1d89cecd5e82b12cced9b6dd217e87c 2025-07-24T03:47:32.5716100Z * [new tag] trunk/fab85fc5f995ef79e67dc4b083f8cfabe7a90798 -> trunk/fab85fc5f995ef79e67dc4b083f8cfabe7a90798 2025-07-24T03:47:32.5716930Z * [new tag] trunk/fac0be7b9c80f20bbff1e813225dcbced7ff4d31 -> trunk/fac0be7b9c80f20bbff1e813225dcbced7ff4d31 2025-07-24T03:47:32.5717789Z * [new tag] trunk/fac0cc16efd342637a3d1953caf2ecfa8a89947c -> trunk/fac0cc16efd342637a3d1953caf2ecfa8a89947c 2025-07-24T03:47:32.5718648Z * [new tag] trunk/fadc936fad0793e931ed2eb89577e1d10d212f71 -> trunk/fadc936fad0793e931ed2eb89577e1d10d212f71 2025-07-24T03:47:32.5719540Z * [new tag] trunk/fb45649df7267e97efffec8305cddcb23e97d53f -> trunk/fb45649df7267e97efffec8305cddcb23e97d53f 2025-07-24T03:47:32.5720418Z * [new tag] trunk/fb462cec8d8674ad547c55dbe90710bde1dc2019 -> trunk/fb462cec8d8674ad547c55dbe90710bde1dc2019 2025-07-24T03:47:32.5721268Z * [new tag] trunk/fb731fe371cb1b5bf95de84b19c213590526acb2 -> trunk/fb731fe371cb1b5bf95de84b19c213590526acb2 2025-07-24T03:47:32.5722148Z * [new tag] trunk/fb75dea2c1b93c78dccf08d5fd5e20b362ecd405 -> trunk/fb75dea2c1b93c78dccf08d5fd5e20b362ecd405 2025-07-24T03:47:32.5722965Z * [new tag] trunk/fb9a5d248f36ddce041025c8fc5be0d8bee454b0 -> trunk/fb9a5d248f36ddce041025c8fc5be0d8bee454b0 2025-07-24T03:47:32.5723787Z * [new tag] trunk/fbbab794ef6befbe7ffab3648e9b1f2042942fed -> trunk/fbbab794ef6befbe7ffab3648e9b1f2042942fed 2025-07-24T03:47:32.5724597Z * [new tag] trunk/fbd88ae2b5f444cb4b419c415258caeaef4b7325 -> trunk/fbd88ae2b5f444cb4b419c415258caeaef4b7325 2025-07-24T03:47:32.5725398Z * [new tag] trunk/fc0376e8b162d8fcf4375ae30566139eae7d48ed -> trunk/fc0376e8b162d8fcf4375ae30566139eae7d48ed 2025-07-24T03:47:32.5726185Z * [new tag] trunk/fc10d4b1d649f1460b587f3ab45ad4403d84518c -> trunk/fc10d4b1d649f1460b587f3ab45ad4403d84518c 2025-07-24T03:47:32.5726982Z * [new tag] trunk/fc177801afcbf12543b5e193e736b155f79d4ad3 -> trunk/fc177801afcbf12543b5e193e736b155f79d4ad3 2025-07-24T03:47:32.5727874Z * [new tag] trunk/fc5a404eb1e28fdb39f5b91d6378699d3b042749 -> trunk/fc5a404eb1e28fdb39f5b91d6378699d3b042749 2025-07-24T03:47:32.5728771Z * [new tag] trunk/fc5ae1229341ca2841a977197c644733c6a5c789 -> trunk/fc5ae1229341ca2841a977197c644733c6a5c789 2025-07-24T03:47:32.5729631Z * [new tag] trunk/fc772692622e89335dc28638c512bb33dbed1729 -> trunk/fc772692622e89335dc28638c512bb33dbed1729 2025-07-24T03:47:32.5730503Z * [new tag] trunk/fca7013f85d4e7ac07bdd461f490aa159feac6a0 -> trunk/fca7013f85d4e7ac07bdd461f490aa159feac6a0 2025-07-24T03:47:32.5731385Z * [new tag] trunk/fcbf7c749a839cc817927ceba8ea2887cc28dbf5 -> trunk/fcbf7c749a839cc817927ceba8ea2887cc28dbf5 2025-07-24T03:47:32.5732236Z * [new tag] trunk/fcc682be4bda58894a15fee1d9041c6043fea66f -> trunk/fcc682be4bda58894a15fee1d9041c6043fea66f 2025-07-24T03:47:32.5733206Z * [new tag] trunk/fd47401536a35fa5fbf68f0b67fdbf94628f5c23 -> trunk/fd47401536a35fa5fbf68f0b67fdbf94628f5c23 2025-07-24T03:47:32.5734170Z * [new tag] trunk/fd4bb29410c035b31ca55262c3012cadb1194aae -> trunk/fd4bb29410c035b31ca55262c3012cadb1194aae 2025-07-24T03:47:32.5735043Z * [new tag] trunk/fd4f704905f95b46c4c8fb4108461ff56ce750c5 -> trunk/fd4f704905f95b46c4c8fb4108461ff56ce750c5 2025-07-24T03:47:32.5735904Z * [new tag] trunk/fd51bcdd21683c715a9b4ef9340c90753964c76f -> trunk/fd51bcdd21683c715a9b4ef9340c90753964c76f 2025-07-24T03:47:32.5736791Z * [new tag] trunk/fd8ea3c8a35e5b4aea3ebd712f2c7ee28c5a3655 -> trunk/fd8ea3c8a35e5b4aea3ebd712f2c7ee28c5a3655 2025-07-24T03:47:32.5737655Z * [new tag] trunk/fda3f3b2ec6c6dc11100cc8ddff07059692d697e -> trunk/fda3f3b2ec6c6dc11100cc8ddff07059692d697e 2025-07-24T03:47:32.5738540Z * [new tag] trunk/fdc5b42a8fa2b15526c81f2c83f614e086056320 -> trunk/fdc5b42a8fa2b15526c81f2c83f614e086056320 2025-07-24T03:47:32.6045962Z * [new tag] trunk/fdf5d97fa8393f56aea2779877efd8a264ad5811 -> trunk/fdf5d97fa8393f56aea2779877efd8a264ad5811 2025-07-24T03:47:32.6046867Z * [new tag] trunk/fe1f1a38dff7c59ec0ec5b05fef058629845d061 -> trunk/fe1f1a38dff7c59ec0ec5b05fef058629845d061 2025-07-24T03:47:32.6047768Z * [new tag] trunk/fe8f556006b3397b7bdf844ba9a6cf329c0c1846 -> trunk/fe8f556006b3397b7bdf844ba9a6cf329c0c1846 2025-07-24T03:47:32.6048725Z * [new tag] trunk/feaa02f9addfc6764843c8b48f8c403de593737c -> trunk/feaa02f9addfc6764843c8b48f8c403de593737c 2025-07-24T03:47:32.6049602Z * [new tag] trunk/febf3c475e6fe369b41ef009f3598659a6df0911 -> trunk/febf3c475e6fe369b41ef009f3598659a6df0911 2025-07-24T03:47:32.6050444Z * [new tag] trunk/fec571cfd458c4644a2f483dbf9f5480feca7939 -> trunk/fec571cfd458c4644a2f483dbf9f5480feca7939 2025-07-24T03:47:32.6051338Z * [new tag] trunk/fec8af8b98f5e17740ff947e9f8a1c447a497413 -> trunk/fec8af8b98f5e17740ff947e9f8a1c447a497413 2025-07-24T03:47:32.6052229Z * [new tag] trunk/fedbd1a48e1e474cf9da5637aae89b5bc4c20626 -> trunk/fedbd1a48e1e474cf9da5637aae89b5bc4c20626 2025-07-24T03:47:32.6053122Z * [new tag] trunk/fee2377f9ea62223f69ea9904c5e25ccb2af5961 -> trunk/fee2377f9ea62223f69ea9904c5e25ccb2af5961 2025-07-24T03:47:32.6053972Z * [new tag] trunk/feea575082439a0496dd404a4925b7d551039065 -> trunk/feea575082439a0496dd404a4925b7d551039065 2025-07-24T03:47:32.6054788Z * [new tag] trunk/fef236da6924bc8105a830f88060df95ea304de7 -> trunk/fef236da6924bc8105a830f88060df95ea304de7 2025-07-24T03:47:32.6055670Z * [new tag] trunk/ff0da08f4bc5ee135b495926cd58a36a1c0e1a5b -> trunk/ff0da08f4bc5ee135b495926cd58a36a1c0e1a5b 2025-07-24T03:47:32.6056539Z * [new tag] trunk/ff611d971fe5362a71c15109cf020d30e6c4b2b9 -> trunk/ff611d971fe5362a71c15109cf020d30e6c4b2b9 2025-07-24T03:47:32.6057408Z * [new tag] trunk/ff7dd1776f9cb8448336338b19b9b53073f2fbda -> trunk/ff7dd1776f9cb8448336338b19b9b53073f2fbda 2025-07-24T03:47:32.6058219Z * [new tag] trunk/ff8b53c056e6556187690a37c944c92feb964d2d -> trunk/ff8b53c056e6556187690a37c944c92feb964d2d 2025-07-24T03:47:32.6059107Z * [new tag] trunk/ffac0de07e0173a073c92c157f43c515009c0de1 -> trunk/ffac0de07e0173a073c92c157f43c515009c0de1 2025-07-24T03:47:32.6059986Z * [new tag] trunk/ffaed8c569406839335bf46dafc4c3e8871e4b8a -> trunk/ffaed8c569406839335bf46dafc4c3e8871e4b8a 2025-07-24T03:47:32.6060862Z * [new tag] trunk/ffc6cbfaf78ca219092ce64dcf113377ae698300 -> trunk/ffc6cbfaf78ca219092ce64dcf113377ae698300 2025-07-24T03:47:32.6061488Z * [new tag] v0.1.1 -> v0.1.1 2025-07-24T03:47:32.6061876Z * [new tag] v0.1.10 -> v0.1.10 2025-07-24T03:47:32.6062406Z * [new tag] v0.1.11 -> v0.1.11 2025-07-24T03:47:32.6062869Z * [new tag] v0.1.12 -> v0.1.12 2025-07-24T03:47:32.6063196Z * [new tag] v0.1.2 -> v0.1.2 2025-07-24T03:47:32.6063646Z * [new tag] v0.1.3 -> v0.1.3 2025-07-24T03:47:32.6063978Z * [new tag] v0.1.4 -> v0.1.4 2025-07-24T03:47:32.6064303Z * [new tag] v0.1.5 -> v0.1.5 2025-07-24T03:47:32.6064635Z * [new tag] v0.1.6 -> v0.1.6 2025-07-24T03:47:32.6064955Z * [new tag] v0.1.7 -> v0.1.7 2025-07-24T03:47:32.6065285Z * [new tag] v0.1.8 -> v0.1.8 2025-07-24T03:47:32.6065607Z * [new tag] v0.1.9 -> v0.1.9 2025-07-24T03:47:32.6065938Z * [new tag] v0.2.0 -> v0.2.0 2025-07-24T03:47:32.6066272Z * [new tag] v0.3.0 -> v0.3.0 2025-07-24T03:47:32.6066595Z * [new tag] v0.3.1 -> v0.3.1 2025-07-24T03:47:32.6066921Z * [new tag] v0.4.0 -> v0.4.0 2025-07-24T03:47:32.6067239Z * [new tag] v0.4.1 -> v0.4.1 2025-07-24T03:47:32.6067568Z * [new tag] v1.0.0 -> v1.0.0 2025-07-24T03:47:32.6067904Z * [new tag] v1.0.0a0 -> v1.0.0a0 2025-07-24T03:47:32.6068242Z * [new tag] v1.0.1 -> v1.0.1 2025-07-24T03:47:32.6068579Z * [new tag] v1.0rc0 -> v1.0rc0 2025-07-24T03:47:32.6068911Z * [new tag] v1.0rc1 -> v1.0rc1 2025-07-24T03:47:32.6069288Z * [new tag] v1.1.0 -> v1.1.0 2025-07-24T03:47:32.6069657Z * [new tag] v1.1.0a0 -> v1.1.0a0 2025-07-24T03:47:32.6070010Z * [new tag] v1.10.0 -> v1.10.0 2025-07-24T03:47:32.6070349Z * [new tag] v1.10.0-rc1 -> v1.10.0-rc1 2025-07-24T03:47:32.6070706Z * [new tag] v1.10.0-rc2 -> v1.10.0-rc2 2025-07-24T03:47:32.6903851Z * [new tag] v1.10.0-rc3 -> v1.10.0-rc3 2025-07-24T03:47:32.6904266Z * [new tag] v1.10.1 -> v1.10.1 2025-07-24T03:47:32.6904649Z * [new tag] v1.10.1-rc1 -> v1.10.1-rc1 2025-07-24T03:47:32.6905010Z * [new tag] v1.10.2 -> v1.10.2 2025-07-24T03:47:32.6905350Z * [new tag] v1.10.2-rc1 -> v1.10.2-rc1 2025-07-24T03:47:32.6905716Z * [new tag] v1.11.0 -> v1.11.0 2025-07-24T03:47:32.6906077Z * [new tag] v1.11.0-rc1 -> v1.11.0-rc1 2025-07-24T03:47:32.6906450Z * [new tag] v1.11.0-rc2 -> v1.11.0-rc2 2025-07-24T03:47:32.6906791Z * [new tag] v1.11.0-rc3 -> v1.11.0-rc3 2025-07-24T03:47:32.6907139Z * [new tag] v1.11.0-rc4 -> v1.11.0-rc4 2025-07-24T03:47:32.6907487Z * [new tag] v1.11.0-rc5 -> v1.11.0-rc5 2025-07-24T03:47:32.6907832Z * [new tag] v1.11.0-rc6 -> v1.11.0-rc6 2025-07-24T03:47:32.6908184Z * [new tag] v1.11.0-rc7 -> v1.11.0-rc7 2025-07-24T03:47:32.6908517Z * [new tag] v1.12.0 -> v1.12.0 2025-07-24T03:47:32.6908861Z * [new tag] v1.12.0-rc1 -> v1.12.0-rc1 2025-07-24T03:47:32.6909212Z * [new tag] v1.12.0-rc2 -> v1.12.0-rc2 2025-07-24T03:47:32.6909723Z * [new tag] v1.12.0-rc3 -> v1.12.0-rc3 2025-07-24T03:47:32.6910201Z * [new tag] v1.12.0-rc4 -> v1.12.0-rc4 2025-07-24T03:47:32.6910546Z * [new tag] v1.12.0-rc5 -> v1.12.0-rc5 2025-07-24T03:47:32.6910900Z * [new tag] v1.12.0-rc6 -> v1.12.0-rc6 2025-07-24T03:47:32.6911250Z * [new tag] v1.12.0-rc7 -> v1.12.0-rc7 2025-07-24T03:47:32.6911602Z * [new tag] v1.12.0-rc8 -> v1.12.0-rc8 2025-07-24T03:47:32.6911954Z * [new tag] v1.12.1 -> v1.12.1 2025-07-24T03:47:32.6912285Z * [new tag] v1.12.1-rc1 -> v1.12.1-rc1 2025-07-24T03:47:32.6912635Z * [new tag] v1.12.1-rc2 -> v1.12.1-rc2 2025-07-24T03:47:32.6912971Z * [new tag] v1.12.1-rc3 -> v1.12.1-rc3 2025-07-24T03:47:32.6913317Z * [new tag] v1.12.1-rc4 -> v1.12.1-rc4 2025-07-24T03:47:32.6913673Z * [new tag] v1.12.1-rc5 -> v1.12.1-rc5 2025-07-24T03:47:32.6914018Z * [new tag] v1.13.0 -> v1.13.0 2025-07-24T03:47:32.6914365Z * [new tag] v1.13.0-rc1 -> v1.13.0-rc1 2025-07-24T03:47:32.6914704Z * [new tag] v1.13.0-rc2 -> v1.13.0-rc2 2025-07-24T03:47:32.6915047Z * [new tag] v1.13.0-rc3 -> v1.13.0-rc3 2025-07-24T03:47:32.6915385Z * [new tag] v1.13.0-rc4 -> v1.13.0-rc4 2025-07-24T03:47:32.6915730Z * [new tag] v1.13.0-rc5 -> v1.13.0-rc5 2025-07-24T03:47:32.6916069Z * [new tag] v1.13.0-rc6 -> v1.13.0-rc6 2025-07-24T03:47:32.6916415Z * [new tag] v1.13.1 -> v1.13.1 2025-07-24T03:47:32.6916753Z * [new tag] v1.13.1-rc1 -> v1.13.1-rc1 2025-07-24T03:47:32.6917098Z * [new tag] v1.2.0 -> v1.2.0 2025-07-24T03:47:32.6917443Z * [new tag] v1.2.0a0 -> v1.2.0a0 2025-07-24T03:47:32.6917774Z * [new tag] v1.3.0 -> v1.3.0 2025-07-24T03:47:32.6918113Z * [new tag] v1.3.0a0 -> v1.3.0a0 2025-07-24T03:47:32.6918450Z * [new tag] v1.3.1 -> v1.3.1 2025-07-24T03:47:32.6918777Z * [new tag] v1.4.0 -> v1.4.0 2025-07-24T03:47:32.6919118Z * [new tag] v1.4.0a0 -> v1.4.0a0 2025-07-24T03:47:32.6919451Z * [new tag] v1.4.1 -> v1.4.1 2025-07-24T03:47:32.6919786Z * [new tag] v1.5.0 -> v1.5.0 2025-07-24T03:47:32.6920124Z * [new tag] v1.5.0-rc1 -> v1.5.0-rc1 2025-07-24T03:47:32.6920487Z * [new tag] v1.5.0-rc2 -> v1.5.0-rc2 2025-07-24T03:47:32.6920842Z * [new tag] v1.5.0-rc3 -> v1.5.0-rc3 2025-07-24T03:47:32.6921194Z * [new tag] v1.5.0-rc4 -> v1.5.0-rc4 2025-07-24T03:47:32.6921539Z * [new tag] v1.5.0-rc5 -> v1.5.0-rc5 2025-07-24T03:47:32.6921872Z * [new tag] v1.5.1 -> v1.5.1 2025-07-24T03:47:32.6922216Z * [new tag] v1.5.1-rc1 -> v1.5.1-rc1 2025-07-24T03:47:32.6922553Z * [new tag] v1.6.0 -> v1.6.0 2025-07-24T03:47:32.6922895Z * [new tag] v1.6.0-rc1 -> v1.6.0-rc1 2025-07-24T03:47:32.6923245Z * [new tag] v1.6.0-rc2 -> v1.6.0-rc2 2025-07-24T03:47:32.6923583Z * [new tag] v1.6.0-rc3 -> v1.6.0-rc3 2025-07-24T03:47:32.6924056Z * [new tag] v1.6.0-rc4 -> v1.6.0-rc4 2025-07-24T03:47:32.7325912Z * [new tag] v1.6.0-rc5 -> v1.6.0-rc5 2025-07-24T03:47:32.7326340Z * [new tag] v1.6.0-rc6 -> v1.6.0-rc6 2025-07-24T03:47:32.7326706Z * [new tag] v1.6.0-rc7 -> v1.6.0-rc7 2025-07-24T03:47:32.7327058Z * [new tag] v1.7.0 -> v1.7.0 2025-07-24T03:47:32.7327409Z * [new tag] v1.7.0-rc1 -> v1.7.0-rc1 2025-07-24T03:47:32.7327762Z * [new tag] v1.7.0-rc2 -> v1.7.0-rc2 2025-07-24T03:47:32.7328149Z * [new tag] v1.7.0-rc3 -> v1.7.0-rc3 2025-07-24T03:47:32.7328498Z * [new tag] v1.7.0-rc4 -> v1.7.0-rc4 2025-07-24T03:47:32.7328834Z * [new tag] v1.7.1 -> v1.7.1 2025-07-24T03:47:32.7329178Z * [new tag] v1.7.1-rc1 -> v1.7.1-rc1 2025-07-24T03:47:32.7329556Z * [new tag] v1.7.1-rc2 -> v1.7.1-rc2 2025-07-24T03:47:32.7329908Z * [new tag] v1.7.1-rc3 -> v1.7.1-rc3 2025-07-24T03:47:32.7330252Z * [new tag] v1.8.0 -> v1.8.0 2025-07-24T03:47:32.7330583Z * [new tag] v1.8.0-rc1 -> v1.8.0-rc1 2025-07-24T03:47:32.7330931Z * [new tag] v1.8.0-rc2 -> v1.8.0-rc2 2025-07-24T03:47:32.7331272Z * [new tag] v1.8.0-rc3 -> v1.8.0-rc3 2025-07-24T03:47:32.7331622Z * [new tag] v1.8.0-rc4 -> v1.8.0-rc4 2025-07-24T03:47:32.7331969Z * [new tag] v1.8.0-rc5 -> v1.8.0-rc5 2025-07-24T03:47:32.7332301Z * [new tag] v1.8.1 -> v1.8.1 2025-07-24T03:47:32.7332646Z * [new tag] v1.8.1-rc1 -> v1.8.1-rc1 2025-07-24T03:47:32.7333000Z * [new tag] v1.8.1-rc2 -> v1.8.1-rc2 2025-07-24T03:47:32.7333345Z * [new tag] v1.8.1-rc3 -> v1.8.1-rc3 2025-07-24T03:47:32.7333674Z * [new tag] v1.8.2 -> v1.8.2 2025-07-24T03:47:32.7334013Z * [new tag] v1.8.2-rc1 -> v1.8.2-rc1 2025-07-24T03:47:32.7334355Z * [new tag] v1.9.0 -> v1.9.0 2025-07-24T03:47:32.7334697Z * [new tag] v1.9.0-rc1 -> v1.9.0-rc1 2025-07-24T03:47:32.7335045Z * [new tag] v1.9.0-rc2 -> v1.9.0-rc2 2025-07-24T03:47:32.7335388Z * [new tag] v1.9.0-rc3 -> v1.9.0-rc3 2025-07-24T03:47:32.7335736Z * [new tag] v1.9.0-rc4 -> v1.9.0-rc4 2025-07-24T03:47:32.7336068Z * [new tag] v1.9.1 -> v1.9.1 2025-07-24T03:47:32.7336416Z * [new tag] v1.9.1-rc1 -> v1.9.1-rc1 2025-07-24T03:47:32.7336768Z * [new tag] v1.9.1-rc2 -> v1.9.1-rc2 2025-07-24T03:47:32.7337123Z * [new tag] v2.0.0 -> v2.0.0 2025-07-24T03:47:32.7337474Z * [new tag] v2.0.0-rc1 -> v2.0.0-rc1 2025-07-24T03:47:32.7337813Z * [new tag] v2.0.0-rc2 -> v2.0.0-rc2 2025-07-24T03:47:32.7338165Z * [new tag] v2.0.0-rc3 -> v2.0.0-rc3 2025-07-24T03:47:32.7338512Z * [new tag] v2.0.0-rc4 -> v2.0.0-rc4 2025-07-24T03:47:32.7338853Z * [new tag] v2.0.0-rc5 -> v2.0.0-rc5 2025-07-24T03:47:32.7339199Z * [new tag] v2.0.0-rc6 -> v2.0.0-rc6 2025-07-24T03:47:32.7339537Z * [new tag] v2.0.1 -> v2.0.1 2025-07-24T03:47:32.7340081Z * [new tag] v2.0.1-rc1 -> v2.0.1-rc1 2025-07-24T03:47:32.7340559Z * [new tag] v2.0.1-rc2 -> v2.0.1-rc2 2025-07-24T03:47:32.7340908Z * [new tag] v2.0.1-rc3 -> v2.0.1-rc3 2025-07-24T03:47:32.7341263Z * [new tag] v2.0.1-rc4 -> v2.0.1-rc4 2025-07-24T03:47:32.7341598Z * [new tag] v2.1.0 -> v2.1.0 2025-07-24T03:47:32.7341938Z * [new tag] v2.1.0-rc1 -> v2.1.0-rc1 2025-07-24T03:47:32.7342275Z * [new tag] v2.1.0-rc2 -> v2.1.0-rc2 2025-07-24T03:47:32.7342622Z * [new tag] v2.1.0-rc3 -> v2.1.0-rc3 2025-07-24T03:47:32.7342973Z * [new tag] v2.1.0-rc4 -> v2.1.0-rc4 2025-07-24T03:47:32.7343309Z * [new tag] v2.1.0-rc5 -> v2.1.0-rc5 2025-07-24T03:47:32.7343656Z * [new tag] v2.1.0-rc6 -> v2.1.0-rc6 2025-07-24T03:47:32.7343990Z * [new tag] v2.1.1 -> v2.1.1 2025-07-24T03:47:32.7344334Z * [new tag] v2.1.1-rc1 -> v2.1.1-rc1 2025-07-24T03:47:32.7344671Z * [new tag] v2.1.1-rc2 -> v2.1.1-rc2 2025-07-24T03:47:32.7345015Z * [new tag] v2.1.1-rc3 -> v2.1.1-rc3 2025-07-24T03:47:32.7345359Z * [new tag] v2.1.1-rc4 -> v2.1.1-rc4 2025-07-24T03:47:32.7345700Z * [new tag] v2.1.1-rc5 -> v2.1.1-rc5 2025-07-24T03:47:32.7346045Z * [new tag] v2.1.1-rc6 -> v2.1.1-rc6 2025-07-24T03:47:32.7728826Z * [new tag] v2.1.2 -> v2.1.2 2025-07-24T03:47:32.7729268Z * [new tag] v2.1.2-rc1 -> v2.1.2-rc1 2025-07-24T03:47:32.7729677Z * [new tag] v2.1.2-rc2 -> v2.1.2-rc2 2025-07-24T03:47:32.7730116Z * [new tag] v2.1.2-rc3 -> v2.1.2-rc3 2025-07-24T03:47:32.7730511Z * [new tag] v2.2.0 -> v2.2.0 2025-07-24T03:47:32.7730895Z * [new tag] v2.2.0-rc1 -> v2.2.0-rc1 2025-07-24T03:47:32.7731245Z * [new tag] v2.2.0-rc2 -> v2.2.0-rc2 2025-07-24T03:47:32.7731632Z * [new tag] v2.2.0-rc3 -> v2.2.0-rc3 2025-07-24T03:47:32.7732021Z * [new tag] v2.2.0-rc4 -> v2.2.0-rc4 2025-07-24T03:47:32.7732406Z * [new tag] v2.2.0-rc5 -> v2.2.0-rc5 2025-07-24T03:47:32.7732787Z * [new tag] v2.2.0-rc6 -> v2.2.0-rc6 2025-07-24T03:47:32.7733132Z * [new tag] v2.2.0-rc7 -> v2.2.0-rc7 2025-07-24T03:47:32.7733521Z * [new tag] v2.2.0-rc8 -> v2.2.0-rc8 2025-07-24T03:47:32.7733919Z * [new tag] v2.2.1 -> v2.2.1 2025-07-24T03:47:32.7734299Z * [new tag] v2.2.1-rc1 -> v2.2.1-rc1 2025-07-24T03:47:32.7734644Z * [new tag] v2.2.1-rc2 -> v2.2.1-rc2 2025-07-24T03:47:32.7735038Z * [new tag] v2.2.1-rc3 -> v2.2.1-rc3 2025-07-24T03:47:32.7735417Z * [new tag] v2.2.2 -> v2.2.2 2025-07-24T03:47:32.7735804Z * [new tag] v2.2.2-rc1 -> v2.2.2-rc1 2025-07-24T03:47:32.7736145Z * [new tag] v2.2.2-rc2 -> v2.2.2-rc2 2025-07-24T03:47:32.7736537Z * [new tag] v2.2.2-rc3 -> v2.2.2-rc3 2025-07-24T03:47:32.7736930Z * [new tag] v2.3.0 -> v2.3.0 2025-07-24T03:47:32.7737303Z * [new tag] v2.3.0-rc1 -> v2.3.0-rc1 2025-07-24T03:47:32.7737894Z * [new tag] v2.3.0-rc10 -> v2.3.0-rc10 2025-07-24T03:47:32.7738434Z * [new tag] v2.3.0-rc11 -> v2.3.0-rc11 2025-07-24T03:47:32.7738849Z * [new tag] v2.3.0-rc12 -> v2.3.0-rc12 2025-07-24T03:47:32.7739241Z * [new tag] v2.3.0-rc2 -> v2.3.0-rc2 2025-07-24T03:47:32.7739584Z * [new tag] v2.3.0-rc3 -> v2.3.0-rc3 2025-07-24T03:47:32.7739972Z * [new tag] v2.3.0-rc4 -> v2.3.0-rc4 2025-07-24T03:47:32.7740357Z * [new tag] v2.3.0-rc5 -> v2.3.0-rc5 2025-07-24T03:47:32.7740740Z * [new tag] v2.3.0-rc6 -> v2.3.0-rc6 2025-07-24T03:47:32.7741076Z * [new tag] v2.3.0-rc7 -> v2.3.0-rc7 2025-07-24T03:47:32.7741466Z * [new tag] v2.3.0-rc8 -> v2.3.0-rc8 2025-07-24T03:47:32.7741863Z * [new tag] v2.3.0-rc9 -> v2.3.0-rc9 2025-07-24T03:47:32.7742250Z * [new tag] v2.3.1 -> v2.3.1 2025-07-24T03:47:32.7742635Z * [new tag] v2.3.1-rc1 -> v2.3.1-rc1 2025-07-24T03:47:32.7742974Z * [new tag] v2.3.1-rc2 -> v2.3.1-rc2 2025-07-24T03:47:32.7743366Z * [new tag] v2.3.1-rc3 -> v2.3.1-rc3 2025-07-24T03:47:32.7743746Z * [new tag] v2.4.0 -> v2.4.0 2025-07-24T03:47:32.7744128Z * [new tag] v2.4.0-rc1 -> v2.4.0-rc1 2025-07-24T03:47:32.7744537Z * [new tag] v2.4.0-rc2 -> v2.4.0-rc2 2025-07-24T03:47:32.7744883Z * [new tag] v2.4.0-rc3 -> v2.4.0-rc3 2025-07-24T03:47:32.7745291Z * [new tag] v2.4.0-rc4 -> v2.4.0-rc4 2025-07-24T03:47:32.7745681Z * [new tag] v2.4.0-rc5 -> v2.4.0-rc5 2025-07-24T03:47:32.7746077Z * [new tag] v2.4.0-rc6 -> v2.4.0-rc6 2025-07-24T03:47:32.7746462Z * [new tag] v2.4.0-rc7 -> v2.4.0-rc7 2025-07-24T03:47:32.7746820Z * [new tag] v2.4.0-rc8 -> v2.4.0-rc8 2025-07-24T03:47:32.7747211Z * [new tag] v2.4.0-rc9 -> v2.4.0-rc9 2025-07-24T03:47:32.7747599Z * [new tag] v2.4.1 -> v2.4.1 2025-07-24T03:47:32.7747968Z * [new tag] v2.4.1-rc1 -> v2.4.1-rc1 2025-07-24T03:47:32.7748317Z * [new tag] v2.4.1-rc2 -> v2.4.1-rc2 2025-07-24T03:47:32.7748708Z * [new tag] v2.4.1-rc3 -> v2.4.1-rc3 2025-07-24T03:47:32.7749090Z * [new tag] v2.5.0 -> v2.5.0 2025-07-24T03:47:32.7749462Z * [new tag] v2.5.0-rc1 -> v2.5.0-rc1 2025-07-24T03:47:32.7749820Z * [new tag] v2.5.0-rc10 -> v2.5.0-rc10 2025-07-24T03:47:32.7750216Z * [new tag] v2.5.0-rc2 -> v2.5.0-rc2 2025-07-24T03:47:32.7750608Z * [new tag] v2.5.0-rc3 -> v2.5.0-rc3 2025-07-24T03:47:32.7751003Z * [new tag] v2.5.0-rc4 -> v2.5.0-rc4 2025-07-24T03:47:33.2538958Z * [new tag] v2.5.0-rc5 -> v2.5.0-rc5 2025-07-24T03:47:33.2539379Z * [new tag] v2.5.0-rc6 -> v2.5.0-rc6 2025-07-24T03:47:33.2539745Z * [new tag] v2.5.0-rc7 -> v2.5.0-rc7 2025-07-24T03:47:33.2540121Z * [new tag] v2.5.0-rc8 -> v2.5.0-rc8 2025-07-24T03:47:33.2540517Z * [new tag] v2.5.0-rc9 -> v2.5.0-rc9 2025-07-24T03:47:33.2540865Z * [new tag] v2.5.1 -> v2.5.1 2025-07-24T03:47:33.2541615Z * [new tag] v2.5.1-rc1 -> v2.5.1-rc1 2025-07-24T03:47:33.2541970Z * [new tag] v2.6.0 -> v2.6.0 2025-07-24T03:47:33.2542323Z * [new tag] v2.6.0-rc1 -> v2.6.0-rc1 2025-07-24T03:47:33.2542663Z * [new tag] v2.6.0-rc2 -> v2.6.0-rc2 2025-07-24T03:47:33.2543013Z * [new tag] v2.6.0-rc3 -> v2.6.0-rc3 2025-07-24T03:47:33.2543352Z * [new tag] v2.6.0-rc4 -> v2.6.0-rc4 2025-07-24T03:47:33.2543697Z * [new tag] v2.6.0-rc5 -> v2.6.0-rc5 2025-07-24T03:47:33.2544044Z * [new tag] v2.6.0-rc6 -> v2.6.0-rc6 2025-07-24T03:47:33.2544378Z * [new tag] v2.6.0-rc7 -> v2.6.0-rc7 2025-07-24T03:47:33.2544723Z * [new tag] v2.6.0-rc8 -> v2.6.0-rc8 2025-07-24T03:47:33.2545073Z * [new tag] v2.6.0-rc9 -> v2.6.0-rc9 2025-07-24T03:47:33.2545415Z * [new tag] v2.7.0 -> v2.7.0 2025-07-24T03:47:33.2545747Z * [new tag] v2.7.0-rc1 -> v2.7.0-rc1 2025-07-24T03:47:33.2546104Z * [new tag] v2.7.0-rc10 -> v2.7.0-rc10 2025-07-24T03:47:33.2546500Z * [new tag] v2.7.0-rc2 -> v2.7.0-rc2 2025-07-24T03:47:33.2546835Z * [new tag] v2.7.0-rc3 -> v2.7.0-rc3 2025-07-24T03:47:33.2547211Z * [new tag] v2.7.0-rc4 -> v2.7.0-rc4 2025-07-24T03:47:33.2547553Z * [new tag] v2.7.0-rc5 -> v2.7.0-rc5 2025-07-24T03:47:33.2547899Z * [new tag] v2.7.0-rc6 -> v2.7.0-rc6 2025-07-24T03:47:33.2548237Z * [new tag] v2.7.0-rc7 -> v2.7.0-rc7 2025-07-24T03:47:33.2548596Z * [new tag] v2.7.0-rc8 -> v2.7.0-rc8 2025-07-24T03:47:33.2548956Z * [new tag] v2.7.0-rc9 -> v2.7.0-rc9 2025-07-24T03:47:33.2549284Z * [new tag] v2.7.1 -> v2.7.1 2025-07-24T03:47:33.2549622Z * [new tag] v2.7.1-rc1 -> v2.7.1-rc1 2025-07-24T03:47:33.2549964Z * [new tag] v2.7.1-rc2 -> v2.7.1-rc2 2025-07-24T03:47:33.2550306Z * [new tag] v2.7.1-rc3 -> v2.7.1-rc3 2025-07-24T03:47:33.2550657Z * [new tag] v2.7.1-rc4 -> v2.7.1-rc4 2025-07-24T03:47:33.2551001Z * [new tag] v2.7.1-rc5 -> v2.7.1-rc5 2025-07-24T03:47:33.2551353Z * [new tag] v2.8.0-rc1 -> v2.8.0-rc1 2025-07-24T03:47:33.2551692Z * [new tag] v2.8.0-rc2 -> v2.8.0-rc2 2025-07-24T03:47:33.2552037Z * [new tag] v2.8.0-rc3 -> v2.8.0-rc3 2025-07-24T03:47:33.2552379Z * [new tag] v2.8.0-rc4 -> v2.8.0-rc4 2025-07-24T03:47:33.2552759Z * [new tag] v2.8.0-rc5 -> v2.8.0-rc5 2025-07-24T03:47:33.2553137Z * [new tag] v2.8.0-rc6 -> v2.8.0-rc6 2025-07-24T03:47:33.2553478Z * [new tag] v2.8.0-rc7 -> v2.8.0-rc7 2025-07-24T03:47:33.2553821Z * [new tag] v2.8.0-rc8 -> v2.8.0-rc8 2025-07-24T03:47:33.2554170Z * [new tag] whc_flight_1 -> whc_flight_1 2025-07-24T03:47:33.2554540Z * [new tag] whc_flight_2 -> whc_flight_2 2025-07-24T03:47:33.2554895Z * [new tag] whc_flight_4 -> whc_flight_4 2025-07-24T03:47:33.2785162Z [command]"C:\Program Files\Git\cmd\git.exe" rev-parse --verify --quiet 27c8ef1839e0747b36769efb192befc9308ff93c^{object} 2025-07-24T03:47:33.2991595Z 27c8ef1839e0747b36769efb192befc9308ff93c 2025-07-24T03:47:33.3026068Z ##[endgroup] 2025-07-24T03:47:33.3026440Z ##[group]Determining the checkout info 2025-07-24T03:47:33.3027829Z ##[endgroup] 2025-07-24T03:47:33.3040431Z [command]"C:\Program Files\Git\cmd\git.exe" sparse-checkout disable 2025-07-24T03:47:33.3324489Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all extensions.worktreeConfig 2025-07-24T03:47:33.3557597Z ##[group]Checking out the ref 2025-07-24T03:47:33.3567943Z [command]"C:\Program Files\Git\cmd\git.exe" checkout --progress --force 27c8ef1839e0747b36769efb192befc9308ff93c 2025-07-24T03:47:34.4395453Z Updating files: 7% (1520/19541) 2025-07-24T03:47:34.5084764Z Updating files: 8% (1564/19541) 2025-07-24T03:47:34.5815322Z Updating files: 9% (1759/19541) 2025-07-24T03:47:34.6944945Z Updating files: 10% (1955/19541) 2025-07-24T03:47:34.7696846Z Updating files: 11% (2150/19541) 2025-07-24T03:47:34.8487441Z Updating files: 12% (2345/19541) 2025-07-24T03:47:34.9283498Z Updating files: 13% (2541/19541) 2025-07-24T03:47:35.0017237Z Updating files: 14% (2736/19541) 2025-07-24T03:47:35.0630583Z Updating files: 15% (2932/19541) 2025-07-24T03:47:35.1322204Z Updating files: 16% (3127/19541) 2025-07-24T03:47:35.2124660Z Updating files: 17% (3322/19541) 2025-07-24T03:47:35.2809930Z Updating files: 18% (3518/19541) 2025-07-24T03:47:35.3523742Z Updating files: 19% (3713/19541) 2025-07-24T03:47:35.4400421Z Updating files: 20% (3909/19541) 2025-07-24T03:47:35.5151355Z Updating files: 20% (3973/19541) 2025-07-24T03:47:35.5828913Z Updating files: 21% (4104/19541) 2025-07-24T03:47:35.7628923Z Updating files: 22% (4300/19541) 2025-07-24T03:47:35.8370180Z Updating files: 23% (4495/19541) 2025-07-24T03:47:35.9228271Z Updating files: 24% (4690/19541) 2025-07-24T03:47:36.0534026Z Updating files: 25% (4886/19541) 2025-07-24T03:47:36.0917725Z Updating files: 26% (5081/19541) 2025-07-24T03:47:36.1305290Z Updating files: 27% (5277/19541) 2025-07-24T03:47:36.2046110Z Updating files: 28% (5472/19541) 2025-07-24T03:47:36.2450188Z Updating files: 29% (5667/19541) 2025-07-24T03:47:36.2906275Z Updating files: 30% (5863/19541) 2025-07-24T03:47:36.4442613Z Updating files: 31% (6058/19541) 2025-07-24T03:47:36.4951437Z Updating files: 31% (6142/19541) 2025-07-24T03:47:36.5862094Z Updating files: 32% (6254/19541) 2025-07-24T03:47:36.7192850Z Updating files: 33% (6449/19541) 2025-07-24T03:47:36.8321504Z Updating files: 34% (6644/19541) 2025-07-24T03:47:36.9159027Z Updating files: 35% (6840/19541) 2025-07-24T03:47:36.9804607Z Updating files: 36% (7035/19541) 2025-07-24T03:47:37.0235191Z Updating files: 37% (7231/19541) 2025-07-24T03:47:37.1022796Z Updating files: 38% (7426/19541) 2025-07-24T03:47:37.1461640Z Updating files: 39% (7621/19541) 2025-07-24T03:47:37.1890585Z Updating files: 40% (7817/19541) 2025-07-24T03:47:37.2719500Z Updating files: 41% (8012/19541) 2025-07-24T03:47:37.3096514Z Updating files: 42% (8208/19541) 2025-07-24T03:47:37.4623708Z Updating files: 43% (8403/19541) 2025-07-24T03:47:37.4721710Z Updating files: 43% (8546/19541) 2025-07-24T03:47:37.5094840Z Updating files: 44% (8599/19541) 2025-07-24T03:47:37.5461582Z Updating files: 45% (8794/19541) 2025-07-24T03:47:37.6123177Z Updating files: 46% (8989/19541) 2025-07-24T03:47:37.6487214Z Updating files: 47% (9185/19541) 2025-07-24T03:47:37.7933144Z Updating files: 48% (9380/19541) 2025-07-24T03:47:37.8419961Z Updating files: 49% (9576/19541) 2025-07-24T03:47:37.8922253Z Updating files: 50% (9771/19541) 2025-07-24T03:47:37.9618560Z Updating files: 51% (9966/19541) 2025-07-24T03:47:38.0157022Z Updating files: 52% (10162/19541) 2025-07-24T03:47:38.0685213Z Updating files: 53% (10357/19541) 2025-07-24T03:47:38.1462917Z Updating files: 54% (10553/19541) 2025-07-24T03:47:38.1877206Z Updating files: 55% (10748/19541) 2025-07-24T03:47:38.2652528Z Updating files: 56% (10943/19541) 2025-07-24T03:47:38.3063634Z Updating files: 57% (11139/19541) 2025-07-24T03:47:38.3533020Z Updating files: 58% (11334/19541) 2025-07-24T03:47:38.4311377Z Updating files: 59% (11530/19541) 2025-07-24T03:47:38.4387607Z Updating files: 59% (11702/19541) 2025-07-24T03:47:38.4834299Z Updating files: 60% (11725/19541) 2025-07-24T03:47:38.7268666Z Updating files: 61% (11921/19541) 2025-07-24T03:47:38.8051096Z Updating files: 62% (12116/19541) 2025-07-24T03:47:38.8552255Z Updating files: 63% (12311/19541) 2025-07-24T03:47:38.9373568Z Updating files: 64% (12507/19541) 2025-07-24T03:47:38.9840343Z Updating files: 65% (12702/19541) 2025-07-24T03:47:39.0280870Z Updating files: 66% (12898/19541) 2025-07-24T03:47:39.1067088Z Updating files: 67% (13093/19541) 2025-07-24T03:47:39.1478952Z Updating files: 68% (13288/19541) 2025-07-24T03:47:39.2244182Z Updating files: 69% (13484/19541) 2025-07-24T03:47:39.4003256Z Updating files: 70% (13679/19541) 2025-07-24T03:47:39.4315333Z Updating files: 71% (13875/19541) 2025-07-24T03:47:39.4893997Z Updating files: 71% (13924/19541) 2025-07-24T03:47:39.5878585Z Updating files: 72% (14070/19541) 2025-07-24T03:47:39.6642389Z Updating files: 73% (14265/19541) 2025-07-24T03:47:39.8093979Z Updating files: 74% (14461/19541) 2025-07-24T03:47:39.9183940Z Updating files: 75% (14656/19541) 2025-07-24T03:47:40.0434302Z Updating files: 76% (14852/19541) 2025-07-24T03:47:40.1497068Z Updating files: 77% (15047/19541) 2025-07-24T03:47:40.2247518Z Updating files: 78% (15242/19541) 2025-07-24T03:47:40.3506430Z Updating files: 79% (15438/19541) 2025-07-24T03:47:40.4334673Z Updating files: 80% (15633/19541) 2025-07-24T03:47:40.4671978Z Updating files: 80% (15769/19541) 2025-07-24T03:47:40.5801912Z Updating files: 81% (15829/19541) 2025-07-24T03:47:40.8804668Z Updating files: 82% (16024/19541) 2025-07-24T03:47:40.9624795Z Updating files: 83% (16220/19541) 2025-07-24T03:47:41.0724270Z Updating files: 84% (16415/19541) 2025-07-24T03:47:41.1605219Z Updating files: 85% (16610/19541) 2025-07-24T03:47:41.2971083Z Updating files: 86% (16806/19541) 2025-07-24T03:47:41.3776089Z Updating files: 87% (17001/19541) 2025-07-24T03:47:41.4326643Z Updating files: 88% (17197/19541) 2025-07-24T03:47:41.4899714Z Updating files: 88% (17333/19541) 2025-07-24T03:47:41.5637050Z Updating files: 89% (17392/19541) 2025-07-24T03:47:41.6486321Z Updating files: 90% (17587/19541) 2025-07-24T03:47:41.7772422Z Updating files: 91% (17783/19541) 2025-07-24T03:47:41.8538180Z Updating files: 92% (17978/19541) 2025-07-24T03:47:41.9809326Z Updating files: 93% (18174/19541) 2025-07-24T03:47:42.3850939Z Updating files: 94% (18369/19541) 2025-07-24T03:47:42.4499485Z Updating files: 95% (18564/19541) 2025-07-24T03:47:42.4694634Z Updating files: 95% (18716/19541) 2025-07-24T03:47:42.5755295Z Updating files: 96% (18760/19541) 2025-07-24T03:47:42.6544527Z Updating files: 97% (18955/19541) 2025-07-24T03:47:42.7941357Z Updating files: 98% (19151/19541) 2025-07-24T03:47:42.8976529Z Updating files: 99% (19346/19541) 2025-07-24T03:47:42.8976906Z Updating files: 100% (19541/19541) 2025-07-24T03:47:42.8977165Z Updating files: 100% (19541/19541), done. 2025-07-24T03:47:42.9418955Z Note: switching to '27c8ef1839e0747b36769efb192befc9308ff93c'. 2025-07-24T03:47:42.9419304Z 2025-07-24T03:47:42.9419519Z You are in 'detached HEAD' state. You can look around, make experimental 2025-07-24T03:47:42.9420114Z changes and commit them, and you can discard any commits you make in this 2025-07-24T03:47:42.9420681Z state without impacting any branches by switching back to a branch. 2025-07-24T03:47:42.9421024Z 2025-07-24T03:47:42.9421211Z If you want to create a new branch to retain commits you create, you may 2025-07-24T03:47:42.9421767Z do so (now or later) by using -c with the switch command. Example: 2025-07-24T03:47:42.9422071Z 2025-07-24T03:47:42.9422193Z git switch -c 2025-07-24T03:47:42.9422420Z 2025-07-24T03:47:42.9422514Z Or undo this operation with: 2025-07-24T03:47:42.9422672Z 2025-07-24T03:47:42.9422984Z git switch - 2025-07-24T03:47:42.9423230Z 2025-07-24T03:47:42.9423446Z Turn off this advice by setting config variable advice.detachedHead to false 2025-07-24T03:47:42.9423774Z 2025-07-24T03:47:42.9423862Z HEAD is now at 27c8ef1839e Update 2025-07-24T03:47:42.9616287Z ##[endgroup] 2025-07-24T03:47:42.9616683Z ##[group]Setting up auth for fetching submodules 2025-07-24T03:47:42.9628603Z [command]"C:\Program Files\Git\cmd\git.exe" config --global http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-07-24T03:47:42.9883849Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --unset-all url.https://github.com/.insteadOf 2025-07-24T03:47:43.0115067Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf git@github.com: 2025-07-24T03:47:43.0351534Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-07-24T03:47:43.0593478Z ##[endgroup] 2025-07-24T03:47:43.0593915Z ##[group]Fetching submodules 2025-07-24T03:47:43.0603672Z [command]"C:\Program Files\Git\cmd\git.exe" submodule sync --recursive 2025-07-24T03:47:43.4379404Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 submodule update --init --force --recursive 2025-07-24T03:47:43.9343934Z Submodule 'android/libs/fbjni' (https://github.com/facebookincubator/fbjni.git) registered for path 'android/libs/fbjni' 2025-07-24T03:47:43.9344891Z Submodule 'third_party/NNPACK_deps/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'third_party/FP16' 2025-07-24T03:47:43.9345878Z Submodule 'third_party/NNPACK_deps/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'third_party/FXdiv' 2025-07-24T03:47:43.9346828Z Submodule 'third_party/NNPACK' (https://github.com/Maratyszcza/NNPACK.git) registered for path 'third_party/NNPACK' 2025-07-24T03:47:43.9347632Z Submodule 'third_party/NVTX' (https://github.com/NVIDIA/NVTX.git) registered for path 'third_party/NVTX' 2025-07-24T03:47:43.9348762Z Submodule 'third_party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'third_party/VulkanMemoryAllocator' 2025-07-24T03:47:43.9349885Z Submodule 'third_party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'third_party/XNNPACK' 2025-07-24T03:47:43.9350681Z Submodule 'third_party/aiter' (https://github.com/ROCm/aiter.git) registered for path 'third_party/aiter' 2025-07-24T03:47:43.9351504Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/benchmark' 2025-07-24T03:47:43.9352534Z Submodule 'third_party/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/composable_kernel' 2025-07-24T03:47:43.9353550Z Submodule 'third_party/cpp-httplib' (https://github.com/yhirose/cpp-httplib.git) registered for path 'third_party/cpp-httplib' 2025-07-24T03:47:43.9354437Z Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'third_party/cpuinfo' 2025-07-24T03:47:43.9355361Z Submodule 'third_party/cudnn_frontend' (https://github.com/NVIDIA/cudnn-frontend.git) registered for path 'third_party/cudnn_frontend' 2025-07-24T03:47:43.9356271Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/cutlass' 2025-07-24T03:47:43.9357071Z Submodule 'third_party/fbgemm' (https://github.com/pytorch/fbgemm) registered for path 'third_party/fbgemm' 2025-07-24T03:47:43.9358018Z Submodule 'third_party/flash-attention' (https://github.com/Dao-AILab/flash-attention.git) registered for path 'third_party/flash-attention' 2025-07-24T03:47:43.9359073Z Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third_party/flatbuffers' 2025-07-24T03:47:43.9359901Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/fmt' 2025-07-24T03:47:43.9360947Z Submodule 'third_party/gemmlowp/gemmlowp' (https://github.com/google/gemmlowp.git) registered for path 'third_party/gemmlowp/gemmlowp' 2025-07-24T03:47:43.9361949Z Submodule 'third_party/gloo' (https://github.com/pytorch/gloo) registered for path 'third_party/gloo' 2025-07-24T03:47:43.9362772Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/googletest' 2025-07-24T03:47:43.9363586Z Submodule 'third_party/ideep' (https://github.com/intel/ideep) registered for path 'third_party/ideep' 2025-07-24T03:47:43.9364414Z Submodule 'third_party/ittapi' (https://github.com/intel/ittapi.git) registered for path 'third_party/ittapi' 2025-07-24T03:47:43.9365241Z Submodule 'third_party/kineto' (https://github.com/pytorch/kineto) registered for path 'third_party/kineto' 2025-07-24T03:47:43.9366076Z Submodule 'third_party/kleidiai' (https://github.com/ARM-software/kleidiai.git) registered for path 'third_party/kleidiai' 2025-07-24T03:47:43.9367045Z Submodule 'third_party/mimalloc' (https://github.com/microsoft/mimalloc.git) registered for path 'third_party/mimalloc' 2025-07-24T03:47:43.9367912Z Submodule 'third_party/nlohmann' (https://github.com/nlohmann/json.git) registered for path 'third_party/nlohmann' 2025-07-24T03:47:43.9368698Z Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx' 2025-07-24T03:47:43.9369661Z Submodule 'third_party/opentelemetry-cpp' (https://github.com/open-telemetry/opentelemetry-cpp.git) registered for path 'third_party/opentelemetry-cpp' 2025-07-24T03:47:43.9370735Z Submodule 'third_party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third_party/pocketfft' 2025-07-24T03:47:43.9371699Z Submodule 'third_party/protobuf' (https://github.com/protocolbuffers/protobuf.git) registered for path 'third_party/protobuf' 2025-07-24T03:47:43.9372622Z Submodule 'third_party/NNPACK_deps/psimd' (https://github.com/Maratyszcza/psimd.git) registered for path 'third_party/psimd' 2025-07-24T03:47:43.9373633Z Submodule 'third_party/NNPACK_deps/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'third_party/pthreadpool' 2025-07-24T03:47:43.9417513Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/pybind11' 2025-07-24T03:47:43.9418439Z Submodule 'third_party/python-peachpy' (https://github.com/malfet/PeachPy.git) registered for path 'third_party/python-peachpy' 2025-07-24T03:47:43.9419353Z Submodule 'third_party/sleef' (https://github.com/shibatch/sleef) registered for path 'third_party/sleef' 2025-07-24T03:47:43.9420248Z Submodule 'third_party/tensorpipe' (https://github.com/pytorch/tensorpipe.git) registered for path 'third_party/tensorpipe' 2025-07-24T03:47:44.0098454Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/android/libs/fbjni'... 2025-07-24T03:47:44.4941495Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FP16'... 2025-07-24T03:47:44.4942611Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FXdiv'... 2025-07-24T03:47:45.6492366Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flatbuffers'... 2025-07-24T03:47:51.4031593Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NNPACK'... 2025-07-24T03:47:51.4032239Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/benchmark'... 2025-07-24T03:47:51.4032774Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX'... 2025-07-24T03:47:51.4033296Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gloo'... 2025-07-24T03:47:51.4033848Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gemmlowp/gemmlowp'... 2025-07-24T03:47:51.4034448Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpp-httplib'... 2025-07-24T03:47:51.4035001Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpuinfo'... 2025-07-24T03:47:51.4035763Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention'... 2025-07-24T03:47:51.4036468Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep'... 2025-07-24T03:47:51.4036970Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fmt'... 2025-07-24T03:47:51.4232535Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp'... 2025-07-24T03:48:17.1533161Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kleidiai'... 2025-07-24T03:48:17.1533763Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ittapi'... 2025-07-24T03:48:17.1534278Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/aiter'... 2025-07-24T03:48:17.1534872Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/VulkanMemoryAllocator'... 2025-07-24T03:48:17.1535496Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/mimalloc'... 2025-07-24T03:48:17.1536041Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/googletest'... 2025-07-24T03:48:17.1536746Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cudnn_frontend'... 2025-07-24T03:48:17.1537315Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pocketfft'... 2025-07-24T03:48:17.1537859Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/psimd'... 2025-07-24T03:48:17.1538397Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pthreadpool'... 2025-07-24T03:48:17.1538957Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm'... 2025-07-24T03:48:17.1539469Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto'... 2025-07-24T03:48:17.1540011Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/python-peachpy'... 2025-07-24T03:48:17.1540596Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe'... 2025-07-24T03:48:17.1541135Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cutlass'... 2025-07-24T03:48:17.1541702Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/composable_kernel'... 2025-07-24T03:48:17.1542320Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/sleef'... 2025-07-24T03:48:17.1542885Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pybind11'... 2025-07-24T03:48:17.1543410Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx'... 2025-07-24T03:48:17.1543920Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/nlohmann'... 2025-07-24T03:48:17.1544453Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/XNNPACK'... 2025-07-24T03:48:17.1544985Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf'... 2025-07-24T03:48:17.4406319Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-07-24T03:48:17.5412739Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-07-24T03:48:17.6201883Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-07-24T03:48:17.8541601Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-07-24T03:48:18.2446417Z Submodule path 'third_party/NVTX': checked out '2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07' 2025-07-24T03:48:18.7338449Z Submodule path 'third_party/VulkanMemoryAllocator': checked out '1d8f600fd424278486eade7ed3e877c99f0846b1' 2025-07-24T03:48:25.4395037Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-07-24T03:48:26.3178981Z Submodule path 'third_party/aiter': checked out '01aae101b9e5e94d6c16a9514c9fb8df99c93150' 2025-07-24T03:48:26.3289721Z Submodule '3rdparty/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/aiter/3rdparty/composable_kernel' 2025-07-24T03:48:29.4935717Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/aiter/3rdparty/composable_kernel'... 2025-07-24T03:48:36.0619588Z Submodule path 'third_party/aiter/3rdparty/composable_kernel': checked out 'cffe8fa2a442ac8e80dd236a1a5d24fe3d7e0cbf' 2025-07-24T03:48:36.3231084Z Submodule path 'third_party/benchmark': checked out '299e5928955cc62af9968370293b916f5130916f' 2025-07-24T03:48:38.8595072Z Submodule path 'third_party/composable_kernel': checked out '434d19f696da62c12b5372b32cbc9ba968588d7e' 2025-07-24T03:48:39.7404420Z Submodule path 'third_party/cpp-httplib': checked out '3af7f2c16147f3fbc6e4d717032daf505dc1652c' 2025-07-24T03:48:40.2458132Z Submodule path 'third_party/cpuinfo': checked out '5e3d2445e6a84d9599bee2bf78edbb4d80865e1d' 2025-07-24T03:48:40.5908750Z Submodule path 'third_party/cudnn_frontend': checked out 'f937055efc6d414d11f4c6577e3977fe74f35fb6' 2025-07-24T03:48:46.7547936Z Submodule path 'third_party/cutlass': checked out 'b995f933179c22d3fe0d871c3a53d11e4681950f' 2025-07-24T03:48:47.9753410Z Submodule path 'third_party/fbgemm': checked out '157e88b750c452bef2ab4653fe9d1eeb151ce4c3' 2025-07-24T03:48:47.9967065Z Submodule 'external/asmjit' (https://github.com/asmjit/asmjit.git) registered for path 'third_party/fbgemm/external/asmjit' 2025-07-24T03:48:47.9968159Z Submodule 'external/composable_kernel' (https://github.com/jwfromm/composable_kernel.git) registered for path 'third_party/fbgemm/external/composable_kernel' 2025-07-24T03:48:47.9969272Z Submodule 'external/cpuinfo' (https://github.com/pytorch/cpuinfo) registered for path 'third_party/fbgemm/external/cpuinfo' 2025-07-24T03:48:47.9970200Z Submodule 'external/cutlass' (https://github.com/jwfromm/cutlass) registered for path 'third_party/fbgemm/external/cutlass' 2025-07-24T03:48:47.9971145Z Submodule 'external/googletest' (https://github.com/google/googletest) registered for path 'third_party/fbgemm/external/googletest' 2025-07-24T03:48:47.9972230Z Submodule 'external/hipify_torch' (https://github.com/ROCmSoftwarePlatform/hipify_torch.git) registered for path 'third_party/fbgemm/external/hipify_torch' 2025-07-24T03:48:47.9973265Z Submodule 'external/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/fbgemm/external/json' 2025-07-24T03:48:48.0503546Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/asmjit'... 2025-07-24T03:48:57.4208173Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/hipify_torch'... 2025-07-24T03:48:57.4208941Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cpuinfo'... 2025-07-24T03:48:57.4209719Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/composable_kernel'... 2025-07-24T03:48:57.4210489Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/googletest'... 2025-07-24T03:48:57.4211177Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cutlass'... 2025-07-24T03:48:57.4211826Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/json'... 2025-07-24T03:48:57.6979936Z Submodule path 'third_party/fbgemm/external/asmjit': checked out 'e5d7c0bd5d9aec44d68830187138149e6a8c4e32' 2025-07-24T03:49:01.4977353Z Submodule path 'third_party/fbgemm/external/composable_kernel': checked out '4a61bdd4bd4ed730e078aebc7c0fcf046ff29406' 2025-07-24T03:49:02.2367009Z Submodule path 'third_party/fbgemm/external/cpuinfo': checked out '6543fec09b2f04ac4a666882998b534afc9c1349' 2025-07-24T03:49:02.8486928Z From https://github.com/jwfromm/cutlass 2025-07-24T03:49:02.8487402Z * branch 3ed8d2ec4ba35ef5d9d8353826209b6f868f63d3 -> FETCH_HEAD 2025-07-24T03:49:09.4125376Z Submodule path 'third_party/fbgemm/external/cutlass': checked out '3ed8d2ec4ba35ef5d9d8353826209b6f868f63d3' 2025-07-24T03:49:10.4425339Z Submodule path 'third_party/fbgemm/external/googletest': checked out 'f8d7d77c06936315286eb55f8de22cd23c188571' 2025-07-24T03:49:10.5236775Z Submodule path 'third_party/fbgemm/external/hipify_torch': checked out 'a4337c69fe0e2552a7b7b0669178926beeed828c' 2025-07-24T03:49:11.5211825Z Submodule path 'third_party/fbgemm/external/json': checked out '9cca280a4d0ccf0c08f47a99aa71d1b0e52f8d03' 2025-07-24T03:49:12.0657541Z Submodule path 'third_party/flash-attention': checked out '979702c87a8713a8e0a5e9fee122b90d2ef13be5' 2025-07-24T03:49:12.0782731Z Submodule 'csrc/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/flash-attention/csrc/composable_kernel' 2025-07-24T03:49:12.0783831Z Submodule 'csrc/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/flash-attention/csrc/cutlass' 2025-07-24T03:49:17.1195581Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/composable_kernel'... 2025-07-24T03:49:17.1196405Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/cutlass'... 2025-07-24T03:49:20.7465124Z Submodule path 'third_party/flash-attention/csrc/composable_kernel': checked out '888317e698e9803c62bd38568abc9e05d7709f33' 2025-07-24T03:49:24.6077699Z Submodule path 'third_party/flash-attention/csrc/cutlass': checked out 'c506e16788cb08416a4a57e11a9067beeee29420' 2025-07-24T03:49:25.9350979Z Submodule path 'third_party/flatbuffers': checked out 'a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757' 2025-07-24T03:49:26.4848110Z Submodule path 'third_party/fmt': checked out '40626af88bd7df9a5fb80be7b25ac85b122d6c21' 2025-07-24T03:49:27.5900504Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-07-24T03:49:27.7774691Z Submodule path 'third_party/gloo': checked out 'c7b7b022c124d9643957d9bd55f57ac59fce8fa2' 2025-07-24T03:49:28.0558013Z Submodule path 'third_party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-07-24T03:49:28.1560951Z Submodule path 'third_party/ideep': checked out '719d8e6cd7f7a0e01b155657526d693acf97c2b3' 2025-07-24T03:49:28.1661927Z Submodule 'mkl-dnn' (https://github.com/intel/mkl-dnn.git) registered for path 'third_party/ideep/mkl-dnn' 2025-07-24T03:49:42.1959636Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep/mkl-dnn'... 2025-07-24T03:49:45.3326748Z Submodule path 'third_party/ideep/mkl-dnn': checked out '8d263e693366ef8db40acc569cc7d8edf644556d' 2025-07-24T03:49:45.4579848Z Submodule path 'third_party/ittapi': checked out 'dec1d23ca65ab069d225dfe40dea14f455170959' 2025-07-24T03:49:45.9209626Z Submodule path 'third_party/kineto': checked out '5e7501833f1021ce6f618572d3baf657b6319658' 2025-07-24T03:49:45.9356106Z Submodule 'libkineto/third_party/dynolog' (https://github.com/facebookincubator/dynolog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-24T03:49:45.9357274Z Submodule 'libkineto/third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/fmt' 2025-07-24T03:49:45.9358415Z Submodule 'libkineto/third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/googletest' 2025-07-24T03:49:47.7118053Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog'... 2025-07-24T03:49:47.7118894Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/fmt'... 2025-07-24T03:49:47.7119670Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/googletest'... 2025-07-24T03:49:48.2932099Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2025-07-24T03:49:48.3161416Z Submodule 'third_party/DCGM' (https://github.com/NVIDIA/DCGM.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-24T03:49:48.3162763Z Submodule 'third_party/cpr' (https://github.com/libcpr/cpr.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-24T03:49:48.3165165Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-24T03:49:48.3166762Z Submodule 'third_party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-24T03:49:48.3168040Z Submodule 'third_party/glog' (https://github.com/google/glog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-24T03:49:48.3169438Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-24T03:49:48.3170880Z Submodule 'third_party/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-24T03:49:48.3172023Z Submodule 'third_party/pfs' (https://github.com/dtrugman/pfs.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-24T03:49:56.9107850Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM'... 2025-07-24T03:49:56.9108842Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/pfs'... 2025-07-24T03:49:56.9109776Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags'... 2025-07-24T03:49:56.9110714Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/cpr'... 2025-07-24T03:49:56.9111642Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/glog'... 2025-07-24T03:49:56.9112585Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/googletest'... 2025-07-24T03:49:56.9113542Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/fmt'... 2025-07-24T03:49:56.9114462Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/json'... 2025-07-24T03:49:57.8562407Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-07-24T03:49:58.0593222Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-07-24T03:49:58.4527443Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-07-24T03:49:58.5392757Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-07-24T03:49:58.5495167Z Submodule 'doc' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-24T03:49:58.9013780Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc'... 2025-07-24T03:49:58.9532999Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-07-24T03:49:59.0590622Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-07-24T03:49:59.2722078Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2025-07-24T03:50:00.0256662Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-07-24T03:50:00.1539254Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-07-24T03:50:00.3135765Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '0041a40c1350ba702d475b9c4ad62da77caea164' 2025-07-24T03:50:00.5678231Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2025-07-24T03:50:00.9266042Z Submodule path 'third_party/kleidiai': checked out 'cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7' 2025-07-24T03:50:01.1454143Z Submodule path 'third_party/mimalloc': checked out 'fbd8b99c2b828428947d70fdc046bb55609be93e' 2025-07-24T03:50:01.7866871Z Submodule path 'third_party/nlohmann': checked out '55f93686c01528224f448c19128836e7df245f72' 2025-07-24T03:50:05.1884026Z Submodule path 'third_party/onnx': checked out 'e709452ef2bbc1d113faf678c24e6d3467696e83' 2025-07-24T03:50:05.2066825Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx/third_party/pybind11' 2025-07-24T03:50:06.2393432Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx/third_party/pybind11'... 2025-07-24T03:50:06.4288743Z Submodule path 'third_party/onnx/third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-07-24T03:50:07.0214067Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-07-24T03:50:07.0447484Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark) registered for path 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-24T03:50:07.0448662Z Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-24T03:50:07.0449729Z Submodule 'third_party/ms-gsl' (https://github.com/microsoft/GSL) registered for path 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-24T03:50:07.0450801Z Submodule 'third_party/nlohmann-json' (https://github.com/nlohmann/json) registered for path 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-24T03:50:07.0452177Z Submodule 'third_party/opentelemetry-proto' (https://github.com/open-telemetry/opentelemetry-proto) registered for path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-24T03:50:07.0453583Z Submodule 'third_party/opentracing-cpp' (https://github.com/opentracing/opentracing-cpp.git) registered for path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-24T03:50:07.0454859Z Submodule 'third_party/prometheus-cpp' (https://github.com/jupp0r/prometheus-cpp) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-24T03:50:07.0455945Z Submodule 'tools/vcpkg' (https://github.com/Microsoft/vcpkg) registered for path 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-24T03:50:07.0810952Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/benchmark'... 2025-07-24T03:50:16.7700464Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentracing-cpp'... 2025-07-24T03:50:16.7701426Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentelemetry-proto'... 2025-07-24T03:50:16.7702281Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/ms-gsl'... 2025-07-24T03:50:16.7703094Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp'... 2025-07-24T03:50:16.7703926Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/googletest'... 2025-07-24T03:50:16.7704755Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/nlohmann-json'... 2025-07-24T03:50:16.7705584Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/tools/vcpkg'... 2025-07-24T03:50:16.8780992Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-07-24T03:50:17.0546612Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-07-24T03:50:17.1424202Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-07-24T03:50:17.8927866Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-07-24T03:50:18.0012881Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-07-24T03:50:18.1024531Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-07-24T03:50:18.2200560Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-07-24T03:50:18.2318926Z Submodule 'civetweb' (https://github.com/civetweb/civetweb.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-24T03:50:18.2320204Z Submodule 'googletest' (https://github.com/google/googletest.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-24T03:50:20.4489456Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb'... 2025-07-24T03:50:20.4490557Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest'... 2025-07-24T03:50:21.0971449Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-07-24T03:50:21.2830219Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-07-24T03:50:29.6357392Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-07-24T03:50:29.7211042Z Submodule path 'third_party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-07-24T03:50:31.0752736Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-07-24T03:50:31.0880368Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/protobuf/third_party/benchmark' 2025-07-24T03:50:31.0881471Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/protobuf/third_party/googletest' 2025-07-24T03:50:32.4826701Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/benchmark'... 2025-07-24T03:50:32.4827523Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/googletest'... 2025-07-24T03:50:32.5596958Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-07-24T03:50:32.8150956Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-07-24T03:50:32.8871101Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-07-24T03:50:32.9949273Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-07-24T03:50:33.3585269Z Submodule path 'third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-07-24T03:50:33.4942600Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-07-24T03:50:33.7815490Z Submodule path 'third_party/sleef': checked out '5a1d179df9cf652951b59010a2d2075372d67f68' 2025-07-24T03:50:33.9532035Z Submodule path 'third_party/tensorpipe': checked out '52791a2fd214b2a9dc5759d36725909c1daa7f2e' 2025-07-24T03:50:33.9694295Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/tensorpipe/third_party/googletest' 2025-07-24T03:50:33.9695338Z Submodule 'third_party/libnop' (https://github.com/google/libnop.git) registered for path 'third_party/tensorpipe/third_party/libnop' 2025-07-24T03:50:33.9696282Z Submodule 'third_party/libuv' (https://github.com/libuv/libuv.git) registered for path 'third_party/tensorpipe/third_party/libuv' 2025-07-24T03:50:33.9697317Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/tensorpipe/third_party/pybind11' 2025-07-24T03:50:36.3920222Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/googletest'... 2025-07-24T03:50:36.3921020Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libnop'... 2025-07-24T03:50:36.3921797Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11'... 2025-07-24T03:50:36.3922577Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libuv'... 2025-07-24T03:50:36.6162672Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-07-24T03:50:36.7576004Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-07-24T03:50:37.1014000Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '1dff88e5161cba5c59276d2070d2e304e4dcb242' 2025-07-24T03:50:37.2906263Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-07-24T03:50:37.3014861Z Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-24T03:50:37.5691199Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11/tools/clang'... 2025-07-24T03:50:37.6353816Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-07-24T03:50:37.6587402Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local gc.auto 0" 2025-07-24T03:50:38.0214171Z Entering 'android/libs/fbjni' 2025-07-24T03:50:38.0595973Z Entering 'third_party/FP16' 2025-07-24T03:50:38.0960627Z Entering 'third_party/FXdiv' 2025-07-24T03:50:38.1330608Z Entering 'third_party/NNPACK' 2025-07-24T03:50:38.1697732Z Entering 'third_party/NVTX' 2025-07-24T03:50:38.2068330Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-24T03:50:38.2428003Z Entering 'third_party/XNNPACK' 2025-07-24T03:50:38.2814280Z Entering 'third_party/aiter' 2025-07-24T03:50:38.3187273Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-24T03:50:38.3583103Z Entering 'third_party/benchmark' 2025-07-24T03:50:38.3945126Z Entering 'third_party/composable_kernel' 2025-07-24T03:50:38.4328416Z Entering 'third_party/cpp-httplib' 2025-07-24T03:50:38.4696816Z Entering 'third_party/cpuinfo' 2025-07-24T03:50:38.5065125Z Entering 'third_party/cudnn_frontend' 2025-07-24T03:50:38.5428554Z Entering 'third_party/cutlass' 2025-07-24T03:50:38.5804113Z Entering 'third_party/fbgemm' 2025-07-24T03:50:38.6221773Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-24T03:50:38.6590558Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-24T03:50:38.6956439Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-24T03:50:38.7325455Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-24T03:50:38.7703564Z Entering 'third_party/fbgemm/external/googletest' 2025-07-24T03:50:38.8066679Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-24T03:50:38.8475473Z Entering 'third_party/fbgemm/external/json' 2025-07-24T03:50:38.8862178Z Entering 'third_party/flash-attention' 2025-07-24T03:50:38.9218588Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-24T03:50:38.9636884Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-24T03:50:39.0036233Z Entering 'third_party/flatbuffers' 2025-07-24T03:50:39.0402783Z Entering 'third_party/fmt' 2025-07-24T03:50:39.0802455Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-24T03:50:39.1167263Z Entering 'third_party/gloo' 2025-07-24T03:50:39.1524357Z Entering 'third_party/googletest' 2025-07-24T03:50:39.1892587Z Entering 'third_party/ideep' 2025-07-24T03:50:39.2252154Z Entering 'third_party/ideep/mkl-dnn' 2025-07-24T03:50:39.2667703Z Entering 'third_party/ittapi' 2025-07-24T03:50:39.3038999Z Entering 'third_party/kineto' 2025-07-24T03:50:39.3432900Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-24T03:50:39.3797495Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-24T03:50:39.4172544Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-24T03:50:39.4535304Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-24T03:50:39.4908941Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-24T03:50:39.5292256Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-24T03:50:39.5678782Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-24T03:50:39.6045947Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-24T03:50:39.6426248Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-24T03:50:39.6832102Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-24T03:50:39.7226228Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-24T03:50:39.7597650Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-24T03:50:39.7983542Z Entering 'third_party/kleidiai' 2025-07-24T03:50:39.8342430Z Entering 'third_party/mimalloc' 2025-07-24T03:50:39.8718403Z Entering 'third_party/nlohmann' 2025-07-24T03:50:39.9080843Z Entering 'third_party/onnx' 2025-07-24T03:50:39.9473564Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-24T03:50:39.9857776Z Entering 'third_party/opentelemetry-cpp' 2025-07-24T03:50:40.0235187Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-24T03:50:40.0602291Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-24T03:50:40.0965244Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-24T03:50:40.1327598Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-24T03:50:40.1689798Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-24T03:50:41.0506786Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-24T03:50:41.0888951Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-24T03:50:41.1242256Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-24T03:50:41.1633001Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-24T03:50:41.2019436Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-24T03:50:41.2428677Z Entering 'third_party/pocketfft' 2025-07-24T03:50:41.2793322Z Entering 'third_party/protobuf' 2025-07-24T03:50:41.3144368Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-24T03:50:41.3521206Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-24T03:50:41.3902484Z Entering 'third_party/psimd' 2025-07-24T03:50:41.4261152Z Entering 'third_party/pthreadpool' 2025-07-24T03:50:41.4615973Z Entering 'third_party/pybind11' 2025-07-24T03:50:41.5018917Z Entering 'third_party/python-peachpy' 2025-07-24T03:50:41.5430653Z Entering 'third_party/sleef' 2025-07-24T03:50:41.5832056Z Entering 'third_party/tensorpipe' 2025-07-24T03:50:41.6162949Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-24T03:50:41.6544942Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-24T03:50:41.6915135Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-24T03:50:41.7281516Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-24T03:50:41.7657723Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-24T03:50:41.8140411Z ##[endgroup] 2025-07-24T03:50:41.8140819Z ##[group]Persisting credentials for submodules 2025-07-24T03:50:41.8158278Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'url\.https\:\/\/github\.com\/\.insteadOf' && git config --local --unset-all 'url.https://github.com/.insteadOf' || :\"" 2025-07-24T03:50:42.2040993Z Entering 'android/libs/fbjni' 2025-07-24T03:50:42.2616375Z Entering 'third_party/FP16' 2025-07-24T03:50:42.3170109Z Entering 'third_party/FXdiv' 2025-07-24T03:50:42.3709676Z Entering 'third_party/NNPACK' 2025-07-24T03:50:42.4255940Z Entering 'third_party/NVTX' 2025-07-24T03:50:42.4815919Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-24T03:50:42.5397892Z Entering 'third_party/XNNPACK' 2025-07-24T03:50:42.5975273Z Entering 'third_party/aiter' 2025-07-24T03:50:42.6517446Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-24T03:50:42.7131808Z Entering 'third_party/benchmark' 2025-07-24T03:50:42.7682800Z Entering 'third_party/composable_kernel' 2025-07-24T03:50:42.8273650Z Entering 'third_party/cpp-httplib' 2025-07-24T03:50:42.8822253Z Entering 'third_party/cpuinfo' 2025-07-24T03:50:42.9372802Z Entering 'third_party/cudnn_frontend' 2025-07-24T03:50:42.9902012Z Entering 'third_party/cutlass' 2025-07-24T03:50:43.0470904Z Entering 'third_party/fbgemm' 2025-07-24T03:50:43.1009628Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-24T03:50:43.1571635Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-24T03:50:43.2135409Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-24T03:50:43.2687290Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-24T03:50:43.3247031Z Entering 'third_party/fbgemm/external/googletest' 2025-07-24T03:50:43.3793107Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-24T03:50:43.4334622Z Entering 'third_party/fbgemm/external/json' 2025-07-24T03:50:43.4913745Z Entering 'third_party/flash-attention' 2025-07-24T03:50:43.5447981Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-24T03:50:43.6003061Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-24T03:50:43.6569828Z Entering 'third_party/flatbuffers' 2025-07-24T03:50:43.7122157Z Entering 'third_party/fmt' 2025-07-24T03:50:43.7682125Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-24T03:50:43.8262381Z Entering 'third_party/gloo' 2025-07-24T03:50:43.8816748Z Entering 'third_party/googletest' 2025-07-24T03:50:43.9368220Z Entering 'third_party/ideep' 2025-07-24T03:50:43.9906871Z Entering 'third_party/ideep/mkl-dnn' 2025-07-24T03:50:44.0498805Z Entering 'third_party/ittapi' 2025-07-24T03:50:44.1046061Z Entering 'third_party/kineto' 2025-07-24T03:50:44.1576279Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-24T03:50:44.2119294Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-24T03:50:44.2687175Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-24T03:50:44.3250215Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-24T03:50:44.3812072Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-24T03:50:44.4366276Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-24T03:50:44.4954923Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-24T03:50:44.5512025Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-24T03:50:44.6071841Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-24T03:50:44.6632165Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-24T03:50:44.7230654Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-24T03:50:44.7789945Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-24T03:50:44.8389626Z Entering 'third_party/kleidiai' 2025-07-24T03:50:44.8932207Z Entering 'third_party/mimalloc' 2025-07-24T03:50:44.9531184Z Entering 'third_party/nlohmann' 2025-07-24T03:50:45.0078219Z Entering 'third_party/onnx' 2025-07-24T03:50:45.0639526Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-24T03:50:45.1242599Z Entering 'third_party/opentelemetry-cpp' 2025-07-24T03:50:45.1783750Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-24T03:50:45.2354023Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-24T03:50:45.2916272Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-24T03:50:45.3468705Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-24T03:50:45.4032125Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-24T03:50:45.4599414Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-24T03:50:45.5210303Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-24T03:50:45.5743612Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-24T03:50:45.6305616Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-24T03:50:45.6897974Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-24T03:50:45.7507418Z Entering 'third_party/pocketfft' 2025-07-24T03:50:45.8090840Z Entering 'third_party/protobuf' 2025-07-24T03:50:45.8643147Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-24T03:50:45.9214787Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-24T03:50:45.9786733Z Entering 'third_party/psimd' 2025-07-24T03:50:46.0365443Z Entering 'third_party/pthreadpool' 2025-07-24T03:50:46.0918790Z Entering 'third_party/pybind11' 2025-07-24T03:50:46.1497798Z Entering 'third_party/python-peachpy' 2025-07-24T03:50:46.2055631Z Entering 'third_party/sleef' 2025-07-24T03:50:46.2594222Z Entering 'third_party/tensorpipe' 2025-07-24T03:50:46.3164769Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-24T03:50:46.3732012Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-24T03:50:46.4282016Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-24T03:50:46.4841274Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-24T03:50:46.5384541Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-24T03:50:46.6079715Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local 'http.https://github.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url\"" 2025-07-24T03:50:46.9794419Z Entering 'android/libs/fbjni' 2025-07-24T03:50:47.0331984Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-07-24T03:50:47.0465891Z Entering 'third_party/FP16' 2025-07-24T03:50:47.0996525Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-07-24T03:50:47.1142400Z Entering 'third_party/FXdiv' 2025-07-24T03:50:47.1698744Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-07-24T03:50:47.1843661Z Entering 'third_party/NNPACK' 2025-07-24T03:50:47.2377753Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-07-24T03:50:47.2524770Z Entering 'third_party/NVTX' 2025-07-24T03:50:47.3088753Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-07-24T03:50:47.3233007Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-24T03:50:47.3764391Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-07-24T03:50:47.3897896Z Entering 'third_party/XNNPACK' 2025-07-24T03:50:47.4429322Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-07-24T03:50:47.4581104Z Entering 'third_party/aiter' 2025-07-24T03:50:47.5141850Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/config remote.origin.url 2025-07-24T03:50:47.5276018Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-24T03:50:47.5821514Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/modules/3rdparty/composable_kernel/config remote.origin.url 2025-07-24T03:50:47.5983767Z Entering 'third_party/benchmark' 2025-07-24T03:50:47.6506902Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-07-24T03:50:47.6642072Z Entering 'third_party/composable_kernel' 2025-07-24T03:50:47.7165881Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-07-24T03:50:47.7336408Z Entering 'third_party/cpp-httplib' 2025-07-24T03:50:47.7860859Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-07-24T03:50:47.8018082Z Entering 'third_party/cpuinfo' 2025-07-24T03:50:47.8550362Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-07-24T03:50:47.8687435Z Entering 'third_party/cudnn_frontend' 2025-07-24T03:50:47.9236359Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-07-24T03:50:47.9370682Z Entering 'third_party/cutlass' 2025-07-24T03:50:47.9936740Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-07-24T03:50:48.0080064Z Entering 'third_party/fbgemm' 2025-07-24T03:50:48.0608251Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-07-24T03:50:48.0734231Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-24T03:50:48.1281695Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/asmjit/config remote.origin.url 2025-07-24T03:50:48.1421531Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-24T03:50:48.1970141Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/composable_kernel/config remote.origin.url 2025-07-24T03:50:48.2114801Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-24T03:50:48.2656440Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cpuinfo/config remote.origin.url 2025-07-24T03:50:48.2797751Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-24T03:50:48.3354545Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cutlass/config remote.origin.url 2025-07-24T03:50:48.3498662Z Entering 'third_party/fbgemm/external/googletest' 2025-07-24T03:50:48.4019114Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/googletest/config remote.origin.url 2025-07-24T03:50:48.4156512Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-24T03:50:48.4695468Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/hipify_torch/config remote.origin.url 2025-07-24T03:50:48.4830471Z Entering 'third_party/fbgemm/external/json' 2025-07-24T03:50:48.5399793Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/json/config remote.origin.url 2025-07-24T03:50:48.5557280Z Entering 'third_party/flash-attention' 2025-07-24T03:50:48.6100756Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/config remote.origin.url 2025-07-24T03:50:48.6222463Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-24T03:50:48.6751487Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/composable_kernel/config remote.origin.url 2025-07-24T03:50:48.6893688Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-24T03:50:48.7448513Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/cutlass/config remote.origin.url 2025-07-24T03:50:48.7616096Z Entering 'third_party/flatbuffers' 2025-07-24T03:50:48.8164628Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-07-24T03:50:48.8302252Z Entering 'third_party/fmt' 2025-07-24T03:50:48.8852503Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-07-24T03:50:48.8991612Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-24T03:50:48.9521639Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-07-24T03:50:48.9656071Z Entering 'third_party/gloo' 2025-07-24T03:50:49.0179628Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-07-24T03:50:49.0318287Z Entering 'third_party/googletest' 2025-07-24T03:50:49.0842275Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-07-24T03:50:49.0979006Z Entering 'third_party/ideep' 2025-07-24T03:50:49.1516716Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-07-24T03:50:49.1638315Z Entering 'third_party/ideep/mkl-dnn' 2025-07-24T03:50:49.2173628Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-07-24T03:50:49.2345991Z Entering 'third_party/ittapi' 2025-07-24T03:50:49.2880772Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-07-24T03:50:49.3021562Z Entering 'third_party/kineto' 2025-07-24T03:50:49.3554372Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-07-24T03:50:49.3675800Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-24T03:50:49.4215120Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2025-07-24T03:50:49.4355062Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-24T03:50:49.4892209Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/DCGM/config remote.origin.url 2025-07-24T03:50:49.5029328Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-24T03:50:49.5572847Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/cpr/config remote.origin.url 2025-07-24T03:50:49.5714195Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-24T03:50:49.6256908Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/fmt/config remote.origin.url 2025-07-24T03:50:49.6390303Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-24T03:50:49.6960944Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/gflags/config remote.origin.url 2025-07-24T03:50:49.7087015Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-24T03:50:49.7631220Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/gflags/modules/doc/config remote.origin.url 2025-07-24T03:50:49.7791284Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-24T03:50:49.8328764Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/glog/config remote.origin.url 2025-07-24T03:50:49.8472311Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-24T03:50:49.8999967Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/googletest/config remote.origin.url 2025-07-24T03:50:49.9135637Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-24T03:50:49.9686163Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/json/config remote.origin.url 2025-07-24T03:50:49.9824221Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-24T03:50:50.0364192Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/pfs/config remote.origin.url 2025-07-24T03:50:50.0517819Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-24T03:50:50.1047529Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2025-07-24T03:50:50.1187522Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-24T03:50:50.1729106Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2025-07-24T03:50:50.1884395Z Entering 'third_party/kleidiai' 2025-07-24T03:50:50.2434007Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-07-24T03:50:50.2572427Z Entering 'third_party/mimalloc' 2025-07-24T03:50:50.3123513Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-07-24T03:50:50.3263767Z Entering 'third_party/nlohmann' 2025-07-24T03:50:50.3782096Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-07-24T03:50:50.3919975Z Entering 'third_party/onnx' 2025-07-24T03:50:50.4447007Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-07-24T03:50:50.4589835Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-24T03:50:50.5134123Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-07-24T03:50:50.5291223Z Entering 'third_party/opentelemetry-cpp' 2025-07-24T03:50:50.5826220Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-07-24T03:50:50.5952404Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-24T03:50:50.6497478Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-07-24T03:50:50.6632932Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-24T03:50:50.7158043Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-07-24T03:50:50.7294263Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-24T03:50:50.7817565Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2025-07-24T03:50:50.7953976Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-24T03:50:50.8501720Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2025-07-24T03:50:50.8640333Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-24T03:50:50.9174581Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentelemetry-proto/config remote.origin.url 2025-07-24T03:50:50.9311110Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-24T03:50:50.9853294Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentracing-cpp/config remote.origin.url 2025-07-24T03:50:50.9993286Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-24T03:50:51.1194014Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/config remote.origin.url 2025-07-24T03:50:51.1326088Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-24T03:50:51.1889603Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/modules/civetweb/config remote.origin.url 2025-07-24T03:50:51.2034541Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-24T03:50:51.2606821Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/modules/googletest/config remote.origin.url 2025-07-24T03:50:51.2760726Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-24T03:50:51.3285696Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-07-24T03:50:51.3490612Z Entering 'third_party/pocketfft' 2025-07-24T03:50:51.4009459Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-07-24T03:50:51.4144128Z Entering 'third_party/protobuf' 2025-07-24T03:50:51.5372665Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-07-24T03:50:51.5511312Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-24T03:50:51.6048618Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-07-24T03:50:51.6182011Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-24T03:50:51.6711772Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-07-24T03:50:51.6863972Z Entering 'third_party/psimd' 2025-07-24T03:50:51.7383275Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-07-24T03:50:51.7523437Z Entering 'third_party/pthreadpool' 2025-07-24T03:50:51.8042835Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-07-24T03:50:51.8175305Z Entering 'third_party/pybind11' 2025-07-24T03:50:51.8696613Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-07-24T03:50:51.8832406Z Entering 'third_party/python-peachpy' 2025-07-24T03:50:51.9360547Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-07-24T03:50:51.9525600Z Entering 'third_party/sleef' 2025-07-24T03:50:52.0044057Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-07-24T03:50:52.0177634Z Entering 'third_party/tensorpipe' 2025-07-24T03:50:52.0729092Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-07-24T03:50:52.0851455Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-24T03:50:52.1385342Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-07-24T03:50:52.1523350Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-24T03:50:52.2069223Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-07-24T03:50:52.2204678Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-24T03:50:52.2755319Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-07-24T03:50:52.2898793Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-24T03:50:52.3450201Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-07-24T03:50:52.3575692Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-24T03:50:52.4129419Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/modules/tools/clang/config remote.origin.url 2025-07-24T03:50:52.4773143Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:'" 2025-07-24T03:50:52.8309121Z Entering 'android/libs/fbjni' 2025-07-24T03:50:52.8687713Z Entering 'third_party/FP16' 2025-07-24T03:50:52.9066141Z Entering 'third_party/FXdiv' 2025-07-24T03:50:52.9425138Z Entering 'third_party/NNPACK' 2025-07-24T03:50:52.9804867Z Entering 'third_party/NVTX' 2025-07-24T03:50:53.0171782Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-24T03:50:53.0529712Z Entering 'third_party/XNNPACK' 2025-07-24T03:50:53.0915162Z Entering 'third_party/aiter' 2025-07-24T03:50:53.1732971Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-24T03:50:53.2141087Z Entering 'third_party/benchmark' 2025-07-24T03:50:53.2503694Z Entering 'third_party/composable_kernel' 2025-07-24T03:50:53.2876176Z Entering 'third_party/cpp-httplib' 2025-07-24T03:50:53.3238134Z Entering 'third_party/cpuinfo' 2025-07-24T03:50:53.3600303Z Entering 'third_party/cudnn_frontend' 2025-07-24T03:50:53.3954688Z Entering 'third_party/cutlass' 2025-07-24T03:50:53.4355362Z Entering 'third_party/fbgemm' 2025-07-24T03:50:53.4708939Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-24T03:50:53.5077183Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-24T03:50:53.5455502Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-24T03:50:53.5835215Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-24T03:50:53.6214202Z Entering 'third_party/fbgemm/external/googletest' 2025-07-24T03:50:53.6606060Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-24T03:50:53.6961684Z Entering 'third_party/fbgemm/external/json' 2025-07-24T03:50:53.7352843Z Entering 'third_party/flash-attention' 2025-07-24T03:50:53.7720185Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-24T03:50:53.8096192Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-24T03:50:53.8489866Z Entering 'third_party/flatbuffers' 2025-07-24T03:50:53.8860213Z Entering 'third_party/fmt' 2025-07-24T03:50:53.9256144Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-24T03:50:53.9665137Z Entering 'third_party/gloo' 2025-07-24T03:50:54.0021586Z Entering 'third_party/googletest' 2025-07-24T03:50:54.0384222Z Entering 'third_party/ideep' 2025-07-24T03:50:54.0754698Z Entering 'third_party/ideep/mkl-dnn' 2025-07-24T03:50:54.1142866Z Entering 'third_party/ittapi' 2025-07-24T03:50:54.1537364Z Entering 'third_party/kineto' 2025-07-24T03:50:54.1900185Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-24T03:50:54.2265622Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-24T03:50:54.2669363Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-24T03:50:54.3008802Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-24T03:50:54.3373106Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-24T03:50:54.3801054Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-24T03:50:54.4197412Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-24T03:50:54.4560037Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-24T03:50:54.4934809Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-24T03:50:54.5304332Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-24T03:50:54.5708120Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-24T03:50:54.6082873Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-24T03:50:54.6465191Z Entering 'third_party/kleidiai' 2025-07-24T03:50:54.6853766Z Entering 'third_party/mimalloc' 2025-07-24T03:50:54.7215383Z Entering 'third_party/nlohmann' 2025-07-24T03:50:54.7581660Z Entering 'third_party/onnx' 2025-07-24T03:50:54.8005547Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-24T03:50:54.8424984Z Entering 'third_party/opentelemetry-cpp' 2025-07-24T03:50:54.8784827Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-24T03:50:54.9149687Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-24T03:50:54.9525331Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-24T03:50:54.9914014Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-24T03:50:55.0283639Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-24T03:50:55.0637712Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-24T03:50:55.0995435Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-24T03:50:55.1352713Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-24T03:50:55.1777213Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-24T03:50:55.2168666Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-24T03:50:55.2585047Z Entering 'third_party/pocketfft' 2025-07-24T03:50:55.2951127Z Entering 'third_party/protobuf' 2025-07-24T03:50:55.3323596Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-24T03:50:55.3685391Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-24T03:50:55.4057795Z Entering 'third_party/psimd' 2025-07-24T03:50:55.4418069Z Entering 'third_party/pthreadpool' 2025-07-24T03:50:55.4776309Z Entering 'third_party/pybind11' 2025-07-24T03:50:55.5130388Z Entering 'third_party/python-peachpy' 2025-07-24T03:50:55.5489222Z Entering 'third_party/sleef' 2025-07-24T03:50:55.5912677Z Entering 'third_party/tensorpipe' 2025-07-24T03:50:55.6273688Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-24T03:50:55.6642218Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-24T03:50:55.7000916Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-24T03:50:55.7363525Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-24T03:50:55.7707943Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-24T03:50:55.8221548Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:'" 2025-07-24T03:50:56.2103589Z Entering 'android/libs/fbjni' 2025-07-24T03:50:56.2488559Z Entering 'third_party/FP16' 2025-07-24T03:50:56.2874522Z Entering 'third_party/FXdiv' 2025-07-24T03:50:56.3246023Z Entering 'third_party/NNPACK' 2025-07-24T03:50:56.3615002Z Entering 'third_party/NVTX' 2025-07-24T03:50:56.3976771Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-24T03:50:56.4403159Z Entering 'third_party/XNNPACK' 2025-07-24T03:50:56.4814146Z Entering 'third_party/aiter' 2025-07-24T03:50:56.5183846Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-24T03:50:56.5597890Z Entering 'third_party/benchmark' 2025-07-24T03:50:56.5958492Z Entering 'third_party/composable_kernel' 2025-07-24T03:50:56.6336801Z Entering 'third_party/cpp-httplib' 2025-07-24T03:50:56.6750296Z Entering 'third_party/cpuinfo' 2025-07-24T03:50:56.7115653Z Entering 'third_party/cudnn_frontend' 2025-07-24T03:50:56.7483438Z Entering 'third_party/cutlass' 2025-07-24T03:50:56.7856386Z Entering 'third_party/fbgemm' 2025-07-24T03:50:56.8208868Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-24T03:50:56.8614685Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-24T03:50:56.8997324Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-24T03:50:56.9363194Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-24T03:50:56.9739209Z Entering 'third_party/fbgemm/external/googletest' 2025-07-24T03:50:57.0113605Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-24T03:50:57.0489754Z Entering 'third_party/fbgemm/external/json' 2025-07-24T03:50:57.0872034Z Entering 'third_party/flash-attention' 2025-07-24T03:50:57.1231191Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-24T03:50:57.1638916Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-24T03:50:57.2035469Z Entering 'third_party/flatbuffers' 2025-07-24T03:50:57.2414309Z Entering 'third_party/fmt' 2025-07-24T03:50:57.2776741Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-24T03:50:57.3139777Z Entering 'third_party/gloo' 2025-07-24T03:50:57.3497496Z Entering 'third_party/googletest' 2025-07-24T03:50:57.3861205Z Entering 'third_party/ideep' 2025-07-24T03:50:57.4204460Z Entering 'third_party/ideep/mkl-dnn' 2025-07-24T03:50:57.4592109Z Entering 'third_party/ittapi' 2025-07-24T03:50:57.4958331Z Entering 'third_party/kineto' 2025-07-24T03:50:57.5311027Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-24T03:50:57.5666638Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-24T03:50:57.6073390Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-24T03:50:57.6487638Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-24T03:50:57.6866704Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-24T03:50:57.7215056Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-24T03:50:57.7614471Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-24T03:50:57.9123643Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-24T03:50:57.9527460Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-24T03:50:57.9961952Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-24T03:50:58.0757183Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-24T03:50:58.1133332Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-24T03:50:58.1539810Z Entering 'third_party/kleidiai' 2025-07-24T03:50:58.1891250Z Entering 'third_party/mimalloc' 2025-07-24T03:50:58.2238914Z Entering 'third_party/nlohmann' 2025-07-24T03:50:58.2593826Z Entering 'third_party/onnx' 2025-07-24T03:50:58.2958980Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-24T03:50:58.3345152Z Entering 'third_party/opentelemetry-cpp' 2025-07-24T03:50:58.3697808Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-24T03:50:58.4085312Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-24T03:50:58.7701750Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-24T03:50:58.8063271Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-24T03:50:58.8440687Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-24T03:50:58.8841833Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-24T03:50:58.9219070Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-24T03:50:58.9584230Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-24T03:50:59.0010038Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-24T03:50:59.0394315Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-24T03:50:59.0828559Z Entering 'third_party/pocketfft' 2025-07-24T03:50:59.1191413Z Entering 'third_party/protobuf' 2025-07-24T03:50:59.1558575Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-24T03:50:59.1933335Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-24T03:50:59.2318112Z Entering 'third_party/psimd' 2025-07-24T03:50:59.2702924Z Entering 'third_party/pthreadpool' 2025-07-24T03:50:59.3073415Z Entering 'third_party/pybind11' 2025-07-24T03:50:59.3443476Z Entering 'third_party/python-peachpy' 2025-07-24T03:50:59.3830008Z Entering 'third_party/sleef' 2025-07-24T03:50:59.4215525Z Entering 'third_party/tensorpipe' 2025-07-24T03:50:59.4607545Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-24T03:50:59.5001337Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-24T03:50:59.5392362Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-24T03:50:59.5759226Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-24T03:50:59.6194784Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-24T03:50:59.7686575Z ##[endgroup] 2025-07-24T03:50:59.7960390Z [command]"C:\Program Files\Git\cmd\git.exe" log -1 --format=%H 2025-07-24T03:50:59.8167992Z 27c8ef1839e0747b36769efb192befc9308ff93c 2025-07-24T03:50:59.8474090Z Prepare all required actions 2025-07-24T03:50:59.8567509Z ##[group]Run ./.github/actions/setup-win 2025-07-24T03:50:59.8567787Z with: 2025-07-24T03:50:59.8567979Z cuda-version: cpu 2025-07-24T03:50:59.8568166Z env: 2025-07-24T03:50:59.8568354Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:50:59.8568586Z ##[endgroup] 2025-07-24T03:50:59.8638107Z ##[group]Run set -euo pipefail 2025-07-24T03:50:59.8638404Z set -euo pipefail 2025-07-24T03:50:59.8638648Z function get_ec2_metadata() { 2025-07-24T03:50:59.8638974Z  # Pulled from instance metadata endpoint for EC2 2025-07-24T03:50:59.8639571Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-07-24T03:50:59.8640124Z  category=$1 2025-07-24T03:50:59.8641010Z  curl -H "X-aws-ec2-metadata-token: $(curl -s -X PUT "http://169.254.169.254/latest/api/token" -H "X-aws-ec2-metadata-token-ttl-seconds: 30")" -fsSL "http://169.254.169.254/latest/meta-data/${category}" 2025-07-24T03:50:59.8641831Z } 2025-07-24T03:50:59.8642063Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-07-24T03:50:59.8642432Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-07-24T03:50:59.8642855Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-07-24T03:50:59.8643224Z echo "system info $(uname -a)" 2025-07-24T03:50:59.8663049Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:50:59.8663455Z env: 2025-07-24T03:50:59.8663698Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:50:59.8663937Z ##[endgroup] 2025-07-24T03:50:59.9448863Z ami-id: ami-0d9ca55f96fe08fd6 2025-07-24T03:50:59.9894015Z instance-id: i-0f5ed0981f3f5cb82 2025-07-24T03:51:00.0294369Z instance-type: c5d.4xlarge 2025-07-24T03:51:00.0507609Z system info MSYS_NT-10.0-17763 EC2AMAZ-IFQ8336 3.5.7-463ebcdc.x86_64 2025-03-03 17:26 UTC x86_64 Msys 2025-07-24T03:51:00.1315482Z ##[group]Run Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-07-24T03:51:00.1317531Z Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-07-24T03:51:00.1337617Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-24T03:51:00.1338060Z env: 2025-07-24T03:51:00.1338236Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:00.1338462Z ##[endgroup] 2025-07-24T03:51:00.4813430Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-24T03:51:00.4867177Z Finished 2025-07-24T03:51:00.5189878Z ##[group]Run # Windows conda is baked into the AMI at this location 2025-07-24T03:51:00.5190359Z # Windows conda is baked into the AMI at this location 2025-07-24T03:51:00.5190769Z CONDA="C:\Jenkins\Miniconda3\condabin\conda.bat" 2025-07-24T03:51:00.5191072Z  2025-07-24T03:51:00.5191258Z { 2025-07-24T03:51:00.5191505Z  echo "CONDA_RUN=${CONDA} run --no-capture-output"; 2025-07-24T03:51:00.5191883Z  echo "CONDA_BUILD=${CONDA} run conda-build"; 2025-07-24T03:51:00.5192210Z  echo "CONDA_INSTALL=${CONDA} install"; 2025-07-24T03:51:00.5192500Z } >> "${GITHUB_ENV}" 2025-07-24T03:51:00.5213353Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:00.5213784Z env: 2025-07-24T03:51:00.5213955Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:00.5214182Z ##[endgroup] 2025-07-24T03:51:00.5495247Z ##[group]Run set +e 2025-07-24T03:51:00.5495513Z set +e 2025-07-24T03:51:00.5495701Z set -x 2025-07-24T03:51:00.5495894Z  2025-07-24T03:51:00.5496108Z PYTHON3=$(${CONDA_RUN} which python3) 2025-07-24T03:51:00.5496391Z EXIT_CODE=$? 2025-07-24T03:51:00.5496597Z  2025-07-24T03:51:00.5498108Z if [[ "${EXIT_CODE}" == "0" ]]; then 2025-07-24T03:51:00.5498526Z  echo "Found Python3 at ${PYTHON3}, adding it into GITHUB_PATH" 2025-07-24T03:51:00.5498982Z  2025-07-24T03:51:00.5499376Z  PYTHON_PATH=$(dirname "${PYTHON3}") 2025-07-24T03:51:00.5499941Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-07-24T03:51:00.5500361Z else 2025-07-24T03:51:00.5500878Z  # According to https://docs.conda.io/en/latest/miniconda.html, we are using the Miniconda3 2025-07-24T03:51:00.5501562Z  # installation, which is Python 3 based. Its Python is default to Python 3. Further, there 2025-07-24T03:51:00.5502239Z  # is also the Miniconda installation that is Python 2 based, and both can be installed if 2025-07-24T03:51:00.5502783Z  # needed. In both cases, Python binary is just called python 2025-07-24T03:51:00.5503171Z  PYTHON=$(${CONDA_RUN} which python) 2025-07-24T03:51:00.5503455Z  EXIT_CODE=$? 2025-07-24T03:51:00.5503661Z  2025-07-24T03:51:00.5503854Z  if [[ "${EXIT_CODE}" == "0" ]]; then 2025-07-24T03:51:00.5504276Z  echo "Found Python at ${PYTHON}, set Python3 alias and add it into GITHUB_PATH" 2025-07-24T03:51:00.5504686Z  2025-07-24T03:51:00.5505022Z  PYTHON3=$(echo "${PYTHON}" | sed "s/python/python3/") 2025-07-24T03:51:00.5505953Z  # It's difficult to setup alias across GitHub action steps, so I just add a softlink 2025-07-24T03:51:00.5506505Z  # here pointing to Python 2025-07-24T03:51:00.5506793Z  ln -s "${PYTHON}" "${PYTHON3}" 2025-07-24T03:51:00.5507069Z  2025-07-24T03:51:00.5507265Z  PYTHON_PATH=$(dirname "${PYTHON}") 2025-07-24T03:51:00.5507593Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-07-24T03:51:00.5507871Z  else 2025-07-24T03:51:00.5508105Z  echo "Found no Python using ${CONDA_RUN}" 2025-07-24T03:51:00.5508400Z  fi 2025-07-24T03:51:00.5508567Z fi 2025-07-24T03:51:00.5531219Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:00.5531647Z env: 2025-07-24T03:51:00.5531825Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:00.5532190Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:00.5532699Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:00.5533445Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:00.5534093Z ##[endgroup] 2025-07-24T03:51:00.5768508Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python3 2025-07-24T03:51:14.1252433Z which: no python3 in (/c/Jenkins/Miniconda3:/c/Jenkins/Miniconda3/Library/mingw-w64/bin:/c/Jenkins/Miniconda3/Library/usr/bin:/c/Jenkins/Miniconda3/Library/bin:/c/Jenkins/Miniconda3/Scripts:/c/Jenkins/Miniconda3/bin:/c/Jenkins/Miniconda3/condabin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0:/c/Windows/System32/OpenSSH:/c/Program Files/Amazon/cfn-bootstrap:/c/ProgramData/chocolatey/bin:/c/Program Files/Amazon/AWSCLIV2:/cmd:/mingw64/bin:/usr/bin:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Users/runneruser/AppData/Local/Microsoft/WindowsApps) 2025-07-24T03:51:14.1279626Z ERROR conda.cli.main_run:execute(49): `conda run which python3` failed. (See above for error) 2025-07-24T03:51:14.2039533Z + PYTHON3= 2025-07-24T03:51:14.2039760Z + EXIT_CODE=1 2025-07-24T03:51:14.2040458Z + [[ 1 == \0 ]] 2025-07-24T03:51:14.2097632Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python 2025-07-24T03:51:15.8579133Z + PYTHON=/c/Jenkins/Miniconda3/python 2025-07-24T03:51:15.8579519Z + EXIT_CODE=0 2025-07-24T03:51:15.8579695Z + [[ 0 == \0 ]] 2025-07-24T03:51:15.8580209Z + echo 'Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH' 2025-07-24T03:51:15.8581869Z Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH 2025-07-24T03:51:15.8695234Z ++ echo /c/Jenkins/Miniconda3/python 2025-07-24T03:51:15.8745148Z ++ sed s/python/python3/ 2025-07-24T03:51:15.8806292Z + PYTHON3=/c/Jenkins/Miniconda3/python3 2025-07-24T03:51:15.8806720Z + ln -s /c/Jenkins/Miniconda3/python /c/Jenkins/Miniconda3/python3 2025-07-24T03:51:15.8988483Z ++ dirname /c/Jenkins/Miniconda3/python 2025-07-24T03:51:15.9058809Z + PYTHON_PATH=/c/Jenkins/Miniconda3 2025-07-24T03:51:15.9059174Z + echo /c/Jenkins/Miniconda3 2025-07-24T03:51:15.9153507Z ##[group]Run TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-07-24T03:51:15.9154130Z TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-07-24T03:51:15.9154575Z echo "TMPDIR=${TMPDIR}" >> "${GITHUB_ENV}" 2025-07-24T03:51:15.9175106Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:15.9175542Z env: 2025-07-24T03:51:15.9175737Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:15.9176110Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:15.9176627Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:15.9177104Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:15.9177449Z ##[endgroup] 2025-07-24T03:51:16.0241012Z ##[group]Run Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-07-24T03:51:16.0242375Z Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-07-24T03:51:16.0243405Z # Let's both exclude the path and disable Windows Defender completely just to be sure 2025-07-24T03:51:16.0243863Z # that it doesn't interfere 2025-07-24T03:51:16.0256583Z Set-MpPreference -DisableRealtimeMonitoring $True -ErrorAction Ignore 2025-07-24T03:51:16.0274447Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-24T03:51:16.0274891Z env: 2025-07-24T03:51:16.0275083Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:16.0275452Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:16.0275958Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:16.0276408Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:16.0276799Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:16.0277238Z ##[endgroup] 2025-07-24T03:51:16.3734560Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-24T03:51:16.3803343Z Finished 2025-07-24T03:51:17.7949999Z ##[group]Run choco install handle -y 2025-07-24T03:51:17.7950335Z choco install handle -y 2025-07-24T03:51:17.7950615Z handle C:\actions-runner\_work\ 2025-07-24T03:51:17.7967925Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-24T03:51:17.7968389Z env: 2025-07-24T03:51:17.7968577Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:17.7968975Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:17.7969490Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:17.7969957Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:17.7970342Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:17.7970637Z ##[endgroup] 2025-07-24T03:51:18.1541991Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-24T03:51:18.1611377Z Finished 2025-07-24T03:51:20.5666312Z Chocolatey v2.4.3 2025-07-24T03:51:20.7229219Z Installing the following packages: 2025-07-24T03:51:20.7234132Z handle 2025-07-24T03:51:20.7238121Z By installing, you accept licenses for the packages. 2025-07-24T03:51:22.0118966Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-07-24T03:51:22.1441758Z 2025-07-24T03:51:22.1442391Z Progress: Downloading Handle 5.0... 15% 2025-07-24T03:51:22.1443683Z Progress: Downloading Handle 5.0... 45% 2025-07-24T03:51:22.1445017Z Progress: Downloading Handle 5.0... 75% 2025-07-24T03:51:22.1445368Z Progress: Downloading Handle 5.0... 100% 2025-07-24T03:51:22.3741623Z 2025-07-24T03:51:22.3741895Z handle v5.0.0 [Approved] 2025-07-24T03:51:22.3944376Z handle package files install completed. Performing other installation steps. 2025-07-24T03:51:23.7675663Z Downloading Handle 2025-07-24T03:51:23.7676068Z from 'https://download.sysinternals.com/files/Handle.zip' 2025-07-24T03:51:23.8633050Z 2025-07-24T03:51:23.8649965Z Progress: 19% - Saving 143.51 KB of 729.82 KB 2025-07-24T03:51:23.8663562Z Progress: 41% - Saving 303.51 KB of 729.82 KB 2025-07-24T03:51:23.8679984Z Progress: 63% - Saving 463.51 KB of 729.82 KB 2025-07-24T03:51:23.8697910Z Progress: 85% - Saving 623.51 KB of 729.82 KB 2025-07-24T03:51:23.8701160Z Progress: 100% - Completed download of C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip (729.82 KB). 2025-07-24T03:51:23.8707396Z Download of Handle.zip (729.82 KB) completed. 2025-07-24T03:51:27.0143451Z Hashes match. 2025-07-24T03:51:27.0401510Z Extracting C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip to C:\ProgramData\chocolatey\lib\Handle\tools... 2025-07-24T03:51:27.4944320Z C:\ProgramData\chocolatey\lib\Handle\tools 2025-07-24T03:51:27.5001427Z HKEY_CURRENT_USER\Software\Sysinternals 2025-07-24T03:51:27.5031006Z HKEY_CURRENT_USER\Software\Sysinternals\Handle 2025-07-24T03:51:28.2431192Z ShimGen has successfully created a shim for handle.exe 2025-07-24T03:51:28.4200181Z ShimGen has successfully created a shim for handle64.exe 2025-07-24T03:51:28.5879232Z ShimGen has successfully created a shim for handle64a.exe 2025-07-24T03:51:28.6139869Z The install of handle was successful. 2025-07-24T03:51:28.6142989Z Deployed to 'C:\ProgramData\chocolatey\lib\Handle\tools' 2025-07-24T03:51:28.6250227Z 2025-07-24T03:51:28.6250555Z Chocolatey installed 1/1 packages. 2025-07-24T03:51:28.6251002Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-07-24T03:51:28.9484681Z 2025-07-24T03:51:28.9485054Z Nthandle v5.0 - Handle viewer 2025-07-24T03:51:28.9485382Z Copyright (C) 1997-2022 Mark Russinovich 2025-07-24T03:51:28.9485689Z Sysinternals - www.sysinternals.com 2025-07-24T03:51:28.9485877Z 2025-07-24T03:51:29.0564802Z powershell.exe pid: 4296 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-07-24T03:51:29.0565688Z handle.exe pid: 5048 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-07-24T03:51:29.0566261Z handle.exe pid: 5588 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-07-24T03:51:29.0566819Z handle64.exe pid: 6056 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-07-24T03:51:29.0889351Z ##[group]Run python3 .github/scripts/parse_ref.py 2025-07-24T03:51:29.0889740Z python3 .github/scripts/parse_ref.py 2025-07-24T03:51:29.0910002Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:29.0910418Z env: 2025-07-24T03:51:29.0910595Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:29.0910952Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:29.0911456Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:29.0911936Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:29.0912313Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:29.0912590Z ##[endgroup] 2025-07-24T03:51:29.1546678Z Setting output tag=ciflow/trunk/149961 2025-07-24T03:51:29.1690225Z Prepare all required actions 2025-07-24T03:51:29.1723820Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-07-24T03:51:29.1724129Z with: 2025-07-24T03:51:29.1724560Z github-token: *** 2025-07-24T03:51:29.1724754Z env: 2025-07-24T03:51:29.1724928Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:29.1725289Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:29.1725854Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:29.1726316Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:29.1726739Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:29.1727017Z ##[endgroup] 2025-07-24T03:51:29.1793576Z ##[group]Run set -eux 2025-07-24T03:51:29.1793808Z set -eux 2025-07-24T03:51:29.1794188Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-07-24T03:51:29.1812885Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:29.1813294Z env: 2025-07-24T03:51:29.1813477Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:29.1813834Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:29.1814328Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:29.1814783Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:29.1815168Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:29.1815631Z GITHUB_TOKEN: *** 2025-07-24T03:51:29.1815822Z ##[endgroup] 2025-07-24T03:51:29.2000380Z + python3 .github/scripts/get_workflow_job_id.py 16487210679 i-0f5ed0981f3f5cb82 2025-07-24T03:51:29.8271269Z Setting output job-id=46614187335 2025-07-24T03:51:29.8271657Z Setting output job-name=win-vs2022-cpu-py3 / build 2025-07-24T03:51:29.8578064Z Prepare all required actions 2025-07-24T03:51:29.8578470Z Getting action download info 2025-07-24T03:51:29.9853274Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-07-24T03:51:30.2770701Z ##[group]Run ./.github/actions/filter-test-configs 2025-07-24T03:51:30.2771008Z with: 2025-07-24T03:51:30.2771371Z github-token: *** 2025-07-24T03:51:30.2772379Z 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-07-24T03:51:30.2774507Z job-name: win-vs2022-cpu-py3 / build 2025-07-24T03:51:30.2774780Z env: 2025-07-24T03:51:30.2775120Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:30.2775488Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:30.2776034Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:30.2776497Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:30.2776881Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:30.2777165Z ##[endgroup] 2025-07-24T03:51:30.2872968Z ##[group]Run nick-fields/retry@v3.0.0 2025-07-24T03:51:30.2873244Z with: 2025-07-24T03:51:30.2873413Z shell: bash 2025-07-24T03:51:30.2873601Z timeout_minutes: 10 2025-07-24T03:51:30.2873801Z max_attempts: 5 2025-07-24T03:51:30.2873997Z retry_wait_seconds: 30 2025-07-24T03:51:30.2874713Z command: set -eux # PyYAML 6.0 doesn't work with MacOS x86 anymore # This must run on Python-3.7 (AmazonLinux2) so can't use request=3.32.2 python3 -m pip install requests==2.27.1 pyyaml==6.0.1 2025-07-24T03:51:30.2875460Z polling_interval_seconds: 1 2025-07-24T03:51:30.2875711Z warning_on_retry: true 2025-07-24T03:51:30.2875930Z continue_on_error: false 2025-07-24T03:51:30.2876157Z env: 2025-07-24T03:51:30.2876323Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:30.2876685Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:30.2877189Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:30.2877682Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:30.2878072Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:30.2878548Z GITHUB_TOKEN: *** 2025-07-24T03:51:30.2878745Z ##[endgroup] 2025-07-24T03:51:30.4081565Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.1 2025-07-24T03:51:35.3240571Z Collecting requests==2.27.1 2025-07-24T03:51:35.5168084Z Downloading requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-07-24T03:51:35.6260279Z Collecting pyyaml==6.0.1 2025-07-24T03:51:35.6326787Z Downloading PyYAML-6.0.1-cp39-cp39-win_amd64.whl.metadata (2.1 kB) 2025-07-24T03:51:35.6538139Z Requirement already satisfied: urllib3<1.27,>=1.21.1 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (1.26.19) 2025-07-24T03:51:35.6545411Z Requirement already satisfied: certifi>=2017.4.17 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2025.4.26) 2025-07-24T03:51:35.6558702Z Requirement already satisfied: charset-normalizer~=2.0.0 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2.0.4) 2025-07-24T03:51:35.6573573Z Requirement already satisfied: idna<4,>=2.5 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (3.7) 2025-07-24T03:51:35.7863247Z Downloading requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-07-24T03:51:35.8682491Z ---------------------------------------- 63.1/63.1 kB 678.1 kB/s eta 0:00:00 2025-07-24T03:51:35.8755623Z Downloading PyYAML-6.0.1-cp39-cp39-win_amd64.whl (152 kB) 2025-07-24T03:51:35.9161510Z ---------------------------------------- 152.8/152.8 kB 4.5 MB/s eta 0:00:00 2025-07-24T03:51:37.8837559Z Installing collected packages: requests, pyyaml 2025-07-24T03:51:37.8838080Z Attempting uninstall: requests 2025-07-24T03:51:37.8847397Z Found existing installation: requests 2.32.3 2025-07-24T03:51:38.0042135Z Uninstalling requests-2.32.3: 2025-07-24T03:51:38.0063637Z Successfully uninstalled requests-2.32.3 2025-07-24T03:51:38.0743602Z Attempting uninstall: pyyaml 2025-07-24T03:51:38.0751767Z Found existing installation: PyYAML 6.0.2 2025-07-24T03:51:38.0829406Z Uninstalling PyYAML-6.0.2: 2025-07-24T03:51:38.0857345Z Successfully uninstalled PyYAML-6.0.2 2025-07-24T03:51:38.1867193Z Successfully installed pyyaml-6.0.1 requests-2.27.1 2025-07-24T03:51:39.4349445Z Command completed after 1 attempt(s). 2025-07-24T03:51:39.4505049Z ##[group]Run set -x 2025-07-24T03:51:39.4505297Z set -x 2025-07-24T03:51:39.4505477Z  2025-07-24T03:51:39.4505965Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-07-24T03:51:39.4506420Z # in runner workspace 2025-07-24T03:51:39.4506763Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-07-24T03:51:39.4525855Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:39.4526359Z env: 2025-07-24T03:51:39.4526547Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:39.4526908Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:39.4527418Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:39.4527875Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:39.4528262Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:39.4528543Z ##[endgroup] 2025-07-24T03:51:39.4730579Z + python3 'C:\actions-runner\_work\pytorch\pytorch\./.github/actions/filter-test-configs/../../scripts/parse_ref.py' 2025-07-24T03:51:39.5158587Z Setting output tag=ciflow/trunk/149961 2025-07-24T03:51:39.5321791Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-07-24T03:51:39.5322154Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-07-24T03:51:39.5322453Z echo "Job name: ${JOB_NAME}" 2025-07-24T03:51:39.5322699Z  2025-07-24T03:51:39.5323033Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-07-24T03:51:39.5323459Z # in runner workspace 2025-07-24T03:51:39.5323831Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-07-24T03:51:39.5324261Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-07-24T03:51:39.5324541Z  --job-name "${JOB_NAME}" \ 2025-07-24T03:51:39.5324809Z  --test-matrix "{ include: [ 2025-07-24T03:51:39.5325245Z  { config: "default", shard: 1, num_shards: 3, runner: "windows.4xlarge.nonephemeral" }, 2025-07-24T03:51:39.5325856Z  { config: "default", shard: 2, num_shards: 3, runner: "windows.4xlarge.nonephemeral" }, 2025-07-24T03:51:39.5326468Z  { config: "default", shard: 3, num_shards: 3, runner: "windows.4xlarge.nonephemeral" }, 2025-07-24T03:51:39.5326880Z ]} 2025-07-24T03:51:39.5327051Z " \ 2025-07-24T03:51:39.5327254Z  --selected-test-configs "" \ 2025-07-24T03:51:39.5327546Z  --pr-number "${PR_NUMBER}" \ 2025-07-24T03:51:39.5327812Z  --tag "${TAG}" \ 2025-07-24T03:51:39.5328063Z  --event-name "${EVENT_NAME}" \ 2025-07-24T03:51:39.5328344Z  --schedule "${SCHEDULE}" \ 2025-07-24T03:51:39.5328611Z  --branch "${HEAD_BRANCH}" 2025-07-24T03:51:39.5346960Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:39.5347385Z env: 2025-07-24T03:51:39.5347574Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:39.5347934Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:39.5348464Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:39.5349442Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:39.5349846Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:39.5350342Z GITHUB_TOKEN: *** 2025-07-24T03:51:39.5350558Z JOB_NAME: win-vs2022-cpu-py3 / build 2025-07-24T03:51:39.5350832Z PR_NUMBER: 2025-07-24T03:51:39.5351018Z TAG: ciflow/trunk/149961 2025-07-24T03:51:39.5351241Z EVENT_NAME: push 2025-07-24T03:51:39.5351422Z SCHEDULE: 2025-07-24T03:51:39.5351597Z HEAD_BRANCH: 2025-07-24T03:51:39.5351770Z ##[endgroup] 2025-07-24T03:51:39.5568908Z Workflow: trunk 2025-07-24T03:51:39.5569168Z Job name: win-vs2022-cpu-py3 / build 2025-07-24T03:51:39.8467824Z INFO:root:Found no test-config label on the PR, so all test configs are included 2025-07-24T03:51:40.0584204Z Setting output keep-going=False 2025-07-24T03:51:40.0584580Z Setting output ci-verbose-test-logs=False 2025-07-24T03:51:40.0585183Z Setting output ci-test-showlocals=False 2025-07-24T03:51:40.0585504Z Setting output ci-no-test-timeout=False 2025-07-24T03:51:40.0585791Z Setting output ci-no-td=False 2025-07-24T03:51:40.0586046Z Setting output ci-td-distributed=False 2025-07-24T03:51:40.0586327Z Setting output is-unstable=False 2025-07-24T03:51:40.0586581Z Setting output reenabled-issues= 2025-07-24T03:51:40.0587696Z Setting output 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-07-24T03:51:40.0588834Z Setting output is-test-matrix-empty=False 2025-07-24T03:51:40.0810876Z ##[group]Run echo "Filtered matrix:" 2025-07-24T03:51:40.0811189Z echo "Filtered matrix:" 2025-07-24T03:51:40.0812304Z 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-07-24T03:51:40.0813412Z  2025-07-24T03:51:40.0813625Z echo 2025-07-24T03:51:40.0813863Z echo "Is the current job unstable? False" 2025-07-24T03:51:40.0814201Z  2025-07-24T03:51:40.0814373Z echo 2025-07-24T03:51:40.0814585Z echo "Is keep-going label set? False" 2025-07-24T03:51:40.0814867Z  2025-07-24T03:51:40.0815027Z echo 2025-07-24T03:51:40.0815232Z echo "Reenabled issues? " 2025-07-24T03:51:40.0834019Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:40.0834452Z env: 2025-07-24T03:51:40.0834639Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:40.0835033Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:40.0835562Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:40.0836039Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:40.0836431Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:40.0836710Z ##[endgroup] 2025-07-24T03:51:40.1018748Z Filtered matrix: 2025-07-24T03:51:40.1019876Z {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-07-24T03:51:40.1021109Z 2025-07-24T03:51:40.1021226Z Is the current job unstable? False 2025-07-24T03:51:40.1021405Z 2025-07-24T03:51:40.1021508Z Is keep-going label set? False 2025-07-24T03:51:40.1021670Z 2025-07-24T03:51:40.1021743Z Reenabled issues? 2025-07-24T03:51:40.1129191Z Prepare all required actions 2025-07-24T03:51:40.1129562Z Getting action download info 2025-07-24T03:51:40.2675714Z ##[group]Run ./.github/actions/pytest-cache-download 2025-07-24T03:51:40.2676034Z with: 2025-07-24T03:51:40.2676227Z cache_dir: .pytest_cache 2025-07-24T03:51:40.2676478Z job_identifier: trunk_win-vs2022-cpu-py3 2025-07-24T03:51:40.2676764Z s3_bucket: gha-artifacts 2025-07-24T03:51:40.2676968Z env: 2025-07-24T03:51:40.2677139Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:40.2677481Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:40.2677981Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:40.2678442Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:40.2678822Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:40.2679098Z ##[endgroup] 2025-07-24T03:51:40.2765562Z ##[group]Run nick-fields/retry@v3.0.0 2025-07-24T03:51:40.2766032Z with: 2025-07-24T03:51:40.2766206Z shell: bash 2025-07-24T03:51:40.2766386Z timeout_minutes: 5 2025-07-24T03:51:40.2766584Z max_attempts: 5 2025-07-24T03:51:40.2766784Z retry_wait_seconds: 30 2025-07-24T03:51:40.2767062Z command: set -eu python3 -m pip install boto3==1.35.42 2025-07-24T03:51:40.2767396Z polling_interval_seconds: 1 2025-07-24T03:51:40.2767629Z warning_on_retry: true 2025-07-24T03:51:40.2767852Z continue_on_error: false 2025-07-24T03:51:40.2768053Z env: 2025-07-24T03:51:40.2768230Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:40.2768576Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:40.2769083Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:40.2769545Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:40.2769921Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:40.2770201Z ##[endgroup] 2025-07-24T03:51:41.9035496Z Collecting boto3==1.35.42 2025-07-24T03:51:42.1075723Z Downloading boto3-1.35.42-py3-none-any.whl.metadata (6.7 kB) 2025-07-24T03:51:42.8663959Z Collecting botocore<1.36.0,>=1.35.42 (from boto3==1.35.42) 2025-07-24T03:51:42.8721396Z Downloading botocore-1.35.99-py3-none-any.whl.metadata (5.7 kB) 2025-07-24T03:51:42.8802968Z Requirement already satisfied: jmespath<2.0.0,>=0.7.1 in c:\jenkins\miniconda3\lib\site-packages (from boto3==1.35.42) (1.0.1) 2025-07-24T03:51:42.9069144Z Collecting s3transfer<0.11.0,>=0.10.0 (from boto3==1.35.42) 2025-07-24T03:51:42.9114713Z Downloading s3transfer-0.10.4-py3-none-any.whl.metadata (1.7 kB) 2025-07-24T03:51:42.9293518Z Requirement already satisfied: python-dateutil<3.0.0,>=2.1 in c:\jenkins\miniconda3\lib\site-packages (from botocore<1.36.0,>=1.35.42->boto3==1.35.42) (2.9.0.post0) 2025-07-24T03:51:42.9309124Z Requirement already satisfied: urllib3<1.27,>=1.25.4 in c:\jenkins\miniconda3\lib\site-packages (from botocore<1.36.0,>=1.35.42->boto3==1.35.42) (1.26.19) 2025-07-24T03:51:43.1767980Z Requirement already satisfied: six>=1.5 in c:\jenkins\miniconda3\lib\site-packages (from python-dateutil<3.0.0,>=2.1->botocore<1.36.0,>=1.35.42->boto3==1.35.42) (1.17.0) 2025-07-24T03:51:43.2004123Z Downloading boto3-1.35.42-py3-none-any.whl (139 kB) 2025-07-24T03:51:43.2975622Z ---------------------------------------- 139.2/139.2 kB 1.7 MB/s eta 0:00:00 2025-07-24T03:51:43.3020955Z Downloading botocore-1.35.99-py3-none-any.whl (13.3 MB) 2025-07-24T03:51:43.4185448Z ---------------------------------------- 13.3/13.3 MB 109.9 MB/s eta 0:00:00 2025-07-24T03:51:43.4238558Z Downloading s3transfer-0.10.4-py3-none-any.whl (83 kB) 2025-07-24T03:51:43.4358952Z ---------------------------------------- 83.2/83.2 kB 4.6 MB/s eta 0:00:00 2025-07-24T03:51:44.3425711Z Installing collected packages: botocore, s3transfer, boto3 2025-07-24T03:51:44.3428029Z Attempting uninstall: botocore 2025-07-24T03:51:44.3435945Z Found existing installation: botocore 1.37.10 2025-07-24T03:51:44.5765967Z Uninstalling botocore-1.37.10: 2025-07-24T03:51:44.6686932Z Successfully uninstalled botocore-1.37.10 2025-07-24T03:51:47.5093757Z Attempting uninstall: s3transfer 2025-07-24T03:51:47.5105726Z Found existing installation: s3transfer 0.11.2 2025-07-24T03:51:47.5180260Z Uninstalling s3transfer-0.11.2: 2025-07-24T03:51:47.5202092Z Successfully uninstalled s3transfer-0.11.2 2025-07-24T03:51:47.6045822Z Attempting uninstall: boto3 2025-07-24T03:51:47.6098710Z Found existing installation: boto3 1.37.10 2025-07-24T03:51:47.6273043Z Uninstalling boto3-1.37.10: 2025-07-24T03:51:47.6324273Z Successfully uninstalled boto3-1.37.10 2025-07-24T03:51:48.2070276Z Successfully installed boto3-1.35.42 botocore-1.35.99 s3transfer-0.10.4 2025-07-24T03:51:48.4228441Z Command completed after 1 attempt(s). 2025-07-24T03:51:48.4377887Z ##[group]Run python3 .github/scripts/pytest_cache.py \ 2025-07-24T03:51:48.4378304Z python3 .github/scripts/pytest_cache.py \ 2025-07-24T03:51:48.4378752Z  --download \ 2025-07-24T03:51:48.4379037Z  --cache_dir $GITHUB_WORKSPACE/$CACHE_DIR \ 2025-07-24T03:51:48.4379358Z  --pr_identifier $GITHUB_REF \ 2025-07-24T03:51:48.4379668Z  --job_identifier $JOB_IDENTIFIER \ 2025-07-24T03:51:48.4379964Z  --temp_dir $RUNNER_TEMP \ 2025-07-24T03:51:48.4380329Z  --repo $REPO \ 2025-07-24T03:51:48.4380574Z  --bucket $BUCKET \ 2025-07-24T03:51:48.4399649Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:48.4400078Z env: 2025-07-24T03:51:48.4400255Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:48.4400622Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:48.4401118Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:48.4401583Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:48.4401998Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:48.4402288Z CACHE_DIR: .pytest_cache 2025-07-24T03:51:48.4402545Z JOB_IDENTIFIER: trunk_win-vs2022-cpu-py3 2025-07-24T03:51:48.4402818Z REPO: pytorch/pytorch 2025-07-24T03:51:48.4403115Z BUCKET: gha-artifacts 2025-07-24T03:51:48.4403321Z ##[endgroup] 2025-07-24T03:51:49.2377835Z PR identifier for `refs/tags/ciflow/trunk/149961` is `8d7c20a62ddb2b486f64b70ef7147183` 2025-07-24T03:51:49.2379490Z Downloading cache with args Namespace(upload=False, download=True, cache_dir='C:\\actions-runner\\_work\\pytorch\\pytorch/.pytest_cache', pr_identifier='refs/tags/ciflow/trunk/149961', job_identifier='trunk_win-vs2022-cpu-py3', sha=None, test_config=None, shard=None, repo='pytorch/pytorch', temp_dir='C:\\actions-runner\\_work\\_temp', bucket='gha-artifacts') 2025-07-24T03:51:49.2381391Z There were no files matching the prefix `pytest_cache/pytorch/pytorch/8d7c20a62ddb2b486f64b70ef7147183/trunk_win-vs2022-cpu-py3` in bucket `gha-artifacts` 2025-07-24T03:51:49.3019615Z ##[group]Run .ci/pytorch/win-build.sh 2025-07-24T03:51:49.3019944Z .ci/pytorch/win-build.sh 2025-07-24T03:51:49.3038575Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:49.3039055Z env: 2025-07-24T03:51:49.3039239Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:49.3039606Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:49.3040105Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:49.3040571Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:49.3040942Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:49.3041304Z PYTORCH_FINAL_PACKAGE_DIR: /c/16487210679/build-results/ 2025-07-24T03:51:49.3041622Z BRANCH: 2025-07-24T03:51:49.3041817Z BUILD_ENVIRONMENT: win-vs2022-cpu-py3 2025-07-24T03:51:49.3042088Z BUILD_WHEEL: 1 2025-07-24T03:51:49.3042266Z MAX_JOBS: 8 2025-07-24T03:51:49.3042511Z CUDA_VERSION: cpu 2025-07-24T03:51:49.3042704Z PYTHON_VERSION: 3.9 2025-07-24T03:51:49.3042941Z SCCACHE_BUCKET: ossci-compiler-cache 2025-07-24T03:51:49.3043207Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-24T03:51:49.3043455Z SCCACHE_REGION: us-east-1 2025-07-24T03:51:49.3043678Z VC_PRODUCT: BuildTools 2025-07-24T03:51:49.3043894Z VC_VERSION: 2025-07-24T03:51:49.3044115Z VC_YEAR: 2022 2025-07-24T03:51:49.3044427Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-07-24T03:51:49.3044858Z AWS_DEFAULT_REGION: us-east-1 2025-07-24T03:51:49.3045091Z PR_NUMBER: 2025-07-24T03:51:49.3045307Z SHA1: 27c8ef1839e0747b36769efb192befc9308ff93c 2025-07-24T03:51:49.3045578Z DEBUG: 0 2025-07-24T03:51:49.3045752Z TORCH_CUDA_ARCH_LIST: 8.6 2025-07-24T03:51:49.3045958Z USE_CUDA: 0 2025-07-24T03:51:49.3046131Z USE_XPU: 0 2025-07-24T03:51:49.3046303Z XPU_VERSION: 2025-07-24T03:51:49.3046493Z OUR_GITHUB_JOB_ID: 46614187335 2025-07-24T03:51:49.3046891Z ##[endgroup] 2025-07-24T03:51:49.3749864Z ++ [[ win-vs2022-cpu-py3 == *rocm* ]] 2025-07-24T03:51:49.3750174Z ++ BUILD_TEST_LIBTORCH=0 2025-07-24T03:51:49.3750548Z + source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common-build.sh 2025-07-24T03:51:49.3752852Z ++ [[ win-vs2022-cpu-py3 != *win-* ]] 2025-07-24T03:51:49.3753279Z + export TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-07-24T03:51:49.3753748Z + TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-07-24T03:51:49.3807645Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-07-24T03:51:49.3898647Z + TMP_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\build\win_tmp' 2025-07-24T03:51:49.3899041Z + export TMP_DIR_WIN 2025-07-24T03:51:49.3899337Z + export PYTORCH_FINAL_PACKAGE_DIR=/c/16487210679/build-results/ 2025-07-24T03:51:49.3899753Z + PYTORCH_FINAL_PACKAGE_DIR=/c/16487210679/build-results/ 2025-07-24T03:51:49.3900091Z + [[ -n /c/16487210679/build-results/ ]] 2025-07-24T03:51:49.3900404Z + mkdir -p /c/16487210679/build-results/ 2025-07-24T03:51:49.4031156Z + export SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-07-24T03:51:49.4031835Z + SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-07-24T03:51:49.4032274Z + set +ex 2025-07-24T03:51:50.4066831Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/build_pytorch.bat 2025-07-24T03:51:50.4213071Z 2025-07-24T03:51:50.4213891Z C:\actions-runner\_work\pytorch\pytorch>if "0" == "1" (set BUILD_TYPE=debug ) ELSE (set BUILD_TYPE=release ) 2025-07-24T03:51:50.4217315Z 2025-07-24T03:51:50.4221757Z C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-07-24T03:51:50.4224219Z 2025-07-24T03:51:50.4224733Z C:\actions-runner\_work\pytorch\pytorch>set INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-07-24T03:51:50.4225337Z 2025-07-24T03:51:50.4225953Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\install_magma.bat 2025-07-24T03:51:50.4235217Z 2025-07-24T03:51:50.4235658Z C:\actions-runner\_work\pytorch\pytorch>if "cpu" == "cpu" ( 2025-07-24T03:51:50.4236080Z echo skip magma installation for cpu builds 2025-07-24T03:51:50.4236393Z exit /b 0 2025-07-24T03:51:50.4236566Z ) 2025-07-24T03:51:50.4236760Z skip magma installation for cpu builds 2025-07-24T03:51:50.4241624Z 2025-07-24T03:51:50.4241846Z C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-07-24T03:51:50.4242933Z 2025-07-24T03:51:50.4243195Z C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-07-24T03:51:50.4244432Z 2025-07-24T03:51:50.4245051Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\install_sccache.bat 2025-07-24T03:51:50.4255599Z 2025-07-24T03:51:50.4255988Z C:\actions-runner\_work\pytorch\pytorch>mkdir C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin 2025-07-24T03:51:50.4264068Z 2025-07-24T03:51:50.4264321Z C:\actions-runner\_work\pytorch\pytorch>if "" == "" ( 2025-07-24T03:51:50.4264816Z IF EXIST C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe ( 2025-07-24T03:51:50.4265272Z taskkill /im sccache.exe /f /t || ver 1>nul 2025-07-24T03:51:50.4266036Z del C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe || ver 1>nul 2025-07-24T03:51:50.4266480Z ) 2025-07-24T03:51:50.4267687Z 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-07-24T03:51:50.4268951Z ) 2025-07-24T03:51:51.7290113Z Completed 256.0 KiB/18.8 MiB (713.3 KiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7297528Z Completed 512.0 KiB/18.8 MiB (1.3 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7316126Z Completed 768.0 KiB/18.8 MiB (2.0 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7319612Z Completed 1.0 MiB/18.8 MiB (2.7 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7346537Z Completed 1.2 MiB/18.8 MiB (3.3 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7351177Z Completed 1.5 MiB/18.8 MiB (4.0 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7373869Z Completed 1.8 MiB/18.8 MiB (4.6 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7376089Z Completed 2.0 MiB/18.8 MiB (5.3 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7389770Z Completed 2.2 MiB/18.8 MiB (5.9 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7398203Z Completed 2.5 MiB/18.8 MiB (6.6 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7410215Z Completed 2.8 MiB/18.8 MiB (7.2 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7421080Z Completed 3.0 MiB/18.8 MiB (7.8 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7425488Z Completed 3.2 MiB/18.8 MiB (8.5 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7438570Z Completed 3.5 MiB/18.8 MiB (9.1 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7441542Z Completed 3.8 MiB/18.8 MiB (9.7 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7453386Z Completed 4.0 MiB/18.8 MiB (10.4 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7459297Z Completed 4.2 MiB/18.8 MiB (11.0 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7466935Z Completed 4.5 MiB/18.8 MiB (11.6 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7471490Z Completed 4.8 MiB/18.8 MiB (12.2 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7476633Z Completed 5.0 MiB/18.8 MiB (12.9 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7486514Z Completed 5.2 MiB/18.8 MiB (13.5 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7491136Z Completed 5.5 MiB/18.8 MiB (14.1 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7501537Z Completed 5.8 MiB/18.8 MiB (14.7 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7504157Z Completed 6.0 MiB/18.8 MiB (15.3 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7511251Z Completed 6.2 MiB/18.8 MiB (15.9 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7514895Z Completed 6.5 MiB/18.8 MiB (16.5 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7521330Z Completed 6.8 MiB/18.8 MiB (17.2 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7528691Z Completed 7.0 MiB/18.8 MiB (17.8 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7534704Z Completed 7.2 MiB/18.8 MiB (18.4 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7538263Z Completed 7.5 MiB/18.8 MiB (19.0 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7543086Z Completed 7.8 MiB/18.8 MiB (19.6 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7550597Z Completed 8.0 MiB/18.8 MiB (20.2 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7556340Z Completed 8.2 MiB/18.8 MiB (20.8 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7564493Z Completed 8.5 MiB/18.8 MiB (21.4 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7566038Z Completed 8.8 MiB/18.8 MiB (22.0 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7572187Z Completed 9.0 MiB/18.8 MiB (22.6 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7579420Z Completed 9.2 MiB/18.8 MiB (23.2 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7580609Z Completed 9.5 MiB/18.8 MiB (23.8 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7587444Z Completed 9.8 MiB/18.8 MiB (24.4 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7593504Z Completed 10.0 MiB/18.8 MiB (25.0 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7596850Z Completed 10.2 MiB/18.8 MiB (25.5 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7604922Z Completed 10.5 MiB/18.8 MiB (26.1 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7610474Z Completed 10.8 MiB/18.8 MiB (26.7 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7617544Z Completed 11.0 MiB/18.8 MiB (27.3 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7619749Z Completed 11.2 MiB/18.8 MiB (27.9 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7626604Z Completed 11.5 MiB/18.8 MiB (28.5 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7630219Z Completed 11.8 MiB/18.8 MiB (29.1 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7635321Z Completed 12.0 MiB/18.8 MiB (29.6 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7639254Z Completed 12.2 MiB/18.8 MiB (30.2 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7646611Z Completed 12.5 MiB/18.8 MiB (30.8 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7652623Z Completed 12.8 MiB/18.8 MiB (31.4 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7660640Z Completed 13.0 MiB/18.8 MiB (32.0 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7663846Z Completed 13.2 MiB/18.8 MiB (32.5 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7671235Z Completed 13.5 MiB/18.8 MiB (33.1 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7675717Z Completed 13.8 MiB/18.8 MiB (33.6 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7681008Z Completed 14.0 MiB/18.8 MiB (34.2 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7683159Z Completed 14.2 MiB/18.8 MiB (34.8 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7688545Z Completed 14.5 MiB/18.8 MiB (35.3 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7698718Z Completed 14.8 MiB/18.8 MiB (35.9 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7703266Z Completed 15.0 MiB/18.8 MiB (36.4 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7707935Z Completed 15.2 MiB/18.8 MiB (37.0 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7712301Z Completed 15.5 MiB/18.8 MiB (37.6 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7716502Z Completed 15.8 MiB/18.8 MiB (38.1 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7721264Z Completed 16.0 MiB/18.8 MiB (38.7 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7958764Z Completed 16.2 MiB/18.8 MiB (39.2 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7965335Z Completed 16.5 MiB/18.8 MiB (37.7 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7977772Z Completed 16.8 MiB/18.8 MiB (38.2 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7985776Z Completed 17.0 MiB/18.8 MiB (38.7 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7991428Z Completed 17.2 MiB/18.8 MiB (39.2 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.7997860Z Completed 17.5 MiB/18.8 MiB (39.7 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.8005097Z Completed 17.8 MiB/18.8 MiB (40.2 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.8010612Z Completed 18.0 MiB/18.8 MiB (40.7 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.8017493Z Completed 18.2 MiB/18.8 MiB (41.2 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.8023234Z Completed 18.5 MiB/18.8 MiB (41.7 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.8034754Z Completed 18.8 MiB/18.8 MiB (42.2 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.8042393Z Completed 18.8 MiB/18.8 MiB (42.3 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:51.8042963Z download: s3://ossci-windows/sccache-v0.7.4.exe to build\win_tmp\bin\sccache.exe 2025-07-24T03:51:51.9036255Z 2025-07-24T03:51:51.9037027Z C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-07-24T03:51:51.9037533Z 2025-07-24T03:51:51.9037929Z C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-07-24T03:51:51.9040190Z 2025-07-24T03:51:51.9040422Z C:\actions-runner\_work\pytorch\pytorch>if "0" == "1" ( 2025-07-24T03:51:51.9040769Z set CUDA_VERSION=xpu 2025-07-24T03:51:51.9041271Z call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\..\windows\internal\xpu_install.bat 2025-07-24T03:51:51.9041839Z if errorlevel 1 exit /b 1 2025-07-24T03:51:51.9042074Z ) 2025-07-24T03:51:51.9042914Z 2025-07-24T03:51:51.9043539Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\activate_miniconda3.bat 2025-07-24T03:51:51.9054175Z 2025-07-24T03:51:51.9054882Z 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-07-24T03:51:51.9057789Z 2025-07-24T03:51:51.9058148Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-07-24T03:51:51.9060543Z 2025-07-24T03:51:51.9060771Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-07-24T03:51:51.9061790Z curl --retry 3 --retry-all-errors -k https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe 2025-07-24T03:51:51.9062730Z if errorlevel 1 exit /b 2025-07-24T03:51:51.9062964Z if not errorlevel 0 exit /b 2025-07-24T03:51:51.9063744Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe /InstallationType=JustMe /RegisterPython=0 /S /AddToPath=0 /D=C:\Jenkins\Miniconda3 2025-07-24T03:51:51.9064522Z if errorlevel 1 exit /b 2025-07-24T03:51:51.9064767Z if not errorlevel 0 exit /b 2025-07-24T03:51:51.9065131Z ) 2025-07-24T03:51:51.9065234Z 2025-07-24T03:51:51.9065636Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-07-24T03:51:53.2490345Z Chocolatey v2.4.3 2025-07-24T03:51:53.3917480Z Upgrading the following packages: 2025-07-24T03:51:53.3922235Z cmake 2025-07-24T03:51:53.3926295Z By upgrading, you accept licenses for the packages. 2025-07-24T03:51:53.7261429Z cmake is not installed. Installing... 2025-07-24T03:51:54.4606124Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-07-24T03:51:55.2235157Z 2025-07-24T03:51:55.2235571Z cmake.install v3.27.9 [Approved] 2025-07-24T03:51:55.2423175Z cmake.install package files upgrade completed. Performing other installation steps. 2025-07-24T03:51:55.8808092Z Installing 64-bit cmake.install... 2025-07-24T03:52:08.6845107Z cmake.install has been installed. 2025-07-24T03:52:08.7586689Z cmake.install may be able to be automatically uninstalled. 2025-07-24T03:52:08.7632072Z Environment Vars (like PATH) have changed. Close/reopen your shell to 2025-07-24T03:52:08.7632555Z see the changes (or in powershell/cmd.exe just type `refreshenv`). 2025-07-24T03:52:08.9744476Z The upgrade of cmake.install was successful. 2025-07-24T03:52:08.9748219Z Deployed to 'C:\Program Files\CMake\' 2025-07-24T03:52:08.9782098Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-07-24T03:52:09.0429155Z 2025-07-24T03:52:09.0429512Z cmake v3.27.9 [Approved] 2025-07-24T03:52:09.0443000Z cmake package files upgrade completed. Performing other installation steps. 2025-07-24T03:52:09.1186640Z The upgrade of cmake was successful. 2025-07-24T03:52:09.1189323Z Deployed to 'C:\ProgramData\chocolatey\lib\cmake' 2025-07-24T03:52:09.1273238Z 2025-07-24T03:52:09.1273630Z Chocolatey upgraded 2/2 packages. 2025-07-24T03:52:09.1274105Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-07-24T03:52:09.1280941Z 2025-07-24T03:52:09.1281303Z Did you know the proceeds of Pro (and some proceeds from other 2025-07-24T03:52:09.1281800Z licensed editions) go into bettering the community infrastructure? 2025-07-24T03:52:09.1282281Z Your support ensures an active community, keeps Chocolatey tip-top, 2025-07-24T03:52:09.1282697Z plus it nets you some awesome features! 2025-07-24T03:52:09.1283011Z https://chocolatey.org/compare 2025-07-24T03:52:09.8735538Z Collecting mkl==2024.2.0 2025-07-24T03:52:10.0842638Z Downloading mkl-2024.2.0-py2.py3-none-win_amd64.whl.metadata (1.4 kB) 2025-07-24T03:52:10.1325398Z Collecting mkl-static==2024.2.0 2025-07-24T03:52:10.1373381Z Downloading mkl_static-2024.2.0-py2.py3-none-win_amd64.whl.metadata (1.5 kB) 2025-07-24T03:52:10.1621313Z Collecting mkl-include==2024.2.0 2025-07-24T03:52:10.1672969Z Downloading mkl_include-2024.2.0-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-07-24T03:52:10.2022737Z Collecting intel-openmp>=2023 (from mkl==2024.2.0) 2025-07-24T03:52:10.2065895Z Downloading intel_openmp-2025.2.0-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-07-24T03:52:10.2301208Z Collecting tbb==2021.* (from mkl==2024.2.0) 2025-07-24T03:52:10.2346744Z Downloading tbb-2021.13.1-py3-none-win_amd64.whl.metadata (1.1 kB) 2025-07-24T03:52:10.2657122Z Collecting tbb-devel==2021.* (from mkl-static==2024.2.0) 2025-07-24T03:52:10.2704109Z Downloading tbb_devel-2021.13.1-py3-none-win_amd64.whl.metadata (1.2 kB) 2025-07-24T03:52:10.2967635Z Collecting intel-cmplr-lib-ur==2025.2.0 (from intel-openmp>=2023->mkl==2024.2.0) 2025-07-24T03:52:10.3029380Z Downloading intel_cmplr_lib_ur-2025.2.0-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-07-24T03:52:10.3200460Z Collecting umf==0.11.* (from intel-cmplr-lib-ur==2025.2.0->intel-openmp>=2023->mkl==2024.2.0) 2025-07-24T03:52:10.3241605Z Downloading umf-0.11.0-py2.py3-none-win_amd64.whl.metadata (1.1 kB) 2025-07-24T03:52:10.3413574Z Collecting tcmlib>=1.4 (from umf==0.11.*->intel-cmplr-lib-ur==2025.2.0->intel-openmp>=2023->mkl==2024.2.0) 2025-07-24T03:52:10.3454539Z Downloading tcmlib-1.4.0-py2.py3-none-win_amd64.whl.metadata (1.0 kB) 2025-07-24T03:52:10.3582636Z Downloading mkl-2024.2.0-py2.py3-none-win_amd64.whl (161.5 MB) 2025-07-24T03:52:12.3960289Z ---------------------------------------- 161.5/161.5 MB 8.0 MB/s eta 0:00:00 2025-07-24T03:52:12.4017234Z Downloading mkl_static-2024.2.0-py2.py3-none-win_amd64.whl (207.3 MB) 2025-07-24T03:52:16.1477038Z ---------------------------------------- 207.3/207.3 MB 3.6 MB/s eta 0:00:00 2025-07-24T03:52:16.1532410Z Downloading mkl_include-2024.2.0-py2.py3-none-win_amd64.whl (1.3 MB) 2025-07-24T03:52:16.1725163Z ---------------------------------------- 1.3/1.3 MB 87.7 MB/s eta 0:00:00 2025-07-24T03:52:16.1776069Z Downloading tbb-2021.13.1-py3-none-win_amd64.whl (286 kB) 2025-07-24T03:52:16.1878125Z --------------------------------------- 286.9/286.9 kB 17.3 MB/s eta 0:00:00 2025-07-24T03:52:16.1929001Z Downloading tbb_devel-2021.13.1-py3-none-win_amd64.whl (5.7 MB) 2025-07-24T03:52:16.2363075Z ---------------------------------------- 5.7/5.7 MB 120.3 MB/s eta 0:00:00 2025-07-24T03:52:16.2411873Z Downloading intel_openmp-2025.2.0-py2.py3-none-win_amd64.whl (34.0 MB) 2025-07-24T03:52:16.5424125Z ---------------------------------------- 34.0/34.0 MB 54.4 MB/s eta 0:00:00 2025-07-24T03:52:16.5485552Z Downloading intel_cmplr_lib_ur-2025.2.0-py2.py3-none-win_amd64.whl (1.2 MB) 2025-07-24T03:52:16.5642980Z ---------------------------------------- 1.2/1.2 MB 72.4 MB/s eta 0:00:00 2025-07-24T03:52:16.5692913Z Downloading umf-0.11.0-py2.py3-none-win_amd64.whl (231 kB) 2025-07-24T03:52:16.5788811Z --------------------------------------- 231.7/231.7 kB 13.8 MB/s eta 0:00:00 2025-07-24T03:52:16.5843911Z Downloading tcmlib-1.4.0-py2.py3-none-win_amd64.whl (370 kB) 2025-07-24T03:52:16.5946573Z --------------------------------------- 370.3/370.3 kB 24.0 MB/s eta 0:00:00 2025-07-24T03:52:18.4874374Z Installing collected packages: tcmlib, tbb, mkl-include, umf, tbb-devel, intel-cmplr-lib-ur, intel-openmp, mkl-static, mkl 2025-07-24T03:52:25.7911824Z Successfully installed intel-cmplr-lib-ur-2025.2.0 intel-openmp-2025.2.0 mkl-2024.2.0 mkl-include-2024.2.0 mkl-static-2024.2.0 tbb-2021.13.1 tbb-devel-2021.13.1 tcmlib-1.4.0 umf-0.11.0 2025-07-24T03:52:26.5039183Z ********************************************************************** 2025-07-24T03:52:26.5039618Z ** Visual Studio 2022 Developer Command Prompt v17.8.22 2025-07-24T03:52:26.5039971Z ** Copyright (c) 2022 Microsoft Corporation 2025-07-24T03:52:26.5042463Z ********************************************************************** 2025-07-24T03:52:26.9725033Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-07-24T03:52:26.9761370Z 2025-07-24T03:52:26.9761904Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-07-24T03:52:26.9765277Z 2025-07-24T03:52:26.9765556Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "0" == "1" goto cuda_build_end 2025-07-24T03:52:26.9767805Z 2025-07-24T03:52:26.9768029Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-07-24T03:52:26.9770559Z 2025-07-24T03:52:26.9777956Z (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\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-07-24T03:52:26.9785117Z 2025-07-24T03:52:26.9785383Z (base) C:\actions-runner\_work\pytorch\pytorch>if "8.6" == "" set TORCH_CUDA_ARCH_LIST=8.6 2025-07-24T03:52:26.9785751Z 2025-07-24T03:52:26.9785953Z (base) C:\actions-runner\_work\pytorch\pytorch>set SCCACHE_IDLE_TIMEOUT=0 2025-07-24T03:52:26.9786260Z 2025-07-24T03:52:26.9786508Z (base) C:\actions-runner\_work\pytorch\pytorch>set SCCACHE_IGNORE_SERVER_IO_ERROR=1 2025-07-24T03:52:26.9786846Z 2025-07-24T03:52:26.9787037Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --stop-server 2025-07-24T03:52:26.9923011Z Stopping sccache server... 2025-07-24T03:52:28.0122939Z sccache: error: couldn't connect to server 2025-07-24T03:52:28.0125130Z sccache: caused by: No connection could be made because the target machine actively refused it. (os error 10061) 2025-07-24T03:52:28.0151830Z 2025-07-24T03:52:28.0152460Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --start-server 2025-07-24T03:52:28.0246799Z sccache: Starting the server... 2025-07-24T03:52:28.1498640Z 2025-07-24T03:52:28.1499254Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --zero-stats 2025-07-24T03:52:28.1615706Z Compile requests 0 2025-07-24T03:52:28.1616072Z Compile requests executed 0 2025-07-24T03:52:28.1616343Z Cache hits 0 2025-07-24T03:52:28.1616589Z Cache misses 0 2025-07-24T03:52:28.1616851Z Cache timeouts 0 2025-07-24T03:52:28.1617103Z Cache read errors 0 2025-07-24T03:52:28.1617361Z Forced recaches 0 2025-07-24T03:52:28.1617652Z Cache write errors 0 2025-07-24T03:52:28.1617932Z Compilation failures 0 2025-07-24T03:52:28.1618229Z Cache errors 0 2025-07-24T03:52:28.1618541Z Non-cacheable compilations 0 2025-07-24T03:52:28.1618908Z Non-cacheable calls 0 2025-07-24T03:52:28.1619195Z Non-compilation calls 0 2025-07-24T03:52:28.1619501Z Unsupported compiler calls 0 2025-07-24T03:52:28.1619816Z Average cache write 0.000 s 2025-07-24T03:52:28.1620143Z Average compiler 0.000 s 2025-07-24T03:52:28.1620459Z Average cache read hit 0.000 s 2025-07-24T03:52:28.1620799Z Failed distributed compilations 0 2025-07-24T03:52:28.1621214Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-07-24T03:52:28.1621649Z Version (client) 0.7.4 2025-07-24T03:52:28.1640845Z 2025-07-24T03:52:28.1641934Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_C_COMPILER_LAUNCHER=sccache 2025-07-24T03:52:28.1644062Z 2025-07-24T03:52:28.1644662Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_CXX_COMPILER_LAUNCHER=sccache 2025-07-24T03:52:28.1646983Z 2025-07-24T03:52:28.1647543Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_GENERATOR=Ninja 2025-07-24T03:52:28.1651368Z 2025-07-24T03:52:28.1651729Z (base) C:\actions-runner\_work\pytorch\pytorch>if "0" == "1" ( 2025-07-24T03:52:28.1652142Z 2025-07-24T03:52:28.1652292Z 2025-07-24T03:52:28.1652443Z 2025-07-24T03:52:28.1653205Z curl -kL https://github.com/peterjc123/randomtemp-rust/releases/download/v0.4/randomtemp.exe --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\randomtemp.exe 2025-07-24T03:52:28.1654030Z if errorlevel 1 goto fail 2025-07-24T03:52:28.1654280Z if not errorlevel 0 goto fail 2025-07-24T03:52:28.1655401Z 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.9\bin\nvcc.exe" %* 1>"C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat" 2025-07-24T03:52:28.1656732Z cat C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-07-24T03:52:28.1657379Z set CUDA_NVCC_EXECUTABLE=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-07-24T03:52:28.1658274Z for /F "usebackq delims=" %n in (`cygpath -m "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9\bin\nvcc.exe"`) do set CMAKE_CUDA_COMPILER=%n 2025-07-24T03:52:28.1659536Z set CMAKE_CUDA_COMPILER_LAUNCHER=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/randomtemp.exe;C:/actions-runner/_work/pytorch/pytorch/build/win_tmp\bin\sccache.exe 2025-07-24T03:52:28.1660415Z ) 2025-07-24T03:52:28.1660551Z 2025-07-24T03:52:28.1660691Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-07-24T03:52:28.1854989Z ACTIONS_ID_TOKEN_REQUEST_TOKEN=*** 2025-07-24T03:52:28.1855944Z ACTIONS_ID_TOKEN_REQUEST_URL=https://run-actions-3-azure-eastus.actions.githubusercontent.com/79//idtoken/462206c4-f316-434a-914e-4c0fe68d812b/22ea19a0-9ce4-52c9-8121-ba2b81b2c2da?api-version=2.0 2025-07-24T03:52:28.1857011Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-07-24T03:52:28.1857635Z ALLUSERSPROFILE=C:\ProgramData 2025-07-24T03:52:28.1858011Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-07-24T03:52:28.1858422Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-07-24T03:52:28.1858724Z AWS_DEFAULT_REGION=us-east-1 2025-07-24T03:52:28.1858953Z AWS_EXECUTION_ENV=EC2 2025-07-24T03:52:28.1859163Z BRANCH= 2025-07-24T03:52:28.1859354Z BUILD_ENVIRONMENT=win-vs2022-cpu-py3 2025-07-24T03:52:28.1859606Z BUILD_TYPE=release 2025-07-24T03:52:28.1859802Z BUILD_WHEEL=1 2025-07-24T03:52:28.1859969Z CI=true 2025-07-24T03:52:28.1860154Z CMAKE_CXX_COMPILER_LAUNCHER=sccache 2025-07-24T03:52:28.1860411Z CMAKE_C_COMPILER_LAUNCHER=sccache 2025-07-24T03:52:28.1860665Z CMAKE_GENERATOR=Ninja 2025-07-24T03:52:28.1860877Z CommandPromptType=Native 2025-07-24T03:52:28.1861151Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-07-24T03:52:28.1861465Z COMPUTERNAME=EC2AMAZ-IFQ8336 2025-07-24T03:52:28.1861723Z COMSPEC=C:\Windows\system32\cmd.exe 2025-07-24T03:52:28.1862082Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:52:28.1862444Z CONDA_DEFAULT_ENV=base 2025-07-24T03:52:28.1862701Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-07-24T03:52:28.1863083Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:52:28.1863438Z CONDA_PARENT_DIR=C:\Jenkins 2025-07-24T03:52:28.1863670Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-07-24T03:52:28.1863937Z CONDA_PROMPT_MODIFIER=(base) 2025-07-24T03:52:28.1864206Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-07-24T03:52:28.1864641Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:52:28.1865017Z CONDA_SHLVL=1 2025-07-24T03:52:28.1865300Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-07-24T03:52:28.1865768Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-07-24T03:52:28.1866394Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-07-24T03:52:28.1866883Z CUDA_PATH_V12_9=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-07-24T03:52:28.1867246Z CUDA_VERSION=cpu 2025-07-24T03:52:28.1867567Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-07-24T03:52:28.1867942Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-07-24T03:52:28.1868349Z CommonProgramW6432=C:\Program Files\Common Files 2025-07-24T03:52:28.1868652Z DEBUG=0 2025-07-24T03:52:28.1868984Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\ 2025-07-24T03:52:28.1869434Z DISTUTILS_USE_SDK=1 2025-07-24T03:52:28.1869688Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-07-24T03:52:28.1870015Z EC2LAUNCH_TELEMETRY=1 2025-07-24T03:52:28.1870401Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-07-24T03:52:28.1872563Z EXTERNAL_INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-07-24T03:52:28.1874570Z Framework40Version=v4.0 2025-07-24T03:52:28.1874858Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-07-24T03:52:28.1875237Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-07-24T03:52:28.1875584Z FrameworkVersion=v4.0.30319 2025-07-24T03:52:28.1875833Z FrameworkVersion64=v4.0.30319 2025-07-24T03:52:28.1876096Z GITHUB_ACTION=build 2025-07-24T03:52:28.1876303Z GITHUB_ACTIONS=true 2025-07-24T03:52:28.1876512Z GITHUB_ACTION_REF= 2025-07-24T03:52:28.1876855Z GITHUB_ACTION_REPOSITORY= 2025-07-24T03:52:28.1877094Z GITHUB_ACTOR=pytorch-bot[bot] 2025-07-24T03:52:28.1877358Z GITHUB_ACTOR_ID=54816060 2025-07-24T03:52:28.1877607Z GITHUB_API_URL=https://api.github.com 2025-07-24T03:52:28.1877893Z GITHUB_BASE_REF= 2025-07-24T03:52:28.1878329Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_16f10584-ad86-4e8b-80e3-376b23181201 2025-07-24T03:52:28.1878840Z GITHUB_EVENT_NAME=push 2025-07-24T03:52:28.1879187Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-07-24T03:52:28.1879652Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-07-24T03:52:28.1879959Z GITHUB_HEAD_REF= 2025-07-24T03:52:28.1880165Z GITHUB_JOB=build 2025-07-24T03:52:28.1880632Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_16f10584-ad86-4e8b-80e3-376b23181201 2025-07-24T03:52:28.1881388Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_16f10584-ad86-4e8b-80e3-376b23181201 2025-07-24T03:52:28.1881937Z GITHUB_REF=refs/tags/ciflow/trunk/149961 2025-07-24T03:52:28.1882225Z GITHUB_REF_NAME=ciflow/trunk/149961 2025-07-24T03:52:28.1882511Z GITHUB_REF_PROTECTED=false 2025-07-24T03:52:28.1882739Z GITHUB_REF_TYPE=tag 2025-07-24T03:52:28.1882975Z GITHUB_REPOSITORY=pytorch/pytorch 2025-07-24T03:52:28.1883241Z GITHUB_REPOSITORY_ID=65600975 2025-07-24T03:52:28.1883497Z GITHUB_REPOSITORY_OWNER=pytorch 2025-07-24T03:52:28.1883769Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-07-24T03:52:28.1884031Z GITHUB_RETENTION_DAYS=90 2025-07-24T03:52:28.1884265Z GITHUB_RUN_ATTEMPT=1 2025-07-24T03:52:28.1884472Z GITHUB_RUN_ID=16487210679 2025-07-24T03:52:28.1884701Z GITHUB_RUN_NUMBER=137322 2025-07-24T03:52:28.1884941Z GITHUB_SERVER_URL=https://github.com 2025-07-24T03:52:28.1885261Z GITHUB_SHA=27c8ef1839e0747b36769efb192befc9308ff93c 2025-07-24T03:52:28.1885822Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_16f10584-ad86-4e8b-80e3-376b23181201 2025-07-24T03:52:28.1887403Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_16f10584-ad86-4e8b-80e3-376b23181201 2025-07-24T03:52:28.1888012Z GITHUB_TRIGGERING_ACTOR=pytorch-bot[bot] 2025-07-24T03:52:28.1888296Z GITHUB_WORKFLOW=trunk 2025-07-24T03:52:28.1888741Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/tags/ciflow/trunk/149961 2025-07-24T03:52:28.1889296Z GITHUB_WORKFLOW_SHA=27c8ef1839e0747b36769efb192befc9308ff93c 2025-07-24T03:52:28.1889729Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-07-24T03:52:28.1890063Z GIT_DEFAULT_BRANCH=main 2025-07-24T03:52:28.1890295Z HOME=C:\Users\runneruser 2025-07-24T03:52:28.1892239Z INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-07-24T03:52:28.1894453Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-07-24T03:52:28.1895771Z LIB=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64 2025-07-24T03:52:28.1897956Z LIBPATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319 2025-07-24T03:52:28.1899505Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-07-24T03:52:28.1899806Z MAX_JOBS=8 2025-07-24T03:52:28.1900094Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-07-24T03:52:28.1900450Z NUMBER_OF_PROCESSORS=16 2025-07-24T03:52:28.1900676Z OS=Windows_NT 2025-07-24T03:52:28.1900868Z OUR_GITHUB_JOB_ID=46614187335 2025-07-24T03:52:28.1907682Z PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin;C:\Program Files\CMake\bin;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-07-24T03:52:28.1914556Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-07-24T03:52:28.1914890Z Platform=x64 2025-07-24T03:52:28.1915114Z PROCESSOR_ARCHITECTURE=AMD64 2025-07-24T03:52:28.1915486Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 7, GenuineIntel 2025-07-24T03:52:28.1915889Z PROCESSOR_LEVEL=6 2025-07-24T03:52:28.1916093Z PROCESSOR_REVISION=5507 2025-07-24T03:52:28.1916340Z PROGRAMFILES=C:\Program Files 2025-07-24T03:52:28.1916586Z PROMPT=(base) $P$G 2025-07-24T03:52:28.1916793Z PR_NUMBER= 2025-07-24T03:52:28.1917250Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-07-24T03:52:28.1917796Z PUBLIC=C:\Users\Public 2025-07-24T03:52:28.1918734Z *** 2025-07-24T03:52:28.1918917Z PYTHON_VERSION=3.9 2025-07-24T03:52:28.1919201Z PYTORCH_FINAL_PACKAGE_DIR=C:/16487210679/build-results/ 2025-07-24T03:52:28.1919541Z ProgramData=C:\ProgramData 2025-07-24T03:52:28.1919823Z ProgramFiles(x86)=C:\Program Files (x86) 2025-07-24T03:52:28.1920123Z ProgramW6432=C:\Program Files 2025-07-24T03:52:28.1920376Z RUNNER_ARCH=X64 2025-07-24T03:52:28.1920587Z RUNNER_ENVIRONMENT=self-hosted 2025-07-24T03:52:28.1920855Z RUNNER_NAME=i-0f5ed0981f3f5cb82 2025-07-24T03:52:28.1921102Z RUNNER_OS=Windows 2025-07-24T03:52:28.1921326Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-07-24T03:52:28.1921664Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-07-24T03:52:28.1922053Z RUNNER_TRACKING_ID=github_a5b86d72-3fff-4d49-b885-d31334ac3817 2025-07-24T03:52:28.1922460Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-07-24T03:52:28.1922925Z SCCACHE_BUCKET=ossci-compiler-cache 2025-07-24T03:52:28.1923201Z SCCACHE_IDLE_TIMEOUT=0 2025-07-24T03:52:28.1923429Z SCCACHE_IGNORE_SERVER_IO_ERROR=1 2025-07-24T03:52:28.1923703Z SCCACHE_REGION=us-east-1 2025-07-24T03:52:28.1923946Z SCCACHE_S3_KEY_PREFIX=trunk 2025-07-24T03:52:28.1924358Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-07-24T03:52:28.1924857Z SHA1=27c8ef1839e0747b36769efb192befc9308ff93c 2025-07-24T03:52:28.1925132Z SHLVL=2 2025-07-24T03:52:28.1925391Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-07-24T03:52:28.1925718Z SYSTEMDRIVE=C: 2025-07-24T03:52:28.1925924Z SYSTEMROOT=C:\Windows 2025-07-24T03:52:28.1926162Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:52:28.1926454Z TERM=xterm-256color 2025-07-24T03:52:28.1926675Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:52:28.1926989Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:52:28.1927365Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-07-24T03:52:28.1927802Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-07-24T03:52:28.1928171Z TORCH_CUDA_ARCH_LIST=8.6 2025-07-24T03:52:28.1928393Z UCRTVersion=10.0.19041.0 2025-07-24T03:52:28.1928708Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-07-24T03:52:28.1929064Z UPDATEFILE=update.finished 2025-07-24T03:52:28.1929312Z USERDOMAIN=EC2AMAZ-IFQ8336 2025-07-24T03:52:28.1929538Z USERNAME=runneruser 2025-07-24T03:52:28.1929765Z USERPROFILE=C:\Users\runneruser 2025-07-24T03:52:28.1930011Z USE_CUDA=0 2025-07-24T03:52:28.1930181Z USE_XPU=0 2025-07-24T03:52:28.1930660Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\ 2025-07-24T03:52:28.1931321Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\ 2025-07-24T03:52:28.1931992Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\ 2025-07-24T03:52:28.1932870Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Redist\MSVC\14.38.33130\ 2025-07-24T03:52:28.1933408Z VCToolsVersion=14.38.33130 2025-07-24T03:52:28.1933663Z VC_PRODUCT=BuildTools 2025-07-24T03:52:28.1933868Z VC_VERSION= 2025-07-24T03:52:28.1934058Z VC_YEAR=2022 2025-07-24T03:52:28.1934258Z VERBOSE_ARG='SilentlyContinue' 2025-07-24T03:52:28.1934532Z VisualStudioVersion=17.0 2025-07-24T03:52:28.1934950Z VS170COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\ 2025-07-24T03:52:28.1935425Z VSCMD_ARG_app_plat=Desktop 2025-07-24T03:52:28.1935657Z VSCMD_ARG_HOST_ARCH=x64 2025-07-24T03:52:28.1935882Z VSCMD_ARG_TGT_ARCH=x64 2025-07-24T03:52:28.1936124Z VSCMD_VER=17.8.22 2025-07-24T03:52:28.1936477Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\ 2025-07-24T03:52:28.1936924Z WINDIR=C:\Windows 2025-07-24T03:52:28.1937479Z WindowsLibPath=C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0 2025-07-24T03:52:28.1938205Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-07-24T03:52:28.1938627Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-07-24T03:52:28.1938979Z WindowsSDKLibVersion=10.0.19041.0\ 2025-07-24T03:52:28.1939381Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-07-24T03:52:28.1939814Z WindowsSDKVersion=10.0.19041.0\ 2025-07-24T03:52:28.1940317Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-07-24T03:52:28.1941060Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-07-24T03:52:28.1941559Z XPU_VERSION= 2025-07-24T03:52:28.1941977Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/build_pytorch.bat 2025-07-24T03:52:28.1942500Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-07-24T03:52:28.1942754Z __DOTNET_ADD_64BIT=1 2025-07-24T03:52:28.1943088Z __DOTNET_PREFERRED_BITNESS=64 2025-07-24T03:52:28.1946190Z __VSCMD_PREINIT_PATH=C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-07-24T03:52:28.1949361Z 2025-07-24T03:52:28.1949606Z (base) C:\actions-runner\_work\pytorch\pytorch>python setup.py bdist_wheel 2025-07-24T03:52:28.5488530Z Building wheel torch-2.9.0a0+git27c8ef1 2025-07-24T03:52:28.7684197Z -- Building version 2.9.0a0+git27c8ef1 2025-07-24T03:52:29.0264019Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\_msvccompiler.py:12: UserWarning: _get_vc_env is private; find an alternative (pypa/distutils#340) 2025-07-24T03:52:29.0264791Z warnings.warn( 2025-07-24T03:52:29.0273580Z 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.9.0a0+git27c8ef1 -DTORCH_CUDA_ARCH_LIST=8.6 -DUSE_CUDA=0 -DUSE_NUMPY=True -DUSE_XPU=0 C:\actions-runner\_work\pytorch\pytorch 2025-07-24T03:52:41.3341303Z -- The CXX compiler identification is MSVC 19.38.33145.0 2025-07-24T03:52:41.4751843Z -- The C compiler identification is MSVC 19.38.33145.0 2025-07-24T03:52:41.4969697Z -- Detecting CXX compiler ABI info 2025-07-24T03:52:48.4916736Z -- Detecting CXX compiler ABI info - done 2025-07-24T03:52:48.4969234Z -- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe - skipped 2025-07-24T03:52:48.4974861Z -- Detecting CXX compile features 2025-07-24T03:52:48.4991583Z -- Detecting CXX compile features - done 2025-07-24T03:52:48.5094541Z -- Detecting C compiler ABI info 2025-07-24T03:52:48.8241823Z -- Detecting C compiler ABI info - done 2025-07-24T03:52:48.8267454Z -- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe - skipped 2025-07-24T03:52:48.8271598Z -- Detecting C compile features 2025-07-24T03:52:48.8282217Z -- Detecting C compile features - done 2025-07-24T03:52:48.8329529Z -- Not forcing any particular BLAS to be found 2025-07-24T03:52:48.8424449Z CMake Warning at CMakeLists.txt:418 (message): 2025-07-24T03:52:48.8424874Z TensorPipe cannot be used on Windows. Set it to OFF 2025-07-24T03:52:48.8425132Z 2025-07-24T03:52:48.8425137Z 2025-07-24T03:52:48.8425259Z CMake Warning at CMakeLists.txt:420 (message): 2025-07-24T03:52:48.8425623Z KleidiAI cannot be used on Windows. Set it to OFF 2025-07-24T03:52:48.8425856Z 2025-07-24T03:52:48.8425860Z 2025-07-24T03:52:48.8485191Z -- Performing Test C_HAS_AVX_1 2025-07-24T03:52:49.6075418Z -- Performing Test C_HAS_AVX_1 - Success 2025-07-24T03:52:49.6080271Z -- Performing Test C_HAS_AVX2_1 2025-07-24T03:52:49.9631127Z -- Performing Test C_HAS_AVX2_1 - Success 2025-07-24T03:52:49.9635752Z -- Performing Test C_HAS_AVX512_1 2025-07-24T03:52:50.3210576Z -- Performing Test C_HAS_AVX512_1 - Success 2025-07-24T03:52:50.3215006Z -- Performing Test CXX_HAS_AVX_1 2025-07-24T03:52:50.6763482Z -- Performing Test CXX_HAS_AVX_1 - Success 2025-07-24T03:52:50.6768966Z -- Performing Test CXX_HAS_AVX2_1 2025-07-24T03:52:51.0269115Z -- Performing Test CXX_HAS_AVX2_1 - Success 2025-07-24T03:52:51.0273580Z -- Performing Test CXX_HAS_AVX512_1 2025-07-24T03:52:51.3784161Z -- Performing Test CXX_HAS_AVX512_1 - Success 2025-07-24T03:52:51.3785774Z -- Current compiler supports avx2 extension. Will build perfkernels. 2025-07-24T03:52:51.3791286Z -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS 2025-07-24T03:52:52.0064656Z -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS - Success 2025-07-24T03:52:52.0065271Z -- Current compiler supports avx512f extension. Will build fbgemm. 2025-07-24T03:52:52.0092376Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY 2025-07-24T03:52:52.3261156Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY - Failed 2025-07-24T03:52:52.3283892Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY 2025-07-24T03:52:52.6304887Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY - Failed 2025-07-24T03:52:52.6312711Z -- Could not find hardware support for NEON on this machine. 2025-07-24T03:52:52.6313120Z -- No OMAP3 processor on this machine. 2025-07-24T03:52:52.6313421Z -- No OMAP4 processor on this machine. 2025-07-24T03:52:52.6313901Z -- Compiler does not support SVE extension. Will not build perfkernels. 2025-07-24T03:52:52.6395784Z -- Performing Test HAS/UTF_8 2025-07-24T03:52:52.9597417Z -- Performing Test HAS/UTF_8 - Success 2025-07-24T03:52:52.9626885Z -- Building using own protobuf under third_party per request. 2025-07-24T03:52:52.9627279Z -- Use custom protobuf build. 2025-07-24T03:52:52.9648296Z CMake Deprecation Warning at third_party/protobuf/cmake/CMakeLists.txt:2 (cmake_minimum_required): 2025-07-24T03:52:52.9648950Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-07-24T03:52:52.9649535Z CMake. 2025-07-24T03:52:52.9649656Z 2025-07-24T03:52:52.9649856Z Update the VERSION argument value or use a ... suffix to tell 2025-07-24T03:52:52.9650373Z CMake that the project does not need compatibility with older versions. 2025-07-24T03:52:52.9650674Z 2025-07-24T03:52:52.9650679Z 2025-07-24T03:52:52.9666640Z -- 2025-07-24T03:52:52.9667144Z -- 3.13.0.0 2025-07-24T03:52:52.9702405Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-07-24T03:52:53.1083184Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed 2025-07-24T03:52:53.1085590Z -- Looking for pthread_create in pthreads 2025-07-24T03:52:53.2815253Z -- Looking for pthread_create in pthreads - not found 2025-07-24T03:52:53.2816203Z -- Looking for pthread_create in pthread 2025-07-24T03:52:53.4476931Z -- Looking for pthread_create in pthread - not found 2025-07-24T03:52:53.4492852Z -- Found Threads: TRUE 2025-07-24T03:52:53.4982640Z -- Caffe2 protobuf include directory: $$ 2025-07-24T03:52:53.5016834Z -- Trying to find preferred BLAS backend of choice: MKL 2025-07-24T03:52:53.5040811Z -- MKL_THREADING = OMP 2025-07-24T03:52:53.5044051Z -- Looking for sys/types.h 2025-07-24T03:52:53.9079582Z -- Looking for sys/types.h - found 2025-07-24T03:52:53.9081404Z -- Looking for stdint.h 2025-07-24T03:52:54.2111897Z -- Looking for stdint.h - found 2025-07-24T03:52:54.2114899Z -- Looking for stddef.h 2025-07-24T03:52:54.5145829Z -- Looking for stddef.h - found 2025-07-24T03:52:54.5146714Z -- Check size of void* 2025-07-24T03:52:54.8235931Z -- Check size of void* - done 2025-07-24T03:52:54.8593160Z -- Looking for cblas_sgemm 2025-07-24T03:52:55.4684251Z -- Looking for cblas_sgemm - found 2025-07-24T03:52:55.4688439Z -- Looking for cblas_gemm_bf16bf16f32 2025-07-24T03:52:55.9903163Z -- Looking for cblas_gemm_bf16bf16f32 - found 2025-07-24T03:52:55.9903903Z -- Looking for cblas_gemm_f16f16f32 2025-07-24T03:52:56.5284722Z -- Looking for cblas_gemm_f16f16f32 - found 2025-07-24T03:52:56.5603976Z -- MKL libraries: C:/Jenkins/Miniconda3/Library/lib/mkl_intel_lp64.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_intel_thread.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_core.lib;C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib 2025-07-24T03:52:56.5605066Z CMake Warning (dev) in cmake/Dependencies.cmake: 2025-07-24T03:52:56.5605398Z A logical block opening on the line 2025-07-24T03:52:56.5605611Z 2025-07-24T03:52:56.5605840Z C:/actions-runner/_work/pytorch/pytorch/cmake/Dependencies.cmake:261 (if) 2025-07-24T03:52:56.5606170Z 2025-07-24T03:52:56.5606266Z closes on the line 2025-07-24T03:52:56.5606399Z 2025-07-24T03:52:56.5606639Z C:/actions-runner/_work/pytorch/pytorch/cmake/Dependencies.cmake:263 (endif) 2025-07-24T03:52:56.5606979Z 2025-07-24T03:52:56.5607092Z with mis-matching arguments. 2025-07-24T03:52:56.5607350Z Call Stack (most recent call first): 2025-07-24T03:52:56.5607655Z CMakeLists.txt:865 (include) 2025-07-24T03:52:56.5608011Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-24T03:52:56.5608330Z 2025-07-24T03:52:56.5608504Z -- MKL include directory: C:/Jenkins/Miniconda3/Library/include 2025-07-24T03:52:56.5608873Z -- MKL OpenMP type: Intel 2025-07-24T03:52:56.5609216Z -- MKL OpenMP library: C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib 2025-07-24T03:52:56.7282082Z -- The ASM compiler identification is MSVC 2025-07-24T03:52:56.7297646Z -- Found assembler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe 2025-07-24T03:52:56.7407696Z -- Building for XNNPACK_TARGET_PROCESSOR: x86_64 2025-07-24T03:52:56.7465010Z -- Generating microkernels.cmake 2025-07-24T03:53:01.3284688Z Duplicate microkernel definition: src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x8c8-gemm-goi-avx256vnni.c and src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x8c8-gemm-goi-avxvnni.c (1th function) 2025-07-24T03:53:01.3286320Z Duplicate microkernel definition: src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x8c8-gemm-goi-avxvnni.c and src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x8c8-gemm-goi-scalar.c 2025-07-24T03:53:01.3287192Z No microkernel found in src\reference\binary-elementwise.cc 2025-07-24T03:53:01.3287620Z No microkernel found in src\reference\packing.cc 2025-07-24T03:53:01.3288005Z No microkernel found in src\reference\unary-elementwise.cc 2025-07-24T03:53:01.4581932Z -- Found Git: C:/Program Files/Git/cmd/git.exe (found version "2.49.0.windows.1") 2025-07-24T03:53:01.5081278Z -- Google Benchmark version: v1.9.3, normalized to 1.9.3 2025-07-24T03:53:01.5101849Z -- Looking for shm_open in rt 2025-07-24T03:53:01.7017552Z -- Looking for shm_open in rt - not found 2025-07-24T03:53:01.7072841Z -- Performing Test HAVE_CXX_FLAG_WX 2025-07-24T03:53:02.0594917Z -- Performing Test HAVE_CXX_FLAG_WX - Success 2025-07-24T03:53:02.0598650Z -- Compiling and running to test HAVE_STD_REGEX 2025-07-24T03:53:05.1026025Z -- Performing Test HAVE_STD_REGEX -- success 2025-07-24T03:53:05.1027035Z -- Compiling and running to test HAVE_GNU_POSIX_REGEX 2025-07-24T03:53:05.2156980Z -- Performing Test HAVE_GNU_POSIX_REGEX -- failed to compile 2025-07-24T03:53:05.2157858Z -- Compiling and running to test HAVE_POSIX_REGEX 2025-07-24T03:53:05.3213132Z -- Performing Test HAVE_POSIX_REGEX -- failed to compile 2025-07-24T03:53:05.3214278Z -- Compiling and running to test HAVE_STEADY_CLOCK 2025-07-24T03:53:06.0681506Z -- Performing Test HAVE_STEADY_CLOCK -- success 2025-07-24T03:53:06.0720094Z -- Compiling and running to test HAVE_PTHREAD_AFFINITY 2025-07-24T03:53:06.1852053Z -- Performing Test HAVE_PTHREAD_AFFINITY -- failed to compile 2025-07-24T03:53:06.2073211Z CMake Warning (dev) at third_party/fbgemm/CMakeLists.txt:97 (find_package): 2025-07-24T03:53:06.2073825Z Policy CMP0148 is not set: The FindPythonInterp and FindPythonLibs modules 2025-07-24T03:53:06.2074361Z are removed. Run "cmake --help-policy CMP0148" for policy details. Use 2025-07-24T03:53:06.2075137Z the cmake_policy command to set the policy and suppress this warning. 2025-07-24T03:53:06.2075440Z 2025-07-24T03:53:06.2075655Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-24T03:53:06.2075955Z 2025-07-24T03:53:06.2639202Z -- Found PythonInterp: C:/Jenkins/Miniconda3/python.exe (found version "3.9.19") 2025-07-24T03:53:06.2667318Z -- Performing Test COMPILER_SUPPORTS_AVX512 2025-07-24T03:53:06.6354265Z -- Performing Test COMPILER_SUPPORTS_AVX512 - Success 2025-07-24T03:53:06.6363679Z -- Performing Test HAVE_GNU_F2H_IEEE 2025-07-24T03:53:06.7697636Z -- Performing Test HAVE_GNU_F2H_IEEE - Failed 2025-07-24T03:53:06.7736717Z -- Check OMP with lib C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib and flags -openmp:experimental 2025-07-24T03:53:07.1320004Z -- Check OMP with lib C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib and flags -openmp:experimental 2025-07-24T03:53:07.8097315Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-07-24T03:53:07.8098144Z The package name passed to `find_package_handle_standard_args` (OpenMP_C) 2025-07-24T03:53:07.8098660Z does not match the name of the calling package (OpenMP). This can lead to 2025-07-24T03:53:07.8099226Z problems in calling code that expects `find_package` result variables 2025-07-24T03:53:07.8099685Z (e.g., `_FOUND`) to follow a certain pattern. 2025-07-24T03:53:07.8100011Z Call Stack (most recent call first): 2025-07-24T03:53:07.8100410Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-07-24T03:53:07.8100884Z third_party/fbgemm/CMakeLists.txt:148 (find_package) 2025-07-24T03:53:07.8101329Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-24T03:53:07.8101631Z 2025-07-24T03:53:07.8101752Z -- Found OpenMP_C: -openmp:experimental 2025-07-24T03:53:08.1788390Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-07-24T03:53:08.1789237Z The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) 2025-07-24T03:53:08.1789753Z does not match the name of the calling package (OpenMP). This can lead to 2025-07-24T03:53:08.1790268Z problems in calling code that expects `find_package` result variables 2025-07-24T03:53:08.1790682Z (e.g., `_FOUND`) to follow a certain pattern. 2025-07-24T03:53:08.1790982Z Call Stack (most recent call first): 2025-07-24T03:53:08.1791387Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-07-24T03:53:08.1791845Z third_party/fbgemm/CMakeLists.txt:148 (find_package) 2025-07-24T03:53:08.1792291Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-24T03:53:08.1792590Z 2025-07-24T03:53:08.1792710Z -- Found OpenMP_CXX: -openmp:experimental 2025-07-24T03:53:08.1801743Z -- Found OpenMP: TRUE 2025-07-24T03:53:08.1805474Z -- OpenMP found! OpenMP_C_INCLUDE_DIRS = 2025-07-24T03:53:08.4663528Z -- ========== 2025-07-24T03:53:08.4663881Z -- CMAKE_BUILD_TYPE = Release 2025-07-24T03:53:08.4664229Z -- CMAKE_CXX_FLAGS_DEBUG is /Ob0 /Od /RTC1 /bigobj 2025-07-24T03:53:08.4664617Z -- CMAKE_CXX_FLAGS_RELEASE is /O2 /Ob2 /DNDEBUG /bigobj 2025-07-24T03:53:08.4664931Z -- ========== 2025-07-24T03:53:08.4862089Z ** AsmJit Summary ** 2025-07-24T03:53:08.4862597Z ASMJIT_DIR=C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/asmjit 2025-07-24T03:53:08.4863051Z ASMJIT_TEST=FALSE 2025-07-24T03:53:08.4863288Z ASMJIT_TARGET_TYPE=SHARED 2025-07-24T03:53:08.4863522Z ASMJIT_DEPS= 2025-07-24T03:53:08.4863731Z ASMJIT_LIBS=asmjit 2025-07-24T03:53:08.4863938Z ASMJIT_CFLAGS= 2025-07-24T03:53:08.4864378Z ASMJIT_PRIVATE_CFLAGS=-MP;-GF;-Zc:__cplusplus;-Zc:inline;-Zc:strictStrings;-Zc:threadSafeInit-;-W4 2025-07-24T03:53:08.4864875Z ASMJIT_PRIVATE_CFLAGS_DBG=-GS 2025-07-24T03:53:08.4865152Z ASMJIT_PRIVATE_CFLAGS_REL=-GS-;-O2;-Oi 2025-07-24T03:53:08.4961274Z -- Performing Test HAS_WNO_DEPRECATED_ENUM_ENUM_CONVERSION 2025-07-24T03:53:08.5905023Z -- Performing Test HAS_WNO_DEPRECATED_ENUM_ENUM_CONVERSION - Failed 2025-07-24T03:53:08.5929754Z -- Performing Test HAS_WNO_DEPRECATED_ANON_ENUM_ENUM_CONVERSION 2025-07-24T03:53:08.6757044Z -- Performing Test HAS_WNO_DEPRECATED_ANON_ENUM_ENUM_CONVERSION - Failed 2025-07-24T03:53:08.6780674Z -- Performing Test HAS_WNO_ERROR_DEPRECATED_ENUM_ENUM_CONVERSION 2025-07-24T03:53:08.7534734Z -- Performing Test HAS_WNO_ERROR_DEPRECATED_ENUM_ENUM_CONVERSION - Failed 2025-07-24T03:53:08.7848780Z CMake Deprecation Warning at third_party/FP16/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-07-24T03:53:08.7849440Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-07-24T03:53:08.7849838Z CMake. 2025-07-24T03:53:08.7849944Z 2025-07-24T03:53:08.7850146Z Update the VERSION argument value or use a ... suffix to tell 2025-07-24T03:53:08.7850693Z CMake that the project does not need compatibility with older versions. 2025-07-24T03:53:08.7851012Z 2025-07-24T03:53:08.7851017Z 2025-07-24T03:53:08.7927096Z CMake Deprecation Warning at third_party/psimd/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-07-24T03:53:08.7927733Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-07-24T03:53:08.7928126Z CMake. 2025-07-24T03:53:08.7928231Z 2025-07-24T03:53:08.7928432Z Update the VERSION argument value or use a ... suffix to tell 2025-07-24T03:53:08.7928950Z CMake that the project does not need compatibility with older versions. 2025-07-24T03:53:08.7929253Z 2025-07-24T03:53:08.7929257Z 2025-07-24T03:53:08.7977066Z -- Using third party subdirectory Eigen. 2025-07-24T03:53:15.4772779Z -- Found Python: C:\Jenkins\Miniconda3\python.exe (found version "3.9.19") found components: Interpreter Development.Module NumPy 2025-07-24T03:53:15.4795353Z -- Using third_party/pybind11. 2025-07-24T03:53:15.4796131Z -- pybind11 include dirs: C:/actions-runner/_work/pytorch/pytorch/cmake/../third_party/pybind11/include 2025-07-24T03:53:15.4827892Z -- Could NOT find OpenTelemetryApi (missing: OpenTelemetryApi_INCLUDE_DIRS) 2025-07-24T03:53:15.4828518Z -- Using third_party/opentelemetry-cpp. 2025-07-24T03:53:15.4829477Z -- opentelemetry api include dirs: C:/actions-runner/_work/pytorch/pytorch/cmake/../third_party/opentelemetry-cpp/api/include 2025-07-24T03:53:15.9916266Z -- Could NOT find MPI_C (missing: MPI_C_LIB_NAMES MPI_C_HEADER_DIR MPI_C_WORKS) 2025-07-24T03:53:16.3691993Z -- Could NOT find MPI_CXX (missing: MPI_CXX_LIB_NAMES MPI_CXX_HEADER_DIR MPI_CXX_WORKS) 2025-07-24T03:53:16.3700355Z -- Could NOT find MPI (missing: MPI_C_FOUND MPI_CXX_FOUND) 2025-07-24T03:53:16.3704953Z CMake Warning at cmake/Dependencies.cmake:922 (message): 2025-07-24T03:53:16.3705466Z Not compiling with MPI. Suppress this warning with -DUSE_MPI=OFF 2025-07-24T03:53:16.3705902Z Call Stack (most recent call first): 2025-07-24T03:53:16.3706270Z CMakeLists.txt:865 (include) 2025-07-24T03:53:16.3706480Z 2025-07-24T03:53:16.3706487Z 2025-07-24T03:53:16.3760921Z -- Adding OpenMP CXX_FLAGS: -openmp:experimental 2025-07-24T03:53:16.3761428Z -- Will link against OpenMP libraries: C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib 2025-07-24T03:53:16.3769987Z -- Found nvtx3: C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX/c/include 2025-07-24T03:53:16.3789946Z -- MSVC detected 2025-07-24T03:53:16.3790168Z -- Set USE_REDIS OFF 2025-07-24T03:53:16.3790430Z -- Set USE_IBVERBS OFF 2025-07-24T03:53:16.3790645Z -- Set USE_NCCL OFF 2025-07-24T03:53:16.3790850Z -- Set USE_RCCL OFF 2025-07-24T03:53:16.3791060Z -- Set USE_LIBUV OFF 2025-07-24T03:53:16.3801016Z -- Gloo build as SHARED library 2025-07-24T03:53:16.8153540Z -- Found Python3: C:\Jenkins\Miniconda3\python.exe (found version "3.9.19") found components: Interpreter 2025-07-24T03:53:16.8166343Z -- ONNX_PROTOC_EXECUTABLE: $ 2025-07-24T03:53:16.8166797Z -- Protobuf_VERSION: Protobuf_VERSION_NOTFOUND 2025-07-24T03:53:16.8170431Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-07-24T03:53:16.8177215Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-07-24T03:53:16.8183988Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-07-24T03:53:17.0448989Z -- 2025-07-24T03:53:17.0449281Z -- ******** Summary ******** 2025-07-24T03:53:17.0449569Z -- CMake version : 3.27.9 2025-07-24T03:53:17.0449963Z -- CMake command : C:/Program Files/CMake/bin/cmake.exe 2025-07-24T03:53:17.0450345Z -- System : Windows 2025-07-24T03:53:17.0450982Z -- C++ compiler : C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe 2025-07-24T03:53:17.0451650Z -- C++ compiler version : 19.38.33145.0 2025-07-24T03:53:17.0452207Z -- CXX flags : /DWIN32 /D_WINDOWS /EHsc /Zc:__cplusplus /bigobj /FS /utf-8 -DUSE_PTHREADPOOL /EHsc /wd26812 2025-07-24T03:53:17.0452728Z -- Build type : Release 2025-07-24T03:53:17.0453112Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1 2025-07-24T03:53:17.0453593Z -- CMAKE_PREFIX_PATH : C:\Jenkins\Miniconda3\Lib\site-packages 2025-07-24T03:53:17.0454088Z -- CMAKE_INSTALL_PREFIX : C:/actions-runner/_work/pytorch/pytorch/torch 2025-07-24T03:53:17.0454627Z -- CMAKE_MODULE_PATH : C:/actions-runner/_work/pytorch/pytorch/cmake/Modules 2025-07-24T03:53:17.0455029Z -- 2025-07-24T03:53:17.0455220Z -- ONNX version : 1.18.0 2025-07-24T03:53:17.0455532Z -- ONNX NAMESPACE : onnx_torch 2025-07-24T03:53:17.0455840Z -- ONNX_USE_LITE_PROTO : OFF 2025-07-24T03:53:17.0456816Z -- USE_PROTOBUF_SHARED_LIBS : OFF 2025-07-24T03:53:17.0457124Z -- ONNX_DISABLE_EXCEPTIONS : OFF 2025-07-24T03:53:17.0457439Z -- ONNX_DISABLE_STATIC_REGISTRATION : OFF 2025-07-24T03:53:17.0457724Z -- ONNX_WERROR : OFF 2025-07-24T03:53:17.0458011Z -- ONNX_BUILD_TESTS : OFF 2025-07-24T03:53:17.0458310Z -- BUILD_SHARED_LIBS : OFF 2025-07-24T03:53:17.0458565Z -- 2025-07-24T03:53:17.0458893Z -- Protobuf compiler : $ 2025-07-24T03:53:17.0459276Z -- Protobuf includes : 2025-07-24T03:53:17.0459570Z -- Protobuf libraries : 2025-07-24T03:53:17.0459853Z -- ONNX_BUILD_PYTHON : OFF 2025-07-24T03:53:17.0460243Z -- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor 2025-07-24T03:53:17.0460644Z -- Adding -DNDEBUG to compile flags 2025-07-24T03:53:17.0460991Z CMake Warning at cmake/Dependencies.cmake:1443 (message): 2025-07-24T03:53:17.0461459Z Not compiling with MAGMA. Suppress this warning with -DUSE_MAGMA=OFF. 2025-07-24T03:53:17.0461855Z Call Stack (most recent call first): 2025-07-24T03:53:17.0462138Z CMakeLists.txt:865 (include) 2025-07-24T03:53:17.0462300Z 2025-07-24T03:53:17.0462305Z 2025-07-24T03:53:17.0464916Z -- Could not find hardware support for NEON on this machine. 2025-07-24T03:53:17.0465303Z -- No OMAP3 processor on this machine. 2025-07-24T03:53:17.0465610Z -- No OMAP4 processor on this machine. 2025-07-24T03:53:17.0479536Z -- Looking for sbgemm_ 2025-07-24T03:53:22.5285116Z -- Looking for sbgemm_ - not found 2025-07-24T03:53:22.5295296Z -- Found a library with LAPACK API (mkl). 2025-07-24T03:53:22.5296614Z disabling CUDA because NOT USE_CUDA is set 2025-07-24T03:53:22.5296927Z disabling ROCM because NOT USE_ROCM is set 2025-07-24T03:53:22.5297275Z -- MIOpen not found. Compiling without MIOpen support 2025-07-24T03:53:22.5305999Z -- Will build oneDNN UKERNEL 2025-07-24T03:53:22.5399086Z -- MKLDNN_CPU_RUNTIME = OMP 2025-07-24T03:53:22.5417932Z -- DNNL_TARGET_ARCH: X64 2025-07-24T03:53:22.5446718Z -- DNNL_LIBRARY_NAME: dnnl 2025-07-24T03:53:22.5540308Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-07-24T03:53:22.5541144Z The package name passed to `find_package_handle_standard_args` (OpenMP_C) 2025-07-24T03:53:22.5541654Z does not match the name of the calling package (OpenMP). This can lead to 2025-07-24T03:53:22.5542163Z problems in calling code that expects `find_package` result variables 2025-07-24T03:53:22.5542569Z (e.g., `_FOUND`) to follow a certain pattern. 2025-07-24T03:53:22.5542885Z Call Stack (most recent call first): 2025-07-24T03:53:22.5543282Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-07-24T03:53:22.5543795Z third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:41 (find_package) 2025-07-24T03:53:22.5544235Z third_party/ideep/mkl-dnn/CMakeLists.txt:89 (include) 2025-07-24T03:53:22.5544693Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-24T03:53:22.5544995Z 2025-07-24T03:53:22.5545125Z -- Found OpenMP_C: -openmp:experimental 2025-07-24T03:53:22.5551038Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-07-24T03:53:22.5551825Z The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) 2025-07-24T03:53:22.5552406Z does not match the name of the calling package (OpenMP). This can lead to 2025-07-24T03:53:22.5552989Z problems in calling code that expects `find_package` result variables 2025-07-24T03:53:22.5553459Z (e.g., `_FOUND`) to follow a certain pattern. 2025-07-24T03:53:22.5553815Z Call Stack (most recent call first): 2025-07-24T03:53:22.5554274Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-07-24T03:53:22.5555037Z third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:41 (find_package) 2025-07-24T03:53:22.5555542Z third_party/ideep/mkl-dnn/CMakeLists.txt:89 (include) 2025-07-24T03:53:22.5556074Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-24T03:53:22.5556376Z 2025-07-24T03:53:22.5572849Z -- Found OpenMP_CXX: -openmp:experimental 2025-07-24T03:53:22.6007784Z -- Enabled testing coverage: CI 2025-07-24T03:53:22.6018641Z -- Enabled workload: TRAINING 2025-07-24T03:53:22.6018962Z -- Enabled primitives: ALL 2025-07-24T03:53:22.6019329Z -- Enabled primitive CPU ISA: ALL 2025-07-24T03:53:22.6019667Z -- Enabled primitive GPU ISA: ALL 2025-07-24T03:53:22.6020065Z -- Enabled GeMM kernels ISA: ALL 2025-07-24T03:53:22.6118230Z -- Primitive cache is enabled 2025-07-24T03:53:22.6119226Z -- Experimental functionality for ukernels is enabled 2025-07-24T03:53:22.6732173Z -- The ASM_MASM compiler identification is MSVC 2025-07-24T03:53:22.7193864Z -- Found assembler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/ml64.exe 2025-07-24T03:53:22.7430230Z -- Graph component is enabled 2025-07-24T03:53:22.7532269Z -- Graph compiler backend is disabled. 2025-07-24T03:53:22.7644983Z -- Found MKL-DNN: TRUE 2025-07-24T03:53:22.7732928Z -- {fmt} version: 11.2.0 2025-07-24T03:53:22.7733196Z -- Build type: Release 2025-07-24T03:53:22.7813855Z -- Using CPU-only version of Kineto 2025-07-24T03:53:22.7814501Z -- Configuring Kineto dependency: 2025-07-24T03:53:22.7815018Z -- KINETO_SOURCE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto 2025-07-24T03:53:22.7815495Z -- KINETO_BUILD_TESTS = OFF 2025-07-24T03:53:22.7815746Z -- KINETO_LIBRARY_TYPE = static 2025-07-24T03:53:22.7875515Z CMake Warning (dev) at third_party/kineto/libkineto/CMakeLists.txt:15 (find_package): 2025-07-24T03:53:22.7876128Z Policy CMP0148 is not set: The FindPythonInterp and FindPythonLibs modules 2025-07-24T03:53:22.7876676Z are removed. Run "cmake --help-policy CMP0148" for policy details. Use 2025-07-24T03:53:22.7877391Z the cmake_policy command to set the policy and suppress this warning. 2025-07-24T03:53:22.7877692Z 2025-07-24T03:53:22.7877885Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-24T03:53:22.7878195Z 2025-07-24T03:53:22.8320053Z -- CUDA_SOURCE_DIR = 2025-07-24T03:53:22.8320347Z -- ROCM_SOURCE_DIR = 2025-07-24T03:53:22.8728829Z -- CUPTI unavailable or disabled - not building GPU profilers 2025-07-24T03:53:22.9549339Z -- Kineto: FMT_SOURCE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/fmt 2025-07-24T03:53:22.9549995Z -- Kineto: FMT_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/fmt/include 2025-07-24T03:53:22.9550498Z -- CUPTI_INCLUDE_DIR = /extras/CUPTI/include 2025-07-24T03:53:22.9550831Z -- ROCTRACER_INCLUDE_DIR = /include/roctracer 2025-07-24T03:53:22.9551421Z -- DYNOLOG_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/ 2025-07-24T03:53:22.9552380Z -- IPCFABRIC_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog//dynolog/src/ipcfabric/ 2025-07-24T03:53:22.9577746Z -- Configured Kineto (CPU) 2025-07-24T03:53:22.9630635Z -- Performing Test HAS/WD4624 2025-07-24T03:53:23.2736430Z -- Performing Test HAS/WD4624 - Success 2025-07-24T03:53:23.2760245Z -- Performing Test HAS/WD4068 2025-07-24T03:53:23.5877854Z -- Performing Test HAS/WD4068 - Success 2025-07-24T03:53:23.5903955Z -- Performing Test HAS/WD4067 2025-07-24T03:53:23.8988880Z -- Performing Test HAS/WD4067 - Success 2025-07-24T03:53:23.9013600Z -- Performing Test HAS/WD4267 2025-07-24T03:53:24.2128359Z -- Performing Test HAS/WD4267 - Success 2025-07-24T03:53:24.2152818Z -- Performing Test HAS/WD4661 2025-07-24T03:53:24.5191864Z -- Performing Test HAS/WD4661 - Success 2025-07-24T03:53:24.5216679Z -- Performing Test HAS/WD4717 2025-07-24T03:53:24.8196811Z -- Performing Test HAS/WD4717 - Success 2025-07-24T03:53:24.8223087Z -- Performing Test HAS/WD4244 2025-07-24T03:53:25.1208737Z -- Performing Test HAS/WD4244 - Success 2025-07-24T03:53:25.1234733Z -- Performing Test HAS/WD4804 2025-07-24T03:53:25.4326091Z -- Performing Test HAS/WD4804 - Success 2025-07-24T03:53:25.4351332Z -- Performing Test HAS/WD4273 2025-07-24T03:53:25.7404807Z -- Performing Test HAS/WD4273 - Success 2025-07-24T03:53:25.7429796Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW 2025-07-24T03:53:25.8184910Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW - Failed 2025-07-24T03:53:26.9654223Z -- 2025-07-24T03:53:26.9655179Z -- Architecture: x64 2025-07-24T03:53:26.9658533Z -- Use the C++ compiler to compile (MI_USE_CXX=ON) 2025-07-24T03:53:26.9664781Z -- 2025-07-24T03:53:26.9664968Z -- Library name : mimalloc 2025-07-24T03:53:26.9665221Z -- Version : 2.2.4 2025-07-24T03:53:26.9665457Z -- Build type : release 2025-07-24T03:53:26.9666078Z -- C++ Compiler : C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe 2025-07-24T03:53:26.9666714Z -- Compiler flags : /Zc:__cplusplus 2025-07-24T03:53:26.9667074Z -- Compiler defines : MI_CMAKE_BUILD_TYPE=release;MI_BUILD_RELEASE 2025-07-24T03:53:26.9667510Z -- Link libraries : psapi;shell32;user32;advapi32;bcrypt 2025-07-24T03:53:26.9667914Z -- Build targets : static 2025-07-24T03:53:26.9668152Z -- 2025-07-24T03:53:26.9769809Z -- don't use NUMA 2025-07-24T03:53:26.9820703Z -- Looking for backtrace 2025-07-24T03:53:27.0862636Z -- Looking for backtrace - not found 2025-07-24T03:53:27.0943629Z -- Could NOT find Backtrace (missing: Backtrace_LIBRARY Backtrace_INCLUDE_DIR) 2025-07-24T03:53:31.9007672Z -- headers outputs: 2025-07-24T03:53:34.4241590Z -- sources outputs: 2025-07-24T03:53:36.2302269Z -- declarations_yaml outputs: 2025-07-24T03:53:36.2389558Z -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT 2025-07-24T03:53:41.6271749Z -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT - Failed 2025-07-24T03:53:41.8629279Z -- Using ATen parallel backend: OMP 2025-07-24T03:53:41.8645669Z disabling CUDA because USE_CUDA is set false 2025-07-24T03:53:42.2684674Z -- Found OpenSSL: C:/Jenkins/Miniconda3/Library/lib/libcrypto.lib (found version "3.0.16") 2025-07-24T03:53:42.3595481Z -- Check size of long double 2025-07-24T03:53:42.7739711Z -- Check size of long double - done 2025-07-24T03:53:42.7744903Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 2025-07-24T03:53:42.9075702Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 - Failed 2025-07-24T03:53:42.9079075Z -- Performing Test COMPILER_SUPPORTS_SSE2 2025-07-24T03:53:43.3752692Z -- Performing Test COMPILER_SUPPORTS_SSE2 - Success 2025-07-24T03:53:43.3757052Z -- Performing Test COMPILER_SUPPORTS_SSE4 2025-07-24T03:53:43.7870274Z -- Performing Test COMPILER_SUPPORTS_SSE4 - Success 2025-07-24T03:53:43.7872857Z -- Performing Test COMPILER_SUPPORTS_AVX 2025-07-24T03:53:44.1902623Z -- Performing Test COMPILER_SUPPORTS_AVX - Success 2025-07-24T03:53:44.1905759Z -- Performing Test COMPILER_SUPPORTS_FMA4 2025-07-24T03:53:44.6029290Z -- Performing Test COMPILER_SUPPORTS_FMA4 - Success 2025-07-24T03:53:44.6034053Z -- Performing Test COMPILER_SUPPORTS_AVX2 2025-07-24T03:53:45.0070919Z -- Performing Test COMPILER_SUPPORTS_AVX2 - Success 2025-07-24T03:53:45.0074323Z -- Performing Test COMPILER_SUPPORTS_AVX512F 2025-07-24T03:53:45.4251080Z -- Performing Test COMPILER_SUPPORTS_AVX512F - Success 2025-07-24T03:53:45.4295365Z -- Found OpenMP_C: -openmp:experimental (found version "2.0") 2025-07-24T03:53:45.4306931Z -- Found OpenMP_CXX: -openmp:experimental (found version "2.0") 2025-07-24T03:53:45.4317008Z -- Found OpenMP: TRUE (found version "2.0") 2025-07-24T03:53:45.4321943Z -- Performing Test COMPILER_SUPPORTS_OPENMP 2025-07-24T03:53:45.8125428Z -- Performing Test COMPILER_SUPPORTS_OPENMP - Success 2025-07-24T03:53:45.8127530Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD 2025-07-24T03:53:45.9497238Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD - Failed 2025-07-24T03:53:45.9499764Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES 2025-07-24T03:53:46.0849155Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES - Failed 2025-07-24T03:53:46.0852484Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH 2025-07-24T03:53:46.3082629Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH - Failed 2025-07-24T03:53:46.3085146Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM 2025-07-24T03:53:46.4102962Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM - Failed 2025-07-24T03:53:46.5026582Z Target system: Windows-10.0.17763 2025-07-24T03:53:46.5027002Z -- Configuring build for SLEEF-v3.8.0 2025-07-24T03:53:46.5027331Z Target processor: AMD64 2025-07-24T03:53:46.5027666Z Host system: Windows-10.0.17763 2025-07-24T03:53:46.5027953Z Host processor: AMD64 2025-07-24T03:53:46.5028573Z Detected C compiler: MSVC @ C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe 2025-07-24T03:53:46.5029257Z CMake: 3.27.9 2025-07-24T03:53:46.5029530Z Make program: C:/Jenkins/Miniconda3/Library/bin/ninja.exe 2025-07-24T03:53:46.5030077Z -- Using option `/D_CRT_SECURE_NO_WARNINGS /D_CRT_NONSTDC_NO_DEPRECATE ` to compile libsleef 2025-07-24T03:53:46.5030549Z -- Building shared libs : OFF 2025-07-24T03:53:46.5030803Z -- Building static test bins: OFF 2025-07-24T03:53:46.5031072Z -- MPFR : LIB_MPFR-NOTFOUND 2025-07-24T03:53:46.5031313Z -- GMP : LIBGMP-NOTFOUND 2025-07-24T03:53:46.5031543Z -- RT : 2025-07-24T03:53:46.5031734Z -- FFTW3 : LIBFFTW3-NOTFOUND 2025-07-24T03:53:46.5031995Z -- OPENSSL : 3.0.16 2025-07-24T03:53:46.5032211Z -- SDE : SDE_COMMAND-NOTFOUND 2025-07-24T03:53:46.5032487Z -- COMPILER_SUPPORTS_OPENMP : FALSE 2025-07-24T03:53:46.5591222Z AT_INSTALL_INCLUDE_DIR include/ATen/core 2025-07-24T03:53:46.5591938Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/aten_interned_strings.h 2025-07-24T03:53:46.5592812Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/enum_tag.h 2025-07-24T03:53:46.5593789Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/TensorBody.h 2025-07-24T03:53:47.3024654Z CMake Warning at CMakeLists.txt:1265 (message): 2025-07-24T03:53:47.3025167Z Generated cmake files are only fully tested if one builds with system glog, 2025-07-24T03:53:47.3025727Z gflags, and protobuf. Other settings may generate files that are not well 2025-07-24T03:53:47.3026118Z tested. 2025-07-24T03:53:47.3026241Z 2025-07-24T03:53:47.3026249Z 2025-07-24T03:53:47.3047547Z -- 2025-07-24T03:53:47.3047797Z -- ******** Summary ******** 2025-07-24T03:53:47.3048067Z -- General: 2025-07-24T03:53:47.3048276Z -- CMake version : 3.27.9 2025-07-24T03:53:47.3048619Z -- CMake command : C:/Program Files/CMake/bin/cmake.exe 2025-07-24T03:53:47.3048989Z -- System : Windows 2025-07-24T03:53:47.3049613Z -- C++ compiler : C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe 2025-07-24T03:53:47.3050247Z -- C++ compiler id : MSVC 2025-07-24T03:53:47.3050518Z -- C++ compiler version : 19.38.33145.0 2025-07-24T03:53:47.3050871Z -- Using ccache if found : OFF 2025-07-24T03:53:47.3052151Z -- CXX flags : /DWIN32 /D_WINDOWS /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-07-24T03:53:47.3053648Z -- Shared LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-07-24T03:53:47.3054131Z -- Static LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-07-24T03:53:47.3054617Z -- Module LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-07-24T03:53:47.3055215Z -- Build type : Release 2025-07-24T03:53:47.3056290Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1;ONNX_NAMESPACE=onnx_torch;_CRT_SECURE_NO_DEPRECATE=1;IDEEP_USE_MKL;USE_EXTERNAL_MZCRC;MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS;EXPORT_AOTI_FUNCTIONS;WIN32_LEAN_AND_MEAN;_UCRT_LEGACY_INFINITY;NOMINMAX;USE_MIMALLOC 2025-07-24T03:53:47.3057557Z -- CMAKE_PREFIX_PATH : C:\Jenkins\Miniconda3\Lib\site-packages 2025-07-24T03:53:47.3058050Z -- CMAKE_INSTALL_PREFIX : C:/actions-runner/_work/pytorch/pytorch/torch 2025-07-24T03:53:47.3058469Z -- USE_GOLD_LINKER : OFF 2025-07-24T03:53:47.3058712Z -- 2025-07-24T03:53:47.3058921Z -- TORCH_VERSION : 2.9.0 2025-07-24T03:53:47.3059198Z -- BUILD_STATIC_RUNTIME_BENCHMARK: OFF 2025-07-24T03:53:47.3059505Z -- BUILD_BINARY : OFF 2025-07-24T03:53:47.3059776Z -- BUILD_CUSTOM_PROTOBUF : ON 2025-07-24T03:53:47.3060030Z -- Link local protobuf : ON 2025-07-24T03:53:47.3060310Z -- BUILD_PYTHON : True 2025-07-24T03:53:47.3060584Z -- Python version : 3.9.19 2025-07-24T03:53:47.3060932Z -- Python executable : C:\Jenkins\Miniconda3\python.exe 2025-07-24T03:53:47.3061359Z -- Python library : C:/Jenkins/Miniconda3/libs/python39.lib 2025-07-24T03:53:47.3061786Z -- Python includes : C:/Jenkins/Miniconda3/include 2025-07-24T03:53:47.3062236Z -- Python site-package : C:\Jenkins\Miniconda3\Lib\site-packages 2025-07-24T03:53:47.3062640Z -- BUILD_SHARED_LIBS : ON 2025-07-24T03:53:47.3062984Z -- CAFFE2_USE_MSVC_STATIC_RUNTIME : OFF 2025-07-24T03:53:47.3063279Z -- BUILD_TEST : True 2025-07-24T03:53:47.3063550Z -- BUILD_JNI : OFF 2025-07-24T03:53:47.3063802Z -- BUILD_MOBILE_AUTOGRAD : OFF 2025-07-24T03:53:47.3064077Z -- BUILD_LITE_INTERPRETER: OFF 2025-07-24T03:53:47.3064339Z -- INTERN_BUILD_MOBILE : 2025-07-24T03:53:47.3064606Z -- TRACING_BASED : OFF 2025-07-24T03:53:47.3064852Z -- USE_BLAS : 1 2025-07-24T03:53:47.3065269Z -- BLAS : mkl 2025-07-24T03:53:47.3065508Z -- BLAS_HAS_SBGEMM : 2025-07-24T03:53:47.3065769Z -- USE_LAPACK : 1 2025-07-24T03:53:47.3066033Z -- LAPACK : mkl 2025-07-24T03:53:47.3066275Z -- USE_ASAN : OFF 2025-07-24T03:53:47.3066534Z -- USE_TSAN : OFF 2025-07-24T03:53:47.3066778Z -- USE_CPP_CODE_COVERAGE : OFF 2025-07-24T03:53:47.3067040Z -- USE_CUDA : 0 2025-07-24T03:53:47.3067272Z -- USE_XPU : 0 2025-07-24T03:53:47.3067493Z -- USE_ROCM : OFF 2025-07-24T03:53:47.3067812Z -- BUILD_NVFUSER : 2025-07-24T03:53:47.3068098Z -- USE_EIGEN_FOR_BLAS : 2025-07-24T03:53:47.3068335Z -- USE_FBGEMM : ON 2025-07-24T03:53:47.3068617Z -- USE_FAKELOWP : OFF 2025-07-24T03:53:47.3068867Z -- USE_KINETO : ON 2025-07-24T03:53:47.3069097Z -- USE_GFLAGS : OFF 2025-07-24T03:53:47.3069341Z -- USE_GLOG : OFF 2025-07-24T03:53:47.3069583Z -- USE_LITE_PROTO : OFF 2025-07-24T03:53:47.3069814Z -- USE_PYTORCH_METAL : OFF 2025-07-24T03:53:47.3070079Z -- USE_PYTORCH_METAL_EXPORT : OFF 2025-07-24T03:53:47.3070340Z -- USE_MPS : OFF 2025-07-24T03:53:47.3070588Z -- CAN_COMPILE_METAL : 2025-07-24T03:53:47.3070816Z -- USE_MKL : ON 2025-07-24T03:53:47.3071055Z -- USE_STATIC_MKL : OFF 2025-07-24T03:53:47.3071294Z -- USE_MKLDNN : ON 2025-07-24T03:53:47.3071515Z -- USE_MKLDNN_ACL : OFF 2025-07-24T03:53:47.3071754Z -- USE_MKLDNN_CBLAS : OFF 2025-07-24T03:53:47.3071978Z -- USE_UCC : OFF 2025-07-24T03:53:47.3072227Z -- USE_ITT : ON 2025-07-24T03:53:47.3072446Z -- USE_XCCL : OFF 2025-07-24T03:53:47.3072687Z -- USE_NCCL : OFF 2025-07-24T03:53:47.3072924Z -- Found NVSHMEM : 2025-07-24T03:53:47.3073301Z -- USE_NNPACK : OFF 2025-07-24T03:53:47.3073546Z -- USE_NUMPY : ON 2025-07-24T03:53:47.3073829Z -- USE_OBSERVERS : ON 2025-07-24T03:53:47.3074068Z -- USE_OPENCL : OFF 2025-07-24T03:53:47.3074344Z -- USE_OPENMP : ON 2025-07-24T03:53:47.3074582Z -- USE_MIMALLOC : ON 2025-07-24T03:53:47.3074879Z -- USE_MIMALLOC_ON_MKL : OFF 2025-07-24T03:53:47.3075142Z -- USE_VULKAN : OFF 2025-07-24T03:53:47.3075373Z -- USE_PROF : OFF 2025-07-24T03:53:47.3075617Z -- USE_PYTORCH_QNNPACK : OFF 2025-07-24T03:53:47.3075853Z -- USE_XNNPACK : ON 2025-07-24T03:53:47.3076095Z -- USE_DISTRIBUTED : ON 2025-07-24T03:53:47.3076336Z -- USE_MPI : OFF 2025-07-24T03:53:47.3076579Z -- USE_GLOO : ON 2025-07-24T03:53:47.3076841Z -- USE_GLOO_WITH_OPENSSL : OFF 2025-07-24T03:53:47.3077081Z -- USE_GLOO_IBVERBS : OFF 2025-07-24T03:53:47.3077345Z -- USE_TENSORPIPE : OFF 2025-07-24T03:53:47.3077656Z -- Public Dependencies : caffe2::mkl 2025-07-24T03:53:47.3078421Z -- Private Dependencies : Threads::Threads;pthreadpool;cpuinfo;XNNPACK;microkernels-prod;fbgemm;ittnotify;fp16;caffe2::openmp;gloo;fmt::fmt-header-only;kineto 2025-07-24T03:53:47.3079168Z -- Public CUDA Deps. : 2025-07-24T03:53:47.3079407Z -- Private CUDA Deps. : 2025-07-24T03:53:47.3079702Z -- USE_COREML_DELEGATE : OFF 2025-07-24T03:53:47.3079993Z -- BUILD_LAZY_TS_BACKEND : ON 2025-07-24T03:53:47.3080262Z -- USE_ROCM_KERNEL_ASSERT : OFF 2025-07-24T03:53:47.3163850Z -- Performing Test HAS_WMISSING_PROTOTYPES 2025-07-24T03:53:47.4075275Z -- Performing Test HAS_WMISSING_PROTOTYPES - Failed 2025-07-24T03:53:47.4100389Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES 2025-07-24T03:53:47.4964031Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES - Failed 2025-07-24T03:53:47.5045756Z -- Configuring done (78.5s) 2025-07-24T03:53:54.1047357Z -- Generating done (5.5s) 2025-07-24T03:53:54.3587116Z CMake Warning: 2025-07-24T03:53:54.3587599Z Manually-specified variables were not used by the project: 2025-07-24T03:53:54.3587903Z 2025-07-24T03:53:54.3587988Z BUILD_ENVIRONMENT 2025-07-24T03:53:54.3588189Z BUILD_TYPE 2025-07-24T03:53:54.3588367Z BUILD_WHEEL 2025-07-24T03:53:54.3588476Z 2025-07-24T03:53:54.3588480Z 2025-07-24T03:53:54.3622599Z -- Build files have been written to: C:/actions-runner/_work/pytorch/pytorch/build 2025-07-24T03:53:54.4717658Z cmake --build . --target install --config Release -j 8 2025-07-24T03:54:01.3335007Z [1/4] Generating ATen declarations_yaml 2025-07-24T03:54:08.4458083Z [2/4] Generating ATen headers 2025-07-24T03:54:09.4604329Z [3/4] Generating ATen sources 2025-07-24T03:54:14.9544188Z [1/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\arena.cc.obj 2025-07-24T03:54:14.9954388Z [2/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_enum_util.cc.obj 2025-07-24T03:54:14.9970773Z [3/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\extension_set.cc.obj 2025-07-24T03:54:15.0036931Z [4/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\implicit_weak_message.cc.obj 2025-07-24T03:54:15.0055713Z [5/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\coded_stream.cc.obj 2025-07-24T03:54:15.0116606Z [6/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_util.cc.obj 2025-07-24T03:54:15.0192025Z [7/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_table_driven_lite.cc.obj 2025-07-24T03:54:15.0338375Z [8/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any_lite.cc.obj 2025-07-24T03:54:15.2658308Z [9/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream.cc.obj 2025-07-24T03:54:15.3077470Z [10/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream_impl.cc.obj 2025-07-24T03:54:15.3187794Z [11/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream_impl_lite.cc.obj 2025-07-24T03:54:15.3339553Z [12/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\strtod.cc.obj 2025-07-24T03:54:15.3608578Z [13/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\parse_context.cc.obj 2025-07-24T03:54:15.3690190Z [14/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\message_lite.cc.obj 2025-07-24T03:54:15.3930565Z [15/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\repeated_field.cc.obj 2025-07-24T03:54:15.5340262Z [16/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\bytestream.cc.obj 2025-07-24T03:54:15.6080931Z [17/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\int128.cc.obj 2025-07-24T03:54:15.6204735Z [18/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\statusor.cc.obj 2025-07-24T03:54:15.6252229Z [19/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\stringprintf.cc.obj 2025-07-24T03:54:15.6311106Z [20/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\stringpiece.cc.obj 2025-07-24T03:54:15.6483877Z [21/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\status.cc.obj 2025-07-24T03:54:15.7657608Z [22/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\structurally_valid.cc.obj 2025-07-24T03:54:15.8868104Z [23/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\time.cc.obj 2025-07-24T03:54:15.9073859Z [24/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\strutil.cc.obj 2025-07-24T03:54:15.9600870Z [25/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any.cc.obj 2025-07-24T03:54:15.9692820Z [26/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any.pb.cc.obj 2025-07-24T03:54:16.0572428Z [27/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wire_format_lite.cc.obj 2025-07-24T03:54:16.1081258Z [28/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\api.pb.cc.obj 2025-07-24T03:54:16.2474214Z [29/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\compiler\importer.cc.obj 2025-07-24T03:54:16.3104776Z [30/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\compiler\parser.cc.obj 2025-07-24T03:54:16.3394198Z [31/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor.cc.obj 2025-07-24T03:54:16.4086705Z [32/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor_database.cc.obj 2025-07-24T03:54:16.4275309Z [33/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor.pb.cc.obj 2025-07-24T03:54:16.4488248Z [34/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\duration.pb.cc.obj 2025-07-24T03:54:16.5600826Z [35/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\dynamic_message.cc.obj 2025-07-24T03:54:16.5999696Z [36/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\empty.pb.cc.obj 2025-07-24T03:54:16.6225649Z [37/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\gzip_stream.cc.obj 2025-07-24T03:54:16.6837525Z [38/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\extension_set_heavy.cc.obj 2025-07-24T03:54:16.7455633Z [39/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\field_mask.pb.cc.obj 2025-07-24T03:54:16.7910568Z [40/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_table_driven.cc.obj 2025-07-24T03:54:16.9250683Z [41/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\printer.cc.obj 2025-07-24T03:54:16.9309465Z [42/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_reflection.cc.obj 2025-07-24T03:54:16.9338531Z [43/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\tokenizer.cc.obj 2025-07-24T03:54:16.9855217Z [44/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\map_field.cc.obj 2025-07-24T03:54:17.0921441Z [45/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\message.cc.obj 2025-07-24T03:54:17.1560035Z [46/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\reflection_ops.cc.obj 2025-07-24T03:54:17.1685614Z [47/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\service.cc.obj 2025-07-24T03:54:17.2756991Z [48/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\struct.pb.cc.obj 2025-07-24T03:54:17.2774088Z [49/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\source_context.pb.cc.obj 2025-07-24T03:54:17.2787965Z [50/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\substitute.cc.obj 2025-07-24T03:54:17.4740661Z [51/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\text_format.cc.obj 2025-07-24T03:54:17.5004062Z [52/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\type.pb.cc.obj 2025-07-24T03:54:17.5619750Z [53/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\delimited_message_util.cc.obj 2025-07-24T03:54:17.5667995Z [54/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\timestamp.pb.cc.obj 2025-07-24T03:54:17.5860709Z [55/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\field_comparator.cc.obj 2025-07-24T03:54:17.6168419Z [56/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\unknown_field_set.cc.obj 2025-07-24T03:54:17.6896262Z [57/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\common.cc.obj 2025-07-24T03:54:17.7117219Z [58/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\io_win32.cc.obj 2025-07-24T03:54:17.8081420Z [59/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\error_listener.cc.obj 2025-07-24T03:54:17.8264139Z [60/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\datapiece.cc.obj 2025-07-24T03:54:17.8674368Z [61/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\field_mask_util.cc.obj 2025-07-24T03:54:17.8869043Z [62/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_escaping.cc.obj 2025-07-24T03:54:17.9327498Z [63/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\field_mask_utility.cc.obj 2025-07-24T03:54:17.9552718Z [64/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\default_value_objectwriter.cc.obj 2025-07-24T03:54:18.0540340Z [65/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_stream_parser.cc.obj 2025-07-24T03:54:18.0823700Z [66/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_objectwriter.cc.obj 2025-07-24T03:54:18.1475382Z [67/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\object_writer.cc.obj 2025-07-24T03:54:18.2287353Z [68/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\proto_writer.cc.obj 2025-07-24T03:54:18.2591837Z [69/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\protostream_objectwriter.cc.obj 2025-07-24T03:54:18.2700717Z [70/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\protostream_objectsource.cc.obj 2025-07-24T03:54:18.3179546Z [71/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\type_info_test_helper.cc.obj 2025-07-24T03:54:18.3540576Z [72/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\type_info.cc.obj 2025-07-24T03:54:18.3643927Z [73/7174] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\version.rc.res 2025-07-24T03:54:18.4458062Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-07-24T03:54:18.4458636Z 2025-07-24T03:54:18.4458642Z 2025-07-24T03:54:18.4458850Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-07-24T03:54:18.4459195Z 2025-07-24T03:54:18.4459200Z 2025-07-24T03:54:18.4459205Z 2025-07-24T03:54:18.4459208Z 2025-07-24T03:54:18.4460047Z [74/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\json_util.cc.obj 2025-07-24T03:54:18.4517822Z [75/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\utility.cc.obj 2025-07-24T03:54:18.5171467Z [76/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\message_differencer.cc.obj 2025-07-24T03:54:18.6639184Z [77/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wire_format.cc.obj 2025-07-24T03:54:18.6870731Z [78/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\type_resolver_util.cc.obj 2025-07-24T03:54:18.6993319Z [79/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wrappers.pb.cc.obj 2025-07-24T03:54:18.7601068Z [80/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\code_generator.cc.obj 2025-07-24T03:54:18.8123972Z [81/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_enum.cc.obj 2025-07-24T03:54:18.8975621Z [82/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_enum_field.cc.obj 2025-07-24T03:54:19.0907020Z [83/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_extension.cc.obj 2025-07-24T03:54:19.1060526Z [84/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_generator.cc.obj 2025-07-24T03:54:19.1159471Z [85/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_file.cc.obj 2025-07-24T03:54:19.1271397Z [86/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_field.cc.obj 2025-07-24T03:54:19.1556484Z [87/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_helpers.cc.obj 2025-07-24T03:54:19.1636920Z [88/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\command_line_interface.cc.obj 2025-07-24T03:54:19.2519213Z [89/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_map_field.cc.obj 2025-07-24T03:54:19.5192006Z [90/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_primitive_field.cc.obj 2025-07-24T03:54:19.5277982Z [91/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_message.cc.obj 2025-07-24T03:54:19.5294514Z [92/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_padding_optimizer.cc.obj 2025-07-24T03:54:19.5374947Z [93/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_service.cc.obj 2025-07-24T03:54:19.5512965Z [94/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_message_field.cc.obj 2025-07-24T03:54:19.5608875Z [95/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_string_field.cc.obj 2025-07-24T03:54:19.5836264Z [96/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_doc_comment.cc.obj 2025-07-24T03:54:19.9135906Z [97/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_enum.cc.obj 2025-07-24T03:54:19.9152518Z [98/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_field_base.cc.obj 2025-07-24T03:54:19.9289502Z [99/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_enum_field.cc.obj 2025-07-24T03:54:19.9418452Z [100/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_generator.cc.obj 2025-07-24T03:54:19.9435105Z [101/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_helpers.cc.obj 2025-07-24T03:54:19.9688844Z [102/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_map_field.cc.obj 2025-07-24T03:54:19.9777502Z [103/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_message.cc.obj 2025-07-24T03:54:20.3145487Z [104/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_enum_field.cc.obj 2025-07-24T03:54:20.3193063Z [105/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_message_field.cc.obj 2025-07-24T03:54:20.3282681Z [106/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_primitive_field.cc.obj 2025-07-24T03:54:20.3408563Z [107/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_reflection_class.cc.obj 2025-07-24T03:54:20.3491186Z [108/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_source_generator_base.cc.obj 2025-07-24T03:54:20.3782334Z [109/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_message_field.cc.obj 2025-07-24T03:54:20.4101772Z [110/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_primitive_field.cc.obj 2025-07-24T03:54:20.6073785Z [111/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_doc_comment.cc.obj 2025-07-24T03:54:20.7164413Z [112/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_wrapper_field.cc.obj 2025-07-24T03:54:20.7326078Z [113/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum.cc.obj 2025-07-24T03:54:20.7445493Z [114/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_field.cc.obj 2025-07-24T03:54:20.7746749Z [115/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_context.cc.obj 2025-07-24T03:54:20.7850350Z [116/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_field_lite.cc.obj 2025-07-24T03:54:20.7958949Z [117/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_lite.cc.obj 2025-07-24T03:54:20.8736313Z [118/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\time_util.cc.obj 2025-07-24T03:54:21.0844769Z [119/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_extension.cc.obj 2025-07-24T03:54:21.0979443Z [120/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_extension_lite.cc.obj 2025-07-24T03:54:21.1298474Z [121/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_file.cc.obj 2025-07-24T03:54:21.1591193Z [122/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_field.cc.obj 2025-07-24T03:54:21.1835554Z [123/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_generator_factory.cc.obj 2025-07-24T03:54:21.1920728Z [124/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_generator.cc.obj 2025-07-24T03:54:21.2175510Z [125/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_helpers.cc.obj 2025-07-24T03:54:21.3528845Z [126/7174] Linking CXX static library lib\libprotobuf.lib 2025-07-24T03:54:21.4578153Z [127/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_map_field.cc.obj 2025-07-24T03:54:21.4788961Z [128/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_map_field_lite.cc.obj 2025-07-24T03:54:21.5256788Z [129/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_builder.cc.obj 2025-07-24T03:54:21.5655371Z [130/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message.cc.obj 2025-07-24T03:54:21.5809435Z [131/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_builder_lite.cc.obj 2025-07-24T03:54:21.6051692Z [132/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_field.cc.obj 2025-07-24T03:54:21.6446812Z [133/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_field_lite.cc.obj 2025-07-24T03:54:21.7226628Z [134/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_lite.cc.obj 2025-07-24T03:54:21.8366949Z [135/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_name_resolver.cc.obj 2025-07-24T03:54:21.9046061Z [136/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_primitive_field.cc.obj 2025-07-24T03:54:21.9060358Z [137/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\js\well_known_types_embed.cc.obj 2025-07-24T03:54:21.9394322Z [138/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_primitive_field_lite.cc.obj 2025-07-24T03:54:22.0010151Z [139/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_shared_code_generator.cc.obj 2025-07-24T03:54:22.0273838Z [140/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_service.cc.obj 2025-07-24T03:54:22.0361352Z [141/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_string_field.cc.obj 2025-07-24T03:54:22.0812751Z [142/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_string_field_lite.cc.obj 2025-07-24T03:54:22.1034596Z [143/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\js\js_generator.cc.obj 2025-07-24T03:54:22.2724666Z [144/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_enum.cc.obj 2025-07-24T03:54:22.2977616Z [145/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_extension.cc.obj 2025-07-24T03:54:22.3000307Z [146/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_enum_field.cc.obj 2025-07-24T03:54:22.4327013Z [147/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_field.cc.obj 2025-07-24T03:54:22.4350843Z [148/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_generator.cc.obj 2025-07-24T03:54:22.4439507Z [149/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_file.cc.obj 2025-07-24T03:54:22.5357229Z [150/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_helpers.cc.obj 2025-07-24T03:54:22.5470025Z [151/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_map_field.cc.obj 2025-07-24T03:54:22.6376841Z [152/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_message.cc.obj 2025-07-24T03:54:22.6578801Z [153/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_message_field.cc.obj 2025-07-24T03:54:22.7194256Z [154/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_oneof.cc.obj 2025-07-24T03:54:22.8214478Z [155/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_primitive_field.cc.obj 2025-07-24T03:54:22.8316242Z [156/7174] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\version.rc.res 2025-07-24T03:54:22.8407287Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-07-24T03:54:22.8407860Z 2025-07-24T03:54:22.8407888Z 2025-07-24T03:54:22.8408184Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-07-24T03:54:22.8408683Z 2025-07-24T03:54:22.8408735Z 2025-07-24T03:54:22.8408742Z 2025-07-24T03:54:22.8408748Z 2025-07-24T03:54:22.8409560Z [157/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\plugin.cc.obj 2025-07-24T03:54:22.8519363Z [158/7174] Building RC object third_party\protobuf\cmake\CMakeFiles\protoc.dir\version.rc.res 2025-07-24T03:54:22.8652581Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-07-24T03:54:22.8653176Z 2025-07-24T03:54:22.8653185Z 2025-07-24T03:54:22.8653520Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-07-24T03:54:22.8654050Z 2025-07-24T03:54:22.8654064Z 2025-07-24T03:54:22.8654070Z 2025-07-24T03:54:22.8654077Z 2025-07-24T03:54:22.8655605Z [159/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\php\php_generator.cc.obj 2025-07-24T03:54:22.9947943Z [160/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\python\python_generator.cc.obj 2025-07-24T03:54:23.0023480Z [161/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\plugin.pb.cc.obj 2025-07-24T03:54:23.0095059Z [162/7174] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\legacy-api.c.obj 2025-07-24T03:54:23.0373614Z [163/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\zip_writer.cc.obj 2025-07-24T03:54:23.0461192Z [164/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\ruby\ruby_generator.cc.obj 2025-07-24T03:54:23.1048812Z [165/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\subprocess.cc.obj 2025-07-24T03:54:23.1301430Z [166/7174] Building C object sleef\src\libm\CMakeFiles\mkrename.dir\mkrename.c.obj 2025-07-24T03:54:23.1312244Z [167/7174] Building C object sleef\src\libm\CMakeFiles\mkalias.dir\mkalias.c.obj 2025-07-24T03:54:23.1743610Z [168/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\protoc.dir\__\src\google\protobuf\compiler\main.cc.obj 2025-07-24T03:54:23.1911660Z [169/7174] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\portable-api.c.obj 2025-07-24T03:54:23.2384850Z [170/7174] Building C object sleef\src\libm\CMakeFiles\mkdisp.dir\mkdisp.c.obj 2025-07-24T03:54:23.2704809Z [171/7174] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\windows.c.obj 2025-07-24T03:54:23.2828907Z [172/7174] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\memory.c.obj 2025-07-24T03:54:23.3000005Z [173/7174] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\fastpath.c.obj 2025-07-24T03:54:23.3355410Z [174/7174] Linking C static library lib\pthreadpool.lib 2025-07-24T03:54:23.3490839Z [175/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\info.c.obj 2025-07-24T03:54:23.3765122Z [176/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\init.c.obj 2025-07-24T03:54:23.4032198Z [177/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\vendor.c.obj 2025-07-24T03:54:23.4643250Z [178/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\uarch.c.obj 2025-07-24T03:54:23.4717918Z [179/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\name.c.obj 2025-07-24T03:54:23.4870682Z [180/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\api.c.obj 2025-07-24T03:54:23.4932449Z [181/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\cache.c.obj 2025-07-24T03:54:23.5086854Z [182/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\topology.c.obj 2025-07-24T03:54:23.5630640Z [183/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\isa.c.obj 2025-07-24T03:54:23.5681518Z [184/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\descriptor.c.obj 2025-07-24T03:54:23.5700523Z [185/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\init.c.obj 2025-07-24T03:54:23.5757434Z [186/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\init.c.obj 2025-07-24T03:54:23.5772096Z [187/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\log.c.obj 2025-07-24T03:54:23.5820450Z [188/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\deterministic.c.obj 2025-07-24T03:54:23.5993416Z [189/7174] Linking CXX static library lib\libprotoc.lib 2025-07-24T03:54:23.6805615Z [190/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-avgpool\f16-avgpool-9p8x-minmax-f16c-c8.c.obj 2025-07-24T03:54:23.6822454Z [191/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-avgpool\f16-avgpool-9x-minmax-f16c-c8.c.obj 2025-07-24T03:54:23.7092159Z [192/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-3p16c-minmax-fma3.c.obj 2025-07-24T03:54:23.7254556Z [193/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-4p16c-minmax-fma3.c.obj 2025-07-24T03:54:23.7336585Z [194/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-9p16c-minmax-fma3.c.obj 2025-07-24T03:54:23.7793982Z [195/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-25p8c-minmax-fma3-acc2.c.obj 2025-07-24T03:54:23.7985219Z [196/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u16.c.obj 2025-07-24T03:54:23.8040696Z [197/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx512skx-u16.c.obj 2025-07-24T03:54:23.8398636Z [198/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-f16c-u16.c.obj 2025-07-24T03:54:23.8464867Z [199/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u1.c.obj 2025-07-24T03:54:23.8541454Z [200/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u4.c.obj 2025-07-24T03:54:23.8884633Z [201/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\windows\init.c.obj 2025-07-24T03:54:23.9103377Z [202/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u16.c.obj 2025-07-24T03:54:23.9207411Z [203/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u32.c.obj 2025-07-24T03:54:23.9319928Z [204/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-1x16-minmax-avx2-broadcast.c.obj 2025-07-24T03:54:23.9776786Z [205/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-1x16-minmax-avx2-broadcast.c.obj 2025-07-24T03:54:23.9917719Z [206/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-4x16-minmax-avx2-broadcast.c.obj 2025-07-24T03:54:23.9964160Z [207/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-4x16-minmax-avx2-broadcast.c.obj 2025-07-24T03:54:24.0028884Z [208/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c64.c.obj 2025-07-24T03:54:24.0138234Z [209/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c32.c.obj 2025-07-24T03:54:24.0370673Z [210/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u32-acc4.c.obj 2025-07-24T03:54:24.0388594Z [211/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u64-acc4.c.obj 2025-07-24T03:54:24.0740486Z [212/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-ibilinear\gen\f16-ibilinear-fma3-c8.c.obj 2025-07-24T03:54:24.0937088Z [213/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-maxpool\f16-maxpool-9p8x-minmax-f16c-c8.c.obj 2025-07-24T03:54:24.1114888Z [214/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-pavgpool\f16-pavgpool-9x-minmax-avx2-c8.c.obj 2025-07-24T03:54:24.1239339Z [215/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-pavgpool\f16-pavgpool-9p8x-minmax-avx2-c8.c.obj 2025-07-24T03:54:24.1291559Z [216/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u4.c.obj 2025-07-24T03:54:24.1445833Z [217/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u4.c.obj 2025-07-24T03:54:24.1491371Z [218/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32.c.obj 2025-07-24T03:54:24.1797845Z [219/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\f16-rmax-f16c-u32.c.obj 2025-07-24T03:54:24.2003466Z [220/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u64-acc4.c.obj 2025-07-24T03:54:24.2210210Z [221/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rmax-scalar-u2-acc2.c.obj 2025-07-24T03:54:24.2466392Z [222/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u64-acc4.c.obj 2025-07-24T03:54:24.2569954Z [223/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u2-acc2.c.obj 2025-07-24T03:54:24.2582982Z [224/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vadd-f16c-u16.c.obj 2025-07-24T03:54:24.2766355Z [225/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vaddc-f16c-u16.c.obj 2025-07-24T03:54:24.2995443Z [226/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vdiv-f16c-u8.c.obj 2025-07-24T03:54:24.3099462Z [227/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vdivc-f16c-u8.c.obj 2025-07-24T03:54:24.3716781Z [228/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vminc-f16c-u16.c.obj 2025-07-24T03:54:24.3780383Z [229/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmin-f16c-u16.c.obj 2025-07-24T03:54:24.4176722Z [230/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmax-f16c-u16.c.obj 2025-07-24T03:54:24.4251809Z [231/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmulc-f16c-u16.c.obj 2025-07-24T03:54:24.4272254Z [232/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmul-f16c-u16.c.obj 2025-07-24T03:54:24.4326888Z [233/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vprelu-f16c-u16.c.obj 2025-07-24T03:54:24.4340229Z [234/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmaxc-f16c-u16.c.obj 2025-07-24T03:54:24.4993148Z [235/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrdivc-f16c-u8.c.obj 2025-07-24T03:54:24.5052777Z [236/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vpreluc-f16c-u16.c.obj 2025-07-24T03:54:24.5447545Z [237/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrpreluc-f16c-u16.c.obj 2025-07-24T03:54:24.5527430Z [238/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrsubc-f16c-u16.c.obj 2025-07-24T03:54:24.5616839Z [239/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsqrdiffc-f16c-u16.c.obj 2025-07-24T03:54:24.5631000Z [240/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsub-f16c-u16.c.obj 2025-07-24T03:54:24.5647730Z [241/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsqrdiff-f16c-u16.c.obj 2025-07-24T03:54:24.6416210Z [242/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsubc-f16c-u16.c.obj 2025-07-24T03:54:24.6431521Z [243/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vclamp\gen\f16-vclamp-f16c-u16.c.obj 2025-07-24T03:54:24.6594921Z [244/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-velu\gen\f16-velu-avx2-rr1-p3-u16.c.obj 2025-07-24T03:54:24.6606321Z [245/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vmulcaddc\gen\f16-vmulcaddc-c8-minmax-fma3-2x.c.obj 2025-07-24T03:54:24.6657698Z [246/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vhswish\gen\f16-vhswish-f16c-u16.c.obj 2025-07-24T03:54:24.6809235Z [247/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndd-f16c-u16.c.obj 2025-07-24T03:54:24.7006114Z [248/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vlrelu\gen\f16-vlrelu-f16c-u16.c.obj 2025-07-24T03:54:24.7697101Z [249/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndu-f16c-u16.c.obj 2025-07-24T03:54:24.7865951Z [250/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u32.c.obj 2025-07-24T03:54:24.7919233Z [251/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u32.c.obj 2025-07-24T03:54:24.8042546Z [252/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndz-f16c-u16.c.obj 2025-07-24T03:54:24.8057518Z [253/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndne-f16c-u16.c.obj 2025-07-24T03:54:24.8190643Z [254/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u32.c.obj 2025-07-24T03:54:24.8307575Z [255/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-rcp-u24.c.obj 2025-07-24T03:54:24.8909890Z [256/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-4x-sse2-c4.c.obj 2025-07-24T03:54:24.9022557Z [257/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u32.c.obj 2025-07-24T03:54:24.9188025Z [258/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vabs-sse2-u16.c.obj 2025-07-24T03:54:24.9232481Z [259/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-4x-scalar-c1.c.obj 2025-07-24T03:54:24.9289261Z [260/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vneg-sse2-u16.c.obj 2025-07-24T03:54:24.9358417Z [261/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9p8x-scalar-c1.c.obj 2025-07-24T03:54:24.9492664Z [262/7174] Linking CXX executable bin\protoc.exe 2025-07-24T03:54:24.9550730Z [263/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vsqr-f16c-u16.c.obj 2025-07-24T03:54:24.9752347Z [264/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9p8x-sse2-c4.c.obj 2025-07-24T03:54:25.0205246Z [265/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9x-sse2-c4.c.obj 2025-07-24T03:54:25.0295533Z [266/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9x-scalar-c1.c.obj 2025-07-24T03:54:25.0360352Z [267/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9p8x-minmax-scalar-c1.c.obj 2025-07-24T03:54:25.0413212Z [268/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9p8x-minmax-sse-c4.c.obj 2025-07-24T03:54:25.0423723Z [269/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9x-minmax-scalar-c1.c.obj 2025-07-24T03:54:25.0433607Z [270/7174] Running gen_proto.py on onnx/onnx.in.proto 2025-07-24T03:54:25.0570270Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx.in.proto 2025-07-24T03:54:25.0570673Z 2025-07-24T03:54:25.0571008Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_onnx_torch-ml.proto 2025-07-24T03:54:25.0571450Z 2025-07-24T03:54:25.0571788Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_onnx_torch-ml.proto3 2025-07-24T03:54:25.0572469Z 2025-07-24T03:54:25.0572872Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-ml.pb.h 2025-07-24T03:54:25.0573264Z 2025-07-24T03:54:25.0573564Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_pb.py 2025-07-24T03:54:25.0573951Z 2025-07-24T03:54:25.0574390Z [271/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9x-minmax-sse-c4.c.obj 2025-07-24T03:54:25.1020491Z [272/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.obj 2025-07-24T03:54:25.1395579Z [273/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-sse-2x2.c.obj 2025-07-24T03:54:25.1644521Z [274/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx512f.c.obj 2025-07-24T03:54:25.1703417Z [275/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-minmax-scalar-acc2.c.obj 2025-07-24T03:54:25.1790977Z [276/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-scalar-acc2.c.obj 2025-07-24T03:54:25.1842952Z [277/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-fma3.c.obj 2025-07-24T03:54:25.2031044Z [278/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-avx.c.obj 2025-07-24T03:54:25.2306128Z [279/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-sse.c.obj 2025-07-24T03:54:25.2713296Z [280/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.obj 2025-07-24T03:54:25.2907010Z [281/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx.c.obj 2025-07-24T03:54:25.3007995Z [282/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx512f.c.obj 2025-07-24T03:54:25.3118749Z [283/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-fma3.c.obj 2025-07-24T03:54:25.3248361Z [284/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-minmax-scalar-acc2.c.obj 2025-07-24T03:54:25.3373253Z [285/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-scalar-acc2.c.obj 2025-07-24T03:54:25.3615031Z [286/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-sse.c.obj 2025-07-24T03:54:25.3937681Z [287/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx.c.obj 2025-07-24T03:54:25.4200718Z [288/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx512f.c.obj 2025-07-24T03:54:25.4375028Z [289/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-fma3.c.obj 2025-07-24T03:54:25.4431201Z [290/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-minmax-scalar-acc2.c.obj 2025-07-24T03:54:25.4620060Z [291/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-scalar-acc2.c.obj 2025-07-24T03:54:25.4634560Z [292/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-sse.c.obj 2025-07-24T03:54:25.4968332Z [293/7174] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-07-24T03:54:25.5092473Z [294/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c16s1r-minmax-avx512f.c.obj 2025-07-24T03:54:25.5289316Z [295/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-fma3.c.obj 2025-07-24T03:54:25.5502748Z [296/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c8s4r-minmax-avx.c.obj 2025-07-24T03:54:25.5594344Z [297/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c4s4r-minmax-sse.c.obj 2025-07-24T03:54:25.5754233Z [298/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx.c.obj 2025-07-24T03:54:25.5922994Z [299/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx512f.c.obj 2025-07-24T03:54:25.6001891Z [300/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-fma3.c.obj 2025-07-24T03:54:25.6293829Z [301/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-minmax-scalar-acc2.c.obj 2025-07-24T03:54:25.6567575Z [302/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-sse.c.obj 2025-07-24T03:54:25.6638718Z [303/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-scalar-acc2.c.obj 2025-07-24T03:54:25.6812324Z [304/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1-acc2.c.obj 2025-07-24T03:54:25.7020571Z [305/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-2x4-acc2.c.obj 2025-07-24T03:54:25.7062978Z [306/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-4x1.c.obj 2025-07-24T03:54:25.7184436Z [307/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc2.c.obj 2025-07-24T03:54:25.7317401Z [308/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-2x4-acc2.c.obj 2025-07-24T03:54:25.7577939Z [309/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1-acc2.c.obj 2025-07-24T03:54:25.7901510Z [310/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc3.c.obj 2025-07-24T03:54:25.7918828Z [311/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc5.c.obj 2025-07-24T03:54:25.8230855Z [312/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc2.c.obj 2025-07-24T03:54:25.8403030Z [313/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-4x4.c.obj 2025-07-24T03:54:25.8449815Z [314/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc5.c.obj 2025-07-24T03:54:25.8553555Z [315/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc2.c.obj 2025-07-24T03:54:25.8726016Z [316/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u24.c.obj 2025-07-24T03:54:25.9123984Z [317/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx512skx-u16.c.obj 2025-07-24T03:54:25.9139874Z [318/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-f16c-u16.c.obj 2025-07-24T03:54:25.9477821Z [319/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u4.c.obj 2025-07-24T03:54:25.9539721Z [320/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4.c.obj 2025-07-24T03:54:25.9583985Z [321/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u2.c.obj 2025-07-24T03:54:25.9638217Z [322/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u16.c.obj 2025-07-24T03:54:25.9776161Z [323/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u8.c.obj 2025-07-24T03:54:26.0218659Z [324/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-avx-broadcast.c.obj 2025-07-24T03:54:26.0588098Z [325/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T03:54:26.0638454Z [326/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-fma3-broadcast.c.obj 2025-07-24T03:54:26.0979968Z [327/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-minmax-scalar.c.obj 2025-07-24T03:54:26.1028761Z [328/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x32-minmax-avx512f-broadcast.c.obj 2025-07-24T03:54:26.1156135Z [329/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-scalar.c.obj 2025-07-24T03:54:26.1167492Z [330/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-relu-scalar.c.obj 2025-07-24T03:54:26.1265677Z [331/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-sse-load1.c.obj 2025-07-24T03:54:26.1903819Z [332/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-minmax-scalar.c.obj 2025-07-24T03:54:26.2005840Z [333/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-relu-scalar.c.obj 2025-07-24T03:54:26.2153585Z [334/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-scalar.c.obj 2025-07-24T03:54:26.2413533Z [335/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T03:54:26.2507596Z [336/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2-minmax-scalar.c.obj 2025-07-24T03:54:26.2524505Z [337/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2-scalar.c.obj 2025-07-24T03:54:26.2600398Z [338/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2c4-minmax-sse.c.obj 2025-07-24T03:54:26.2749014Z [339/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-minmax-scalar.c.obj 2025-07-24T03:54:26.3493182Z [340/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-relu-scalar.c.obj 2025-07-24T03:54:26.3506958Z [341/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-sse-load1.c.obj 2025-07-24T03:54:26.3554259Z [342/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-scalar.c.obj 2025-07-24T03:54:26.3669609Z [343/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p4.c.obj 2025-07-24T03:54:26.3814494Z [344/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-sse-p8.c.obj 2025-07-24T03:54:26.3980002Z [345/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-avx-broadcast.c.obj 2025-07-24T03:54:26.4033947Z [346/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-7x32-minmax-avx512f-broadcast.c.obj 2025-07-24T03:54:26.4613437Z [347/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c2.c.obj 2025-07-24T03:54:26.4664635Z [348/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-fma3-broadcast.c.obj 2025-07-24T03:54:26.4763035Z [349/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-avx-broadcast.c.obj 2025-07-24T03:54:26.4873708Z [350/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-fma3-broadcast.c.obj 2025-07-24T03:54:26.4929151Z [351/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear\gen\f32-ibilinear-sse-c8.c.obj 2025-07-24T03:54:26.5053647Z [352/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T03:54:26.5282150Z [353/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-minmax-scalar.c.obj 2025-07-24T03:54:26.5296991Z [354/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x32-minmax-avx512f-broadcast.c.obj 2025-07-24T03:54:26.5971315Z [355/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-relu-scalar.c.obj 2025-07-24T03:54:26.5988518Z [356/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-sse-load1.c.obj 2025-07-24T03:54:26.6148992Z [357/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-scalar.c.obj 2025-07-24T03:54:26.6234121Z [358/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-minmax-scalar.c.obj 2025-07-24T03:54:26.6349016Z [359/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-relu-scalar.c.obj 2025-07-24T03:54:26.6432461Z [360/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-scalar.c.obj 2025-07-24T03:54:26.6568089Z [361/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T03:54:26.6581083Z [362/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2-minmax-scalar.c.obj 2025-07-24T03:54:26.7332403Z [363/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2-scalar.c.obj 2025-07-24T03:54:26.7404958Z [364/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2c4-minmax-sse.c.obj 2025-07-24T03:54:26.7471133Z [365/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-minmax-scalar.c.obj 2025-07-24T03:54:26.7632486Z [366/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-relu-scalar.c.obj 2025-07-24T03:54:26.7697672Z [367/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-scalar.c.obj 2025-07-24T03:54:26.7853577Z [368/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-sse-load1.c.obj 2025-07-24T03:54:26.7907222Z [369/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-fma3-broadcast-prfm.c.obj 2025-07-24T03:54:26.8211887Z [370/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-avx-broadcast.c.obj 2025-07-24T03:54:26.8461865Z [371/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-maxpool\f32-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-07-24T03:54:26.8571574Z [372/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-maxpool\f32-maxpool-9p8x-minmax-sse-c4.c.obj 2025-07-24T03:54:26.8698916Z [373/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9p8x-minmax-scalar-c1.c.obj 2025-07-24T03:54:26.8762951Z [374/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9p8x-minmax-sse-c4.c.obj 2025-07-24T03:54:26.8773480Z [375/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-7x32-minmax-avx512f-broadcast.c.obj 2025-07-24T03:54:26.8908762Z [376/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9x-minmax-scalar-c1.c.obj 2025-07-24T03:54:26.8964959Z [377/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9x-minmax-sse-c4.c.obj 2025-07-24T03:54:26.9666559Z [378/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-1x16-minmax-avx-broadcast.c.obj 2025-07-24T03:54:27.0018554Z [379/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-1x16-minmax-avx2-broadcast.c.obj 2025-07-24T03:54:27.0061355Z [380/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-1x16-minmax-fma3-broadcast.c.obj 2025-07-24T03:54:27.0167453Z [381/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-1x4-minmax-scalar.c.obj 2025-07-24T03:54:27.0264776Z [382/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-3x16-minmax-avx2-broadcast.c.obj 2025-07-24T03:54:27.0321336Z [383/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-1x8-minmax-sse41-dup.c.obj 2025-07-24T03:54:27.0375837Z [384/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-3x16-minmax-fma3-broadcast.c.obj 2025-07-24T03:54:27.0992478Z [385/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-3x16-minmax-avx-broadcast.c.obj 2025-07-24T03:54:27.1557865Z [386/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-7x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T03:54:27.1663929Z [387/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x8-minmax-sse41-dup.c.obj 2025-07-24T03:54:27.1708201Z [388/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x4-minmax-scalar.c.obj 2025-07-24T03:54:27.1751988Z [389/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x16-minmax-fma3-broadcast.c.obj 2025-07-24T03:54:27.1800280Z [390/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x16-minmax-avx-broadcast.c.obj 2025-07-24T03:54:27.1818618Z [391/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-1x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T03:54:27.1872043Z [392/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x16-minmax-avx2-broadcast.c.obj 2025-07-24T03:54:27.2341007Z [393/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T03:54:27.3054510Z [394/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-minmax-scalar.c.obj 2025-07-24T03:54:27.3123293Z [395/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x8-minmax-sse41-dup.c.obj 2025-07-24T03:54:27.3186985Z [396/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-minmax-scalar.c.obj 2025-07-24T03:54:27.3270080Z [397/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x8-minmax-sse41-dup.c.obj 2025-07-24T03:54:27.3322554Z [398/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x16-minmax-avx2-broadcast.c.obj 2025-07-24T03:54:27.3334374Z [399/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x16-minmax-avx-broadcast.c.obj 2025-07-24T03:54:27.3441378Z [400/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x16-minmax-fma3-broadcast.c.obj 2025-07-24T03:54:27.3836304Z [401/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-7x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T03:54:27.4250833Z [402/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u32.c.obj 2025-07-24T03:54:27.4297029Z [403/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u64.c.obj 2025-07-24T03:54:27.4444587Z [404/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u128.c.obj 2025-07-24T03:54:27.4460100Z [405/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u1.c.obj 2025-07-24T03:54:27.4471883Z [406/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u4.c.obj 2025-07-24T03:54:27.4526987Z [407/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u4.c.obj 2025-07-24T03:54:27.4641535Z [408/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u32.c.obj 2025-07-24T03:54:27.5208812Z [409/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u32.c.obj 2025-07-24T03:54:27.5400913Z [410/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u32.c.obj 2025-07-24T03:54:27.5414196Z [411/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u64.c.obj 2025-07-24T03:54:27.5648862Z [412/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u128.c.obj 2025-07-24T03:54:27.5705417Z [413/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u4.c.obj 2025-07-24T03:54:27.5717916Z [414/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u4.c.obj 2025-07-24T03:54:27.5773017Z [415/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u32.c.obj 2025-07-24T03:54:27.6279635Z [416/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc2.c.obj 2025-07-24T03:54:27.6377766Z [417/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u1.c.obj 2025-07-24T03:54:27.6673764Z [418/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u32-acc2.c.obj 2025-07-24T03:54:27.6793807Z [419/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.obj 2025-07-24T03:54:27.6877889Z [420/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c32.c.obj 2025-07-24T03:54:27.6889622Z [421/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc2.c.obj 2025-07-24T03:54:27.6943360Z [422/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc2.c.obj 2025-07-24T03:54:27.6961619Z [423/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c64.c.obj 2025-07-24T03:54:27.7537211Z [424/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-scalar.c.obj 2025-07-24T03:54:27.7591066Z [425/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c16.c.obj 2025-07-24T03:54:27.8008421Z [426/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-sse-u16-acc4.c.obj 2025-07-24T03:54:27.8066789Z [427/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-scalar-u4-acc4.c.obj 2025-07-24T03:54:27.8340388Z [428/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u64-acc4.c.obj 2025-07-24T03:54:27.8393597Z [429/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-avx-u32-acc4.c.obj 2025-07-24T03:54:27.8454368Z [430/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u64-acc4.c.obj 2025-07-24T03:54:27.8545799Z [431/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u4-acc4.c.obj 2025-07-24T03:54:27.8561124Z [432/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-avx-u32-acc4.c.obj 2025-07-24T03:54:27.9043040Z [433/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-avx-u32-acc4.c.obj 2025-07-24T03:54:27.9128900Z [434/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-avx512f-u64-acc4.c.obj 2025-07-24T03:54:27.9250777Z [435/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-sse-u16-acc4.c.obj 2025-07-24T03:54:27.9501964Z [436/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-32x1-minmax-sse.c.obj 2025-07-24T03:54:27.9642324Z [437/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-scalar.c.obj 2025-07-24T03:54:27.9694679Z [438/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-scalar-u4-acc4.c.obj 2025-07-24T03:54:27.9709265Z [439/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x2-minmax-scalar.c.obj 2025-07-24T03:54:27.9898876Z [440/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-sse-u16-acc4.c.obj 2025-07-24T03:54:28.0342633Z [441/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-avx-u16.c.obj 2025-07-24T03:54:28.0616350Z [442/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-avx512f-u32.c.obj 2025-07-24T03:54:28.0669059Z [443/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x4-minmax-scalar.c.obj 2025-07-24T03:54:28.0682981Z [444/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-scalar-u8.c.obj 2025-07-24T03:54:28.0995486Z [445/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-avx-u16.c.obj 2025-07-24T03:54:28.1086906Z [446/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u8.c.obj 2025-07-24T03:54:28.1140310Z [447/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-sse-u8.c.obj 2025-07-24T03:54:28.1220203Z [448/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-avx512f-u32.c.obj 2025-07-24T03:54:28.1504759Z [449/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-sse-u8.c.obj 2025-07-24T03:54:28.1812351Z [450/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-avx-u16.c.obj 2025-07-24T03:54:28.1872894Z [451/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-avx512f-u32.c.obj 2025-07-24T03:54:28.1886261Z [452/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u2.c.obj 2025-07-24T03:54:28.2342072Z [453/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-avx-u16.c.obj 2025-07-24T03:54:28.2429897Z [454/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-sse-u8.c.obj 2025-07-24T03:54:28.2446261Z [455/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-avx512f-u32.c.obj 2025-07-24T03:54:28.2602910Z [456/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u2.c.obj 2025-07-24T03:54:28.2857469Z [457/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-sse-u8.c.obj 2025-07-24T03:54:28.3061417Z [458/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-avx-u16.c.obj 2025-07-24T03:54:28.3108767Z [459/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-scalar-u8.c.obj 2025-07-24T03:54:28.3123730Z [460/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-avx512f-u32.c.obj 2025-07-24T03:54:28.3616054Z [461/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-avx-u16.c.obj 2025-07-24T03:54:28.3672744Z [462/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-avx512f-u32.c.obj 2025-07-24T03:54:28.3722116Z [463/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-sse-u8.c.obj 2025-07-24T03:54:28.3834055Z [464/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u8.c.obj 2025-07-24T03:54:28.4129415Z [465/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-sse-u8.c.obj 2025-07-24T03:54:28.4316332Z [466/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-scalar-u8.c.obj 2025-07-24T03:54:28.4377172Z [467/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-avx-u16.c.obj 2025-07-24T03:54:28.4591753Z [468/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-avx512f-u32.c.obj 2025-07-24T03:54:28.4799995Z [469/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-sse-u8.c.obj 2025-07-24T03:54:28.4898719Z [470/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-avx-u16.c.obj 2025-07-24T03:54:28.4969797Z [471/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-avx512f-u32.c.obj 2025-07-24T03:54:28.5045578Z [472/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-scalar-u8.c.obj 2025-07-24T03:54:28.5428443Z [473/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-sse-u8.c.obj 2025-07-24T03:54:28.5581547Z [474/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-avx512f-u32.c.obj 2025-07-24T03:54:28.5789846Z [475/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-avx-u16.c.obj 2025-07-24T03:54:28.5994581Z [476/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-scalar-u8.c.obj 2025-07-24T03:54:28.6123392Z [477/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-sse-u8.c.obj 2025-07-24T03:54:28.6180149Z [478/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-avx-u16.c.obj 2025-07-24T03:54:28.6366010Z [479/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u8.c.obj 2025-07-24T03:54:28.6642989Z [480/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-sse-u8.c.obj 2025-07-24T03:54:28.6661262Z [481/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-avx512f-u32.c.obj 2025-07-24T03:54:28.6777887Z [482/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-avx-u16.c.obj 2025-07-24T03:54:28.7209360Z [483/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-avx512f-u32.c.obj 2025-07-24T03:54:28.7350318Z [484/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u8.c.obj 2025-07-24T03:54:28.7423126Z [485/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-avx-u16.c.obj 2025-07-24T03:54:28.7720583Z [486/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-sse2-u8.c.obj 2025-07-24T03:54:28.7792345Z [487/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-avx512f-u32.c.obj 2025-07-24T03:54:28.7886551Z [488/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u8.c.obj 2025-07-24T03:54:28.8048927Z [489/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-sse2-u8.c.obj 2025-07-24T03:54:28.8187383Z [490/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-avx-u16.c.obj 2025-07-24T03:54:28.8561791Z [491/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-avx512f-u32.c.obj 2025-07-24T03:54:28.8688016Z [492/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-sse-u8.c.obj 2025-07-24T03:54:28.8753014Z [493/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u2.c.obj 2025-07-24T03:54:28.9064134Z [494/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-avx-u16.c.obj 2025-07-24T03:54:28.9077786Z [495/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-avx512f-u32.c.obj 2025-07-24T03:54:28.9140593Z [496/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u8.c.obj 2025-07-24T03:54:28.9236953Z [497/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-sse2-u8.c.obj 2025-07-24T03:54:28.9472019Z [498/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-avx-u16.c.obj 2025-07-24T03:54:28.9798590Z [499/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-avx512f-u32.c.obj 2025-07-24T03:54:28.9892847Z [500/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-sse-u8.c.obj 2025-07-24T03:54:28.9953270Z [501/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u8.c.obj 2025-07-24T03:54:29.0366130Z [502/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx-u16.c.obj 2025-07-24T03:54:29.0434774Z [503/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx512f-u32.c.obj 2025-07-24T03:54:29.0553563Z [504/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-sse-u8.c.obj 2025-07-24T03:54:29.0613927Z [505/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u8.c.obj 2025-07-24T03:54:29.0672343Z [506/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx-u16.c.obj 2025-07-24T03:54:29.0957130Z [507/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx512f-u32.c.obj 2025-07-24T03:54:29.1127744Z [508/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u8.c.obj 2025-07-24T03:54:29.1186721Z [509/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-sse-u8.c.obj 2025-07-24T03:54:29.1638207Z [510/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-avx512f-u32.c.obj 2025-07-24T03:54:29.1860071Z [511/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-scalar-u8.c.obj 2025-07-24T03:54:29.2228339Z [512/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-avx-u16.c.obj 2025-07-24T03:54:29.2429568Z [513/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-avx-u16.c.obj 2025-07-24T03:54:29.2481516Z [514/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-sse-u8.c.obj 2025-07-24T03:54:29.2623179Z [515/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-avx512f-u32.c.obj 2025-07-24T03:54:29.2639736Z [516/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u8.c.obj 2025-07-24T03:54:29.2780669Z [517/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-sse-u8.c.obj 2025-07-24T03:54:29.2836177Z [518/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-avx-u16.c.obj 2025-07-24T03:54:29.2955731Z [519/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-avx512f-u16.c.obj 2025-07-24T03:54:29.5614174Z [520/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u4.c.obj 2025-07-24T03:54:29.5793254Z [521/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-sse-u8.c.obj 2025-07-24T03:54:29.5984123Z [522/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u32.c.obj 2025-07-24T03:54:29.6783433Z [523/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u4.c.obj 2025-07-24T03:54:29.6979540Z [524/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u16.c.obj 2025-07-24T03:54:29.7176903Z [525/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-sse-u8.c.obj 2025-07-24T03:54:29.7488975Z [526/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-avx.c.obj 2025-07-24T03:54:29.7669607Z [527/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-avx512f.c.obj 2025-07-24T03:54:29.7993409Z [528/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-scalar.c.obj 2025-07-24T03:54:29.8179119Z [529/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-sse2.c.obj 2025-07-24T03:54:29.8377049Z [530/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-avx.c.obj 2025-07-24T03:54:29.8563131Z [531/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-avx512f.c.obj 2025-07-24T03:54:29.8748420Z [532/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-scalar.c.obj 2025-07-24T03:54:29.9278811Z [533/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-sse2.c.obj 2025-07-24T03:54:29.9461993Z [534/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-avx.c.obj 2025-07-24T03:54:29.9659690Z [535/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-avx512f.c.obj 2025-07-24T03:54:29.9860996Z [536/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-scalar.c.obj 2025-07-24T03:54:30.0056908Z [537/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-sse2.c.obj 2025-07-24T03:54:30.0490510Z [538/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut4-p4-perm-u32.c.obj 2025-07-24T03:54:30.0691256Z [539/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut4-p4-perm-u32.c.obj 2025-07-24T03:54:30.0898794Z [540/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u64.c.obj 2025-07-24T03:54:30.1077346Z [541/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u2.c.obj 2025-07-24T03:54:30.1266137Z [542/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u4.c.obj 2025-07-24T03:54:30.1487082Z [543/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u12.c.obj 2025-07-24T03:54:30.1648041Z [544/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vexp\gen\f32-vexp-scalar-exp.c.obj 2025-07-24T03:54:30.2337954Z [545/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-avx-rational-12-10-div.c.obj 2025-07-24T03:54:30.2659954Z [546/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-avx512f-rational-12-10-nr.c.obj 2025-07-24T03:54:30.2822762Z [547/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-fma3-rational-12-10-div.c.obj 2025-07-24T03:54:30.3825711Z [548/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-scalar-rational-12-10-div.c.obj 2025-07-24T03:54:30.4009985Z [549/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-sse2-rational-12-10-div.c.obj 2025-07-24T03:54:30.4168664Z [550/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-avx-u16.c.obj 2025-07-24T03:54:30.4337293Z [551/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-avx512f-u16.c.obj 2025-07-24T03:54:32.2356101Z [552/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u4.c.obj 2025-07-24T03:54:32.2516825Z [553/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-fma3-u16.c.obj 2025-07-24T03:54:32.2596835Z [554/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-sse-u8.c.obj 2025-07-24T03:54:32.2709047Z [555/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-avx2-rational-3-3-div.c.obj 2025-07-24T03:54:32.3010419Z [556/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-avx512f-rational-3-3-div.c.obj 2025-07-24T03:54:32.3187568Z [557/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-scalar-rational-3-3-div.c.obj 2025-07-24T03:54:32.3366991Z [558/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-sse2-rational-3-3-div.c.obj 2025-07-24T03:54:32.3383088Z [559/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-fma3-rational-3-3-div.c.obj 2025-07-24T03:54:32.3721622Z [560/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u4.c.obj 2025-07-24T03:54:32.3814234Z [561/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-avx-u16.c.obj 2025-07-24T03:54:32.3882427Z [562/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-avx512f-u16.c.obj 2025-07-24T03:54:32.4223562Z [563/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c1-minmax-scalar-2x.c.obj 2025-07-24T03:54:32.4299026Z [564/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-sse41-u8.c.obj 2025-07-24T03:54:32.4431747Z [565/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c4-minmax-sse-2x.c.obj 2025-07-24T03:54:32.4489119Z [566/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u8.c.obj 2025-07-24T03:54:32.4542987Z [567/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-sse-u8.c.obj 2025-07-24T03:54:32.4997323Z [568/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-avx-u16.c.obj 2025-07-24T03:54:32.5128584Z [569/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u1.c.obj 2025-07-24T03:54:32.5145131Z [570/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-avx512f-u16.c.obj 2025-07-24T03:54:32.5538914Z [571/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-sse2-u8.c.obj 2025-07-24T03:54:32.5551814Z [572/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u4.c.obj 2025-07-24T03:54:32.5803764Z [573/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-avx512f-u16.c.obj 2025-07-24T03:54:32.5913691Z [574/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-avx-u16.c.obj 2025-07-24T03:54:32.6164579Z [575/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-sse41-u8.c.obj 2025-07-24T03:54:32.6372394Z [576/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u4.c.obj 2025-07-24T03:54:32.6436378Z [577/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-sse2-u8.c.obj 2025-07-24T03:54:32.6719011Z [578/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-sse41-u8.c.obj 2025-07-24T03:54:32.6784396Z [579/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-avx-u16.c.obj 2025-07-24T03:54:32.6965573Z [580/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u1.c.obj 2025-07-24T03:54:32.7166037Z [581/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u1.c.obj 2025-07-24T03:54:32.7289835Z [582/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-avx512f-u16.c.obj 2025-07-24T03:54:32.7513252Z [583/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u4.c.obj 2025-07-24T03:54:32.7652715Z [584/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-sse41-u8.c.obj 2025-07-24T03:54:32.7669780Z [585/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-sse2-u8.c.obj 2025-07-24T03:54:32.7917614Z [586/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-avx-u16.c.obj 2025-07-24T03:54:32.8168559Z [587/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-avx512f-u16.c.obj 2025-07-24T03:54:32.8394942Z [588/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u4.c.obj 2025-07-24T03:54:32.8483289Z [589/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u1.c.obj 2025-07-24T03:54:32.8672541Z [590/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-sse2-u8.c.obj 2025-07-24T03:54:32.8775275Z [591/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-sse41-u8.c.obj 2025-07-24T03:54:32.8962363Z [592/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u16.c.obj 2025-07-24T03:54:32.8980309Z [593/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u32.c.obj 2025-07-24T03:54:32.9421657Z [594/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u16.c.obj 2025-07-24T03:54:32.9479446Z [595/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u1.c.obj 2025-07-24T03:54:32.9737619Z [596/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u4.c.obj 2025-07-24T03:54:32.9943781Z [597/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u16.c.obj 2025-07-24T03:54:33.0000750Z [598/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u8.c.obj 2025-07-24T03:54:33.0141748Z [599/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-lut64-p2-div-u2.c.obj 2025-07-24T03:54:33.0362629Z [600/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-u64.c.obj 2025-07-24T03:54:33.0505265Z [601/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u16.c.obj 2025-07-24T03:54:33.0657958Z [602/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-lut64-p2-div-u8.c.obj 2025-07-24T03:54:33.0707303Z [603/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-lut64-p2-div-u8.c.obj 2025-07-24T03:54:33.1126178Z [604/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u16.c.obj 2025-07-24T03:54:33.1202975Z [605/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u16.c.obj 2025-07-24T03:54:33.1390483Z [606/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u1.c.obj 2025-07-24T03:54:33.1402822Z [607/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u16.c.obj 2025-07-24T03:54:33.1736675Z [608/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-avx-rational-9-8-div.c.obj 2025-07-24T03:54:33.1854204Z [609/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-fma3-rational-9-8-div.c.obj 2025-07-24T03:54:33.1969819Z [610/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-avx512f-rational-9-8-nr.c.obj 2025-07-24T03:54:33.2034857Z [611/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u12.c.obj 2025-07-24T03:54:33.2324809Z [612/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-scalar-rational-9-8-div.c.obj 2025-07-24T03:54:33.2464030Z [613/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-sse2-rational-9-8-div.c.obj 2025-07-24T03:54:33.2655120Z [614/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-avx.c.obj 2025-07-24T03:54:33.2716285Z [615/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-avx512f.c.obj 2025-07-24T03:54:33.3048630Z [616/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-scalar.c.obj 2025-07-24T03:54:33.3216286Z [617/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-avx.c.obj 2025-07-24T03:54:33.3311420Z [618/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-avx512f.c.obj 2025-07-24T03:54:33.3512615Z [619/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-sse2.c.obj 2025-07-24T03:54:33.3566287Z [620/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-scalar.c.obj 2025-07-24T03:54:33.3677734Z [621/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-sse2.c.obj 2025-07-24T03:54:33.3975694Z [622/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-avx.c.obj 2025-07-24T03:54:33.4073450Z [623/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-avx512f.c.obj 2025-07-24T03:54:33.4282595Z [624/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-scalar.c.obj 2025-07-24T03:54:33.4382352Z [625/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-sse2.c.obj 2025-07-24T03:54:33.4673528Z [626/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-1x8c8-minmax-avx2.c.obj 2025-07-24T03:54:33.4959913Z [627/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-3x8c8-minmax-avx2.c.obj 2025-07-24T03:54:33.5046324Z [628/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T03:54:33.5111078Z [629/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T03:54:33.5397057Z [630/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx256vnni.c.obj 2025-07-24T03:54:33.5511313Z [631/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-4x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T03:54:33.5886101Z [632/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx256vnni.c.obj 2025-07-24T03:54:33.5900319Z [633/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T03:54:33.6133652Z [634/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-1x8c8-minmax-avx2.c.obj 2025-07-24T03:54:33.6464898Z [635/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-1x8c8-minmax-avx256skx.c.obj 2025-07-24T03:54:33.6560718Z [636/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-1x8c8-minmax-avx256vnni.c.obj 2025-07-24T03:54:33.6695205Z [637/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-3x8c8-minmax-avx2.c.obj 2025-07-24T03:54:33.6924046Z [638/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-5x8c8-minmax-avx256skx.c.obj 2025-07-24T03:54:33.6996344Z [639/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-8x8c8-minmax-avx256vnni.c.obj 2025-07-24T03:54:33.7266945Z [640/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-1x8c8-minmax-avx2.c.obj 2025-07-24T03:54:33.7562979Z [641/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-1x8c8-minmax-avx256skx.c.obj 2025-07-24T03:54:33.7731348Z [642/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-1x8c8-minmax-avx256vnni.c.obj 2025-07-24T03:54:33.7743328Z [643/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-5x8c8-minmax-avx256skx.c.obj 2025-07-24T03:54:33.7796180Z [644/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-3x8c8-minmax-avx2.c.obj 2025-07-24T03:54:33.8104477Z [645/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-8x8c8-minmax-avx256vnni.c.obj 2025-07-24T03:54:33.8584816Z [646/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T03:54:33.8659937Z [647/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-14x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T03:54:33.8722133Z [648/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T03:54:33.8951112Z [649/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x4-minmax-scalar.c.obj 2025-07-24T03:54:33.9159772Z [650/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x4c8-minmax-sse41-ld128.c.obj 2025-07-24T03:54:33.9221493Z [651/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x4c8-minmax-avx-ld128.c.obj 2025-07-24T03:54:33.9234932Z [652/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x4c8-minmax-sse2-ld128.c.obj 2025-07-24T03:54:33.9412164Z [653/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x8c8-minmax-avx2.c.obj 2025-07-24T03:54:34.0016282Z [654/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-3x4c8-minmax-sse41-ld128.c.obj 2025-07-24T03:54:34.0131586Z [655/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-3x8c8-minmax-avx2.c.obj 2025-07-24T03:54:34.0388316Z [656/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x4c8-minmax-avx-ld128.c.obj 2025-07-24T03:54:34.0629672Z [657/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x4c8-minmax-sse2-ld128.c.obj 2025-07-24T03:54:34.0758198Z [658/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x4-minmax-scalar.c.obj 2025-07-24T03:54:34.0840066Z [659/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T03:54:34.0897399Z [660/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T03:54:34.0953656Z [661/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-8x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T03:54:34.1435953Z [662/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T03:54:34.1788458Z [663/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4-minmax-scalar.c.obj 2025-07-24T03:54:34.1879361Z [664/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T03:54:34.2067387Z [665/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-sse2-ld128.c.obj 2025-07-24T03:54:34.2286158Z [666/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T03:54:34.2341397Z [667/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T03:54:34.2398257Z [668/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-ssse3-madd.c.obj 2025-07-24T03:54:34.2590125Z [669/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4-minmax-scalar.c.obj 2025-07-24T03:54:34.2806137Z [670/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-sse2-ld128.c.obj 2025-07-24T03:54:34.3242740Z [671/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-ssse3-madd.c.obj 2025-07-24T03:54:34.3677122Z [672/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T03:54:34.3734910Z [673/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T03:54:34.3936537Z [674/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T03:54:34.4198982Z [675/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T03:54:34.4295464Z [676/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T03:54:34.4377391Z [677/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-10x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T03:54:34.4447020Z [678/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T03:54:34.4693671Z [679/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x2-minmax-scalar.c.obj 2025-07-24T03:54:34.5162400Z [680/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x4-minmax-scalar.c.obj 2025-07-24T03:54:34.5177554Z [681/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x4c8-minmax-sse2-ld64.c.obj 2025-07-24T03:54:34.5366898Z [682/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x4c8-minmax-sse41-ld64.c.obj 2025-07-24T03:54:34.5713101Z [683/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x8c8-minmax-avx2.c.obj 2025-07-24T03:54:34.5776864Z [684/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x8c8-minmax-avx256skx.c.obj 2025-07-24T03:54:34.5880362Z [685/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x2-minmax-scalar.c.obj 2025-07-24T03:54:34.5938909Z [686/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x4-minmax-scalar.c.obj 2025-07-24T03:54:34.6151064Z [687/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x4c8-minmax-sse2-ld64.c.obj 2025-07-24T03:54:34.6716463Z [688/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x8c8-minmax-avx2.c.obj 2025-07-24T03:54:34.6998855Z [689/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x4c8-minmax-sse41-ld64.c.obj 2025-07-24T03:54:34.7134136Z [690/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T03:54:34.7184792Z [691/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x8c8-minmax-avx256skx.c.obj 2025-07-24T03:54:34.7368584Z [692/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T03:54:34.7379685Z [693/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-10x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T03:54:34.7668268Z [694/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T03:54:34.7755276Z [695/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x2-minmax-scalar.c.obj 2025-07-24T03:54:34.8508291Z [696/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x4c8-minmax-sse41-ld64.c.obj 2025-07-24T03:54:34.8556967Z [697/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x8c8-minmax-avx2.c.obj 2025-07-24T03:54:34.8610138Z [698/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x4-minmax-scalar.c.obj 2025-07-24T03:54:34.8670589Z [699/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x4c8-minmax-sse2-ld64.c.obj 2025-07-24T03:54:34.8732826Z [700/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x8c8-minmax-avx256skx.c.obj 2025-07-24T03:54:34.9066289Z [701/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x4c8-minmax-sse2-ld64.c.obj 2025-07-24T03:54:34.9126247Z [702/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x4-minmax-scalar.c.obj 2025-07-24T03:54:34.9264685Z [703/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x2-minmax-scalar.c.obj 2025-07-24T03:54:35.0030346Z [704/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x8c8-minmax-avx256skx.c.obj 2025-07-24T03:54:35.0087171Z [705/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x4c8-minmax-sse41-ld64.c.obj 2025-07-24T03:54:35.0098481Z [706/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x8c8-minmax-avx2.c.obj 2025-07-24T03:54:35.0109371Z [707/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.obj 2025-07-24T03:54:35.0288883Z [708/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T03:54:35.0351670Z [709/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T03:54:35.0447989Z [710/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:54:35.0611458Z [711/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T03:54:35.1488764Z [712/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T03:54:35.1563718Z [713/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.obj 2025-07-24T03:54:35.1677528Z [714/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T03:54:35.1733256Z [715/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T03:54:35.1747280Z [716/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:54:35.1824460Z [717/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T03:54:35.1935534Z [718/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:54:35.2014507Z [719/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T03:54:35.2870502Z [720/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T03:54:35.3096157Z [721/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T03:54:35.3107040Z [722/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u32.c.obj 2025-07-24T03:54:35.3152756Z [723/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u16.c.obj 2025-07-24T03:54:35.3260348Z [724/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:54:35.3566644Z [725/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u16.c.obj 2025-07-24T03:54:35.3796736Z [726/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u32.c.obj 2025-07-24T03:54:35.3820753Z [727/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T03:54:35.4103773Z [728/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u1.c.obj 2025-07-24T03:54:35.4250031Z [729/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u32.c.obj 2025-07-24T03:54:35.4467839Z [730/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-avx256vnni-prfm.c.obj 2025-07-24T03:54:35.4564517Z [731/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u16.c.obj 2025-07-24T03:54:35.4700410Z [732/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-scalar.c.obj 2025-07-24T03:54:35.4809575Z [733/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u4.c.obj 2025-07-24T03:54:35.4873456Z [734/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx256vnni-prfm.c.obj 2025-07-24T03:54:35.5035485Z [735/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x64c4-gemm-goi-scalar.c.obj 2025-07-24T03:54:35.5433636Z [736/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.obj 2025-07-24T03:54:35.5783935Z [737/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T03:54:35.5878320Z [738/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:54:35.6044817Z [739/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:54:35.6108157Z [740/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T03:54:35.6158178Z [741/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T03:54:35.6305311Z [742/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T03:54:35.6611492Z [743/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T03:54:35.6739519Z [744/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p16c-minmax-fp32-avx-mul16-add16.c.obj 2025-07-24T03:54:35.7065694Z [745/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p16c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T03:54:35.7145111Z [746/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p1c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T03:54:35.7337454Z [747/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:54:35.7349619Z [748/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:54:35.7513500Z [749/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T03:54:35.7674132Z [750/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p8c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T03:54:35.8018511Z [751/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.obj 2025-07-24T03:54:35.8157692Z [752/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p8c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T03:54:35.8433613Z [753/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T03:54:35.8616119Z [754/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T03:54:35.8669446Z [755/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:54:35.8725230Z [756/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:54:35.8933451Z [757/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T03:54:35.9252634Z [758/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T03:54:35.9427067Z [759/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T03:54:35.9596107Z [760/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T03:54:35.9989806Z [761/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:54:36.0132191Z [762/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:54:36.0214962Z [763/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T03:54:36.0264448Z [764/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T03:54:36.0463460Z [765/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T03:54:36.0652100Z [766/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T03:54:36.0860038Z [767/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x8c8-minmax-fp32-avx2.c.obj 2025-07-24T03:54:36.1046040Z [768/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x8c8-minmax-fp32-avx256skx.c.obj 2025-07-24T03:54:36.1701909Z [769/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:54:36.1749968Z [770/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T03:54:36.1886566Z [771/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T03:54:36.2024450Z [772/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T03:54:36.2081122Z [773/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x8c8-minmax-fp32-avx2.c.obj 2025-07-24T03:54:36.2235215Z [774/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x8c8-minmax-fp32-avx256skx.c.obj 2025-07-24T03:54:36.2337486Z [775/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:54:36.2793059Z [776/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T03:54:36.3101784Z [777/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T03:54:36.3228738Z [778/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T03:54:36.3280203Z [779/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T03:54:36.3433812Z [780/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:54:36.3494008Z [781/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:54:36.3643926Z [782/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T03:54:36.3774344Z [783/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T03:54:36.4014330Z [784/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T03:54:36.4427077Z [785/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x8c8-minmax-fp32-avx2.c.obj 2025-07-24T03:54:36.4591514Z [786/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x8c8-minmax-fp32-avx256skx.c.obj 2025-07-24T03:54:36.4734193Z [787/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:54:36.4791985Z [788/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T03:54:36.5063583Z [789/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:54:36.5237984Z [790/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T03:54:36.5311461Z [791/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T03:54:36.5381864Z [792/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x8c8-minmax-fp32-avx2.c.obj 2025-07-24T03:54:36.5956621Z [793/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x16c8-gemm-goi-avx256vnni.c.obj 2025-07-24T03:54:36.6058925Z [794/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T03:54:36.6073825Z [795/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x8c8-minmax-fp32-avx256skx.c.obj 2025-07-24T03:54:36.6175860Z [796/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x16c8-gemm-goi-scalar.c.obj 2025-07-24T03:54:36.6466344Z [797/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T03:54:36.6482384Z [798/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx512skx-c64.c.obj 2025-07-24T03:54:36.6562888Z [799/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx2-c64.c.obj 2025-07-24T03:54:36.6726685Z [800/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c64.c.obj 2025-07-24T03:54:36.7103484Z [801/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.obj 2025-07-24T03:54:36.7180344Z [802/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u64-acc2.c.obj 2025-07-24T03:54:36.7352128Z [803/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u128-acc2.c.obj 2025-07-24T03:54:36.7401718Z [804/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u64-acc2.c.obj 2025-07-24T03:54:36.7571892Z [805/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u128-acc2.c.obj 2025-07-24T03:54:36.7628355Z [806/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u4.c.obj 2025-07-24T03:54:36.7691695Z [807/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u32-acc2.c.obj 2025-07-24T03:54:36.8009951Z [808/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u8.c.obj 2025-07-24T03:54:36.8338061Z [809/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u16.c.obj 2025-07-24T03:54:36.8436728Z [810/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-07-24T03:54:36.8639199Z [811/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u4.c.obj 2025-07-24T03:54:36.8651683Z [812/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u1.c.obj 2025-07-24T03:54:36.8859567Z [813/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u8.c.obj 2025-07-24T03:54:36.8924704Z [814/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u8.c.obj 2025-07-24T03:54:36.8942085Z [815/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u8.c.obj 2025-07-24T03:54:36.9223883Z [816/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u16.c.obj 2025-07-24T03:54:36.9593236Z [817/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-07-24T03:54:36.9697676Z [818/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u1.c.obj 2025-07-24T03:54:36.9832870Z [819/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u4.c.obj 2025-07-24T03:54:37.0109260Z [820/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u32.c.obj 2025-07-24T03:54:37.0183287Z [821/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u8.c.obj 2025-07-24T03:54:37.0246252Z [822/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u8.c.obj 2025-07-24T03:54:37.0316068Z [823/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u1.c.obj 2025-07-24T03:54:37.0618732Z [824/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u32.c.obj 2025-07-24T03:54:37.0636810Z [825/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u4.c.obj 2025-07-24T03:54:37.0802019Z [826/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-sse2-u32.c.obj 2025-07-24T03:54:37.1040649Z [827/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u32.c.obj 2025-07-24T03:54:37.1194100Z [828/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-ssse3-u32.c.obj 2025-07-24T03:54:37.1544353Z [829/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u32.c.obj 2025-07-24T03:54:37.1597476Z [830/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u4.c.obj 2025-07-24T03:54:37.1662313Z [831/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u32.c.obj 2025-07-24T03:54:37.1801531Z [832/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u4.c.obj 2025-07-24T03:54:37.2047297Z [833/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse2-u32.c.obj 2025-07-24T03:54:37.2256822Z [834/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-ssse3-u32.c.obj 2025-07-24T03:54:37.2561677Z [835/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-avx-mul16-ld64-u16.c.obj 2025-07-24T03:54:37.2654034Z [836/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u32.c.obj 2025-07-24T03:54:37.2812850Z [837/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-sse41-mul16-ld64-u16.c.obj 2025-07-24T03:54:37.2870175Z [838/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-sse2-mul16-ld64-u8.c.obj 2025-07-24T03:54:37.2944316Z [839/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-avx-mul16-ld64-u16.c.obj 2025-07-24T03:54:37.3213150Z [840/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u4.c.obj 2025-07-24T03:54:37.3417169Z [841/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-sse2-mul16-ld64-u8.c.obj 2025-07-24T03:54:37.3769075Z [842/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u4.c.obj 2025-07-24T03:54:37.3780735Z [843/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.obj 2025-07-24T03:54:37.3932718Z [844/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9p8x-minmax-fp32-sse2-c8.c.obj 2025-07-24T03:54:37.3985120Z [845/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.obj 2025-07-24T03:54:37.3997901Z [846/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9x-minmax-fp32-sse2-c8.c.obj 2025-07-24T03:54:37.4060913Z [847/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-sse41-mul16-ld64-u16.c.obj 2025-07-24T03:54:37.4490187Z [848/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx-mul16.c.obj 2025-07-24T03:54:37.4680076Z [849/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T03:54:37.5065517Z [850/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:54:37.5190260Z [851/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T03:54:37.5276571Z [852/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:54:37.5324977Z [853/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T03:54:37.5401816Z [854/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T03:54:37.5751774Z [855/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T03:54:37.5971925Z [856/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T03:54:37.6194970Z [857/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx-mul16.c.obj 2025-07-24T03:54:37.6390456Z [858/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:54:37.6402067Z [859/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T03:54:37.6505584Z [860/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:54:37.6579594Z [861/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T03:54:37.6594949Z [862/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T03:54:37.7062687Z [863/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T03:54:37.7359286Z [864/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u16.c.obj 2025-07-24T03:54:37.7414788Z [865/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u32.c.obj 2025-07-24T03:54:37.7549997Z [866/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u1.c.obj 2025-07-24T03:54:37.7696889Z [867/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u4.c.obj 2025-07-24T03:54:37.7750839Z [868/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u32.c.obj 2025-07-24T03:54:37.7807930Z [869/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u32.c.obj 2025-07-24T03:54:37.8044150Z [870/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u16.c.obj 2025-07-24T03:54:37.8421273Z [871/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T03:54:37.8777516Z [872/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:54:37.8874858Z [873/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:54:37.9020174Z [874/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T03:54:37.9172812Z [875/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T03:54:37.9300064Z [876/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x8c8-minmax-fp32-avx2.c.obj 2025-07-24T03:54:37.9413642Z [877/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T03:54:37.9491767Z [878/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:54:37.9972476Z [879/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T03:54:38.0237116Z [880/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:54:38.0334873Z [881/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T03:54:38.0438268Z [882/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T03:54:38.0743828Z [883/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T03:54:38.0792445Z [884/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x8c8-minmax-fp32-avx2.c.obj 2025-07-24T03:54:38.0805161Z [885/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T03:54:38.1019841Z [886/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:54:38.1457092Z [887/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:54:38.1599833Z [888/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T03:54:38.1721565Z [889/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T03:54:38.1820548Z [890/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T03:54:38.2146134Z [891/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T03:54:38.2201281Z [892/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x8c8-minmax-fp32-avx2.c.obj 2025-07-24T03:54:38.2290619Z [893/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:54:38.2534227Z [894/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:54:38.2748689Z [895/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T03:54:38.2890982Z [896/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T03:54:38.2972120Z [897/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x8c8-minmax-fp32-avx2.c.obj 2025-07-24T03:54:38.3118318Z [898/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T03:54:38.3378524Z [899/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rdsum\gen\qu8-rdsum-scalar.c.obj 2025-07-24T03:54:38.3464652Z [900/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c64.c.obj 2025-07-24T03:54:38.3518448Z [901/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u64-acc2.c.obj 2025-07-24T03:54:38.3757076Z [902/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u4.c.obj 2025-07-24T03:54:38.3897854Z [903/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u32-acc2.c.obj 2025-07-24T03:54:38.4141712Z [904/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx2-mul32-ld64-u16.c.obj 2025-07-24T03:54:38.4265742Z [905/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul32-ld32-u8.c.obj 2025-07-24T03:54:38.4332330Z [906/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-07-24T03:54:38.4600222Z [907/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u1.c.obj 2025-07-24T03:54:38.4676952Z [908/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u4.c.obj 2025-07-24T03:54:38.4749641Z [909/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse2-mul16-ld64-u8.c.obj 2025-07-24T03:54:38.5162229Z [910/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul16-ld64-u8.c.obj 2025-07-24T03:54:38.5222852Z [911/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul32-ld32-u8.c.obj 2025-07-24T03:54:38.5487997Z [912/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-07-24T03:54:38.5640243Z [913/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx2-mul32-ld64-u16.c.obj 2025-07-24T03:54:38.5859838Z [914/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse2-mul16-ld64-u8.c.obj 2025-07-24T03:54:38.5931443Z [915/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u4.c.obj 2025-07-24T03:54:38.5989922Z [916/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u1.c.obj 2025-07-24T03:54:38.6149273Z [917/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul16-ld64-u8.c.obj 2025-07-24T03:54:38.6247325Z [918/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u32.c.obj 2025-07-24T03:54:38.6296082Z [919/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u32.c.obj 2025-07-24T03:54:38.6571438Z [920/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u1.c.obj 2025-07-24T03:54:38.7032620Z [921/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-sse2-u32.c.obj 2025-07-24T03:54:38.7092964Z [922/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u4.c.obj 2025-07-24T03:54:38.7108530Z [923/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u32.c.obj 2025-07-24T03:54:38.7173426Z [924/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-ssse3-u32.c.obj 2025-07-24T03:54:38.7388201Z [925/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u32.c.obj 2025-07-24T03:54:38.7635701Z [926/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u32.c.obj 2025-07-24T03:54:38.7649308Z [927/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u4.c.obj 2025-07-24T03:54:38.7726628Z [928/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u4.c.obj 2025-07-24T03:54:38.8309921Z [929/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u32.c.obj 2025-07-24T03:54:38.8367633Z [930/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse2-u32.c.obj 2025-07-24T03:54:38.8503700Z [931/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-avx-mul16-ld64-u16.c.obj 2025-07-24T03:54:38.8562738Z [932/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-ssse3-u32.c.obj 2025-07-24T03:54:38.8876013Z [933/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-sse41-mul16-ld64-u16.c.obj 2025-07-24T03:54:38.9028127Z [934/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-avx-mul16-ld64-u16.c.obj 2025-07-24T03:54:38.9102653Z [935/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u4.c.obj 2025-07-24T03:54:38.9582076Z [936/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u4.c.obj 2025-07-24T03:54:38.9637687Z [937/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-avx2.c.obj 2025-07-24T03:54:38.9650601Z [938/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-sse2-mul16-ld64-u8.c.obj 2025-07-24T03:54:38.9698767Z [939/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-sse2-mul16-ld64-u8.c.obj 2025-07-24T03:54:38.9804721Z [940/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-sse41-mul16-ld64-u16.c.obj 2025-07-24T03:54:38.9950925Z [941/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-avx512f.c.obj 2025-07-24T03:54:39.0059774Z [942/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c1.c.obj 2025-07-24T03:54:39.0225327Z [943/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-scalar.c.obj 2025-07-24T03:54:39.0657176Z [944/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-sse41-c16.c.obj 2025-07-24T03:54:39.0798749Z [945/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-sse2-c8.c.obj 2025-07-24T03:54:39.0943847Z [946/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-07-24T03:54:39.1017035Z [947/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-sse2-c16.c.obj 2025-07-24T03:54:39.1079073Z [948/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-sse41-c16.c.obj 2025-07-24T03:54:39.1198735Z [949/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-avx2-u128.c.obj 2025-07-24T03:54:39.1260221Z [950/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-avx512skx-u256.c.obj 2025-07-24T03:54:39.1364016Z [951/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-scalar-u4.c.obj 2025-07-24T03:54:39.1831329Z [952/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-sse2-u64.c.obj 2025-07-24T03:54:39.2000687Z [953/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c1.c.obj 2025-07-24T03:54:39.2061058Z [954/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-sse41-u64.c.obj 2025-07-24T03:54:39.2113686Z [955/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-sse41-c16.c.obj 2025-07-24T03:54:39.2193239Z [956/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-lut32norm\u8-lut32norm-scalar.c.obj 2025-07-24T03:54:39.2298941Z [957/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-sse2-c8.c.obj 2025-07-24T03:54:39.2455978Z [958/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-maxpool\u8-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-07-24T03:54:39.2545312Z [959/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-maxpool\u8-maxpool-9p8x-minmax-sse2-c16.c.obj 2025-07-24T03:54:39.3081229Z [960/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-rmax\u8-rmax-scalar-u2.c.obj 2025-07-24T03:54:39.3093521Z [961/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-rmax\u8-rmax-sse2-u16.c.obj 2025-07-24T03:54:39.3278547Z [962/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-avx2-u128.c.obj 2025-07-24T03:54:39.3486819Z [963/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-sse2-u64.c.obj 2025-07-24T03:54:39.3541076Z [964/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-avx512skx-u256.c.obj 2025-07-24T03:54:39.3592752Z [965/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-packw\gen\x16-packw-x16-gemm-goi-avx2-u16-prfm.c.obj 2025-07-24T03:54:39.3683507Z [966/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-packw\gen\x16-packw-x64-gemm-goi-scalar-int-u4.c.obj 2025-07-24T03:54:39.3751239Z [967/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-scalar-u4.c.obj 2025-07-24T03:54:39.4131330Z [968/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-16x16-reuse-switch-avx2.c.obj 2025-07-24T03:54:39.4255801Z [969/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-2x4-scalar-int.c.obj 2025-07-24T03:54:39.4544010Z [970/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-multi-sse2.c.obj 2025-07-24T03:54:39.4623200Z [971/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x24-transposec\gen\x24-transposec-1x2-scalar.c.obj 2025-07-24T03:54:39.4672650Z [972/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x24-transposec\x24-transposec-4x4-ssse3.c.obj 2025-07-24T03:54:39.4732938Z [973/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx-u8.c.obj 2025-07-24T03:54:39.4846765Z [974/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-avx-u4.c.obj 2025-07-24T03:54:39.5293154Z [975/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-avx-u4.c.obj 2025-07-24T03:54:39.5304847Z [976/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x2-gemm-goi-scalar-float-u4.c.obj 2025-07-24T03:54:39.5386684Z [977/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x2c4-gemm-goi-sse2-u4.c.obj 2025-07-24T03:54:39.5698605Z [978/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx512f-u8.c.obj 2025-07-24T03:54:39.5837648Z [979/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-sse2-u4.c.obj 2025-07-24T03:54:39.5891758Z [980/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\gen\x32-transposec-2x4-scalar-int.c.obj 2025-07-24T03:54:39.5906468Z [981/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x4-gemm-goi-scalar-float-u4.c.obj 2025-07-24T03:54:39.5922451Z [982/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x32-gemm-goi-avx512f-u4-prfm.c.obj 2025-07-24T03:54:39.6064188Z [983/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-unpool\x32-unpool-scalar.c.obj 2025-07-24T03:54:39.6368575Z [984/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\x32-transposec-4x4-sse.c.obj 2025-07-24T03:54:39.6454983Z [985/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-unpool\x32-unpool-sse2.c.obj 2025-07-24T03:54:39.6513153Z [986/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-multi-avx.c.obj 2025-07-24T03:54:39.6525897Z [987/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x2-scalar.c.obj 2025-07-24T03:54:39.6616734Z [988/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x2-sse2.c.obj 2025-07-24T03:54:39.6723215Z [989/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x3-sse2.c.obj 2025-07-24T03:54:39.6738078Z [990/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x4-scalar.c.obj 2025-07-24T03:54:39.6941324Z [991/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x3-scalar.c.obj 2025-07-24T03:54:39.7049726Z [992/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x4-sse2.c.obj 2025-07-24T03:54:39.7150044Z [993/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-xm-scalar.c.obj 2025-07-24T03:54:39.7217653Z [994/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-xm-sse2.c.obj 2025-07-24T03:54:39.7620915Z [995/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-mov-sse2.c.obj 2025-07-24T03:54:39.7633127Z [996/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx-u64.c.obj 2025-07-24T03:54:39.7690143Z [997/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-4x2-scalar-int.c.obj 2025-07-24T03:54:39.7884457Z [998/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-multi-avx.c.obj 2025-07-24T03:54:39.7895166Z [999/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-scalar-u4.c.obj 2025-07-24T03:54:39.7958946Z [1000/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx2-u128.c.obj 2025-07-24T03:54:39.8012384Z [1001/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u64.c.obj 2025-07-24T03:54:39.8066288Z [1002/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u128.c.obj 2025-07-24T03:54:39.8792525Z [1003/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x16-gemm-goi-scalar-u2.c.obj 2025-07-24T03:54:39.8841409Z [1004/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packq\x8-packq-scalar-f32qp8-u1.c.obj 2025-07-24T03:54:39.8896659Z [1005/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x32-gemm-goi-scalar-u2.c.obj 2025-07-24T03:54:39.9043248Z [1006/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x8-gemm-goi-scalar-u2.c.obj 2025-07-24T03:54:39.9103765Z [1007/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-2x4-scalar-int.c.obj 2025-07-24T03:54:39.9116912Z [1008/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-16x16-reuse-mov-sse2.c.obj 2025-07-24T03:54:39.9129031Z [1009/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x4-gemm-goi-scalar-u2.c.obj 2025-07-24T03:54:39.9213803Z [1010/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-32x32-reuse-switch-avx2.c.obj 2025-07-24T03:54:39.9473414Z [1011/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x2-scalar.c.obj 2025-07-24T03:54:39.9610007Z [1012/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x3-scalar.c.obj 2025-07-24T03:54:39.9658378Z [1013/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x2-sse2.c.obj 2025-07-24T03:54:39.9741713Z [1014/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x3-sse2.c.obj 2025-07-24T03:54:39.9808054Z [1015/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x4-sse2.c.obj 2025-07-24T03:54:39.9903681Z [1016/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-xm-sse2.c.obj 2025-07-24T03:54:39.9918251Z [1017/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-xm-scalar.c.obj 2025-07-24T03:54:40.0107214Z [1018/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x4-scalar.c.obj 2025-07-24T03:54:40.0309902Z [1019/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-fill\xx-fill-scalar-u16.c.obj 2025-07-24T03:54:40.0423945Z [1020/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-pad\xx-pad-p16-sse2-u16.c.obj 2025-07-24T03:54:40.0505631Z [1021/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-fill\xx-fill-sse2-u64.c.obj 2025-07-24T03:54:40.0546210Z [1022/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2-k-over-64.c.obj 2025-07-24T03:54:40.0601161Z [1023/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-pad\xx-pad-p4-scalar-u16.c.obj 2025-07-24T03:54:40.0646988Z [1024/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-copy\xx-copy-scalar-memcpy.c.obj 2025-07-24T03:54:40.0689613Z [1025/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2-k-over-2048.c.obj 2025-07-24T03:54:40.0839027Z [1026/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-transposev\xx-transposev-1x1-scalar-memcpy.c.obj 2025-07-24T03:54:40.0959433Z [1027/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-4.c.obj 2025-07-24T03:54:40.1101770Z [1028/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-8.c.obj 2025-07-24T03:54:40.1160494Z [1029/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-16.c.obj 2025-07-24T03:54:40.1204487Z [1030/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-32.c.obj 2025-07-24T03:54:40.1224091Z [1031/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-64.c.obj 2025-07-24T03:54:40.1336092Z [1032/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-2048.c.obj 2025-07-24T03:54:40.1389763Z [1033/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\vlog.c.obj 2025-07-24T03:54:40.1592838Z [1034/7174] Linking C static library lib\cpuinfo.lib 2025-07-24T03:54:40.1667402Z [1035/7174] Running gen_proto.py on onnx/onnx-operators.in.proto 2025-07-24T03:54:40.1668204Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx-operators.in.proto 2025-07-24T03:54:40.1669324Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators_onnx_torch-ml.proto 2025-07-24T03:54:40.1670330Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators_onnx_torch-ml.proto3 2025-07-24T03:54:40.1671212Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators-ml.pb.h 2025-07-24T03:54:40.1757245Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_operators_pb.py 2025-07-24T03:54:40.1758133Z 2025-07-24T03:54:40.1758444Z [1036/7174] Running gen_proto.py on onnx/onnx-data.in.proto 2025-07-24T03:54:40.1899515Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx-data.in.proto 2025-07-24T03:54:40.1900284Z 2025-07-24T03:54:40.1900917Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data_onnx_torch.proto 2025-07-24T03:54:40.1901713Z 2025-07-24T03:54:40.1902365Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data_onnx_torch.proto3 2025-07-24T03:54:40.1903193Z 2025-07-24T03:54:40.1903707Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data.pb.h 2025-07-24T03:54:40.1904450Z 2025-07-24T03:54:40.1905294Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_data_pb.py 2025-07-24T03:54:40.1907323Z 2025-07-24T03:54:40.1908160Z [1037/7174] Linking C executable sleef\bin\mkrename.exe 2025-07-24T03:54:40.1945257Z [1038/7174] Linking C executable sleef\bin\mkdisp.exe 2025-07-24T03:54:40.1963200Z [1039/7174] Linking C executable sleef\bin\mkalias.exe 2025-07-24T03:54:40.2340340Z [1040/7174] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\allocation-type.c.obj 2025-07-24T03:54:40.2528501Z [1041/7174] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\microkernel-type.c.obj 2025-07-24T03:54:40.2641825Z [1042/7174] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\datatype-strings.c.obj 2025-07-24T03:54:40.2653337Z [1043/7174] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\operator-type.c.obj 2025-07-24T03:54:40.2712075Z [1044/7174] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\node-type.c.obj 2025-07-24T03:54:40.2822042Z [1045/7174] Building C object confu-deps\XNNPACK\CMakeFiles\indirection.dir\src\indirection.c.obj 2025-07-24T03:54:40.3623685Z [1046/7174] Building C object confu-deps\XNNPACK\CMakeFiles\allocator.dir\src\allocator.c.obj 2025-07-24T03:54:40.3702722Z [1047/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microparams-init.dir\src\microparams-init.c.obj 2025-07-24T03:54:40.3816499Z [1048/7174] Building C object confu-deps\XNNPACK\CMakeFiles\normalization.dir\src\normalization.c.obj 2025-07-24T03:54:40.4781023Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:40.4781671Z [1049/7174] Building C object confu-deps\XNNPACK\CMakeFiles\datatype.dir\src\datatype.c.obj 2025-07-24T03:54:40.4882010Z [1050/7174] Building CXX object confu-deps\XNNPACK\CMakeFiles\packing.dir\src\reference\packing.cc.obj 2025-07-24T03:54:40.4883429Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(552): warning C4190: 'xnn_float16_from_float' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-07-24T03:54:40.4884734Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-24T03:54:40.4886156Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(576): warning C4190: 'xnn_float16_from_bits' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-07-24T03:54:40.4887332Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-24T03:54:40.4888631Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(582): warning C4190: 'xnn_bfloat16_from_float' has C-linkage specified, but returns UDT 'xnn_bfloat16' which is incompatible with C 2025-07-24T03:54:40.4889832Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-07-24T03:54:40.4890984Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(598): warning C4190: 'xnn_bfloat16_from_bits' has C-linkage specified, but returns UDT 'xnn_bfloat16' which is incompatible with C 2025-07-24T03:54:40.4892279Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-07-24T03:54:40.4893539Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(604): warning C4190: 'xnn_float16_zero' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-07-24T03:54:40.4894639Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-24T03:54:40.4895770Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(5087): warning C4244: '=': conversion from 'const _Ty' to 'float', possible loss of data 2025-07-24T03:54:40.4896624Z with 2025-07-24T03:54:40.4896947Z [ 2025-07-24T03:54:40.4897118Z _Ty=int 2025-07-24T03:54:40.4897293Z ] 2025-07-24T03:54:40.4897982Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(5087): note: the template instantiation context (the oldest one first) is 2025-07-24T03:54:40.4899344Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\reference\packing.cc(100): note: see reference to function template instantiation 'void copy_bias(const Src *,size_t,size_t,Dst *)' being compiled 2025-07-24T03:54:40.4900300Z with 2025-07-24T03:54:40.4900493Z [ 2025-07-24T03:54:40.4900648Z Src=float, 2025-07-24T03:54:40.4900840Z Dst=float 2025-07-24T03:54:40.4901020Z ] 2025-07-24T03:54:40.4901890Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\reference\packing.cc(49): note: see reference to function template instantiation '_OutIt *std::fill_n(_OutIt,const _Diff,const _Ty &)' being compiled 2025-07-24T03:54:40.4902943Z with 2025-07-24T03:54:40.4903149Z [ 2025-07-24T03:54:40.4903319Z _OutIt=float *, 2025-07-24T03:54:40.4903528Z Dst=float, 2025-07-24T03:54:40.4903727Z _Diff=size_t, 2025-07-24T03:54:40.4903968Z _Ty=int 2025-07-24T03:54:40.4904188Z ] 2025-07-24T03:54:40.4904902Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(5087): warning C4244: 'argument': conversion from 'const _Ty' to 'float', possible loss of data 2025-07-24T03:54:40.4905889Z with 2025-07-24T03:54:40.4906079Z [ 2025-07-24T03:54:40.4906234Z _Ty=int 2025-07-24T03:54:40.4906423Z ] 2025-07-24T03:54:40.4907057Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(5087): note: the template instantiation context (the oldest one first) is 2025-07-24T03:54:40.4908662Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\reference\packing.cc(192): note: see reference to function template instantiation 'void copy_bias(const Src *,size_t,size_t,Dst *)' being compiled 2025-07-24T03:54:40.4909668Z with 2025-07-24T03:54:40.4909841Z [ 2025-07-24T03:54:40.4910008Z Src=float, 2025-07-24T03:54:40.4910278Z Dst=xnn_float16 2025-07-24T03:54:40.4910495Z ] 2025-07-24T03:54:40.4912281Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\reference\packing.cc(49): note: see reference to function template instantiation '_OutIt *std::fill_n(_OutIt,const _Diff,const _Ty &)' being compiled 2025-07-24T03:54:40.4913952Z with 2025-07-24T03:54:40.4914233Z [ 2025-07-24T03:54:40.4914484Z _OutIt=xnn_float16 *, 2025-07-24T03:54:40.4914794Z Dst=xnn_float16, 2025-07-24T03:54:40.4915071Z _Diff=size_t, 2025-07-24T03:54:40.4915426Z _Ty=int 2025-07-24T03:54:40.4915704Z ] 2025-07-24T03:54:40.4916418Z [1051/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernel-utils.dir\src\microkernel-utils.c.obj 2025-07-24T03:54:40.4997948Z [1052/7174] Building C object confu-deps\XNNPACK\CMakeFiles\hardware-config.dir\src\configs\hardware-config.c.obj 2025-07-24T03:54:40.5043792Z [1053/7174] Linking C static library lib\microkernels-prod.lib 2025-07-24T03:54:40.5366146Z [1054/7174] Building C object confu-deps\XNNPACK\CMakeFiles\cache.dir\src\cache.c.obj 2025-07-24T03:54:40.5780429Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:40.5781426Z [1055/7174] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\log.c.obj 2025-07-24T03:54:40.6282025Z [1056/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\average-pooling-nhwc.c.obj 2025-07-24T03:54:40.6359632Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:40.6360523Z [1057/7174] Building C object confu-deps\XNNPACK\CMakeFiles\memory.dir\src\memory.c.obj 2025-07-24T03:54:40.6415529Z [1058/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\argmax-pooling-nhwc.c.obj 2025-07-24T03:54:40.6568371Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:40.6568978Z [1059/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operator-delete.c.obj 2025-07-24T03:54:40.6697714Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:40.6698376Z [1060/7174] Building C object confu-deps\XNNPACK\CMakeFiles\mutex.dir\src\mutex.c.obj 2025-07-24T03:54:40.6771766Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:40.6772560Z [1061/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\binary-elementwise-nd.c.obj 2025-07-24T03:54:40.6913071Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:40.6914755Z [1062/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\channel-shuffle-nc.c.obj 2025-07-24T03:54:40.7464062Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:40.7465356Z [1063/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\batch-matrix-multiply-nc.c.obj 2025-07-24T03:54:40.7517943Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:40.7518751Z [1064/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\constant-pad-nd.c.obj 2025-07-24T03:54:40.7918265Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:40.7919561Z [1065/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\dynamic-fully-connected-nc.c.obj 2025-07-24T03:54:40.8231237Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:40.8232242Z [1066/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\max-pooling-nhwc.c.obj 2025-07-24T03:54:40.8740076Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:40.8741468Z [1067/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\reduce-nd.c.obj 2025-07-24T03:54:40.8756331Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:40.8757609Z [1068/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\pack-lh.c.obj 2025-07-24T03:54:40.9130236Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:40.9130878Z [1069/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\convolution-nchw.c.obj 2025-07-24T03:54:40.9215976Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:40.9216752Z [1070/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\resize-bilinear-nchw.c.obj 2025-07-24T03:54:40.9458490Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:40.9459241Z [1071/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\resize-bilinear-nhwc.c.obj 2025-07-24T03:54:40.9560619Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:40.9561293Z [1072/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\convolution-nhwc.c.obj 2025-07-24T03:54:40.9630095Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:40.9631207Z [1073/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\deconvolution-nhwc.c.obj 2025-07-24T03:54:40.9837623Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:40.9838768Z [1074/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\fully-connected-nc.c.obj 2025-07-24T03:54:41.0053116Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.0054300Z [1075/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\rope-nthc.c.obj 2025-07-24T03:54:41.0159924Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.0161186Z [1076/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\scaled-dot-product-attention-nhtc.c.obj 2025-07-24T03:54:41.0252769Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.0254015Z [1077/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\slice-nd.c.obj 2025-07-24T03:54:41.0336034Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.0337160Z [1078/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\softmax-nc.c.obj 2025-07-24T03:54:41.0648477Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.0649621Z [1079/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\transpose-nd.c.obj 2025-07-24T03:54:41.0772279Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.0773450Z [1080/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\unary-elementwise-nc.c.obj 2025-07-24T03:54:41.0896972Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.0897734Z [1081/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\unpooling-nhwc.c.obj 2025-07-24T03:54:41.1366602Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.1367672Z [1082/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operator-utils.dir\src\operator-utils.c.obj 2025-07-24T03:54:41.2059403Z [1083/7174] Building C object confu-deps\XNNPACK\CMakeFiles\operator-run.dir\src\operator-run.c.obj 2025-07-24T03:54:41.2061537Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operator-run.c(2243): warning C4098: 'xnn_compute_f16_qd8_convert': 'void' function returning a value 2025-07-24T03:54:41.2063769Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operator-run.c(2250): warning C4098: 'xnn_compute_f16_qdu8_convert': 'void' function returning a value 2025-07-24T03:54:41.2066133Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operator-run.c(2279): warning C4098: 'xnn_compute_f32_qd8_convert': 'void' function returning a value 2025-07-24T03:54:41.2715698Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operator-run.c(2286): warning C4098: 'xnn_compute_f32_qdu8_convert': 'void' function returning a value 2025-07-24T03:54:41.2717808Z [1084/7174] Building CXX object confu-deps\XNNPACK\CMakeFiles\reference-ukernels.dir\src\reference\unary-elementwise.cc.obj 2025-07-24T03:54:41.2720085Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(552): warning C4190: 'xnn_float16_from_float' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-07-24T03:54:41.2722370Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-24T03:54:41.2724625Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(576): warning C4190: 'xnn_float16_from_bits' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-07-24T03:54:41.2726842Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-24T03:54:41.2729102Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(582): warning C4190: 'xnn_bfloat16_from_float' has C-linkage specified, but returns UDT 'xnn_bfloat16' which is incompatible with C 2025-07-24T03:54:41.2731368Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-07-24T03:54:41.2733608Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(598): warning C4190: 'xnn_bfloat16_from_bits' has C-linkage specified, but returns UDT 'xnn_bfloat16' which is incompatible with C 2025-07-24T03:54:41.2736109Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-07-24T03:54:41.2780540Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(604): warning C4190: 'xnn_float16_zero' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-07-24T03:54:41.2781814Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-24T03:54:41.2782750Z [1085/7174] Building CXX object confu-deps\XNNPACK\CMakeFiles\reference-ukernels.dir\src\reference\binary-elementwise.cc.obj 2025-07-24T03:54:41.2784767Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(552): warning C4190: 'xnn_float16_from_float' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-07-24T03:54:41.2786534Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-24T03:54:41.2788072Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(576): warning C4190: 'xnn_float16_from_bits' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-07-24T03:54:41.2789654Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-24T03:54:41.2791162Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(582): warning C4190: 'xnn_bfloat16_from_float' has C-linkage specified, but returns UDT 'xnn_bfloat16' which is incompatible with C 2025-07-24T03:54:41.2792456Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-07-24T03:54:41.2793895Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(598): warning C4190: 'xnn_bfloat16_from_bits' has C-linkage specified, but returns UDT 'xnn_bfloat16' which is incompatible with C 2025-07-24T03:54:41.2795148Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-07-24T03:54:41.2966172Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(604): warning C4190: 'xnn_float16_zero' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-07-24T03:54:41.2968695Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-24T03:54:41.2970334Z [1086/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\memory-planner.c.obj 2025-07-24T03:54:41.2982835Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.2983494Z [1087/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\argmax-pooling-2d.c.obj 2025-07-24T03:54:41.3232672Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.3233744Z [1088/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph.c.obj 2025-07-24T03:54:41.3428323Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.3429519Z [1089/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\runtime.c.obj 2025-07-24T03:54:41.3521845Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.3522483Z [1090/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\average-pooling-2d.c.obj 2025-07-24T03:54:41.4552005Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.4553390Z [1091/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\batch-matrix-multiply.c.obj 2025-07-24T03:54:41.5418053Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.5420367Z [1092/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\binary.c.obj 2025-07-24T03:54:41.5524299Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.5524905Z [1093/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\copy.c.obj 2025-07-24T03:54:41.5667183Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.5667843Z [1094/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\deconvolution-2d.c.obj 2025-07-24T03:54:41.5743895Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.5744557Z [1095/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\concatenate.c.obj 2025-07-24T03:54:41.5768886Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.5769629Z [1096/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\convolution-2d.c.obj 2025-07-24T03:54:41.6054742Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.6055438Z [1097/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\depth-to-space-2d.c.obj 2025-07-24T03:54:41.6220835Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.6221472Z [1098/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\deprecated.c.obj 2025-07-24T03:54:41.7266486Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.7267766Z [1099/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\depthwise-convolution-2d.c.obj 2025-07-24T03:54:41.7927600Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.7928588Z [1100/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\even-split.c.obj 2025-07-24T03:54:41.8255023Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.8255777Z [1101/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\fully-connected.c.obj 2025-07-24T03:54:41.8344132Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.8344746Z [1102/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\pack-lh.c.obj 2025-07-24T03:54:41.8405154Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.8405843Z [1103/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\max-pooling-2d.c.obj 2025-07-24T03:54:41.8640175Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.8641356Z [1104/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\fully-connected-sparse.c.obj 2025-07-24T03:54:41.8776476Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.8777781Z [1105/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\scaled-dot-product-attention.c.obj 2025-07-24T03:54:41.8832511Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.8834114Z [1106/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\reshape-helpers.c.obj 2025-07-24T03:54:41.9783546Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:41.9784735Z [1107/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\softmax.c.obj 2025-07-24T03:54:42.0402888Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:42.0404137Z [1108/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\space-to-depth-2d.c.obj 2025-07-24T03:54:42.0865176Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:42.0865932Z [1109/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-constant-pad.c.obj 2025-07-24T03:54:42.0948037Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:42.0948824Z [1110/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-resize-bilinear-2d.c.obj 2025-07-24T03:54:42.0964415Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:42.0965674Z [1111/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-reduce.c.obj 2025-07-24T03:54:42.1090291Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:42.1090918Z [1112/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-slice.c.obj 2025-07-24T03:54:42.1260290Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:42.1261006Z [1113/7174] Generating sleeflibm_AVX.h.tmp 2025-07-24T03:54:42.1321185Z [1114/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-transpose.c.obj 2025-07-24T03:54:42.1419576Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:42.1420336Z [1115/7174] Generating sleeflibm_AVX2.h.tmp 2025-07-24T03:54:42.1466841Z [1116/7174] Generating sleeflibm_AVX2128.h.tmp 2025-07-24T03:54:42.1508169Z [1117/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\unpooling-2d.c.obj 2025-07-24T03:54:42.1574526Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:42.1575305Z [1118/7174] Generating sleeflibm_AVX512F.h.tmp 2025-07-24T03:54:42.1620018Z [1119/7174] Generating sleeflibm_AVX512FNOFMA.h.tmp 2025-07-24T03:54:42.1642024Z [1120/7174] Generating sleeflibm_AVX512F_.h.tmp 2025-07-24T03:54:42.1700823Z [1121/7174] Generating sleeflibm_AVX_.h.tmp 2025-07-24T03:54:42.1752834Z [1122/7174] Generating sleeflibm_DSP_SCALAR.h.tmp 2025-07-24T03:54:42.1774078Z [1123/7174] Generating sleeflibm_FMA4.h.tmp 2025-07-24T03:54:42.1833598Z [1124/7174] Generating sleeflibm_PURECFMA_SCALAR.h.tmp 2025-07-24T03:54:42.1886728Z [1125/7174] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-07-24T03:54:42.1945907Z [1126/7174] Generating sleeflibm_PUREC_SCALAR.h.tmp 2025-07-24T03:54:42.1961225Z [1127/7174] Generating sleeflibm_SSE2.h.tmp 2025-07-24T03:54:42.2006572Z [1128/7174] Generating sleeflibm_SSE4.h.tmp 2025-07-24T03:54:42.2045499Z [1129/7174] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-07-24T03:54:42.2090361Z [1130/7174] Generating sleeflibm_SSE_.h.tmp 2025-07-24T03:54:42.2120535Z [1131/7174] Generating alias_AVX512F_dp.h.tmp 2025-07-24T03:54:42.2175554Z [1132/7174] Generating dispsse.c.tmp 2025-07-24T03:54:42.2189252Z [1133/7174] Generating dispscalar.c.body 2025-07-24T03:54:42.2226171Z [1134/7174] Generating dispavx.c.tmp 2025-07-24T03:54:42.2289792Z [1135/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\unary.c.obj 2025-07-24T03:54:42.2303307Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:42.2303960Z [1136/7174] Generating alias_AVX512F_sp.h.tmp 2025-07-24T03:54:42.3019378Z [1137/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\validation.c.obj 2025-07-24T03:54:42.3258124Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:42.3259474Z [1138/7174] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\tensor.c.obj 2025-07-24T03:54:42.4776887Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:42.4777344Z [1139/7174] Generating build_identifier.c 2025-07-24T03:54:42.5577338Z [1140/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\codewriter.cpp.obj 2025-07-24T03:54:42.6193381Z [1141/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\constpool.cpp.obj 2025-07-24T03:54:42.6207774Z [1142/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\archtraits.cpp.obj 2025-07-24T03:54:42.6209161Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:42.6210528Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:42.6211916Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:42.6213288Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:42.6214679Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:42.6216256Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:42.6217585Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:42.6445831Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:42.6447438Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:42.6448818Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:42.6449890Z [1143/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\builder.cpp.obj 2025-07-24T03:54:42.6565914Z [1144/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\assembler.cpp.obj 2025-07-24T03:54:42.6691864Z [1145/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\compiler.cpp.obj 2025-07-24T03:54:42.7244053Z [1146/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\codeholder.cpp.obj 2025-07-24T03:54:42.7986777Z [1147/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\cpuinfo.cpp.obj 2025-07-24T03:54:42.8999004Z [1148/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\emithelper.cpp.obj 2025-07-24T03:54:42.9288492Z [1149/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\errorhandler.cpp.obj 2025-07-24T03:54:42.9341262Z [1150/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\emitterutils.cpp.obj 2025-07-24T03:54:42.9511335Z [1151/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\emitter.cpp.obj 2025-07-24T03:54:42.9602994Z [1152/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\environment.cpp.obj 2025-07-24T03:54:43.0368756Z [1153/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\func.cpp.obj 2025-07-24T03:54:43.0657035Z [1154/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\formatter.cpp.obj 2025-07-24T03:54:43.1386803Z [1155/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\funcargscontext.cpp.obj 2025-07-24T03:54:43.2057901Z [1156/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\globals.cpp.obj 2025-07-24T03:54:43.2563773Z [1157/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\instdb.cpp.obj 2025-07-24T03:54:43.2580373Z [1158/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\inst.cpp.obj 2025-07-24T03:54:43.2640470Z [1159/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\jitallocator.cpp.obj 2025-07-24T03:54:43.2866824Z [1160/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\jitruntime.cpp.obj 2025-07-24T03:54:43.3336152Z [1161/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\logger.cpp.obj 2025-07-24T03:54:43.3614035Z [1162/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\operand.cpp.obj 2025-07-24T03:54:43.4597236Z [1163/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\osutils.cpp.obj 2025-07-24T03:54:43.5746668Z [1164/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\string.cpp.obj 2025-07-24T03:54:43.5820483Z [1165/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\rastack.cpp.obj 2025-07-24T03:54:43.5869383Z [1166/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\support.cpp.obj 2025-07-24T03:54:43.5921376Z [1167/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\ralocal.cpp.obj 2025-07-24T03:54:43.6437001Z [1168/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\type.cpp.obj 2025-07-24T03:54:43.6594992Z [1169/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\target.cpp.obj 2025-07-24T03:54:43.7011894Z [1170/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\rapass.cpp.obj 2025-07-24T03:54:43.8024638Z [1171/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\virtmem.cpp.obj 2025-07-24T03:54:43.8871866Z [1172/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonelist.cpp.obj 2025-07-24T03:54:43.8958964Z [1173/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zone.cpp.obj 2025-07-24T03:54:43.9054121Z [1174/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonestack.cpp.obj 2025-07-24T03:54:43.9120439Z [1175/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonehash.cpp.obj 2025-07-24T03:54:43.9529428Z [1176/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonetree.cpp.obj 2025-07-24T03:54:43.9581985Z [1177/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonevector.cpp.obj 2025-07-24T03:54:44.0918705Z [1178/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\armformatter.cpp.obj 2025-07-24T03:54:44.0920068Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.0921625Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.0922973Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.0924749Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.0926253Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.0927698Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.0929259Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2429790Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2431210Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2432654Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2433735Z [1179/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64builder.cpp.obj 2025-07-24T03:54:44.2434811Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2436422Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2437781Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2439111Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2440429Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2441802Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2443133Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2702279Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2703666Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2705011Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2706193Z [1180/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64func.cpp.obj 2025-07-24T03:54:44.2707513Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2708849Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2710180Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2711493Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2712874Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2715229Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2717559Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2719961Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2722755Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2725448Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2727442Z [1181/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64formatter.cpp.obj 2025-07-24T03:54:44.2729451Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2731588Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2733996Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2736393Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2738806Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2741389Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.2743974Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3088429Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3091309Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3093860Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3095904Z [1182/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64assembler.cpp.obj 2025-07-24T03:54:44.3097961Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3100397Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3102906Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3105367Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3107908Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3110690Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3113299Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3115766Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3118316Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3120885Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3122932Z [1183/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64instapi.cpp.obj 2025-07-24T03:54:44.3124961Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3127488Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3129536Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3131166Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3133544Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3135164Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3136493Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3236078Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3238507Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3239999Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3241525Z [1184/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64emithelper.cpp.obj 2025-07-24T03:54:44.3242830Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3244389Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3246029Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3247379Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3248938Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3250398Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3251864Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3317617Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3319214Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3320856Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3322079Z [1185/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64compiler.cpp.obj 2025-07-24T03:54:44.3323337Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3325852Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3328434Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3331076Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3333703Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3336320Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.3338998Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.4534349Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.4535974Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.4537352Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.4538815Z [1186/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64instdb.cpp.obj 2025-07-24T03:54:44.4539965Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.4541356Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.4542687Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.4544184Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.4545552Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.4547108Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.4548613Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.5574209Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.5576862Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.5578738Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.5580014Z [1187/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64operand.cpp.obj 2025-07-24T03:54:44.5581802Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.5583865Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.5586697Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.5589338Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.5594149Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.5596877Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.5598390Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.6767377Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.6768779Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.6770125Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.6771267Z [1188/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64rapass.cpp.obj 2025-07-24T03:54:44.6772339Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.6773727Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.6775116Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.6776444Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.6778389Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.6780803Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.6783536Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.6865900Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.6867296Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.6868630Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:54:44.6869836Z [1189/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86assembler.cpp.obj 2025-07-24T03:54:44.6870922Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(244): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:54:44.6872236Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(244): note: the template instantiation context (the oldest one first) is 2025-07-24T03:54:44.6873711Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(252): note: see reference to class template instantiation 'asmjit::_abi_1_13::x86::X86CDisp8SHL_T<0>' being compiled 2025-07-24T03:54:44.6875891Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(245): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:54:44.6877298Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(246): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:54:44.6878668Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(247): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:54:44.6879998Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(276): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:54:44.6881423Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(276): note: the template instantiation context (the oldest one first) is 2025-07-24T03:54:44.6882982Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(284): note: see reference to class template instantiation 'asmjit::_abi_1_13::x86::X86Mod16BaseIndexTable_T<0>' being compiled 2025-07-24T03:54:44.6884507Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(276): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:54:44.6885885Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(276): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:54:44.6887281Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(276): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:54:44.6888609Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(277): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:54:44.6890117Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(277): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:54:44.6891447Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(277): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:54:44.6892859Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(277): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:54:44.6894360Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(278): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:54:44.6895884Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(278): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:54:44.6897262Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(278): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:54:44.6898700Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(278): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:54:44.6900380Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(279): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:54:44.6902160Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(279): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:54:44.6903651Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(279): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:54:44.6905266Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(279): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:54:44.6906595Z [1190/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86builder.cpp.obj 2025-07-24T03:54:44.7203678Z [1191/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86compiler.cpp.obj 2025-07-24T03:54:44.7346460Z [1192/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86formatter.cpp.obj 2025-07-24T03:54:44.7623661Z [1193/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86emithelper.cpp.obj 2025-07-24T03:54:44.8540517Z [1194/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86func.cpp.obj 2025-07-24T03:54:44.9791136Z [1195/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86instdb.cpp.obj 2025-07-24T03:54:45.0156416Z [1196/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86operand.cpp.obj 2025-07-24T03:54:45.0910939Z [1197/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86instapi.cpp.obj 2025-07-24T03:54:45.1766627Z [1198/7174] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86rapass.cpp.obj 2025-07-24T03:54:45.1783987Z [1199/7174] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx_onnx_torch-ml.pb.cc.obj 2025-07-24T03:54:45.1845204Z [1200/7174] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx-data_onnx_torch.pb.cc.obj 2025-07-24T03:54:45.2317354Z [1201/7174] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx-operators_onnx_torch-ml.pb.cc.obj 2025-07-24T03:54:45.2981763Z [1202/7174] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc.c.obj 2025-07-24T03:54:45.3677892Z [1203/7174] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc-aligned.c.obj 2025-07-24T03:54:45.3876494Z [1204/7174] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc-posix.c.obj 2025-07-24T03:54:45.4681280Z [1205/7174] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\arena.c.obj 2025-07-24T03:54:45.5581035Z [1206/7174] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\bitmap.c.obj 2025-07-24T03:54:45.5823648Z [1207/7174] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\heap.c.obj 2025-07-24T03:54:45.6081752Z [1208/7174] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\init.c.obj 2025-07-24T03:54:45.6289639Z [1209/7174] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\libc.c.obj 2025-07-24T03:54:45.7710858Z [1210/7174] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\os.c.obj 2025-07-24T03:54:45.7864260Z [1211/7174] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\page.c.obj 2025-07-24T03:54:45.7875104Z [1212/7174] Generating include/renameavx512fnofma.h 2025-07-24T03:54:45.8004099Z Generating renameavx512fnofma.h: mkrename "cinz_" "8" "16" "avx512fnofma" 2025-07-24T03:54:45.8004507Z 2025-07-24T03:54:45.8004678Z [1213/7174] Generating include/renameavx512f.h 2025-07-24T03:54:45.8016361Z Generating renameavx512f.h: mkrename "finz_" "8" "16" "avx512f" 2025-07-24T03:54:45.8016904Z 2025-07-24T03:54:45.8017090Z [1214/7174] Generating include/renameavx2.h 2025-07-24T03:54:45.8185167Z Generating renameavx2.h: mkrename "finz_" "4" "8" "avx2" 2025-07-24T03:54:45.8185735Z 2025-07-24T03:54:45.8186214Z [1215/7174] Generating include/renamefma4.h 2025-07-24T03:54:45.8195701Z Generating renamefma4.h: mkrename "finz_" "4" "8" "fma4" 2025-07-24T03:54:45.8195975Z 2025-07-24T03:54:45.8196094Z [1216/7174] Generating include/renameavx2128.h 2025-07-24T03:54:45.8335642Z Generating renameavx2128.h: mkrename "finz_" "2" "4" "avx2128" 2025-07-24T03:54:45.8336199Z 2025-07-24T03:54:45.8336395Z [1217/7174] Generating include/renamesse4.h 2025-07-24T03:54:45.8357817Z Generating renamesse4.h: mkrename "cinz_" "2" "4" "sse4" 2025-07-24T03:54:45.8358273Z 2025-07-24T03:54:45.8358444Z [1218/7174] Generating include/renameavx.h 2025-07-24T03:54:45.8436561Z Generating renameavx.h: mkrename "cinz_" "4" "8" "avx" 2025-07-24T03:54:45.8437051Z 2025-07-24T03:54:45.8437602Z [1219/7174] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\random.c.obj 2025-07-24T03:54:45.8473779Z [1220/7174] Generating include/renamesse2.h 2025-07-24T03:54:45.8494569Z Generating renamesse2.h: mkrename "cinz_" "2" "4" "sse2" 2025-07-24T03:54:45.8494922Z 2025-07-24T03:54:45.8495054Z [1221/7174] Generating include/renamepurec_scalar.h 2025-07-24T03:54:45.8581232Z Generating renamepurec_scalar.h: mkrename "cinz_" "1" "1" "purec" 2025-07-24T03:54:45.8581658Z 2025-07-24T03:54:45.8581803Z [1222/7174] Generating include/renamepurecfma_scalar.h 2025-07-24T03:54:45.8611069Z Generating renamepurecfma_scalar.h: mkrename "finz_" "1" "1" "purecfma" 2025-07-24T03:54:45.8611730Z 2025-07-24T03:54:45.8611946Z [1223/7174] Generating include/renamecuda.h 2025-07-24T03:54:45.8790937Z Generating renamecuda.h: mkrename "finz_" "1" "1" "cuda" 2025-07-24T03:54:45.8791298Z 2025-07-24T03:54:45.8791455Z [1224/7174] Generating ../../../include/sleef.h 2025-07-24T03:54:45.8836440Z [1225/7174] Generating include/alias_avx512f.h 2025-07-24T03:54:45.8856204Z [1226/7174] Generating dispscalar.c 2025-07-24T03:54:45.8921945Z [1227/7174] Generating include/renamedspscalar.h 2025-07-24T03:54:45.8986543Z [1228/7174] Generating include/renamedsp128.h 2025-07-24T03:54:45.9077030Z [1229/7174] Generating dispsse.c 2025-07-24T03:54:45.9109612Z [1230/7174] Generating include/renamedsp256.h 2025-07-24T03:54:45.9147436Z [1231/7174] Generating dispavx.c 2025-07-24T03:54:45.9681863Z [1232/7174] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\segment-map.c.obj 2025-07-24T03:54:45.9796661Z [1233/7174] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\segment.c.obj 2025-07-24T03:54:46.0014757Z [1234/7174] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\stats.c.obj 2025-07-24T03:54:46.0554161Z [1235/7174] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\prim\prim.c.obj 2025-07-24T03:54:46.2865413Z [1236/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\avgpool-config.c.obj 2025-07-24T03:54:46.3062914Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:46.3064239Z [1237/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\binary-elementwise-config.c.obj 2025-07-24T03:54:46.3146448Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:46.3147201Z [1238/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\argmaxpool-config.c.obj 2025-07-24T03:54:46.3546714Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:46.3547416Z [1239/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\conv-hwc2chw-config.c.obj 2025-07-24T03:54:46.3655604Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:46.3656765Z [1240/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\cmul-config.c.obj 2025-07-24T03:54:46.3707343Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:46.3708811Z [1241/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\experiments-config.c.obj 2025-07-24T03:54:46.4415399Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:46.4416026Z [1242/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\dwconv-config.c.obj 2025-07-24T03:54:46.4637643Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:46.4638796Z [1243/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\dwconv2d-chw-config.c.obj 2025-07-24T03:54:46.4982430Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:46.4983614Z [1244/7174] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\options.c.obj 2025-07-24T03:54:46.7277096Z [1245/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\ibilinear-chw-config.c.obj 2025-07-24T03:54:46.7509604Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:46.7510787Z [1246/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\ibilinear-config.c.obj 2025-07-24T03:54:46.7525050Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:46.7526134Z [1247/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\gemm-config.c.obj 2025-07-24T03:54:46.7677157Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:46.7678240Z [1248/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\lut32norm-config.c.obj 2025-07-24T03:54:46.8056013Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:46.8056723Z [1249/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\maxpool-config.c.obj 2025-07-24T03:54:46.8435919Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:46.8436610Z [1250/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\pavgpool-config.c.obj 2025-07-24T03:54:46.8634423Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:46.8635824Z [1251/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\pack-lh-config.c.obj 2025-07-24T03:54:46.8852140Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:46.8853312Z [1252/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\raddstoreexpminusmax-config.c.obj 2025-07-24T03:54:47.1331654Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:47.1332795Z [1253/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\reduce-config.c.obj 2025-07-24T03:54:47.1440182Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:47.1441247Z [1254/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\rmax-config.c.obj 2025-07-24T03:54:47.1582448Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:47.1583842Z [1255/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\spmm-config.c.obj 2025-07-24T03:54:47.1869378Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:47.1870579Z [1256/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\transpose-config.c.obj 2025-07-24T03:54:47.2546812Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:47.2547965Z [1257/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\vmulcaddc-config.c.obj 2025-07-24T03:54:47.2566489Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:47.2567626Z [1258/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\unpool-config.c.obj 2025-07-24T03:54:47.2905790Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:47.2906434Z [1259/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\xx-fill-config.c.obj 2025-07-24T03:54:47.2985682Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:47.2986883Z [1260/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\unary-elementwise-config.c.obj 2025-07-24T03:54:47.3281998Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:47.3282782Z [1261/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\params.c.obj 2025-07-24T03:54:47.3330325Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:47.3331204Z [1262/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\build_identifier.c.obj 2025-07-24T03:54:47.3950257Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:47.3951424Z [1263/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\ExecuteKernel.cc.obj 2025-07-24T03:54:47.5331195Z [1264/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\x8-lut-config.c.obj 2025-07-24T03:54:47.5528339Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:47.5529463Z [1265/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\xx-pad-config.c.obj 2025-07-24T03:54:47.5683011Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:47.5683994Z [1266/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\init.c.obj 2025-07-24T03:54:47.6033090Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:47.6034269Z [1267/7174] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\zip-config.c.obj 2025-07-24T03:54:47.7669658Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:54:47.7670381Z [1268/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmBfloat16Convert.cc.obj 2025-07-24T03:54:47.9083290Z [1269/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmConv.cc.obj 2025-07-24T03:54:47.9085592Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9087242Z with 2025-07-24T03:54:47.9087424Z [ 2025-07-24T03:54:47.9087588Z T=uint8_t, 2025-07-24T03:54:47.9087794Z accT=int32_t, 2025-07-24T03:54:47.9088005Z inpType=uint8_t 2025-07-24T03:54:47.9088220Z ] 2025-07-24T03:54:47.9088973Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:47.9089792Z with 2025-07-24T03:54:47.9089964Z [ 2025-07-24T03:54:47.9090120Z T=uint8_t, 2025-07-24T03:54:47.9090318Z accT=int32_t 2025-07-24T03:54:47.9090543Z ] 2025-07-24T03:54:47.9091753Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9093045Z with 2025-07-24T03:54:47.9093244Z [ 2025-07-24T03:54:47.9093405Z T=uint8_t, 2025-07-24T03:54:47.9093594Z accT=int32_t 2025-07-24T03:54:47.9093790Z ] 2025-07-24T03:54:47.9094558Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:47.9095401Z with 2025-07-24T03:54:47.9095562Z [ 2025-07-24T03:54:47.9095727Z T=uint8_t, 2025-07-24T03:54:47.9096076Z accT=int32_t 2025-07-24T03:54:47.9096281Z ] 2025-07-24T03:54:47.9097420Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9098618Z with 2025-07-24T03:54:47.9098838Z [ 2025-07-24T03:54:47.9098995Z T=int8_t, 2025-07-24T03:54:47.9099201Z accT=int32_t, 2025-07-24T03:54:47.9099451Z inpType=int8_t 2025-07-24T03:54:47.9099661Z ] 2025-07-24T03:54:47.9100397Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:47.9101143Z with 2025-07-24T03:54:47.9101309Z [ 2025-07-24T03:54:47.9101476Z T=int8_t, 2025-07-24T03:54:47.9101676Z accT=int32_t 2025-07-24T03:54:47.9101862Z ] 2025-07-24T03:54:47.9102982Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9104157Z with 2025-07-24T03:54:47.9104317Z [ 2025-07-24T03:54:47.9104475Z T=int8_t, 2025-07-24T03:54:47.9104664Z accT=int32_t 2025-07-24T03:54:47.9104912Z ] 2025-07-24T03:54:47.9105729Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:47.9106517Z with 2025-07-24T03:54:47.9106675Z [ 2025-07-24T03:54:47.9106840Z T=int8_t, 2025-07-24T03:54:47.9107538Z accT=int32_t 2025-07-24T03:54:47.9107735Z ] 2025-07-24T03:54:47.9108932Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9110180Z with 2025-07-24T03:54:47.9110350Z [ 2025-07-24T03:54:47.9110504Z T=uint8_t, 2025-07-24T03:54:47.9110703Z accT=int32_t, 2025-07-24T03:54:47.9110913Z inpType=uint8_t 2025-07-24T03:54:47.9111180Z ] 2025-07-24T03:54:47.9111978Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:47.9112795Z with 2025-07-24T03:54:47.9113018Z [ 2025-07-24T03:54:47.9113176Z T=uint8_t, 2025-07-24T03:54:47.9113373Z accT=int32_t 2025-07-24T03:54:47.9113566Z ] 2025-07-24T03:54:47.9114736Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9115964Z with 2025-07-24T03:54:47.9116125Z [ 2025-07-24T03:54:47.9116293Z T=uint8_t, 2025-07-24T03:54:47.9116485Z accT=int32_t 2025-07-24T03:54:47.9116684Z ] 2025-07-24T03:54:47.9117636Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:47.9118525Z with 2025-07-24T03:54:47.9118829Z [ 2025-07-24T03:54:47.9118998Z T=uint8_t, 2025-07-24T03:54:47.9119207Z accT=int32_t 2025-07-24T03:54:47.9119401Z ] 2025-07-24T03:54:47.9120596Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9121844Z with 2025-07-24T03:54:47.9122016Z [ 2025-07-24T03:54:47.9122172Z T=uint8_t, 2025-07-24T03:54:47.9122372Z accT=int32_t, 2025-07-24T03:54:47.9122594Z inpType=uint8_t 2025-07-24T03:54:47.9122798Z ] 2025-07-24T03:54:47.9123643Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:47.9124459Z with 2025-07-24T03:54:47.9124642Z [ 2025-07-24T03:54:47.9124798Z T=uint8_t, 2025-07-24T03:54:47.9124997Z accT=int32_t 2025-07-24T03:54:47.9125188Z ] 2025-07-24T03:54:47.9126358Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9127579Z with 2025-07-24T03:54:47.9127736Z [ 2025-07-24T03:54:47.9127904Z T=uint8_t, 2025-07-24T03:54:47.9128124Z accT=int32_t 2025-07-24T03:54:47.9128337Z ] 2025-07-24T03:54:47.9129206Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:47.9131566Z with 2025-07-24T03:54:47.9131848Z [ 2025-07-24T03:54:47.9132244Z T=uint8_t, 2025-07-24T03:54:47.9132592Z accT=int32_t 2025-07-24T03:54:47.9133391Z ] 2025-07-24T03:54:47.9136749Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9139104Z with 2025-07-24T03:54:47.9139420Z [ 2025-07-24T03:54:47.9139706Z T=uint8_t, 2025-07-24T03:54:47.9140336Z accT=int32_t, 2025-07-24T03:54:47.9141637Z inpType=uint8_t 2025-07-24T03:54:47.9142014Z ] 2025-07-24T03:54:47.9143418Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:47.9144259Z with 2025-07-24T03:54:47.9144449Z [ 2025-07-24T03:54:47.9144656Z T=uint8_t, 2025-07-24T03:54:47.9144900Z accT=int32_t 2025-07-24T03:54:47.9145103Z ] 2025-07-24T03:54:47.9146422Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9148089Z with 2025-07-24T03:54:47.9148379Z [ 2025-07-24T03:54:47.9148706Z T=uint8_t, 2025-07-24T03:54:47.9148992Z accT=int32_t 2025-07-24T03:54:47.9149326Z ] 2025-07-24T03:54:47.9150804Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:47.9152254Z with 2025-07-24T03:54:47.9152550Z [ 2025-07-24T03:54:47.9152848Z T=uint8_t, 2025-07-24T03:54:47.9153211Z accT=int32_t 2025-07-24T03:54:47.9153513Z ] 2025-07-24T03:54:47.9155155Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:47.9157247Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:47.9159682Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:47.9162764Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:47.9164839Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:47.9166277Z [1270/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\EmbeddingSpMDMNBit.cc.obj 2025-07-24T03:54:47.9571153Z [1271/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\Fbgemm.cc.obj 2025-07-24T03:54:47.9572861Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9574239Z with 2025-07-24T03:54:47.9574424Z [ 2025-07-24T03:54:47.9574652Z inpType=uint8_t 2025-07-24T03:54:47.9574876Z ] 2025-07-24T03:54:47.9575679Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:54:47.9577580Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9579501Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:54:47.9581375Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,int8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9582666Z with 2025-07-24T03:54:47.9582838Z [ 2025-07-24T03:54:47.9583031Z inpType=int8_t 2025-07-24T03:54:47.9583449Z ] 2025-07-24T03:54:47.9584212Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,int8_t,int32_t>::PackMatrix' 2025-07-24T03:54:47.9586222Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,int8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9588060Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,int8_t,int32_t>::packedBufferSize' 2025-07-24T03:54:47.9589943Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9591343Z with 2025-07-24T03:54:47.9591514Z [ 2025-07-24T03:54:47.9591702Z inpType=uint8_t 2025-07-24T03:54:47.9591913Z ] 2025-07-24T03:54:47.9592677Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-24T03:54:47.9594550Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9596468Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-24T03:54:47.9598523Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,int8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9599824Z with 2025-07-24T03:54:47.9600001Z [ 2025-07-24T03:54:47.9600182Z inpType=int8_t 2025-07-24T03:54:47.9600386Z ] 2025-07-24T03:54:47.9601186Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,int8_t,int16_t>::PackMatrix' 2025-07-24T03:54:47.9603113Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,int8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9604922Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,int8_t,int16_t>::packedBufferSize' 2025-07-24T03:54:47.9606819Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9608150Z with 2025-07-24T03:54:47.9608309Z [ 2025-07-24T03:54:47.9608517Z inpType=uint8_t 2025-07-24T03:54:47.9608721Z ] 2025-07-24T03:54:47.9609693Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:54:47.9612117Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9614454Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:54:47.9616551Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9617863Z with 2025-07-24T03:54:47.9618027Z [ 2025-07-24T03:54:47.9618206Z inpType=uint8_t 2025-07-24T03:54:47.9618413Z ] 2025-07-24T03:54:47.9619243Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-24T03:54:47.9621213Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9623157Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-24T03:54:47.9625329Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9626692Z with 2025-07-24T03:54:47.9626898Z [ 2025-07-24T03:54:47.9627085Z inpType=uint8_t 2025-07-24T03:54:47.9627288Z ] 2025-07-24T03:54:47.9628563Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:54:47.9632118Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9635819Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:54:47.9639678Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9642192Z with 2025-07-24T03:54:47.9642487Z [ 2025-07-24T03:54:47.9642996Z inpType=uint8_t 2025-07-24T03:54:47.9643390Z ] 2025-07-24T03:54:47.9644865Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:54:47.9648485Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9652199Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:54:47.9655893Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9658459Z with 2025-07-24T03:54:47.9658754Z [ 2025-07-24T03:54:47.9659049Z inpType=uint8_t 2025-07-24T03:54:47.9659414Z ] 2025-07-24T03:54:47.9660869Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:54:47.9664499Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9668511Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:54:47.9672273Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9674792Z with 2025-07-24T03:54:47.9675088Z [ 2025-07-24T03:54:47.9675431Z inpType=uint8_t 2025-07-24T03:54:47.9675791Z ] 2025-07-24T03:54:47.9677242Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-24T03:54:47.9680808Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9684493Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-24T03:54:47.9688216Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9689837Z with 2025-07-24T03:54:47.9690289Z [ 2025-07-24T03:54:47.9690624Z inpType=uint8_t 2025-07-24T03:54:47.9690881Z ] 2025-07-24T03:54:47.9691671Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-24T03:54:47.9693695Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9696612Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-24T03:54:47.9701051Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9703539Z with 2025-07-24T03:54:47.9703844Z [ 2025-07-24T03:54:47.9704137Z inpType=uint8_t 2025-07-24T03:54:47.9704593Z ] 2025-07-24T03:54:47.9706136Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-24T03:54:47.9709686Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9713849Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-24T03:54:47.9717605Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9720110Z with 2025-07-24T03:54:47.9720403Z [ 2025-07-24T03:54:47.9720678Z inpType=uint8_t 2025-07-24T03:54:47.9721040Z ] 2025-07-24T03:54:47.9722630Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:54:47.9726395Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9730183Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:54:47.9733725Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9736358Z with 2025-07-24T03:54:47.9736682Z [ 2025-07-24T03:54:47.9736977Z inpType=uint8_t 2025-07-24T03:54:47.9737337Z ] 2025-07-24T03:54:47.9738693Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:54:47.9742711Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9746356Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:54:47.9749750Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(113): warning C4661: 'fbgemm::PackMatrix,int8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9752110Z with 2025-07-24T03:54:47.9752459Z [ 2025-07-24T03:54:47.9752788Z inpType=int8_t 2025-07-24T03:54:47.9753177Z ] 2025-07-24T03:54:47.9754870Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,int8_t,int32_t>::PackMatrix' 2025-07-24T03:54:47.9758475Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(113): warning C4661: 'int fbgemm::PackMatrix,int8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9762350Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,int8_t,int32_t>::packedBufferSize' 2025-07-24T03:54:47.9765891Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9768208Z with 2025-07-24T03:54:47.9768510Z [ 2025-07-24T03:54:47.9768793Z inpType=uint8_t 2025-07-24T03:54:47.9769161Z ] 2025-07-24T03:54:47.9770557Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-24T03:54:47.9774027Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9777408Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-24T03:54:47.9780958Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(113): warning C4661: 'fbgemm::PackMatrix,int8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9783227Z with 2025-07-24T03:54:47.9783535Z [ 2025-07-24T03:54:47.9784037Z inpType=int8_t 2025-07-24T03:54:47.9784419Z ] 2025-07-24T03:54:47.9786018Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,int8_t,int16_t>::PackMatrix' 2025-07-24T03:54:47.9789232Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(113): warning C4661: 'int fbgemm::PackMatrix,int8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9792582Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,int8_t,int16_t>::packedBufferSize' 2025-07-24T03:54:47.9796263Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9798622Z with 2025-07-24T03:54:47.9798923Z [ 2025-07-24T03:54:47.9799215Z inpType=uint8_t 2025-07-24T03:54:47.9799587Z ] 2025-07-24T03:54:47.9801070Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:54:47.9804617Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9808093Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:54:47.9814847Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9817362Z with 2025-07-24T03:54:47.9817684Z [ 2025-07-24T03:54:47.9817986Z inpType=uint8_t 2025-07-24T03:54:47.9818405Z ] 2025-07-24T03:54:47.9819887Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-24T03:54:47.9823691Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9827306Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-24T03:54:47.9830842Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9833166Z with 2025-07-24T03:54:47.9833475Z [ 2025-07-24T03:54:47.9833933Z inpType=uint8_t 2025-07-24T03:54:47.9834326Z ] 2025-07-24T03:54:47.9835736Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:54:47.9839231Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9842585Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:54:47.9846080Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9848315Z with 2025-07-24T03:54:47.9848804Z [ 2025-07-24T03:54:47.9849193Z inpType=uint8_t 2025-07-24T03:54:47.9849555Z ] 2025-07-24T03:54:47.9850920Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:54:47.9854186Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9857525Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:54:47.9861073Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9862983Z with 2025-07-24T03:54:47.9863254Z [ 2025-07-24T03:54:47.9863935Z inpType=uint8_t 2025-07-24T03:54:47.9864302Z ] 2025-07-24T03:54:47.9865509Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:54:47.9867948Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9870343Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:54:47.9872302Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9873620Z with 2025-07-24T03:54:47.9873794Z [ 2025-07-24T03:54:47.9874178Z inpType=uint8_t 2025-07-24T03:54:47.9874535Z ] 2025-07-24T03:54:47.9875556Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-24T03:54:47.9877531Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9879482Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-24T03:54:47.9881609Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9882847Z with 2025-07-24T03:54:47.9883032Z [ 2025-07-24T03:54:47.9883262Z inpType=uint8_t 2025-07-24T03:54:47.9883493Z ] 2025-07-24T03:54:47.9884261Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-24T03:54:47.9886811Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9892050Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-24T03:54:47.9895280Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9897571Z with 2025-07-24T03:54:47.9897915Z [ 2025-07-24T03:54:47.9898223Z inpType=uint8_t 2025-07-24T03:54:47.9898623Z ] 2025-07-24T03:54:47.9900309Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-24T03:54:47.9904060Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9907898Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-24T03:54:47.9911784Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9914364Z with 2025-07-24T03:54:47.9914675Z [ 2025-07-24T03:54:47.9915757Z inpType=uint8_t 2025-07-24T03:54:47.9916167Z ] 2025-07-24T03:54:47.9918124Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:54:47.9920753Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:47.9922788Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:54:47.9925192Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:47.9927971Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:47.9930151Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:47.9932187Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:47.9934358Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:47.9936365Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:47.9938431Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:47.9940481Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:47.9942796Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:47.9944805Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,short>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:47.9946965Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:47.9948930Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:47.9951045Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:47.9952410Z [1272/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmFPCommon.cc.obj 2025-07-24T03:54:47.9953305Z [1273/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmFloat16Convert.cc.obj 2025-07-24T03:54:47.9954483Z [1274/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmFP16.cc.obj 2025-07-24T03:54:48.0107969Z [1275/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\EmbeddingSpMDM.cc.obj 2025-07-24T03:54:48.0388891Z [1276/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\ExecuteKernelU8S8.cc.obj 2025-07-24T03:54:48.2499480Z [1277/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmI8Spmdm.cc.obj 2025-07-24T03:54:48.3366558Z [1278/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmSparseDense.cc.obj 2025-07-24T03:54:48.3876890Z [1279/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmPackMatrixB.cc.obj 2025-07-24T03:54:48.4386561Z [1280/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmI64.cc.obj 2025-07-24T03:54:48.4761084Z [1281/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelDirectConvU8S8S32ACC32.cc.obj 2025-07-24T03:54:48.5234011Z [1282/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC16.cc.obj 2025-07-24T03:54:48.5386174Z [1283/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC16Avx512.cc.obj 2025-07-24T03:54:48.5447009Z [1284/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernel.cc.obj 2025-07-24T03:54:48.7570696Z [1285/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC16Avx512VNNI.cc.obj 2025-07-24T03:54:48.8511184Z [1286/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC32.cc.obj 2025-07-24T03:54:48.8756219Z [1287/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAWithIm2Col.cc.obj 2025-07-24T03:54:48.8759050Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8760558Z with 2025-07-24T03:54:48.8760741Z [ 2025-07-24T03:54:48.8760933Z T=uint8_t, 2025-07-24T03:54:48.8761183Z accT=int32_t, 2025-07-24T03:54:48.8761477Z inpType=uint8_t 2025-07-24T03:54:48.8761699Z ] 2025-07-24T03:54:48.8762475Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:48.8763296Z with 2025-07-24T03:54:48.8763755Z [ 2025-07-24T03:54:48.8763930Z T=uint8_t, 2025-07-24T03:54:48.8764141Z accT=int32_t 2025-07-24T03:54:48.8764357Z ] 2025-07-24T03:54:48.8766293Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8768669Z with 2025-07-24T03:54:48.8768962Z [ 2025-07-24T03:54:48.8769276Z T=uint8_t, 2025-07-24T03:54:48.8769630Z accT=int32_t 2025-07-24T03:54:48.8769995Z ] 2025-07-24T03:54:48.8771490Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:48.8773124Z with 2025-07-24T03:54:48.8773453Z [ 2025-07-24T03:54:48.8773747Z T=uint8_t, 2025-07-24T03:54:48.8774116Z accT=int32_t 2025-07-24T03:54:48.8774460Z ] 2025-07-24T03:54:48.8776770Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8779234Z with 2025-07-24T03:54:48.8779529Z [ 2025-07-24T03:54:48.8779829Z T=uint8_t, 2025-07-24T03:54:48.8780186Z accT=int16_t, 2025-07-24T03:54:48.8780586Z inpType=uint8_t 2025-07-24T03:54:48.8780969Z ] 2025-07-24T03:54:48.8782417Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:48.8784188Z with 2025-07-24T03:54:48.8784495Z [ 2025-07-24T03:54:48.8784798Z T=uint8_t, 2025-07-24T03:54:48.8785159Z accT=int16_t 2025-07-24T03:54:48.8785652Z ] 2025-07-24T03:54:48.8787892Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8790411Z with 2025-07-24T03:54:48.8790707Z [ 2025-07-24T03:54:48.8791010Z T=uint8_t, 2025-07-24T03:54:48.8791373Z accT=int16_t 2025-07-24T03:54:48.8791723Z ] 2025-07-24T03:54:48.8793213Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:48.8794834Z with 2025-07-24T03:54:48.8795146Z [ 2025-07-24T03:54:48.8795436Z T=uint8_t, 2025-07-24T03:54:48.8795784Z accT=int16_t 2025-07-24T03:54:48.8796033Z ] 2025-07-24T03:54:48.8797379Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8798653Z with 2025-07-24T03:54:48.8798828Z [ 2025-07-24T03:54:48.8799007Z T=uint8_t, 2025-07-24T03:54:48.8799209Z accT=int32_t, 2025-07-24T03:54:48.8799443Z inpType=uint8_t 2025-07-24T03:54:48.8799655Z ] 2025-07-24T03:54:48.8800575Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:48.8801411Z with 2025-07-24T03:54:48.8801587Z [ 2025-07-24T03:54:48.8801767Z T=uint8_t, 2025-07-24T03:54:48.8801966Z accT=int32_t 2025-07-24T03:54:48.8802184Z ] 2025-07-24T03:54:48.8803339Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8804578Z with 2025-07-24T03:54:48.8804822Z [ 2025-07-24T03:54:48.8805004Z T=uint8_t, 2025-07-24T03:54:48.8805200Z accT=int32_t 2025-07-24T03:54:48.8805413Z ] 2025-07-24T03:54:48.8806200Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:48.8807114Z with 2025-07-24T03:54:48.8807286Z [ 2025-07-24T03:54:48.8807469Z T=uint8_t, 2025-07-24T03:54:48.8807674Z accT=int32_t 2025-07-24T03:54:48.8807888Z ] 2025-07-24T03:54:48.8809083Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8810339Z with 2025-07-24T03:54:48.8810527Z [ 2025-07-24T03:54:48.8810693Z T=uint8_t, 2025-07-24T03:54:48.8810920Z accT=int16_t, 2025-07-24T03:54:48.8811139Z inpType=uint8_t 2025-07-24T03:54:48.8811492Z ] 2025-07-24T03:54:48.8812253Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:48.8813128Z with 2025-07-24T03:54:48.8813316Z [ 2025-07-24T03:54:48.8813483Z T=uint8_t, 2025-07-24T03:54:48.8813696Z accT=int16_t 2025-07-24T03:54:48.8813895Z ] 2025-07-24T03:54:48.8815163Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8816396Z with 2025-07-24T03:54:48.8816619Z [ 2025-07-24T03:54:48.8816789Z T=uint8_t, 2025-07-24T03:54:48.8816983Z accT=int16_t 2025-07-24T03:54:48.8817198Z ] 2025-07-24T03:54:48.8817959Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:48.8818880Z with 2025-07-24T03:54:48.8819049Z [ 2025-07-24T03:54:48.8819201Z T=uint8_t, 2025-07-24T03:54:48.8819400Z accT=int16_t 2025-07-24T03:54:48.8819588Z ] 2025-07-24T03:54:48.8820870Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8822102Z with 2025-07-24T03:54:48.8822270Z [ 2025-07-24T03:54:48.8822427Z T=uint8_t, 2025-07-24T03:54:48.8822734Z accT=int32_t, 2025-07-24T03:54:48.8822965Z inpType=uint8_t 2025-07-24T03:54:48.8823168Z ] 2025-07-24T03:54:48.8823924Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:48.8824721Z with 2025-07-24T03:54:48.8824894Z [ 2025-07-24T03:54:48.8825147Z T=uint8_t, 2025-07-24T03:54:48.8825496Z accT=int32_t 2025-07-24T03:54:48.8825824Z ] 2025-07-24T03:54:48.8827078Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8828424Z with 2025-07-24T03:54:48.8828584Z [ 2025-07-24T03:54:48.8828768Z T=uint8_t, 2025-07-24T03:54:48.8829047Z accT=int32_t 2025-07-24T03:54:48.8829254Z ] 2025-07-24T03:54:48.8830132Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:48.8831156Z with 2025-07-24T03:54:48.8831367Z [ 2025-07-24T03:54:48.8831540Z T=uint8_t, 2025-07-24T03:54:48.8831728Z accT=int32_t 2025-07-24T03:54:48.8831934Z ] 2025-07-24T03:54:48.8833233Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8834469Z with 2025-07-24T03:54:48.8834783Z [ 2025-07-24T03:54:48.8834983Z T=uint8_t, 2025-07-24T03:54:48.8835217Z accT=int16_t, 2025-07-24T03:54:48.8835426Z inpType=uint8_t 2025-07-24T03:54:48.8835636Z ] 2025-07-24T03:54:48.8836370Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:48.8837222Z with 2025-07-24T03:54:48.8837387Z [ 2025-07-24T03:54:48.8837581Z T=uint8_t, 2025-07-24T03:54:48.8837773Z accT=int16_t 2025-07-24T03:54:48.8837978Z ] 2025-07-24T03:54:48.8839244Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8840663Z with 2025-07-24T03:54:48.8840833Z [ 2025-07-24T03:54:48.8840994Z T=uint8_t, 2025-07-24T03:54:48.8841222Z accT=int16_t 2025-07-24T03:54:48.8841415Z ] 2025-07-24T03:54:48.8842249Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:48.8843159Z with 2025-07-24T03:54:48.8843353Z [ 2025-07-24T03:54:48.8843570Z T=uint8_t, 2025-07-24T03:54:48.8843891Z accT=int16_t 2025-07-24T03:54:48.8844210Z ] 2025-07-24T03:54:48.8845606Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8846860Z with 2025-07-24T03:54:48.8847035Z [ 2025-07-24T03:54:48.8847201Z T=uint8_t, 2025-07-24T03:54:48.8847407Z accT=int32_t, 2025-07-24T03:54:48.8847613Z inpType=uint8_t 2025-07-24T03:54:48.8847884Z ] 2025-07-24T03:54:48.8848628Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:48.8849427Z with 2025-07-24T03:54:48.8849602Z [ 2025-07-24T03:54:48.8849808Z T=uint8_t, 2025-07-24T03:54:48.8850073Z accT=int32_t 2025-07-24T03:54:48.8850321Z ] 2025-07-24T03:54:48.8851695Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8853038Z with 2025-07-24T03:54:48.8853199Z [ 2025-07-24T03:54:48.8853400Z T=uint8_t, 2025-07-24T03:54:48.8853590Z accT=int32_t 2025-07-24T03:54:48.8853833Z ] 2025-07-24T03:54:48.8854641Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:48.8855556Z with 2025-07-24T03:54:48.8855716Z [ 2025-07-24T03:54:48.8855928Z T=uint8_t, 2025-07-24T03:54:48.8856132Z accT=int32_t 2025-07-24T03:54:48.8856361Z ] 2025-07-24T03:54:48.8857632Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8859840Z with 2025-07-24T03:54:48.8860058Z [ 2025-07-24T03:54:48.8860216Z T=uint8_t, 2025-07-24T03:54:48.8860461Z accT=int16_t, 2025-07-24T03:54:48.8868615Z inpType=uint8_t 2025-07-24T03:54:48.8868963Z ] 2025-07-24T03:54:48.8869907Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:48.8870853Z with 2025-07-24T03:54:48.8871024Z [ 2025-07-24T03:54:48.8871200Z T=uint8_t, 2025-07-24T03:54:48.8871412Z accT=int16_t 2025-07-24T03:54:48.8871608Z ] 2025-07-24T03:54:48.8872787Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8874053Z with 2025-07-24T03:54:48.8874232Z [ 2025-07-24T03:54:48.8874395Z T=uint8_t, 2025-07-24T03:54:48.8874603Z accT=int16_t 2025-07-24T03:54:48.8874803Z ] 2025-07-24T03:54:48.8875587Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:48.8876479Z with 2025-07-24T03:54:48.8876639Z [ 2025-07-24T03:54:48.8876854Z T=uint8_t, 2025-07-24T03:54:48.8877056Z accT=int16_t 2025-07-24T03:54:48.8877294Z ] 2025-07-24T03:54:48.8878892Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8880278Z with 2025-07-24T03:54:48.8880495Z [ 2025-07-24T03:54:48.8880658Z T=uint8_t, 2025-07-24T03:54:48.8880898Z accT=int32_t, 2025-07-24T03:54:48.8881202Z inpType=uint8_t 2025-07-24T03:54:48.8881529Z ] 2025-07-24T03:54:48.8882604Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:48.8883825Z with 2025-07-24T03:54:48.8884088Z [ 2025-07-24T03:54:48.8884488Z T=uint8_t, 2025-07-24T03:54:48.8885060Z accT=int32_t 2025-07-24T03:54:48.8885462Z ] 2025-07-24T03:54:48.8887797Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8890369Z with 2025-07-24T03:54:48.8890724Z [ 2025-07-24T03:54:48.8890992Z T=uint8_t, 2025-07-24T03:54:48.8891374Z accT=int32_t 2025-07-24T03:54:48.8891770Z ] 2025-07-24T03:54:48.8893406Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:48.8895113Z with 2025-07-24T03:54:48.8895409Z [ 2025-07-24T03:54:48.8895683Z T=uint8_t, 2025-07-24T03:54:48.8896048Z accT=int32_t 2025-07-24T03:54:48.8896400Z ] 2025-07-24T03:54:48.8898702Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8901688Z with 2025-07-24T03:54:48.8902028Z [ 2025-07-24T03:54:48.8902313Z T=uint8_t, 2025-07-24T03:54:48.8902774Z accT=int16_t, 2025-07-24T03:54:48.8903208Z inpType=uint8_t 2025-07-24T03:54:48.8903561Z ] 2025-07-24T03:54:48.8904900Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:48.8907175Z with 2025-07-24T03:54:48.8907474Z [ 2025-07-24T03:54:48.8907908Z T=uint8_t, 2025-07-24T03:54:48.8908301Z accT=int16_t 2025-07-24T03:54:48.8908745Z ] 2025-07-24T03:54:48.8911127Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8913577Z with 2025-07-24T03:54:48.8913919Z [ 2025-07-24T03:54:48.8914200Z T=uint8_t, 2025-07-24T03:54:48.8914547Z accT=int16_t 2025-07-24T03:54:48.8914994Z ] 2025-07-24T03:54:48.8916704Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:48.8918350Z with 2025-07-24T03:54:48.8918658Z [ 2025-07-24T03:54:48.8919021Z T=uint8_t, 2025-07-24T03:54:48.8919720Z accT=int16_t 2025-07-24T03:54:48.8920219Z ] 2025-07-24T03:54:48.8922783Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8925318Z with 2025-07-24T03:54:48.8925620Z [ 2025-07-24T03:54:48.8925916Z T=uint8_t, 2025-07-24T03:54:48.8926235Z accT=int32_t, 2025-07-24T03:54:48.8926598Z inpType=uint8_t 2025-07-24T03:54:48.8926971Z ] 2025-07-24T03:54:48.8928353Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:48.8929889Z with 2025-07-24T03:54:48.8930189Z [ 2025-07-24T03:54:48.8930495Z T=uint8_t, 2025-07-24T03:54:48.8930885Z accT=int32_t 2025-07-24T03:54:48.8931355Z ] 2025-07-24T03:54:48.8933599Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8936183Z with 2025-07-24T03:54:48.8936473Z [ 2025-07-24T03:54:48.8936761Z T=uint8_t, 2025-07-24T03:54:48.8937124Z accT=int32_t 2025-07-24T03:54:48.8937480Z ] 2025-07-24T03:54:48.8939012Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:48.8940617Z with 2025-07-24T03:54:48.8941115Z [ 2025-07-24T03:54:48.8941413Z T=uint8_t, 2025-07-24T03:54:48.8941782Z accT=int32_t 2025-07-24T03:54:48.8942128Z ] 2025-07-24T03:54:48.8944326Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8946846Z with 2025-07-24T03:54:48.8947203Z [ 2025-07-24T03:54:48.8947544Z T=uint8_t, 2025-07-24T03:54:48.8947905Z accT=int16_t, 2025-07-24T03:54:48.8948305Z inpType=uint8_t 2025-07-24T03:54:48.8948699Z ] 2025-07-24T03:54:48.8950154Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:48.8951784Z with 2025-07-24T03:54:48.8952101Z [ 2025-07-24T03:54:48.8952400Z T=uint8_t, 2025-07-24T03:54:48.8952754Z accT=int16_t 2025-07-24T03:54:48.8953119Z ] 2025-07-24T03:54:48.8955427Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.8957851Z with 2025-07-24T03:54:48.8958166Z [ 2025-07-24T03:54:48.8958461Z T=uint8_t, 2025-07-24T03:54:48.8958830Z accT=int16_t 2025-07-24T03:54:48.8959191Z ] 2025-07-24T03:54:48.8960902Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:48.8962564Z with 2025-07-24T03:54:48.8962877Z [ 2025-07-24T03:54:48.8963175Z T=uint8_t, 2025-07-24T03:54:48.8963541Z accT=int16_t 2025-07-24T03:54:48.8963915Z ] 2025-07-24T03:54:48.8965996Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:48.8970354Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:48.8974216Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:48.8977925Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:48.8981681Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:48.9042368Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:48.9044097Z [1288/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAMatrix.cc.obj 2025-07-24T03:54:48.9045851Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9047091Z with 2025-07-24T03:54:48.9047268Z [ 2025-07-24T03:54:48.9047434Z T=uint8_t, 2025-07-24T03:54:48.9047696Z accT=int32_t, 2025-07-24T03:54:48.9047968Z inpType=uint8_t 2025-07-24T03:54:48.9048251Z ] 2025-07-24T03:54:48.9049027Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:48.9049896Z with 2025-07-24T03:54:48.9050101Z [ 2025-07-24T03:54:48.9050295Z T=uint8_t, 2025-07-24T03:54:48.9050493Z accT=int32_t 2025-07-24T03:54:48.9050680Z ] 2025-07-24T03:54:48.9051821Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9053247Z with 2025-07-24T03:54:48.9053422Z [ 2025-07-24T03:54:48.9053585Z T=uint8_t, 2025-07-24T03:54:48.9053773Z accT=int32_t 2025-07-24T03:54:48.9054020Z ] 2025-07-24T03:54:48.9055037Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:48.9055914Z with 2025-07-24T03:54:48.9056115Z [ 2025-07-24T03:54:48.9056275Z T=uint8_t, 2025-07-24T03:54:48.9056469Z accT=int32_t 2025-07-24T03:54:48.9056665Z ] 2025-07-24T03:54:48.9057925Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9059527Z with 2025-07-24T03:54:48.9059705Z [ 2025-07-24T03:54:48.9059910Z T=uint8_t, 2025-07-24T03:54:48.9060202Z accT=int16_t, 2025-07-24T03:54:48.9060413Z inpType=uint8_t 2025-07-24T03:54:48.9060622Z ] 2025-07-24T03:54:48.9061396Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:48.9062371Z with 2025-07-24T03:54:48.9062539Z [ 2025-07-24T03:54:48.9062692Z T=uint8_t, 2025-07-24T03:54:48.9062887Z accT=int16_t 2025-07-24T03:54:48.9063200Z ] 2025-07-24T03:54:48.9064397Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9066315Z with 2025-07-24T03:54:48.9066520Z [ 2025-07-24T03:54:48.9067479Z T=uint8_t, 2025-07-24T03:54:48.9068136Z accT=int16_t 2025-07-24T03:54:48.9068953Z ] 2025-07-24T03:54:48.9072838Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:48.9074681Z with 2025-07-24T03:54:48.9074988Z [ 2025-07-24T03:54:48.9075300Z T=uint8_t, 2025-07-24T03:54:48.9075656Z accT=int16_t 2025-07-24T03:54:48.9076179Z ] 2025-07-24T03:54:48.9077526Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAMatrix.cc(29): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9079017Z with 2025-07-24T03:54:48.9079194Z [ 2025-07-24T03:54:48.9079358Z T=uint8_t, 2025-07-24T03:54:48.9079568Z accT=int32_t, 2025-07-24T03:54:48.9079783Z inpType=uint8_t 2025-07-24T03:54:48.9080066Z ] 2025-07-24T03:54:48.9080925Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:48.9081932Z with 2025-07-24T03:54:48.9082102Z [ 2025-07-24T03:54:48.9082258Z T=uint8_t, 2025-07-24T03:54:48.9082461Z accT=int32_t 2025-07-24T03:54:48.9082651Z ] 2025-07-24T03:54:48.9083899Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAMatrix.cc(29): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9085291Z with 2025-07-24T03:54:48.9085456Z [ 2025-07-24T03:54:48.9085638Z T=uint8_t, 2025-07-24T03:54:48.9085858Z accT=int32_t 2025-07-24T03:54:48.9086117Z ] 2025-07-24T03:54:48.9087133Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:48.9088060Z with 2025-07-24T03:54:48.9088267Z [ 2025-07-24T03:54:48.9088433Z T=uint8_t, 2025-07-24T03:54:48.9088620Z accT=int32_t 2025-07-24T03:54:48.9088815Z ] 2025-07-24T03:54:48.9090317Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAMatrix.cc(29): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9091640Z with 2025-07-24T03:54:48.9091800Z [ 2025-07-24T03:54:48.9092056Z T=uint8_t, 2025-07-24T03:54:48.9092394Z accT=int16_t, 2025-07-24T03:54:48.9092782Z inpType=uint8_t 2025-07-24T03:54:48.9093152Z ] 2025-07-24T03:54:48.9094255Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:48.9095452Z with 2025-07-24T03:54:48.9095656Z [ 2025-07-24T03:54:48.9095886Z T=uint8_t, 2025-07-24T03:54:48.9096112Z accT=int16_t 2025-07-24T03:54:48.9096307Z ] 2025-07-24T03:54:48.9097549Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAMatrix.cc(29): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9098982Z with 2025-07-24T03:54:48.9099200Z [ 2025-07-24T03:54:48.9099453Z T=uint8_t, 2025-07-24T03:54:48.9099976Z accT=int16_t 2025-07-24T03:54:48.9100290Z ] 2025-07-24T03:54:48.9101447Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:48.9102682Z with 2025-07-24T03:54:48.9102945Z [ 2025-07-24T03:54:48.9103252Z T=uint8_t, 2025-07-24T03:54:48.9103577Z accT=int16_t 2025-07-24T03:54:48.9103941Z ] 2025-07-24T03:54:48.9114800Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:48.9118860Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:48.9121767Z [1289/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC32Avx512VNNI.cc.obj 2025-07-24T03:54:48.9362168Z [1290/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GroupwiseConv.cc.obj 2025-07-24T03:54:48.9748923Z [1291/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GroupwiseConvAcc32Avx2.cc.obj 2025-07-24T03:54:48.9751041Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9753403Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::getOrCreate' 2025-07-24T03:54:48.9756595Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9759788Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge' 2025-07-24T03:54:48.9762884Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9765934Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::initResultRegs' 2025-07-24T03:54:48.9768507Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9770203Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genCoreInsts' 2025-07-24T03:54:48.9772061Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9773903Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForSingleOutput' 2025-07-24T03:54:48.9775847Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9777480Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::getOrCreate' 2025-07-24T03:54:48.9779235Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9781148Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge' 2025-07-24T03:54:48.9782961Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9785169Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::initResultRegs' 2025-07-24T03:54:48.9787275Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9789001Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genCoreInsts' 2025-07-24T03:54:48.9790855Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9792532Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForSingleOutput' 2025-07-24T03:54:48.9794323Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9795963Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::getOrCreate' 2025-07-24T03:54:48.9797730Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9800524Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge' 2025-07-24T03:54:48.9803237Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9806882Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::initResultRegs' 2025-07-24T03:54:48.9810130Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9813066Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genCoreInsts' 2025-07-24T03:54:48.9816386Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9819852Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForSingleOutput' 2025-07-24T03:54:48.9823142Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9826577Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::getOrCreate' 2025-07-24T03:54:48.9830393Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9833950Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge' 2025-07-24T03:54:48.9837510Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9841030Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::initResultRegs' 2025-07-24T03:54:48.9844461Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9847687Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genCoreInsts' 2025-07-24T03:54:48.9851285Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9854866Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForSingleOutput' 2025-07-24T03:54:48.9858857Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9862079Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::getOrCreate' 2025-07-24T03:54:48.9865593Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9869132Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge' 2025-07-24T03:54:48.9872492Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9875867Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::initResultRegs' 2025-07-24T03:54:48.9879112Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9882566Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genCoreInsts' 2025-07-24T03:54:48.9885920Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9889380Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForSingleOutput' 2025-07-24T03:54:48.9892882Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9896029Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::getOrCreate' 2025-07-24T03:54:48.9899062Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9902190Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge' 2025-07-24T03:54:48.9905327Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9908571Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::initResultRegs' 2025-07-24T03:54:48.9911519Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9913979Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genCoreInsts' 2025-07-24T03:54:48.9985279Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9987371Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForSingleOutput' 2025-07-24T03:54:48.9988569Z [1292/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GroupwiseConvAcc32Avx512.cc.obj 2025-07-24T03:54:48.9990268Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9992053Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::getOrCreate' 2025-07-24T03:54:48.9994051Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:48.9996027Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge' 2025-07-24T03:54:48.9998219Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0001566Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::initResultRegs' 2025-07-24T03:54:49.0004756Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0007899Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genCoreInsts' 2025-07-24T03:54:49.0011434Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0015062Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForSingleOutput' 2025-07-24T03:54:49.0018529Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0021695Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::getOrCreate' 2025-07-24T03:54:49.0025088Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0028614Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge' 2025-07-24T03:54:49.0031946Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0035114Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::initResultRegs' 2025-07-24T03:54:49.0037613Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0041635Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts' 2025-07-24T03:54:49.0044953Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0048209Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput' 2025-07-24T03:54:49.0051252Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0054171Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::getOrCreate' 2025-07-24T03:54:49.0057224Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0060459Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge' 2025-07-24T03:54:49.0063550Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0066811Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::initResultRegs' 2025-07-24T03:54:49.0069772Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0072773Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genCoreInsts' 2025-07-24T03:54:49.0075888Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0079204Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForSingleOutput' 2025-07-24T03:54:49.0082279Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0085315Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::getOrCreate' 2025-07-24T03:54:49.0088624Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0091956Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge' 2025-07-24T03:54:49.0095044Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0098185Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::initResultRegs' 2025-07-24T03:54:49.0101226Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0104267Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts' 2025-07-24T03:54:49.0107638Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0110876Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput' 2025-07-24T03:54:49.0114052Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0117031Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::getOrCreate' 2025-07-24T03:54:49.0120122Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0123513Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge' 2025-07-24T03:54:49.0125874Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0128480Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::initResultRegs' 2025-07-24T03:54:49.0130953Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0134237Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genCoreInsts' 2025-07-24T03:54:49.0137397Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0140725Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForSingleOutput' 2025-07-24T03:54:49.0143824Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0147017Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::getOrCreate' 2025-07-24T03:54:49.0150221Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0153095Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge' 2025-07-24T03:54:49.0154884Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0156820Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::initResultRegs' 2025-07-24T03:54:49.0158638Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0160552Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts' 2025-07-24T03:54:49.0163951Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0167460Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput' 2025-07-24T03:54:49.0170868Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0174068Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::getOrCreate' 2025-07-24T03:54:49.0177602Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0180697Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge' 2025-07-24T03:54:49.0182964Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0184719Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::initResultRegs' 2025-07-24T03:54:49.0187028Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0189165Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genCoreInsts' 2025-07-24T03:54:49.0191811Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0194918Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForSingleOutput' 2025-07-24T03:54:49.0198748Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0202223Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::getOrCreate' 2025-07-24T03:54:49.0205759Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0209390Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge' 2025-07-24T03:54:49.0212876Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0216262Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::initResultRegs' 2025-07-24T03:54:49.0219703Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0223209Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts' 2025-07-24T03:54:49.0226910Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0230503Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput' 2025-07-24T03:54:49.0233943Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0237175Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::getOrCreate' 2025-07-24T03:54:49.0240667Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0244285Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge' 2025-07-24T03:54:49.0247694Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0251198Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::initResultRegs' 2025-07-24T03:54:49.0254398Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0257726Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genCoreInsts' 2025-07-24T03:54:49.0261206Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0264786Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForSingleOutput' 2025-07-24T03:54:49.0268295Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0271597Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::getOrCreate' 2025-07-24T03:54:49.0275350Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0278977Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge' 2025-07-24T03:54:49.0282425Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0285876Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::initResultRegs' 2025-07-24T03:54:49.0288091Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0289936Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts' 2025-07-24T03:54:49.0292038Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0293948Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput' 2025-07-24T03:54:49.0296665Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0298526Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::getOrCreate' 2025-07-24T03:54:49.0300328Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0302500Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge' 2025-07-24T03:54:49.0305059Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0308562Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::initResultRegs' 2025-07-24T03:54:49.0312079Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0315433Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genCoreInsts' 2025-07-24T03:54:49.0318402Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0320616Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForSingleOutput' 2025-07-24T03:54:49.0322511Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0325397Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::getOrCreate' 2025-07-24T03:54:49.0328539Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0331126Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge' 2025-07-24T03:54:49.0333234Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0336791Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::initResultRegs' 2025-07-24T03:54:49.0339932Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0343162Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts' 2025-07-24T03:54:49.0346546Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0725467Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput' 2025-07-24T03:54:49.0727921Z [1293/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAWithQuantRowOffset.cc.obj 2025-07-24T03:54:49.0731228Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0732714Z with 2025-07-24T03:54:49.0732960Z [ 2025-07-24T03:54:49.0733201Z T=uint8_t, 2025-07-24T03:54:49.0733480Z accT=int32_t, 2025-07-24T03:54:49.0733778Z inpType=uint8_t 2025-07-24T03:54:49.0734003Z ] 2025-07-24T03:54:49.0734838Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:49.0735723Z with 2025-07-24T03:54:49.0735969Z [ 2025-07-24T03:54:49.0736209Z T=uint8_t, 2025-07-24T03:54:49.0736528Z accT=int32_t 2025-07-24T03:54:49.0736845Z ] 2025-07-24T03:54:49.0739009Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0741490Z with 2025-07-24T03:54:49.0741747Z [ 2025-07-24T03:54:49.0742022Z T=uint8_t, 2025-07-24T03:54:49.0742469Z accT=int32_t 2025-07-24T03:54:49.0742977Z ] 2025-07-24T03:54:49.0744532Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:49.0746307Z with 2025-07-24T03:54:49.0746639Z [ 2025-07-24T03:54:49.0746913Z T=uint8_t, 2025-07-24T03:54:49.0747257Z accT=int32_t 2025-07-24T03:54:49.0747581Z ] 2025-07-24T03:54:49.0749890Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithQuantRowOffset.cc(36): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0753605Z with 2025-07-24T03:54:49.0753810Z [ 2025-07-24T03:54:49.0753969Z T=uint8_t, 2025-07-24T03:54:49.0754184Z accT=int32_t, 2025-07-24T03:54:49.0754477Z inpType=uint8_t 2025-07-24T03:54:49.0754755Z ] 2025-07-24T03:54:49.0755729Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:49.0756799Z with 2025-07-24T03:54:49.0756964Z [ 2025-07-24T03:54:49.0757119Z T=uint8_t, 2025-07-24T03:54:49.0757386Z accT=int32_t 2025-07-24T03:54:49.0757988Z ] 2025-07-24T03:54:49.0759566Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithQuantRowOffset.cc(36): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.0762189Z with 2025-07-24T03:54:49.0762688Z [ 2025-07-24T03:54:49.0762908Z T=uint8_t, 2025-07-24T03:54:49.0763200Z accT=int32_t 2025-07-24T03:54:49.0763410Z ] 2025-07-24T03:54:49.0764794Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:49.0766719Z with 2025-07-24T03:54:49.0766990Z [ 2025-07-24T03:54:49.0767225Z T=uint8_t, 2025-07-24T03:54:49.0767539Z accT=int32_t 2025-07-24T03:54:49.0767854Z ] 2025-07-24T03:54:49.1999256Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:49.2000885Z [1294/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAWithRowOffset.cc.obj 2025-07-24T03:54:49.2002541Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.2003799Z with 2025-07-24T03:54:49.2003976Z [ 2025-07-24T03:54:49.2004171Z T=uint8_t, 2025-07-24T03:54:49.2004376Z accT=int32_t, 2025-07-24T03:54:49.2004586Z inpType=uint8_t 2025-07-24T03:54:49.2004804Z ] 2025-07-24T03:54:49.2005569Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:49.2006392Z with 2025-07-24T03:54:49.2006622Z [ 2025-07-24T03:54:49.2006787Z T=uint8_t, 2025-07-24T03:54:49.2006992Z accT=int32_t 2025-07-24T03:54:49.2007229Z ] 2025-07-24T03:54:49.2008579Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.2010054Z with 2025-07-24T03:54:49.2010216Z [ 2025-07-24T03:54:49.2010446Z T=uint8_t, 2025-07-24T03:54:49.2010674Z accT=int32_t 2025-07-24T03:54:49.2011690Z ] 2025-07-24T03:54:49.2012522Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:49.2013442Z with 2025-07-24T03:54:49.2013603Z [ 2025-07-24T03:54:49.2013768Z T=uint8_t, 2025-07-24T03:54:49.2013960Z accT=int32_t 2025-07-24T03:54:49.2014160Z ] 2025-07-24T03:54:49.2015591Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.2016913Z with 2025-07-24T03:54:49.2017080Z [ 2025-07-24T03:54:49.2017248Z T=uint8_t, 2025-07-24T03:54:49.2017490Z accT=int16_t, 2025-07-24T03:54:49.2017708Z inpType=uint8_t 2025-07-24T03:54:49.2017915Z ] 2025-07-24T03:54:49.2018779Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:49.2019592Z with 2025-07-24T03:54:49.2019757Z [ 2025-07-24T03:54:49.2019910Z T=uint8_t, 2025-07-24T03:54:49.2020148Z accT=int16_t 2025-07-24T03:54:49.2020336Z ] 2025-07-24T03:54:49.2021517Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.2022797Z with 2025-07-24T03:54:49.2022956Z [ 2025-07-24T03:54:49.2023270Z T=uint8_t, 2025-07-24T03:54:49.2023468Z accT=int16_t 2025-07-24T03:54:49.2023675Z ] 2025-07-24T03:54:49.2024447Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:49.2026137Z with 2025-07-24T03:54:49.2026473Z [ 2025-07-24T03:54:49.2026785Z T=uint8_t, 2025-07-24T03:54:49.2027153Z accT=int16_t 2025-07-24T03:54:49.2027507Z ] 2025-07-24T03:54:49.2029977Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithRowOffset.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.2032513Z with 2025-07-24T03:54:49.2032849Z [ 2025-07-24T03:54:49.2033154Z T=uint8_t, 2025-07-24T03:54:49.2033525Z accT=int32_t, 2025-07-24T03:54:49.2033928Z inpType=uint8_t 2025-07-24T03:54:49.2034299Z ] 2025-07-24T03:54:49.2035799Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:49.2037411Z with 2025-07-24T03:54:49.2037725Z [ 2025-07-24T03:54:49.2038025Z T=uint8_t, 2025-07-24T03:54:49.2038396Z accT=int32_t 2025-07-24T03:54:49.2038757Z ] 2025-07-24T03:54:49.2041115Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithRowOffset.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.2044247Z with 2025-07-24T03:54:49.2044568Z [ 2025-07-24T03:54:49.2044823Z T=uint8_t, 2025-07-24T03:54:49.2045154Z accT=int32_t 2025-07-24T03:54:49.2045493Z ] 2025-07-24T03:54:49.2046898Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:49.2048401Z with 2025-07-24T03:54:49.2048586Z [ 2025-07-24T03:54:49.2048746Z T=uint8_t, 2025-07-24T03:54:49.2048953Z accT=int32_t 2025-07-24T03:54:49.2049148Z ] 2025-07-24T03:54:49.2051042Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithRowOffset.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.2052878Z with 2025-07-24T03:54:49.2053061Z [ 2025-07-24T03:54:49.2053232Z T=uint8_t, 2025-07-24T03:54:49.2053427Z accT=int16_t, 2025-07-24T03:54:49.2053644Z inpType=uint8_t 2025-07-24T03:54:49.2053848Z ] 2025-07-24T03:54:49.2054605Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:49.2055476Z with 2025-07-24T03:54:49.2055647Z [ 2025-07-24T03:54:49.2055811Z T=uint8_t, 2025-07-24T03:54:49.2056018Z accT=int16_t 2025-07-24T03:54:49.2056211Z ] 2025-07-24T03:54:49.2057565Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithRowOffset.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.2059106Z with 2025-07-24T03:54:49.2059274Z [ 2025-07-24T03:54:49.2059437Z T=uint8_t, 2025-07-24T03:54:49.2059646Z accT=int16_t 2025-07-24T03:54:49.2059918Z ] 2025-07-24T03:54:49.2060700Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:49.2061597Z with 2025-07-24T03:54:49.2061764Z [ 2025-07-24T03:54:49.2061989Z T=uint8_t, 2025-07-24T03:54:49.2062247Z accT=int16_t 2025-07-24T03:54:49.2062439Z ] 2025-07-24T03:54:49.2063525Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:49.2121272Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:49.2124117Z [1295/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackBMatrix.cc.obj 2025-07-24T03:54:49.2127030Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.2129651Z with 2025-07-24T03:54:49.2129937Z [ 2025-07-24T03:54:49.2130469Z T=int8_t, 2025-07-24T03:54:49.2130907Z accT=int32_t, 2025-07-24T03:54:49.2131182Z inpType=int8_t 2025-07-24T03:54:49.2131440Z ] 2025-07-24T03:54:49.2132364Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:49.2133447Z with 2025-07-24T03:54:49.2133678Z [ 2025-07-24T03:54:49.2133846Z T=int8_t, 2025-07-24T03:54:49.2134041Z accT=int32_t 2025-07-24T03:54:49.2134234Z ] 2025-07-24T03:54:49.2135435Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.2136722Z with 2025-07-24T03:54:49.2136902Z [ 2025-07-24T03:54:49.2137071Z T=int8_t, 2025-07-24T03:54:49.2137265Z accT=int32_t 2025-07-24T03:54:49.2137456Z ] 2025-07-24T03:54:49.2138230Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:49.2139099Z with 2025-07-24T03:54:49.2139259Z [ 2025-07-24T03:54:49.2139418Z T=int8_t, 2025-07-24T03:54:49.2139654Z accT=int32_t 2025-07-24T03:54:49.2139853Z ] 2025-07-24T03:54:49.2141049Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.2142459Z with 2025-07-24T03:54:49.2142753Z [ 2025-07-24T03:54:49.2142918Z T=int8_t, 2025-07-24T03:54:49.2143116Z accT=int16_t, 2025-07-24T03:54:49.2143383Z inpType=int8_t 2025-07-24T03:54:49.2143597Z ] 2025-07-24T03:54:49.2144339Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:49.2145214Z with 2025-07-24T03:54:49.2145435Z [ 2025-07-24T03:54:49.2145614Z T=int8_t, 2025-07-24T03:54:49.2145850Z accT=int16_t 2025-07-24T03:54:49.2146058Z ] 2025-07-24T03:54:49.2147895Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.2150196Z with 2025-07-24T03:54:49.2150455Z [ 2025-07-24T03:54:49.2150721Z T=int8_t, 2025-07-24T03:54:49.2151026Z accT=int16_t 2025-07-24T03:54:49.2151427Z ] 2025-07-24T03:54:49.2152762Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:49.2154231Z with 2025-07-24T03:54:49.2154498Z [ 2025-07-24T03:54:49.2154746Z T=int8_t, 2025-07-24T03:54:49.2155060Z accT=int16_t 2025-07-24T03:54:49.2155397Z ] 2025-07-24T03:54:49.2157484Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackBMatrix.cc(182): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.2159923Z with 2025-07-24T03:54:49.2160219Z [ 2025-07-24T03:54:49.2160516Z T=int8_t, 2025-07-24T03:54:49.2160868Z accT=int32_t, 2025-07-24T03:54:49.2161197Z inpType=int8_t 2025-07-24T03:54:49.2161524Z ] 2025-07-24T03:54:49.2162726Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:49.2164174Z with 2025-07-24T03:54:49.2164422Z [ 2025-07-24T03:54:49.2164612Z T=int8_t, 2025-07-24T03:54:49.2164810Z accT=int32_t 2025-07-24T03:54:49.2165020Z ] 2025-07-24T03:54:49.2166506Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackBMatrix.cc(182): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.2167872Z with 2025-07-24T03:54:49.2168045Z [ 2025-07-24T03:54:49.2168208Z T=int8_t, 2025-07-24T03:54:49.2168407Z accT=int32_t 2025-07-24T03:54:49.2168604Z ] 2025-07-24T03:54:49.2169874Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:49.2171224Z with 2025-07-24T03:54:49.2171421Z [ 2025-07-24T03:54:49.2171645Z T=int8_t, 2025-07-24T03:54:49.2171837Z accT=int32_t 2025-07-24T03:54:49.2172037Z ] 2025-07-24T03:54:49.2173430Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackBMatrix.cc(182): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.2174768Z with 2025-07-24T03:54:49.2174938Z [ 2025-07-24T03:54:49.2175097Z T=int8_t, 2025-07-24T03:54:49.2175344Z accT=int16_t, 2025-07-24T03:54:49.2175561Z inpType=int8_t 2025-07-24T03:54:49.2175843Z ] 2025-07-24T03:54:49.2176616Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:49.2177409Z with 2025-07-24T03:54:49.2177577Z [ 2025-07-24T03:54:49.2177753Z T=int8_t, 2025-07-24T03:54:49.2177962Z accT=int16_t 2025-07-24T03:54:49.2178215Z ] 2025-07-24T03:54:49.2179408Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackBMatrix.cc(182): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.2180589Z with 2025-07-24T03:54:49.2180755Z [ 2025-07-24T03:54:49.2180914Z T=int8_t, 2025-07-24T03:54:49.2181113Z accT=int16_t 2025-07-24T03:54:49.2181303Z ] 2025-07-24T03:54:49.2182093Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:49.2183008Z with 2025-07-24T03:54:49.2183166Z [ 2025-07-24T03:54:49.2183327Z T=int8_t, 2025-07-24T03:54:49.2183515Z accT=int16_t 2025-07-24T03:54:49.2183713Z ] 2025-07-24T03:54:49.2640619Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,short>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:49.2643045Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:49.2644719Z [1296/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackWeightsForConv.cc.obj 2025-07-24T03:54:49.2646429Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.2647931Z with 2025-07-24T03:54:49.2648159Z [ 2025-07-24T03:54:49.2648340Z T=int8_t, 2025-07-24T03:54:49.2648643Z accT=int32_t, 2025-07-24T03:54:49.2649772Z inpType=int8_t 2025-07-24T03:54:49.2650418Z ] 2025-07-24T03:54:49.2651130Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:54:49.2651877Z with 2025-07-24T03:54:49.2652050Z [ 2025-07-24T03:54:49.2652203Z T=int8_t, 2025-07-24T03:54:49.2652395Z accT=int32_t 2025-07-24T03:54:49.2652583Z ] 2025-07-24T03:54:49.2653777Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:54:49.2655656Z with 2025-07-24T03:54:49.2656220Z [ 2025-07-24T03:54:49.2656575Z T=int8_t, 2025-07-24T03:54:49.2656770Z accT=int32_t 2025-07-24T03:54:49.2656970Z ] 2025-07-24T03:54:49.2657752Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:54:49.2658580Z with 2025-07-24T03:54:49.2658769Z [ 2025-07-24T03:54:49.2658935Z T=int8_t, 2025-07-24T03:54:49.2659183Z accT=int32_t 2025-07-24T03:54:49.2659481Z ] 2025-07-24T03:54:49.2818338Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:49.2819890Z [1297/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackMatrix.cc.obj 2025-07-24T03:54:49.2821427Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,short>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:49.2823574Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:49.2826110Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:49.2828231Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:49.2830519Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:49.2832910Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:49.2836576Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:49.2840531Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:49.2844556Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:49.2849020Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:49.2853303Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:49.2857577Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:49.3493676Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:54:49.3495762Z [1298/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\QuantUtils.cc.obj 2025-07-24T03:54:49.3605098Z [1299/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackWeightMatrixForGConv.cc.obj 2025-07-24T03:54:49.4924127Z [1300/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackWeightsForDirectConv.cc.obj 2025-07-24T03:54:49.4936910Z [1301/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\TransposeUtils.cc.obj 2025-07-24T03:54:49.5798588Z [1302/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\RowWiseSparseAdagradFused.cc.obj 2025-07-24T03:54:49.5872890Z [1303/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\spmmUtils.cc.obj 2025-07-24T03:54:49.7024044Z [1304/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\SparseAdagrad.cc.obj 2025-07-24T03:54:49.7131362Z [1305/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\RefImplementations.cc.obj 2025-07-24T03:54:49.7191523Z [1306/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\Utils.cc.obj 2025-07-24T03:54:49.7697623Z [1307/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateI8Depthwise.cc.obj 2025-07-24T03:54:49.7710077Z [1308/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\EmbeddingSpMDMAvx2.cc.obj 2025-07-24T03:54:49.7891301Z [1309/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmBfloat16ConvertAvx2.cc.obj 2025-07-24T03:54:49.8384090Z [1310/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmFloat16ConvertAvx2.cc.obj 2025-07-24T03:54:49.8449161Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\FbgemmFloat16ConvertAvx2.cc(23): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T03:54:49.8452297Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\FbgemmFloat16ConvertAvx2.cc(39): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T03:54:49.8454343Z [1311/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmI8Depthwise3DAvx2.cc.obj 2025-07-24T03:54:49.8887741Z [1312/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\OptimizedKernelsAvx2.cc.obj 2025-07-24T03:54:50.0021238Z [1313/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmI8DepthwiseAvx2.cc.obj 2025-07-24T03:54:50.0035972Z [1314/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmI8DepthwisePerChannelQuantAvx2.cc.obj 2025-07-24T03:54:50.0083779Z [1315/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\UtilsAvx2.cc.obj 2025-07-24T03:54:50.0099408Z [1316/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmSparseDenseAvx2.cc.obj 2025-07-24T03:54:50.0367661Z [1317/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\PackDepthwiseConvMatrixAvx2.cc.obj 2025-07-24T03:54:50.0653831Z [1318/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmSparseDenseInt8Avx2.cc.obj 2025-07-24T03:54:50.0888850Z [1319/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\QuantUtilsAvx2.cc.obj 2025-07-24T03:54:50.0890707Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(1556): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T03:54:50.0892059Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(1906): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T03:54:50.0893361Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(1906): note: the template instantiation context (the oldest one first) is 2025-07-24T03:54:50.0895101Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2202): note: see reference to function template instantiation 'void fbgemm::FusedNBitRowwiseQuantizedSBHalfToFloatOrHalfAvx2(const uint8_t *,size_t,int,float *)' being compiled 2025-07-24T03:54:50.0896947Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2142): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T03:54:50.1177505Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2142): note: the template instantiation context (the oldest one first) is 2025-07-24T03:54:50.1180530Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2224): note: see reference to function template instantiation 'void fbgemm::Fused8BitRowwiseQuantizedSBFloatToFloatOrHalfAvx2(const uint8_t *,size_t,int,float *)' being compiled 2025-07-24T03:54:50.1183113Z [1320/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\spmmUtilsAvx2.cc.obj 2025-07-24T03:54:50.2037437Z [1321/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\EmbeddingSpMDMAvx512.cc.obj 2025-07-24T03:54:50.2637489Z [1322/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmBfloat16ConvertAvx512.cc.obj 2025-07-24T03:54:50.2805958Z [1323/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmFloat16ConvertAvx512.cc.obj 2025-07-24T03:54:50.2977993Z [1324/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\UtilsAvx512.cc.obj 2025-07-24T03:54:50.3219272Z [1325/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmSparseDenseAvx512.cc.obj 2025-07-24T03:54:50.3538577Z [1326/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_autovec.dir\src\EmbeddingSpMDMAutovec.cc.obj 2025-07-24T03:54:50.3826138Z [1327/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmSparseDenseInt8Avx512.cc.obj 2025-07-24T03:54:50.3895948Z [1328/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmFP16UKernelsIntrinsicAvx2.cc.obj 2025-07-24T03:54:50.4146294Z [1329/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmSparseDenseVectorInt8Avx512.cc.obj 2025-07-24T03:54:50.4376853Z [1330/7174] Linking CXX shared library bin\asmjit.dll 2025-07-24T03:54:50.4478211Z [1331/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\QuantUtilsAvx512.cc.obj 2025-07-24T03:54:50.6334752Z [1332/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmFP16UKernelsIntrinsicAvx512.cc.obj 2025-07-24T03:54:50.6993533Z [1333/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\algorithm.cc.obj 2025-07-24T03:54:50.7066336Z [1334/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allgatherv.cc.obj 2025-07-24T03:54:50.7085707Z [1335/7174] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmFP16UKernelsIntrinsicAvx512_256.cc.obj 2025-07-24T03:54:50.7141488Z [1336/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allgather.cc.obj 2025-07-24T03:54:50.7560570Z [1337/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allreduce.cc.obj 2025-07-24T03:54:50.8270802Z [1338/7174] Building C object third_party\ittapi\CMakeFiles\ittnotify.dir\src\ittnotify\jitprofiling.c.obj 2025-07-24T03:54:50.8740656Z [1339/7174] Building C object third_party\ittapi\CMakeFiles\ittnotify.dir\src\ittnotify\ittnotify_static.c.obj 2025-07-24T03:54:50.9223399Z [1340/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allreduce_local.cc.obj 2025-07-24T03:54:50.9749002Z [1341/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\barrier.cc.obj 2025-07-24T03:54:50.9805394Z [1342/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\alltoallv.cc.obj 2025-07-24T03:54:51.0095727Z [1343/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\broadcast.cc.obj 2025-07-24T03:54:51.0169535Z [1344/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\alltoall.cc.obj 2025-07-24T03:54:51.0255906Z [1345/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\context.cc.obj 2025-07-24T03:54:51.0837195Z [1346/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\gather.cc.obj 2025-07-24T03:54:51.1258158Z [1347/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\gatherv.cc.obj 2025-07-24T03:54:51.2290789Z [1348/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\reduce.cc.obj 2025-07-24T03:54:51.2417114Z [1349/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\types.cc.obj 2025-07-24T03:54:51.2794802Z [1350/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\logging.cc.obj 2025-07-24T03:54:51.2971105Z [1351/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\scatter.cc.obj 2025-07-24T03:54:51.3395581Z [1352/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\store.cc.obj 2025-07-24T03:54:51.4092333Z [1353/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\context.cc.obj 2025-07-24T03:54:51.4420502Z [1354/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\file_store.cc.obj 2025-07-24T03:54:51.4482965Z [1355/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\buffer.cc.obj 2025-07-24T03:54:51.4600274Z [1356/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\address.cc.obj 2025-07-24T03:54:51.5140663Z [1357/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\prefix_store.cc.obj 2025-07-24T03:54:51.5226148Z [1358/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\utils.cc.obj 2025-07-24T03:54:51.5586519Z [1359/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\hash_store.cc.obj 2025-07-24T03:54:51.5717471Z [1360/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\win.cc.obj 2025-07-24T03:54:51.5818014Z [1361/7174] Linking CXX static library lib\onnx_proto.lib 2025-07-24T03:54:51.6610840Z [1362/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\unbound_buffer.cc.obj 2025-07-24T03:54:51.6625581Z [1363/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\pair.cc.obj 2025-07-24T03:54:51.6692077Z [1364/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\device.cc.obj 2025-07-24T03:54:51.6778739Z [1365/7174] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\context.cc.obj 2025-07-24T03:54:51.7092493Z [1366/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\assertions.cc.obj 2025-07-24T03:54:51.8385940Z [1367/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\interned_strings.cc.obj 2025-07-24T03:54:51.9394058Z [1368/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\status.cc.obj 2025-07-24T03:54:52.0885533Z [1369/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\ir_pb_converter.cc.obj 2025-07-24T03:54:52.1105326Z [1370/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\attr_proto_util.cc.obj 2025-07-24T03:54:52.1373277Z [1371/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\model_helpers.cc.obj 2025-07-24T03:54:52.1753861Z [1372/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\defs.cc.obj 2025-07-24T03:54:52.2662326Z [1373/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\old.cc.obj 2025-07-24T03:54:52.3368578Z [1374/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\checker.cc.obj 2025-07-24T03:54:52.3723727Z [1375/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\utils.cc.obj 2025-07-24T03:54:52.4110134Z [1376/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\path.cc.obj 2025-07-24T03:54:52.5438114Z [1377/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\function.cc.obj 2025-07-24T03:54:52.5812458Z [1378/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\defs.cc.obj 2025-07-24T03:54:52.5900429Z [1379/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\data_type_utils.cc.obj 2025-07-24T03:54:52.6780172Z [1380/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\utils.cc.obj 2025-07-24T03:54:52.6852267Z [1381/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\old.cc.obj 2025-07-24T03:54:52.7798293Z [1382/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\image\defs.cc.obj 2025-07-24T03:54:52.8137631Z [1383/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\logical\defs.cc.obj 2025-07-24T03:54:52.8475218Z [1384/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\logical\old.cc.obj 2025-07-24T03:54:53.0043629Z [1385/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\utils.cc.obj 2025-07-24T03:54:53.0286944Z [1386/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\defs.cc.obj 2025-07-24T03:54:53.0929536Z [1387/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\old.cc.obj 2025-07-24T03:54:53.1411500Z [1388/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\nn\old.cc.obj 2025-07-24T03:54:53.1684570Z [1389/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\nn\defs.cc.obj 2025-07-24T03:54:53.2682243Z [1390/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\object_detection\defs.cc.obj 2025-07-24T03:54:53.2854036Z [1391/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\object_detection\old.cc.obj 2025-07-24T03:54:53.3100350Z [1392/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\optional\defs.cc.obj 2025-07-24T03:54:53.4530490Z [1393/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\parser.cc.obj 2025-07-24T03:54:53.4629591Z [1394/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\optional\old.cc.obj 2025-07-24T03:54:53.5129878Z [1395/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\printer.cc.obj 2025-07-24T03:54:53.5484575Z [1396/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\quantization\defs.cc.obj 2025-07-24T03:54:53.5722067Z [1397/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\quantization\old.cc.obj 2025-07-24T03:54:53.7002551Z [1398/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\old.cc.obj 2025-07-24T03:54:53.7342897Z [1399/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\defs.cc.obj 2025-07-24T03:54:53.7436146Z [1400/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\utils.cc.obj 2025-07-24T03:54:53.8955740Z [1401/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\rnn\defs.cc.obj 2025-07-24T03:54:53.9139200Z [1402/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\rnn\old.cc.obj 2025-07-24T03:54:53.9982899Z [1403/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\schema.cc.obj 2025-07-24T03:54:54.0142059Z [1404/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\shape_inference.cc.obj 2025-07-24T03:54:54.0383626Z [1405/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\sequence\defs.cc.obj 2025-07-24T03:54:54.1844014Z [1406/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\defs.cc.obj 2025-07-24T03:54:54.2081059Z [1407/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\utils.cc.obj 2025-07-24T03:54:54.2438228Z [1408/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\old.cc.obj 2025-07-24T03:54:54.3343364Z [1409/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor_proto_util.cc.obj 2025-07-24T03:54:54.3918497Z [1410/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor_util.cc.obj 2025-07-24T03:54:54.4405823Z [1411/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\traditionalml\defs.cc.obj 2025-07-24T03:54:54.4578214Z [1412/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\text\defs.cc.obj 2025-07-24T03:54:54.4646839Z [1413/7174] Building RC object third_party\ideep\mkl-dnn\src\CMakeFiles\dnnl.dir\version.rc.res 2025-07-24T03:54:54.5013224Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-07-24T03:54:54.5013785Z 2025-07-24T03:54:54.5013792Z 2025-07-24T03:54:54.5014116Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-07-24T03:54:54.5014858Z 2025-07-24T03:54:54.5014865Z 2025-07-24T03:54:54.5014870Z 2025-07-24T03:54:54.5014875Z 2025-07-24T03:54:54.5015452Z [1414/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\traditionalml\old.cc.obj 2025-07-24T03:54:54.6434076Z [1415/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\bfloat16.cpp.obj 2025-07-24T03:54:54.6496535Z [1416/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\training\defs.cc.obj 2025-07-24T03:54:54.7153844Z [1417/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\inliner\inliner.cc.obj 2025-07-24T03:54:54.8468598Z [1418/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\version_converter\convert.cc.obj 2025-07-24T03:54:54.9501194Z [1419/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\version_converter\helper.cc.obj 2025-07-24T03:54:55.0580095Z [1420/7174] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\shape_inference\implementation.cc.obj 2025-07-24T03:54:55.0804522Z [1421/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\batch_normalization.cpp.obj 2025-07-24T03:54:55.1186768Z [1422/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\binary.cpp.obj 2025-07-24T03:54:55.1921510Z [1423/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\broadcast_strategy.cpp.obj 2025-07-24T03:54:55.2161345Z [1424/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\cache_blob_id.cpp.obj 2025-07-24T03:54:55.2573961Z [1425/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_debug_autogenerated.cpp.obj 2025-07-24T03:54:55.2585995Z [1426/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_threadpool.cpp.obj 2025-07-24T03:54:55.2909598Z [1427/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\concat.cpp.obj 2025-07-24T03:54:55.4079238Z [1428/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\convolution.cpp.obj 2025-07-24T03:54:55.5021052Z [1429/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\convolution_pd.cpp.obj 2025-07-24T03:54:55.5449851Z [1430/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\experimental.cpp.obj 2025-07-24T03:54:55.6052496Z [1431/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\deconvolution.cpp.obj 2025-07-24T03:54:55.6068092Z [1432/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\float4.cpp.obj 2025-07-24T03:54:55.6439695Z [1433/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_debug.cpp.obj 2025-07-24T03:54:55.7576394Z [1434/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\float8.cpp.obj 2025-07-24T03:54:55.7750547Z [1435/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\eltwise.cpp.obj 2025-07-24T03:54:55.7767265Z [1436/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\fpmath_mode.cpp.obj 2025-07-24T03:54:55.9030330Z [1437/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\engine.cpp.obj 2025-07-24T03:54:55.9240924Z [1438/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify.cpp.obj 2025-07-24T03:54:56.1627228Z [1439/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\group_normalization.cpp.obj 2025-07-24T03:54:56.1952815Z [1440/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\gemm.cpp.obj 2025-07-24T03:54:56.2262429Z [1441/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\inner_product.cpp.obj 2025-07-24T03:54:56.3088832Z [1442/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\kernel_cache.cpp.obj 2025-07-24T03:54:56.3726698Z [1443/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\layer_normalization.cpp.obj 2025-07-24T03:54:56.4184122Z [1444/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\lrn.cpp.obj 2025-07-24T03:54:56.4288272Z [1445/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\matmul.cpp.obj 2025-07-24T03:54:56.5097355Z [1446/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory.cpp.obj 2025-07-24T03:54:56.6326423Z [1447/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_debug.cpp.obj 2025-07-24T03:54:56.7361378Z [1448/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_desc.cpp.obj 2025-07-24T03:54:56.8062325Z [1449/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_desc_wrapper.cpp.obj 2025-07-24T03:54:56.9117144Z [1450/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_storage.cpp.obj 2025-07-24T03:54:57.0192377Z [1451/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_tracking.cpp.obj 2025-07-24T03:54:57.0247799Z [1452/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\pooling.cpp.obj 2025-07-24T03:54:57.0324460Z [1453/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_zero_pad.cpp.obj 2025-07-24T03:54:57.0443811Z [1454/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\prelu.cpp.obj 2025-07-24T03:54:57.2501594Z [1455/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_attr.cpp.obj 2025-07-24T03:54:57.2731868Z [1456/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive.cpp.obj 2025-07-24T03:54:57.4621569Z [1457/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_cache.cpp.obj 2025-07-24T03:54:57.5291985Z [1458/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_desc_iface.cpp.obj 2025-07-24T03:54:57.6278555Z [1459/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\query.cpp.obj 2025-07-24T03:54:57.6338522Z [1460/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_hashing.cpp.obj 2025-07-24T03:54:57.6785769Z [1461/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_iface.cpp.obj 2025-07-24T03:54:57.7940746Z [1462/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_exec_types.cpp.obj 2025-07-24T03:54:57.8337777Z [1463/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\reduction.cpp.obj 2025-07-24T03:54:57.8832280Z [1464/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\reorder.cpp.obj 2025-07-24T03:54:58.0146689Z [1465/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\resampling.cpp.obj 2025-07-24T03:54:58.1179420Z [1466/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\rw_mutex.cpp.obj 2025-07-24T03:54:58.1272101Z [1467/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\rnn.cpp.obj 2025-07-24T03:54:58.1922172Z [1468/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\scratchpad.cpp.obj 2025-07-24T03:54:58.2979126Z [1469/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\scratchpad_debug.cpp.obj 2025-07-24T03:54:58.3740650Z [1470/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\serialization.cpp.obj 2025-07-24T03:54:58.4592354Z [1471/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\shuffle.cpp.obj 2025-07-24T03:54:58.4983146Z [1472/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\softmax.cpp.obj 2025-07-24T03:54:58.5081384Z [1473/7174] Building ASM_MASM object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\ittptmark64.asm.obj 2025-07-24T03:54:58.5813766Z Microsoft (R) Macro Assembler (x64) Version 14.38.33145.0 2025-07-24T03:54:58.5814085Z 2025-07-24T03:54:58.5814288Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-07-24T03:54:58.5814562Z 2025-07-24T03:54:58.5814566Z 2025-07-24T03:54:58.5814571Z 2025-07-24T03:54:58.5815025Z Assembling: C:\actions-runner\_work\pytorch\pytorch\third_party\ideep\mkl-dnn\src\common\ittnotify\ittptmark64.asm 2025-07-24T03:54:58.5815575Z 2025-07-24T03:54:58.5815948Z [1474/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\stream.cpp.obj 2025-07-24T03:54:58.6782558Z [1475/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\stream_profiler.cpp.obj 2025-07-24T03:54:58.6879091Z [1476/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\sum.cpp.obj 2025-07-24T03:54:58.6960852Z [1477/7174] Building C object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\ittnotify_static.c.obj 2025-07-24T03:54:58.7194617Z [1478/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\utils.cpp.obj 2025-07-24T03:54:58.7982571Z [1479/7174] Building C object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\jitprofiling.c.obj 2025-07-24T03:54:58.9707409Z [1480/7174] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\verbose.cpp.obj 2025-07-24T03:54:59.1917427Z [1481/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\binary_injector_utils.cpp.obj 2025-07-24T03:54:59.2146736Z [1482/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\bfloat16.cpp.obj 2025-07-24T03:54:59.2861679Z [1483/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_batch_normalization_utils.cpp.obj 2025-07-24T03:54:59.3838681Z [1484/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_concat.cpp.obj 2025-07-24T03:54:59.4105311Z [1485/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_batch_normalization_list.cpp.obj 2025-07-24T03:54:59.4397064Z [1486/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_binary_list.cpp.obj 2025-07-24T03:54:59.6828529Z [1487/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_deconvolution_list.cpp.obj 2025-07-24T03:54:59.7828699Z [1488/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_engine.cpp.obj 2025-07-24T03:54:59.8129225Z [1489/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_convolution_list.cpp.obj 2025-07-24T03:54:59.8765332Z [1490/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_eltwise_list.cpp.obj 2025-07-24T03:54:59.9806749Z [1491/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_group_normalization_list.cpp.obj 2025-07-24T03:55:00.1293217Z [1492/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_lrn_list.cpp.obj 2025-07-24T03:55:00.1411091Z [1493/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_layer_normalization_list.cpp.obj 2025-07-24T03:55:00.1513598Z [1494/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_inner_product_list.cpp.obj 2025-07-24T03:55:00.4214327Z [1495/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_pooling_list.cpp.obj 2025-07-24T03:55:00.4536391Z [1496/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_reduction_list.cpp.obj 2025-07-24T03:55:00.4957089Z [1497/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_prelu_list.cpp.obj 2025-07-24T03:55:00.5965980Z [1498/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_resampling_list.cpp.obj 2025-07-24T03:55:00.7699769Z [1499/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_rnn_list.cpp.obj 2025-07-24T03:55:00.8163106Z [1500/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_shuffle_list.cpp.obj 2025-07-24T03:55:00.8662500Z [1501/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_sum.cpp.obj 2025-07-24T03:55:00.8777730Z [1502/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_softmax_list.cpp.obj 2025-07-24T03:55:01.0366649Z [1503/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\float16.cpp.obj 2025-07-24T03:55:01.1715743Z [1504/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_convolution.cpp.obj 2025-07-24T03:55:01.1961970Z [1505/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_convolution_utils.cpp.obj 2025-07-24T03:55:01.3073931Z [1506/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_inner_product.cpp.obj 2025-07-24T03:55:01.4287157Z [1507/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_inner_product_utils.cpp.obj 2025-07-24T03:55:01.5372440Z [1508/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_conv_zp_src_pad_comp.cpp.obj 2025-07-24T03:55:01.5496453Z [1509/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_convolution_utils.cpp.obj 2025-07-24T03:55:01.5777943Z [1510/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_convolution.cpp.obj 2025-07-24T03:55:01.7944704Z [1511/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_inner_product.cpp.obj 2025-07-24T03:55:01.8592576Z [1512/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nchw_pooling.cpp.obj 2025-07-24T03:55:01.9341353Z [1513/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ncsp_batch_normalization.cpp.obj 2025-07-24T03:55:02.0106925Z [1514/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ncsp_group_normalization.cpp.obj 2025-07-24T03:55:02.0792805Z [1515/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nhwc_pooling.cpp.obj 2025-07-24T03:55:02.1421575Z [1516/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\platform.cpp.obj 2025-07-24T03:55:02.1751921Z [1517/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nspc_batch_normalization.cpp.obj 2025-07-24T03:55:02.1883479Z [1518/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\primitive_attr_postops.cpp.obj 2025-07-24T03:55:02.4369800Z [1519/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_batch_normalization.cpp.obj 2025-07-24T03:55:02.5244481Z [1520/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_binary.cpp.obj 2025-07-24T03:55:02.5661509Z [1521/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_convolution.cpp.obj 2025-07-24T03:55:02.7171120Z [1522/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_convolution_int8.cpp.obj 2025-07-24T03:55:02.7262257Z [1523/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_deconvolution.cpp.obj 2025-07-24T03:55:02.7980298Z [1524/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_group_normalization.cpp.obj 2025-07-24T03:55:02.8309151Z [1525/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_eltwise.cpp.obj 2025-07-24T03:55:02.9082002Z [1526/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_inner_product.cpp.obj 2025-07-24T03:55:03.0283788Z [1527/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_inner_product_int8.cpp.obj 2025-07-24T03:55:03.1981568Z [1528/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_layer_normalization.cpp.obj 2025-07-24T03:55:03.2929926Z [1529/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_lrn.cpp.obj 2025-07-24T03:55:03.3628558Z [1530/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_pooling.cpp.obj 2025-07-24T03:55:03.3875963Z [1531/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_prelu.cpp.obj 2025-07-24T03:55:03.4351787Z [1532/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_reduction.cpp.obj 2025-07-24T03:55:03.4775671Z [1533/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_resampling.cpp.obj 2025-07-24T03:55:03.5710117Z [1534/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_shuffle.cpp.obj 2025-07-24T03:55:03.6322146Z [1535/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_softmax.cpp.obj 2025-07-24T03:55:03.7755473Z [1536/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\scale_utils.cpp.obj 2025-07-24T03:55:03.9299480Z [1537/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\bf16\ref_gemm_bf16.cpp.obj 2025-07-24T03:55:03.9515258Z [1538/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_concat.cpp.obj 2025-07-24T03:55:03.9788111Z [1539/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\f32\gemm_utils_f32.cpp.obj 2025-07-24T03:55:04.0054615Z [1540/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_layer_normalization.cpp.obj 2025-07-24T03:55:04.0530154Z [1541/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_resampling.cpp.obj 2025-07-24T03:55:04.0621901Z [1542/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\zero_point_utils.cpp.obj 2025-07-24T03:55:04.1110683Z [1543/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\f32\ref_gemm_f32.cpp.obj 2025-07-24T03:55:04.1569774Z [1544/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_sum.cpp.obj 2025-07-24T03:55:04.5600957Z [1545/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\s8x8s32\ref_gemm_s8x8s32.cpp.obj 2025-07-24T03:55:04.5837169Z [1546/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\gemm.cpp.obj 2025-07-24T03:55:04.6255278Z [1547/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\gemm_pack.cpp.obj 2025-07-24T03:55:04.6281121Z [1548/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\s8x8s32\simple_gemm_s8s8s32.cpp.obj 2025-07-24T03:55:04.7417138Z [1549/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_bf16_matmul.cpp.obj 2025-07-24T03:55:04.7891434Z [1550/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\cpu_matmul_list.cpp.obj 2025-07-24T03:55:04.8172040Z [1551/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_f32_matmul.cpp.obj 2025-07-24T03:55:04.9246646Z [1552/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_x8s8s32x_matmul.cpp.obj 2025-07-24T03:55:05.2567688Z [1553/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_matmul_int8.cpp.obj 2025-07-24T03:55:05.2928909Z [1554/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_matmul.cpp.obj 2025-07-24T03:55:05.3431457Z [1555/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder.cpp.obj 2025-07-24T03:55:05.3907024Z [1556/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_sparse_matmul.cpp.obj 2025-07-24T03:55:05.5049957Z [1557/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_f32_s8.cpp.obj 2025-07-24T03:55:05.5276950Z [1558/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_bf16_s8.cpp.obj 2025-07-24T03:55:05.5761757Z [1559/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_s8_s8.cpp.obj 2025-07-24T03:55:05.7241748Z [1560/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_bf16.cpp.obj 2025-07-24T03:55:06.0015259Z [1561/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f16.cpp.obj 2025-07-24T03:55:06.0156941Z [1562/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_bf16.cpp.obj 2025-07-24T03:55:06.0496992Z [1563/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_f16.cpp.obj 2025-07-24T03:55:06.1846227Z [1564/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_f32.cpp.obj 2025-07-24T03:55:06.2770803Z [1565/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_fp8.cpp.obj 2025-07-24T03:55:06.3085176Z [1566/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_s32.cpp.obj 2025-07-24T03:55:06.3893954Z [1567/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_s8.cpp.obj 2025-07-24T03:55:06.4936800Z [1568/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_u8.cpp.obj 2025-07-24T03:55:06.7493188Z [1569/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_fp8.cpp.obj 2025-07-24T03:55:06.7598071Z [1570/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_fp4.cpp.obj 2025-07-24T03:55:06.7954951Z [1571/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s32.cpp.obj 2025-07-24T03:55:06.9363888Z [1572/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s4.cpp.obj 2025-07-24T03:55:07.0753029Z [1573/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_u4.cpp.obj 2025-07-24T03:55:07.1164436Z [1574/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s8.cpp.obj 2025-07-24T03:55:07.1735224Z [1575/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_u8.cpp.obj 2025-07-24T03:55:07.2106618Z [1576/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\brgemm_cell_common.cpp.obj 2025-07-24T03:55:07.4306771Z [1577/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_gru.cpp.obj 2025-07-24T03:55:07.5051788Z [1578/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_common.cpp.obj 2025-07-24T03:55:07.5215665Z [1579/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_gru_lbr.cpp.obj 2025-07-24T03:55:07.7372734Z [1580/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_gru_lbr.cpp.obj 2025-07-24T03:55:07.7468076Z [1581/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_gru.cpp.obj 2025-07-24T03:55:07.8080766Z [1582/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\jit_utils\linux_perf\linux_perf.cpp.obj 2025-07-24T03:55:07.8289022Z [1583/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_lstm.cpp.obj 2025-07-24T03:55:07.8727757Z [1584/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_lstm_projection.cpp.obj 2025-07-24T03:55:07.9559693Z [1585/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_rnn.cpp.obj 2025-07-24T03:55:08.0609608Z [1586/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\jit_utils\jit_utils.cpp.obj 2025-07-24T03:55:08.2196544Z [1587/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\rnn_utils.cpp.obj 2025-07-24T03:55:08.2491665Z [1588/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_rnn.cpp.obj 2025-07-24T03:55:08.4138476Z [1589/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\amx_tile_configure.cpp.obj 2025-07-24T03:55:08.5052083Z [1590/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm.cpp.obj 2025-07-24T03:55:08.5071229Z [1591/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm_containers.cpp.obj 2025-07-24T03:55:08.5474280Z [1592/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm_utils.cpp.obj 2025-07-24T03:55:08.6701638Z [1593/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\capi\brgemm_api.cpp.obj 2025-07-24T03:55:08.7307832Z [1594/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brdgmm_kernel.cpp.obj 2025-07-24T03:55:08.8880320Z [1595/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brgemm_amx_uker.cpp.obj 2025-07-24T03:55:08.9382063Z [1596/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brgemm_kernel.cpp.obj 2025-07-24T03:55:09.0671188Z [1597/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_barrier.cpp.obj 2025-07-24T03:55:09.1425907Z [1598/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_isa_traits.cpp.obj 2025-07-24T03:55:09.1452538Z [1599/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_reducer.cpp.obj 2025-07-24T03:55:09.2250459Z [1600/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\amx\jit_avx512_core_amx_copy_kern.cpp.obj 2025-07-24T03:55:09.3397766Z [1601/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\amx\jit_avx512_core_amx_gemm_kern.cpp.obj 2025-07-24T03:55:09.3536735Z [1602/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_gemm_bf16bf16f32_kern.cpp.obj 2025-07-24T03:55:09.5779180Z [1603/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_gemv_bf16bf16f32_kern.cpp.obj 2025-07-24T03:55:09.5868642Z [1604/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_24x8_copy_an_kern_autogen.cpp.obj 2025-07-24T03:55:09.7263024Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:09.7263941Z [1605/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_24x8_copy_at_kern_autogen.cpp.obj 2025-07-24T03:55:09.7917155Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:09.7918011Z [1606/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_24x8_copy_bt_kern_autogen.cpp.obj 2025-07-24T03:55:09.8256452Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:09.8258050Z [1607/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_24x8_copy_bn_kern_autogen.cpp.obj 2025-07-24T03:55:09.8553874Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:09.8555276Z [1608/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_48x8_copy_an_kern_autogen.cpp.obj 2025-07-24T03:55:09.9890405Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:09.9891817Z [1609/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_48x8_copy_bn_kern_autogen.cpp.obj 2025-07-24T03:55:10.0922711Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:10.0924776Z [1610/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_48x8_copy_at_kern_autogen.cpp.obj 2025-07-24T03:55:10.2527660Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:10.2528575Z [1611/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx2_f32_copy_an_kern_autogen.cpp.obj 2025-07-24T03:55:10.2649022Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:10.2650571Z [1612/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_48x8_copy_bt_kern_autogen.cpp.obj 2025-07-24T03:55:10.3875194Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:10.3876146Z [1613/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx2_f32_copy_at_kern_autogen.cpp.obj 2025-07-24T03:55:10.4502394Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:10.4503809Z [1614/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx2_f32_copy_bn_kern_autogen.cpp.obj 2025-07-24T03:55:10.4638506Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:10.4639869Z [1615/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx2_f32_copy_bt_kern_autogen.cpp.obj 2025-07-24T03:55:10.4815491Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:10.4817171Z [1616/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx2_kernel_sgemm_kern.cpp.obj 2025-07-24T03:55:10.6472854Z [1617/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx512_common_gemm_f32.cpp.obj 2025-07-24T03:55:10.7137194Z [1618/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx512_core_f32_copy_an_kern_autogen.cpp.obj 2025-07-24T03:55:10.9193001Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:10.9194219Z [1619/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx512_core_f32_copy_at_kern_part1_autogen.cpp.obj 2025-07-24T03:55:10.9506631Z [1620/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx512_core_f32_copy_at_kern_part2_autogen.cpp.obj 2025-07-24T03:55:10.9923717Z [1621/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx512_core_f32_copy_bn_kern_autogen.cpp.obj 2025-07-24T03:55:11.1336935Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:11.1337735Z [1622/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_f32_copy_an_kern_autogen.cpp.obj 2025-07-24T03:55:11.1575905Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:11.1576710Z [1623/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx512_core_f32_copy_bt_kern_autogen.cpp.obj 2025-07-24T03:55:11.1676987Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:11.1677803Z [1624/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx512_core_gemm_smalln_tn_f32_kern.cpp.obj 2025-07-24T03:55:11.2067314Z [1625/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_f32_copy_at_kern_autogen.cpp.obj 2025-07-24T03:55:11.3407532Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:11.3408566Z [1626/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_f32_copy_bn_kern_autogen.cpp.obj 2025-07-24T03:55:11.5504057Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:11.5505067Z [1627/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_f32_copy_bt_kern_autogen.cpp.obj 2025-07-24T03:55:11.6405063Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:11.6405917Z [1628/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_gemv_t_f32_kern.cpp.obj 2025-07-24T03:55:11.6763648Z [1629/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_gemm_f32.cpp.obj 2025-07-24T03:55:11.7733195Z [1630/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_kernel_b0_sgemm_kern_part1_autogen.cpp.obj 2025-07-24T03:55:11.7935627Z [1631/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_kernel_sgemm_kern_part1_autogen.cpp.obj 2025-07-24T03:55:11.8481781Z [1632/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_kernel_b0_sgemm_kern_part2_autogen.cpp.obj 2025-07-24T03:55:11.8570777Z [1633/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_kernel_sgemm_kern_part2_autogen.cpp.obj 2025-07-24T03:55:11.9435630Z [1634/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_f32_copy_an_kern_autogen.cpp.obj 2025-07-24T03:55:12.2064662Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:12.2065639Z [1635/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_f32_copy_at_kern_autogen.cpp.obj 2025-07-24T03:55:12.3241215Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:12.3242098Z [1636/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_f32_copy_bn_kern_autogen.cpp.obj 2025-07-24T03:55:12.3588790Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:12.3590319Z [1637/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_f32_copy_bt_kern_autogen.cpp.obj 2025-07-24T03:55:12.3777102Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:12.3777933Z [1638/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_gemv_n_f32_kern.cpp.obj 2025-07-24T03:55:12.4704771Z [1639/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_gemv_t_f32_kern.cpp.obj 2025-07-24T03:55:12.4756526Z [1640/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_kernel_sgemm_kern_autogen.cpp.obj 2025-07-24T03:55:12.5476621Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:12.5478070Z [1641/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_kernel_b0_sgemm_kern_autogen.cpp.obj 2025-07-24T03:55:12.6423629Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:12.6425004Z [1642/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_driver.cpp.obj 2025-07-24T03:55:12.8446372Z [1643/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_info.cpp.obj 2025-07-24T03:55:13.0119715Z [1644/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_pack.cpp.obj 2025-07-24T03:55:13.0351594Z [1645/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemv_driver.cpp.obj 2025-07-24T03:55:13.0453667Z [1646/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_gemm_s8u8s32_kern.cpp.obj 2025-07-24T03:55:13.1428531Z [1647/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_at_kern_autogen.cpp.obj 2025-07-24T03:55:13.1741991Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:13.1742916Z [1648/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_an_kern_autogen.cpp.obj 2025-07-24T03:55:13.2351515Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:13.2352374Z [1649/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_bn_kern_autogen.cpp.obj 2025-07-24T03:55:13.3108268Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:13.3109721Z [1650/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_bt_kern_autogen.cpp.obj 2025-07-24T03:55:13.4751211Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:13.4752663Z [1651/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_sum_an_kern_autogen.cpp.obj 2025-07-24T03:55:13.6749371Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:13.6750836Z [1652/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_sum_at_kern_autogen.cpp.obj 2025-07-24T03:55:13.7145568Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:13.7146392Z [1653/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_sum_bt_kern_autogen.cpp.obj 2025-07-24T03:55:13.7345521Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:13.7347156Z [1654/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_sum_bn_kern_autogen.cpp.obj 2025-07-24T03:55:13.8024657Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:13.8025456Z [1655/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_an_kern_autogen.cpp.obj 2025-07-24T03:55:13.8492606Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:13.8493717Z [1656/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_at_kern_autogen.cpp.obj 2025-07-24T03:55:13.9039331Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:13.9040270Z [1657/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_bn_kern_autogen.cpp.obj 2025-07-24T03:55:13.9534505Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:13.9535328Z [1658/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_bt_kern_autogen.cpp.obj 2025-07-24T03:55:14.0887471Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:14.0888857Z [1659/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_sum_an_kern_autogen.cpp.obj 2025-07-24T03:55:14.3196390Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:14.3197217Z [1660/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_sum_at_kern_autogen.cpp.obj 2025-07-24T03:55:14.3973495Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:14.3975414Z [1661/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_sum_bt_kern_autogen.cpp.obj 2025-07-24T03:55:14.4803312Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:14.4804214Z [1662/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_sum_bn_kern_autogen.cpp.obj 2025-07-24T03:55:14.5619458Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:14.5620352Z [1663/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_gemm_s8u8s32_kern.cpp.obj 2025-07-24T03:55:14.6402319Z [1664/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_gemv_s8x8s32.cpp.obj 2025-07-24T03:55:14.7221204Z [1665/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_kernel_gemv_s8x8s32_kern.cpp.obj 2025-07-24T03:55:14.7741333Z [1666/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_an_kern_autogen.cpp.obj 2025-07-24T03:55:14.8185606Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:14.8186426Z [1667/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_at_kern_autogen.cpp.obj 2025-07-24T03:55:14.8949315Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:14.8950253Z [1668/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_bn_kern_autogen.cpp.obj 2025-07-24T03:55:15.0047231Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:15.0048753Z [1669/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_bt_kern_autogen.cpp.obj 2025-07-24T03:55:15.0757459Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:15.0758330Z [1670/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_sum_an_kern_autogen.cpp.obj 2025-07-24T03:55:15.1672430Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:15.1673882Z [1671/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_sum_at_kern_autogen.cpp.obj 2025-07-24T03:55:15.2589308Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:15.2590407Z [1672/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_sum_bn_kern_autogen.cpp.obj 2025-07-24T03:55:15.3850441Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:15.3851307Z [1673/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_sum_bt_kern_autogen.cpp.obj 2025-07-24T03:55:15.4746398Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:15.4747280Z [1674/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_b0_b_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:15.5737158Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:15.5737996Z [1675/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_b0_c_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:15.6613482Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:15.6614380Z [1676/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_b0_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:15.7202926Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:15.7204398Z [1677/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_b0_r_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:15.7736555Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:15.7737822Z [1678/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_b_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:16.9024203Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:16.9025017Z [1679/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_c_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:17.0004818Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:17.0005661Z [1680/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:17.0914950Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:17.0915763Z [1681/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_r_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:17.1486350Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:17.1487125Z [1682/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_an_kern_autogen.cpp.obj 2025-07-24T03:55:17.2329657Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:17.2330445Z [1683/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_at_kern_autogen.cpp.obj 2025-07-24T03:55:17.3012994Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:17.3014572Z [1684/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_bt_kern_autogen.cpp.obj 2025-07-24T03:55:17.3828549Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:17.3829925Z [1685/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_sum_an_kern_autogen.cpp.obj 2025-07-24T03:55:17.4696079Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:17.4697589Z [1686/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_bn_kern_autogen.cpp.obj 2025-07-24T03:55:17.5331816Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:17.5332673Z [1687/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_sum_bn_kern_autogen.cpp.obj 2025-07-24T03:55:17.5418113Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:17.5419600Z [1688/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_sum_at_kern_autogen.cpp.obj 2025-07-24T03:55:17.7104717Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:17.7105544Z [1689/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_sum_bt_kern_autogen.cpp.obj 2025-07-24T03:55:17.7425296Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:17.7426199Z [1690/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_b0_b_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:17.8694214Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:17.8695315Z [1691/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_b0_c_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:17.9343975Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:17.9345324Z [1692/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_b0_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:18.0765645Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:18.0766798Z [1693/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_b0_r_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:18.1646350Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:18.1647734Z [1694/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_b_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:18.1864847Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:18.1866375Z [1695/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:18.2114267Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:18.2115733Z [1696/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_c_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:18.3490401Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:18.3492183Z [1697/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_r_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:18.4060358Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:18.4061876Z [1698/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_an_kern_autogen.cpp.obj 2025-07-24T03:55:18.4977209Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:18.4978730Z [1699/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_at_kern_autogen.cpp.obj 2025-07-24T03:55:18.6027477Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:18.6028292Z [1700/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_bn_kern_autogen.cpp.obj 2025-07-24T03:55:18.7193871Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:18.7195556Z [1701/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_bt_kern_autogen.cpp.obj 2025-07-24T03:55:18.8350791Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:18.8351655Z [1702/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_sum_an_kern_autogen.cpp.obj 2025-07-24T03:55:18.8437392Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:18.8438820Z [1703/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_sum_at_kern_autogen.cpp.obj 2025-07-24T03:55:18.8846205Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:18.8847660Z [1704/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_sum_bn_kern_autogen.cpp.obj 2025-07-24T03:55:19.0189099Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:19.0190742Z [1705/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_sum_bt_kern_autogen.cpp.obj 2025-07-24T03:55:19.1275899Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:19.1278312Z [1706/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm_bf16_convolution.cpp.obj 2025-07-24T03:55:19.1744900Z [1707/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm_bf16_inner_product.cpp.obj 2025-07-24T03:55:19.2361649Z [1708/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\injector_utils.cpp.obj 2025-07-24T03:55:19.3776204Z [1709/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_binary_injector.cpp.obj 2025-07-24T03:55:19.5175040Z [1710/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_eltwise_injector.cpp.obj 2025-07-24T03:55:19.6036297Z [1711/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_postops_injector.cpp.obj 2025-07-24T03:55:19.6204085Z [1712/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\ip_convolution.cpp.obj 2025-07-24T03:55:19.6958509Z [1713/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_1x1_conv_kernel_f32.cpp.obj 2025-07-24T03:55:19.8805914Z [1714/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_conv_kernel_f32.cpp.obj 2025-07-24T03:55:19.9004746Z [1715/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_1x1_convolution.cpp.obj 2025-07-24T03:55:19.9285296Z [1716/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_convolution.cpp.obj 2025-07-24T03:55:20.0913954Z [1717/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_1x1_conv_kernel.cpp.obj 2025-07-24T03:55:20.2501544Z [1718/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_1x1_convolution.cpp.obj 2025-07-24T03:55:20.2980939Z [1719/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_conv_kernel.cpp.obj 2025-07-24T03:55:20.3458817Z [1720/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_convolution.cpp.obj 2025-07-24T03:55:20.3667391Z [1721/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_1x1_conv_kernel.cpp.obj 2025-07-24T03:55:20.6164732Z [1722/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_conv_kernel.cpp.obj 2025-07-24T03:55:20.6912906Z [1723/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_convolution.cpp.obj 2025-07-24T03:55:20.8024020Z [1724/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_1x1_convolution.cpp.obj 2025-07-24T03:55:20.8585865Z [1725/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_deconvolution.cpp.obj 2025-07-24T03:55:20.9976192Z [1726/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_bf16_1x1_convolution.cpp.obj 2025-07-24T03:55:21.0393735Z [1727/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_bf16_1x1_conv_kernel.cpp.obj 2025-07-24T03:55:21.0488578Z [1728/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_bf16_conv_kernel.cpp.obj 2025-07-24T03:55:21.1382713Z [1729/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_bf16_convolution.cpp.obj 2025-07-24T03:55:21.2789156Z [1730/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_bf16_dw_conv_kernel.cpp.obj 2025-07-24T03:55:21.2881049Z [1731/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_fp16cvt.cpp.obj 2025-07-24T03:55:21.4684272Z [1732/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_fp8cvt.cpp.obj 2025-07-24T03:55:21.5777261Z [1733/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_resampling.cpp.obj 2025-07-24T03:55:21.6901650Z [1734/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_scale_precompute.cpp.obj 2025-07-24T03:55:21.7622857Z [1735/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_1x1_convolution.cpp.obj 2025-07-24T03:55:21.7954746Z [1736/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_conv_kernel.cpp.obj 2025-07-24T03:55:21.8150192Z [1737/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_1x1_conv_kernel.cpp.obj 2025-07-24T03:55:22.0256683Z [1738/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_convolution.cpp.obj 2025-07-24T03:55:22.0559983Z [1739/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_deconvolution.cpp.obj 2025-07-24T03:55:22.1840264Z [1740/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_sparse_decompress_kernel.cpp.obj 2025-07-24T03:55:22.2747282Z [1741/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brdgmm_dw_conv.cpp.obj 2025-07-24T03:55:22.4392441Z [1742/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_1x1_conv.cpp.obj 2025-07-24T03:55:22.4691418Z [1743/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_copy_kernel.cpp.obj 2025-07-24T03:55:22.5518134Z [1744/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd.cpp.obj 2025-07-24T03:55:22.5971706Z [1745/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv.cpp.obj 2025-07-24T03:55:22.7110287Z [1746/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_trans_kernel.cpp.obj 2025-07-24T03:55:22.7338499Z [1747/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_strided.cpp.obj 2025-07-24T03:55:22.8611891Z [1748/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_utils.cpp.obj 2025-07-24T03:55:23.0269885Z [1749/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_w.cpp.obj 2025-07-24T03:55:23.1219857Z [1750/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_comp_pad_kernel.cpp.obj 2025-07-24T03:55:23.1635105Z [1751/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_trans_kernel.cpp.obj 2025-07-24T03:55:23.2615811Z [1752/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_utils.cpp.obj 2025-07-24T03:55:23.3287782Z [1753/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_deconv.cpp.obj 2025-07-24T03:55:23.4517015Z [1754/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_inner_product_utils.cpp.obj 2025-07-24T03:55:23.5151273Z [1755/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_inner_product.cpp.obj 2025-07-24T03:55:23.5653471Z [1756/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_post_ops.cpp.obj 2025-07-24T03:55:23.6768599Z [1757/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_primitive_conf.cpp.obj 2025-07-24T03:55:23.8160255Z [1758/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_transpose_utils.cpp.obj 2025-07-24T03:55:23.8481815Z [1759/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_gemm_inner_product_utils.cpp.obj 2025-07-24T03:55:23.9383230Z [1760/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_gemm_x8s8s32x_conv_zp_src_pad_comp.cpp.obj 2025-07-24T03:55:24.0441887Z [1761/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_gemm_x8s8s32x_convolution_utils.cpp.obj 2025-07-24T03:55:24.0662936Z [1762/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_generator.cpp.obj 2025-07-24T03:55:24.1841905Z [1763/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_1x1_conv_kernel_f32.cpp.obj 2025-07-24T03:55:24.3229839Z [1764/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_1x1_convolution.cpp.obj 2025-07-24T03:55:24.3905115Z [1765/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_conv_kernel_f32.cpp.obj 2025-07-24T03:55:24.4764015Z [1766/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_convolution.cpp.obj 2025-07-24T03:55:24.4968768Z [1767/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_transpose_utils.cpp.obj 2025-07-24T03:55:24.6516223Z [1768/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_batch_normalization.cpp.obj 2025-07-24T03:55:24.7663129Z [1769/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_batch_normalization_s8.cpp.obj 2025-07-24T03:55:24.8368028Z [1770/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_binary.cpp.obj 2025-07-24T03:55:24.9683714Z [1771/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_convert_xf16.cpp.obj 2025-07-24T03:55:24.9834628Z [1772/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_binary_kernel.cpp.obj 2025-07-24T03:55:25.0968169Z [1773/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_deconv_zp_pad_str_kernel.cpp.obj 2025-07-24T03:55:25.1260066Z [1774/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_dw_conv_kernel_f32.cpp.obj 2025-07-24T03:55:25.2262398Z [1775/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_dw_conv_kernel_utils.cpp.obj 2025-07-24T03:55:25.3928249Z [1776/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_dw_convolution.cpp.obj 2025-07-24T03:55:25.5119886Z [1777/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_eltwise.cpp.obj 2025-07-24T03:55:25.5455494Z [1778/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_eltwise_int.cpp.obj 2025-07-24T03:55:25.7081549Z [1779/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_group_normalization.cpp.obj 2025-07-24T03:55:25.7477932Z [1780/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_i8i8_pooling.cpp.obj 2025-07-24T03:55:25.8082788Z [1781/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_instance_normalization.cpp.obj 2025-07-24T03:55:25.8511794Z [1782/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_layer_normalization.cpp.obj 2025-07-24T03:55:25.9515753Z [1783/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_ncsp_convolution.cpp.obj 2025-07-24T03:55:26.1466165Z [1784/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_pool_kernel.cpp.obj 2025-07-24T03:55:26.1936949Z [1785/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reduction.cpp.obj 2025-07-24T03:55:26.2600892Z [1786/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_pooling.cpp.obj 2025-07-24T03:55:26.4415817Z [1787/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reduction_kernel.cpp.obj 2025-07-24T03:55:26.4732922Z [1788/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder.cpp.obj 2025-07-24T03:55:26.5082116Z [1789/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder_direct_copy.cpp.obj 2025-07-24T03:55:26.5230027Z [1790/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder_utils.cpp.obj 2025-07-24T03:55:26.6859692Z [1791/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_resampling.cpp.obj 2025-07-24T03:55:26.8346953Z [1792/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_resampling_kernel.cpp.obj 2025-07-24T03:55:26.9732113Z [1793/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_softmax.cpp.obj 2025-07-24T03:55:27.0010620Z [1794/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_tbb_batch_normalization.cpp.obj 2025-07-24T03:55:27.1749129Z [1795/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_1x1_conv_kernel.cpp.obj 2025-07-24T03:55:27.2191718Z [1796/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_1x1_convolution.cpp.obj 2025-07-24T03:55:27.2674445Z [1797/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_convolution.cpp.obj 2025-07-24T03:55:27.2772052Z [1798/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_conv_kernel.cpp.obj 2025-07-24T03:55:27.4553885Z [1799/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_deconvolution.cpp.obj 2025-07-24T03:55:27.5302843Z [1800/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_xf16_sum.cpp.obj 2025-07-24T03:55:27.6178951Z [1801/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn_bwd_base.cpp.obj 2025-07-24T03:55:27.6615065Z [1802/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn.cpp.obj 2025-07-24T03:55:27.8473589Z [1803/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn_bwd_blocked.cpp.obj 2025-07-24T03:55:27.8611338Z [1804/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn_bwd_nhwc.cpp.obj 2025-07-24T03:55:27.9007804Z [1805/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn_fwd_blocked.cpp.obj 2025-07-24T03:55:27.9108553Z [1806/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn_fwd_base.cpp.obj 2025-07-24T03:55:28.0877323Z [1807/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn_fwd_nhwc.cpp.obj 2025-07-24T03:55:28.2471904Z [1808/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_uni_lrn.cpp.obj 2025-07-24T03:55:28.2589864Z [1809/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_uni_lrn_kernel.cpp.obj 2025-07-24T03:55:28.4867678Z [1810/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul.cpp.obj 2025-07-24T03:55:28.5077957Z [1811/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_copy_utils.cpp.obj 2025-07-24T03:55:28.5301937Z [1812/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_reorders.cpp.obj 2025-07-24T03:55:28.6301144Z [1813/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_utils.cpp.obj 2025-07-24T03:55:28.6405081Z [1814/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\jit_uni_sparse_matmul.cpp.obj 2025-07-24T03:55:28.7598424Z [1815/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_backward.cpp.obj 2025-07-24T03:55:28.9036021Z [1816/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_base_kernel.cpp.obj 2025-07-24T03:55:28.9522443Z [1817/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_forward.cpp.obj 2025-07-24T03:55:29.1278162Z [1818/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_reduction_kernel.cpp.obj 2025-07-24T03:55:29.1376128Z [1819/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_utils.cpp.obj 2025-07-24T03:55:29.2054394Z [1820/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_uni_prelu_backward_kernel.cpp.obj 2025-07-24T03:55:29.2756382Z [1821/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_uni_prelu_forward_kernel.cpp.obj 2025-07-24T03:55:29.3432245Z [1822/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_bwd.cpp.obj 2025-07-24T03:55:29.5191108Z [1823/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_utils.cpp.obj 2025-07-24T03:55:29.5321868Z [1824/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_fwd.cpp.obj 2025-07-24T03:55:29.6225240Z [1825/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_reorders.cpp.obj 2025-07-24T03:55:29.8197818Z [1826/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\jit_brgemm_transpose_single_row.cpp.obj 2025-07-24T03:55:29.8433586Z [1827/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\jit_diff_weights_peephole.cpp.obj 2025-07-24T03:55:29.9104419Z [1828/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\jit_gates_reduction.cpp.obj 2025-07-24T03:55:29.9760601Z [1829/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\rnn_brgemm_utils.cpp.obj 2025-07-24T03:55:30.0395817Z [1830/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\shuffle\jit_uni_shuffle.cpp.obj 2025-07-24T03:55:30.1905381Z [1831/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\utils\jit_io_helper.cpp.obj 2025-07-24T03:55:30.2187418Z [1832/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\allocator.cpp.obj 2025-07-24T03:55:30.2684709Z [1833/7174] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\shuffle\jit_uni_shuffle_kernel.cpp.obj 2025-07-24T03:55:30.4796926Z [1834/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\backend.cpp.obj 2025-07-24T03:55:30.5300624Z [1835/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\constant_tensor_cache.cpp.obj 2025-07-24T03:55:30.5581238Z [1836/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op.cpp.obj 2025-07-24T03:55:30.5838959Z [1837/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\graph.cpp.obj 2025-07-24T03:55:30.6005191Z [1838/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\logical_tensor.cpp.obj 2025-07-24T03:55:30.8330341Z [1839/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op_def_constraint.cpp.obj 2025-07-24T03:55:30.8860082Z [1840/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op_schema.cpp.obj 2025-07-24T03:55:30.9284607Z [1841/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition.cpp.obj 2025-07-24T03:55:31.1790619Z [1842/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_cache.cpp.obj 2025-07-24T03:55:31.1814379Z [1843/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\shape_infer.cpp.obj 2025-07-24T03:55:31.1983449Z [1844/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_hashing.cpp.obj 2025-07-24T03:55:31.2169692Z [1845/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\tensor.cpp.obj 2025-07-24T03:55:31.2402403Z [1846/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_impl.cpp.obj 2025-07-24T03:55:31.4506059Z [1847/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\value.cpp.obj 2025-07-24T03:55:31.5372493Z [1848/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\fake\CMakeFiles\dnnl_graph_backend_fake.dir\fake_backend.cpp.obj 2025-07-24T03:55:31.5898568Z [1849/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\common.cpp.obj 2025-07-24T03:55:31.8374074Z [1850/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_shape_infer.cpp.obj 2025-07-24T03:55:31.8879933Z [1851/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\fusion_info.cpp.obj 2025-07-24T03:55:31.9109615Z [1852/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\layout_id_mgr.cpp.obj 2025-07-24T03:55:31.9259892Z [1853/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_partition_impl.cpp.obj 2025-07-24T03:55:31.9775781Z [1854/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_backend.cpp.obj 2025-07-24T03:55:32.1498710Z [1855/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\layout_propagator.cpp.obj 2025-07-24T03:55:32.2515617Z [1856/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\platform.cpp.obj 2025-07-24T03:55:32.2725453Z [1857/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\op_executable.cpp.obj 2025-07-24T03:55:32.5756307Z [1858/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\batch_norm.cpp.obj 2025-07-24T03:55:32.5890204Z [1859/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\subgraph.cpp.obj 2025-07-24T03:55:32.6314575Z [1860/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\binary.cpp.obj 2025-07-24T03:55:32.6334886Z [1861/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\concat.cpp.obj 2025-07-24T03:55:32.6841774Z [1862/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv.cpp.obj 2025-07-24T03:55:32.8609423Z [1863/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv_base.cpp.obj 2025-07-24T03:55:32.9894475Z [1864/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\dummy.cpp.obj 2025-07-24T03:55:33.0012238Z [1865/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv_transpose.cpp.obj 2025-07-24T03:55:33.3467152Z [1866/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\gen_index.cpp.obj 2025-07-24T03:55:33.3495201Z [1867/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\kernel_base.cpp.obj 2025-07-24T03:55:33.3557162Z [1868/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\eltwise.cpp.obj 2025-07-24T03:55:33.3577364Z [1869/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\group_norm.cpp.obj 2025-07-24T03:55:33.3661657Z [1870/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\large_partition.cpp.obj 2025-07-24T03:55:33.5691240Z [1871/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\layer_norm.cpp.obj 2025-07-24T03:55:33.6980303Z [1872/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\matmul.cpp.obj 2025-07-24T03:55:33.7346049Z [1873/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\log_softmax.cpp.obj 2025-07-24T03:55:34.0804815Z [1874/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\prelu.cpp.obj 2025-07-24T03:55:34.0933829Z [1875/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\mqa_decomp.cpp.obj 2025-07-24T03:55:34.1036214Z [1876/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\pool.cpp.obj 2025-07-24T03:55:34.1228959Z [1877/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\quantize.cpp.obj 2025-07-24T03:55:34.1297148Z [1878/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\mqa_decomp_config.cpp.obj 2025-07-24T03:55:34.2389059Z [1879/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\reduction.cpp.obj 2025-07-24T03:55:34.3687321Z [1880/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\reorder.cpp.obj 2025-07-24T03:55:34.4606797Z [1881/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\resampling.cpp.obj 2025-07-24T03:55:34.8178637Z [1882/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sdp_decomp.cpp.obj 2025-07-24T03:55:34.8262476Z [1883/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sdp_primitive.cpp.obj 2025-07-24T03:55:34.8280791Z [1884/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sdp_decomp_config.cpp.obj 2025-07-24T03:55:34.8543938Z [1885/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sdp_primitive_config.cpp.obj 2025-07-24T03:55:34.8932015Z [1886/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\select.cpp.obj 2025-07-24T03:55:34.9838272Z [1887/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\shuffle.cpp.obj 2025-07-24T03:55:35.1328352Z [1888/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\softmax.cpp.obj 2025-07-24T03:55:35.1894401Z [1889/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sum.cpp.obj 2025-07-24T03:55:35.5422661Z [1890/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\insert_ops.cpp.obj 2025-07-24T03:55:35.5503214Z [1891/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\compile_ops.cpp.obj 2025-07-24T03:55:35.5596253Z [1892/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\constant_propagation.cpp.obj 2025-07-24T03:55:35.5888664Z [1893/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\layout_propagation.cpp.obj 2025-07-24T03:55:35.6240935Z [1894/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\lower.cpp.obj 2025-07-24T03:55:35.7048020Z [1895/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\memory_planning.cpp.obj 2025-07-24T03:55:35.8832654Z [1896/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\utils.cpp.obj 2025-07-24T03:55:35.9338787Z [1897/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\transform.cpp.obj 2025-07-24T03:55:36.2676186Z [1898/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\concat_fusion.cpp.obj 2025-07-24T03:55:36.2698716Z [1899/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\bn_fusion.cpp.obj 2025-07-24T03:55:36.2967704Z [1900/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\binary_fusion.cpp.obj 2025-07-24T03:55:36.2988864Z [1901/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\conv_block_fusion.cpp.obj 2025-07-24T03:55:36.3873859Z [1902/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\conv_post_ops.cpp.obj 2025-07-24T03:55:36.4889216Z [1903/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\convtranspose_fusion.cpp.obj 2025-07-24T03:55:36.5907887Z [1904/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\eltwise_fusion.cpp.obj 2025-07-24T03:55:36.7011439Z [1905/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\groupnorm_fusion.cpp.obj 2025-07-24T03:55:37.0112709Z [1906/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\layernorm_fusion.cpp.obj 2025-07-24T03:55:37.0434637Z [1907/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\interpolate_fusion.cpp.obj 2025-07-24T03:55:37.0533227Z [1908/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\matmul_post_ops.cpp.obj 2025-07-24T03:55:37.0645299Z [1909/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\mlp.cpp.obj 2025-07-24T03:55:37.1557951Z [1910/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\pool_post_ops.cpp.obj 2025-07-24T03:55:37.2402556Z [1911/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\quantize_fusion.cpp.obj 2025-07-24T03:55:37.4583418Z [1912/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\reorder_fusion.cpp.obj 2025-07-24T03:55:37.4769804Z [1913/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\reduction_fusion.cpp.obj 2025-07-24T03:55:37.5899830Z [1914/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\id.cpp.obj 2025-07-24T03:55:37.5917940Z [1915/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\alloc.cpp.obj 2025-07-24T03:55:37.6492910Z [1916/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\debug.cpp.obj 2025-07-24T03:55:37.6912481Z [1917/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\ocl_usm_utils.cpp.obj 2025-07-24T03:55:37.7435843Z [1918/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\sdp.cpp.obj 2025-07-24T03:55:37.8099053Z [1919/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\shuffle_fusion.cpp.obj 2025-07-24T03:55:37.8234608Z [1920/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\single_op_pattern.cpp.obj 2025-07-24T03:55:37.8322018Z [1921/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\softmax_post_ops.cpp.obj 2025-07-24T03:55:37.8615066Z [1922/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\sum_fusion.cpp.obj 2025-07-24T03:55:38.1946285Z [1923/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\nested_matcher.cpp.obj 2025-07-24T03:55:38.2821833Z [1924/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_api.dir\src\libkineto_api.cpp.obj 2025-07-24T03:55:38.2968294Z [1925/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pass_base.cpp.obj 2025-07-24T03:55:38.3240953Z [1926/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_api.dir\src\ThreadUtil.cpp.obj 2025-07-24T03:55:38.3242172Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(21): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-07-24T03:55:38.3243498Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(21): note: 'WIN32_LEAN_AND_MEAN' previously declared on the command line 2025-07-24T03:55:38.3244665Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(22): warning C4005: 'NOGDI': macro redefinition 2025-07-24T03:55:38.3376141Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(22): note: 'NOGDI' previously declared on the command line 2025-07-24T03:55:38.3378127Z [1927/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pbuilder.cpp.obj 2025-07-24T03:55:38.3787743Z [1928/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pass_manager.cpp.obj 2025-07-24T03:55:38.3896220Z [1929/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\utils.cpp.obj 2025-07-24T03:55:38.5113330Z [1930/7174] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\verbose.cpp.obj 2025-07-24T03:55:38.5616500Z [1931/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\AbstractConfig.cpp.obj 2025-07-24T03:55:38.6718164Z [1932/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ApproximateClock.cpp.obj 2025-07-24T03:55:38.7341771Z [1933/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityType.cpp.obj 2025-07-24T03:55:38.7500116Z [1934/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiActivityProfiler.cpp.obj 2025-07-24T03:55:38.7562328Z [1935/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DaemonConfigLoader.cpp.obj 2025-07-24T03:55:38.7735616Z [1936/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityProfilerProxy.cpp.obj 2025-07-24T03:55:38.7831011Z [1937/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Config.cpp.obj 2025-07-24T03:55:38.7898621Z [1938/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityProfilerController.cpp.obj 2025-07-24T03:55:38.8157184Z [1939/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ConfigLoader.cpp.obj 2025-07-24T03:55:38.8596031Z [1940/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\IpcFabricConfigClient.cpp.obj 2025-07-24T03:55:38.9266355Z [1941/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Demangle.cpp.obj 2025-07-24T03:55:38.9521590Z [1942/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiActivityApi.cpp.obj 2025-07-24T03:55:39.0962535Z [1943/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DeviceUtil.cpp.obj 2025-07-24T03:55:39.1034293Z [1944/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DeviceProperties.cpp.obj 2025-07-24T03:55:39.1115746Z [1945/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\LoggingAPI.cpp.obj 2025-07-24T03:55:39.1449449Z [1946/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ILoggerObserver.cpp.obj 2025-07-24T03:55:39.1525729Z [1947/7174] Linking CXX static library lib\mimalloc.lib 2025-07-24T03:55:39.1715921Z [1948/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\GenericTraceActivity.cpp.obj 2025-07-24T03:55:39.1789230Z [1949/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Logger.cpp.obj 2025-07-24T03:55:39.2114978Z [1950/7174] Building CXX object c10\CMakeFiles\c10.dir\core\AutogradState.cpp.obj 2025-07-24T03:55:39.3498660Z [1951/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\init.cpp.obj 2025-07-24T03:55:39.3519747Z [1952/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\output_csv.cpp.obj 2025-07-24T03:55:39.4751645Z [1953/7174] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\output_json.cpp.obj 2025-07-24T03:55:40.6134783Z [1954/7174] Building CXX object c10\CMakeFiles\c10.dir\core\Allocator.cpp.obj 2025-07-24T03:55:40.6632269Z [1955/7174] Building CXX object c10\CMakeFiles\c10.dir\core\ConstantSymNodeImpl.cpp.obj 2025-07-24T03:55:40.7687634Z [1956/7174] Building CXX object c10\CMakeFiles\c10.dir\core\CopyBytes.cpp.obj 2025-07-24T03:55:40.8085013Z [1957/7174] Building CXX object c10\CMakeFiles\c10.dir\core\DefaultDtype.cpp.obj 2025-07-24T03:55:40.8476578Z [1958/7174] Building CXX object c10\CMakeFiles\c10.dir\core\GradMode.cpp.obj 2025-07-24T03:55:40.8844950Z [1959/7174] Building CXX object c10\CMakeFiles\c10.dir\core\Device.cpp.obj 2025-07-24T03:55:40.9713329Z [1960/7174] Building CXX object c10\CMakeFiles\c10.dir\core\DeviceType.cpp.obj 2025-07-24T03:55:41.6450062Z [1961/7174] Building CXX object c10\CMakeFiles\c10.dir\core\CPUAllocator.cpp.obj 2025-07-24T03:55:42.3950551Z [1962/7174] Building CXX object c10\CMakeFiles\c10.dir\core\DispatchKeySet.cpp.obj 2025-07-24T03:55:42.4601715Z [1963/7174] Building CXX object c10\CMakeFiles\c10.dir\core\InferenceMode.cpp.obj 2025-07-24T03:55:42.6555427Z [1964/7174] Building CXX object c10\CMakeFiles\c10.dir\core\DispatchKey.cpp.obj 2025-07-24T03:55:42.7144242Z [1965/7174] Building CXX object c10\CMakeFiles\c10.dir\core\SafePyObject.cpp.obj 2025-07-24T03:55:43.1795022Z [1966/7174] Building CXX object c10\CMakeFiles\c10.dir\core\RefcountedDeleter.cpp.obj 2025-07-24T03:55:43.7328378Z [1967/7174] Building CXX object c10\CMakeFiles\c10.dir\core\Scalar.cpp.obj 2025-07-24T03:55:43.9824352Z [1968/7174] Building CXX object c10\CMakeFiles\c10.dir\core\GeneratorImpl.cpp.obj 2025-07-24T03:55:44.0343732Z [1969/7174] Building CXX object c10\CMakeFiles\c10.dir\core\ScalarType.cpp.obj 2025-07-24T03:55:44.8257353Z [1970/7174] Building CXX object c10\CMakeFiles\c10.dir\core\Stream.cpp.obj 2025-07-24T03:55:44.8527689Z [1971/7174] Building CXX object c10\CMakeFiles\c10.dir\core\SymBool.cpp.obj 2025-07-24T03:55:44.9745078Z [1972/7174] Building CXX object c10\CMakeFiles\c10.dir\core\Storage.cpp.obj 2025-07-24T03:55:45.2220898Z [1973/7174] Building CXX object c10\CMakeFiles\c10.dir\core\StorageImpl.cpp.obj 2025-07-24T03:55:45.4659622Z [1974/7174] Building CXX object c10\CMakeFiles\c10.dir\core\SymFloat.cpp.obj 2025-07-24T03:55:45.9342486Z [1975/7174] Building CXX object c10\CMakeFiles\c10.dir\core\SymIntArrayRef.cpp.obj 2025-07-24T03:55:46.0042665Z [1976/7174] Building CXX object c10\CMakeFiles\c10.dir\core\SymInt.cpp.obj 2025-07-24T03:55:46.1285584Z [1977/7174] Building CXX object c10\CMakeFiles\c10.dir\core\SymNodeImpl.cpp.obj 2025-07-24T03:55:47.0885608Z [1978/7174] Building CXX object c10\CMakeFiles\c10.dir\core\SymbolicShapeMeta.cpp.obj 2025-07-24T03:55:47.2596513Z [1979/7174] Building CXX object c10\CMakeFiles\c10.dir\core\WrapDimMinimal.cpp.obj 2025-07-24T03:55:47.3243937Z [1980/7174] Building CXX object c10\CMakeFiles\c10.dir\core\impl\COWDeleter.cpp.obj 2025-07-24T03:55:47.3439492Z [1981/7174] Building CXX object c10\CMakeFiles\c10.dir\core\TensorOptions.cpp.obj 2025-07-24T03:55:47.4429069Z [1982/7174] Building CXX object c10\CMakeFiles\c10.dir\core\impl\HermeticPyObjectTLS.cpp.obj 2025-07-24T03:55:47.7186942Z [1983/7174] Building CXX object c10\CMakeFiles\c10.dir\core\impl\DeviceGuardImplInterface.cpp.obj 2025-07-24T03:55:48.4385266Z [1984/7174] Building CXX object c10\CMakeFiles\c10.dir\core\UndefinedTensorImpl.cpp.obj 2025-07-24T03:55:48.5235566Z [1985/7174] Building CXX object c10\CMakeFiles\c10.dir\core\impl\COW.cpp.obj 2025-07-24T03:55:48.8577072Z [1986/7174] Building CXX object c10\CMakeFiles\c10.dir\core\TensorImpl.cpp.obj 2025-07-24T03:55:49.1297563Z [1987/7174] Building CXX object c10\CMakeFiles\c10.dir\core\impl\LocalDispatchKeySet.cpp.obj 2025-07-24T03:55:49.4077299Z [1988/7174] Building CXX object c10\CMakeFiles\c10.dir\core\impl\GPUTrace.cpp.obj 2025-07-24T03:55:49.6453003Z [1989/7174] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PyObjectSlot.cpp.obj 2025-07-24T03:55:50.0096983Z C:\actions-runner\_work\pytorch\pytorch\c10\core\impl\PyObjectSlot.cpp(70): warning C4805: '|': unsafe mix of type 'uintptr_t' and type 'bool' in operation 2025-07-24T03:55:50.0099526Z [1990/7174] Building CXX object c10\CMakeFiles\c10.dir\core\impl\SizesAndStrides.cpp.obj 2025-07-24T03:55:50.0617368Z [1991/7174] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PythonDispatcherTLS.cpp.obj 2025-07-24T03:55:50.4417522Z [1992/7174] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PyInterpreter.cpp.obj 2025-07-24T03:55:50.5092974Z [1993/7174] Building CXX object c10\CMakeFiles\c10.dir\core\impl\TorchDispatchModeTLS.cpp.obj 2025-07-24T03:55:51.0194021Z [1994/7174] Building CXX object c10\CMakeFiles\c10.dir\util\C++17.cpp.obj 2025-07-24T03:55:51.4403505Z [1995/7174] Building CXX object c10\CMakeFiles\c10.dir\core\impl\alloc_cpu.cpp.obj 2025-07-24T03:55:51.4716531Z [1996/7174] Building CXX object c10\CMakeFiles\c10.dir\util\Bfloat16.cpp.obj 2025-07-24T03:55:51.5687436Z [1997/7174] Building CXX object c10\CMakeFiles\c10.dir\core\thread_pool.cpp.obj 2025-07-24T03:55:51.5740433Z [1998/7174] Building CXX object c10\CMakeFiles\c10.dir\mobile\CPUCachingAllocator.cpp.obj 2025-07-24T03:55:52.2871833Z [1999/7174] Building CXX object c10\CMakeFiles\c10.dir\mobile\CPUProfilingAllocator.cpp.obj 2025-07-24T03:55:52.3550142Z [2000/7174] Building CXX object c10\CMakeFiles\c10.dir\util\DeadlockDetection.cpp.obj 2025-07-24T03:55:52.3594903Z [2001/7174] Building CXX object c10\CMakeFiles\c10.dir\util\Backtrace.cpp.obj 2025-07-24T03:55:52.4946981Z [2002/7174] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e4m3fnuz.cpp.obj 2025-07-24T03:55:52.5091637Z [2003/7174] Building CXX object c10\CMakeFiles\c10.dir\util\ApproximateClock.cpp.obj 2025-07-24T03:55:52.5399238Z [2004/7174] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e4m3fn.cpp.obj 2025-07-24T03:55:52.6976048Z [2005/7174] Building CXX object c10\CMakeFiles\c10.dir\util\DynamicCounter.cpp.obj 2025-07-24T03:55:53.1330308Z [2006/7174] Building CXX object c10\CMakeFiles\c10.dir\util\LeftRight.cpp.obj 2025-07-24T03:55:53.1659513Z [2007/7174] Building CXX object c10\CMakeFiles\c10.dir\util\Exception.cpp.obj 2025-07-24T03:55:53.1734196Z [2008/7174] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e5m2fnuz.cpp.obj 2025-07-24T03:55:53.2185783Z [2009/7174] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e5m2.cpp.obj 2025-07-24T03:55:53.2205592Z [2010/7174] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e8m0fnu.cpp.obj 2025-07-24T03:55:53.2956305Z [2011/7174] Building CXX object c10\CMakeFiles\c10.dir\util\ParallelGuard.cpp.obj 2025-07-24T03:55:53.3057998Z [2012/7174] Building CXX object c10\CMakeFiles\c10.dir\util\Half.cpp.obj 2025-07-24T03:55:53.4532514Z [2013/7174] Building CXX object c10\CMakeFiles\c10.dir\util\Optional.cpp.obj 2025-07-24T03:55:53.5813229Z [2014/7174] Building CXX object c10\CMakeFiles\c10.dir\util\Metaprogramming.cpp.obj 2025-07-24T03:55:53.7834489Z [2015/7174] Building CXX object c10\CMakeFiles\c10.dir\util\Gauge.cpp.obj 2025-07-24T03:55:53.9395461Z [2016/7174] Building CXX object c10\CMakeFiles\c10.dir\util\MathConstants.cpp.obj 2025-07-24T03:55:54.2101464Z [2017/7174] Building CXX object c10\CMakeFiles\c10.dir\util\SmallVector.cpp.obj 2025-07-24T03:55:54.2122489Z [2018/7174] Building CXX object c10\CMakeFiles\c10.dir\util\TypeList.cpp.obj 2025-07-24T03:55:54.3331784Z [2019/7174] Building CXX object c10\CMakeFiles\c10.dir\util\TypeTraits.cpp.obj 2025-07-24T03:55:54.7735864Z [2020/7174] Building CXX object c10\CMakeFiles\c10.dir\util\ThreadLocalDebugInfo.cpp.obj 2025-07-24T03:55:54.7737086Z [2021/7174] Building CXX object c10\CMakeFiles\c10.dir\util\TypeCast.cpp.obj 2025-07-24T03:55:54.9377455Z [2022/7174] Building CXX object c10\CMakeFiles\c10.dir\util\Type_no_demangle.cpp.obj 2025-07-24T03:55:54.9825303Z [2023/7174] Building CXX object c10\CMakeFiles\c10.dir\util\Logging.cpp.obj 2025-07-24T03:55:54.9991548Z [2024/7174] Building CXX object c10\CMakeFiles\c10.dir\util\Type_demangle.cpp.obj 2025-07-24T03:55:55.0102171Z [2025/7174] Building CXX object c10\CMakeFiles\c10.dir\util\StringUtil.cpp.obj 2025-07-24T03:55:55.0900950Z [2026/7174] Building CXX object c10\CMakeFiles\c10.dir\util\flags_use_gflags.cpp.obj 2025-07-24T03:55:55.1659252Z [2027/7174] Building CXX object c10\CMakeFiles\c10.dir\util\UniqueVoidPtr.cpp.obj 2025-07-24T03:55:55.3123576Z [2028/7174] Building CXX object c10\CMakeFiles\c10.dir\util\NetworkFlow.cpp.obj 2025-07-24T03:55:55.5083026Z [2029/7174] Building CXX object c10\CMakeFiles\c10.dir\util\error.cpp.obj 2025-07-24T03:55:55.8341993Z [2030/7174] Building CXX object c10\CMakeFiles\c10.dir\util\complex_math.cpp.obj 2025-07-24T03:55:56.0450728Z [2031/7174] Building CXX object c10\CMakeFiles\c10.dir\util\Unicode.cpp.obj 2025-07-24T03:55:56.1088996Z [2032/7174] Building CXX object c10\CMakeFiles\c10.dir\util\WaitCounter.cpp.obj 2025-07-24T03:55:56.5696937Z [2033/7174] Building CXX object c10\CMakeFiles\c10.dir\util\intrusive_ptr.cpp.obj 2025-07-24T03:55:56.6438976Z [2034/7174] Building CXX object c10\CMakeFiles\c10.dir\util\flags_use_no_gflags.cpp.obj 2025-07-24T03:55:56.7071218Z [2035/7174] Building CXX object c10\CMakeFiles\c10.dir\util\thread_name.cpp.obj 2025-07-24T03:55:56.7086797Z [2036/7174] Building CXX object c10\CMakeFiles\c10.dir\util\int128.cpp.obj 2025-07-24T03:55:57.3053073Z [2037/7174] Building CXX object c10\CMakeFiles\c10.dir\util\numa.cpp.obj 2025-07-24T03:55:57.6955541Z [2038/7174] Building CXX object c10\CMakeFiles\c10.dir\util\signal_handler.cpp.obj 2025-07-24T03:55:57.8517400Z [2039/7174] Building CXX object c10\CMakeFiles\c10.dir\util\env.cpp.obj 2025-07-24T03:55:58.4750896Z [2040/7174] Building CXX object c10\CMakeFiles\c10.dir\util\tempfile.cpp.obj 2025-07-24T03:55:58.7193250Z [2041/7174] Building CXX object c10\CMakeFiles\c10.dir\util\typeid.cpp.obj 2025-07-24T03:56:01.8911592Z [2042/7174] Building C object sleef\src\libm\CMakeFiles\sleefavx512fnofma.dir\sleefsimdsp.c.obj 2025-07-24T03:56:01.8959315Z [2043/7174] Building C object sleef\src\libm\CMakeFiles\sleefavx512fnofma.dir\sleefsimddp.c.obj 2025-07-24T03:56:01.9094166Z [2044/7174] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512fnofma.dir\sleefsimdsp.c.obj 2025-07-24T03:56:01.9442917Z [2045/7174] Building C object sleef\src\libm\CMakeFiles\sleefavx512f.dir\sleefsimdsp.c.obj 2025-07-24T03:56:01.9599682Z [2046/7174] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512fnofma.dir\sleefsimddp.c.obj 2025-07-24T03:56:01.9796556Z [2047/7174] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512f.dir\sleefsimdsp.c.obj 2025-07-24T03:56:01.9857545Z [2048/7174] Building C object sleef\src\libm\CMakeFiles\sleefavx512f.dir\sleefsimddp.c.obj 2025-07-24T03:56:02.0600638Z [2049/7174] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512f.dir\sleefsimddp.c.obj 2025-07-24T03:56:02.0611982Z [2050/7174] Building C object sleef\src\libm\CMakeFiles\sleefavx2.dir\sleefsimdsp.c.obj 2025-07-24T03:56:02.0676979Z [2051/7174] Building C object sleef\src\libm\CMakeFiles\sleefavx2.dir\sleefsimddp.c.obj 2025-07-24T03:56:02.0868479Z [2052/7174] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2.dir\sleefsimdsp.c.obj 2025-07-24T03:56:02.1334845Z [2053/7174] Building C object sleef\src\libm\CMakeFiles\sleefavx2128.dir\sleefsimdsp.c.obj 2025-07-24T03:56:02.1348167Z [2054/7174] Building C object sleef\src\libm\CMakeFiles\sleefavx2128.dir\sleefsimddp.c.obj 2025-07-24T03:56:02.1463028Z [2055/7174] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2.dir\sleefsimddp.c.obj 2025-07-24T03:56:02.1634452Z [2056/7174] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2128.dir\sleefsimdsp.c.obj 2025-07-24T03:56:02.2274352Z [2057/7174] Building C object sleef\src\libm\CMakeFiles\sleeffma4.dir\sleefsimdsp.c.obj 2025-07-24T03:56:02.2444700Z [2058/7174] Building C object sleef\src\libm\CMakeFiles\sleefdetfma4.dir\sleefsimdsp.c.obj 2025-07-24T03:56:02.2489341Z [2059/7174] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2128.dir\sleefsimddp.c.obj 2025-07-24T03:56:02.2588555Z [2060/7174] Building C object sleef\src\libm\CMakeFiles\sleeffma4.dir\sleefsimddp.c.obj 2025-07-24T03:56:02.2786921Z [2061/7174] Building C object sleef\src\libm\CMakeFiles\sleefdetfma4.dir\sleefsimddp.c.obj 2025-07-24T03:56:02.3148596Z [2062/7174] Building C object sleef\src\libm\CMakeFiles\sleefavx.dir\sleefsimdsp.c.obj 2025-07-24T03:56:02.3491504Z [2063/7174] Building C object sleef\src\libm\CMakeFiles\sleefavx.dir\sleefsimddp.c.obj 2025-07-24T03:56:02.3645659Z [2064/7174] Building C object sleef\src\libm\CMakeFiles\sleefdetavx.dir\sleefsimdsp.c.obj 2025-07-24T03:56:02.3664211Z [2065/7174] Building C object sleef\src\libm\CMakeFiles\sleefdetavx.dir\sleefsimddp.c.obj 2025-07-24T03:56:02.3823434Z [2066/7174] Building C object sleef\src\libm\CMakeFiles\sleefsse4.dir\sleefsimddp.c.obj 2025-07-24T03:56:02.4049191Z [2067/7174] Building C object sleef\src\libm\CMakeFiles\sleefsse4.dir\sleefsimdsp.c.obj 2025-07-24T03:56:02.4697500Z [2068/7174] Building C object sleef\src\libm\CMakeFiles\sleefdetsse4.dir\sleefsimddp.c.obj 2025-07-24T03:56:02.5124426Z [2069/7174] Building C object sleef\src\libm\CMakeFiles\sleefsse2.dir\sleefsimddp.c.obj 2025-07-24T03:56:02.5167623Z [2070/7174] Building C object sleef\src\libm\CMakeFiles\sleefdetsse4.dir\sleefsimdsp.c.obj 2025-07-24T03:56:02.5231323Z [2071/7174] Building C object sleef\src\libm\CMakeFiles\sleefdetsse2.dir\sleefsimddp.c.obj 2025-07-24T03:56:02.5243457Z [2072/7174] Building C object sleef\src\libm\CMakeFiles\sleefdetsse2.dir\sleefsimdsp.c.obj 2025-07-24T03:56:02.5735771Z [2073/7174] Building C object sleef\src\libm\CMakeFiles\sleefpurec_scalar.dir\sleefsimdsp.c.obj 2025-07-24T03:56:02.6089950Z [2074/7174] Building C object sleef\src\libm\CMakeFiles\sleefpurec_scalar.dir\sleefsimddp.c.obj 2025-07-24T03:56:02.6240407Z [2075/7174] Building C object sleef\src\libm\CMakeFiles\sleefpurecfma_scalar.dir\sleefsimddp.c.obj 2025-07-24T03:56:02.6382003Z [2076/7174] Building C object sleef\src\libm\CMakeFiles\sleefsse2.dir\sleefsimdsp.c.obj 2025-07-24T03:56:02.6393846Z [2077/7174] Building C object sleef\src\libm\CMakeFiles\sleefdetpurec_scalar.dir\sleefsimdsp.c.obj 2025-07-24T03:56:02.6515345Z [2078/7174] Building C object sleef\src\libm\CMakeFiles\sleefdetpurec_scalar.dir\sleefsimddp.c.obj 2025-07-24T03:56:02.6630424Z [2079/7174] Building C object sleef\src\libm\CMakeFiles\sleefpurecfma_scalar.dir\sleefsimdsp.c.obj 2025-07-24T03:56:02.6645774Z [2080/7174] Building C object sleef\src\libm\CMakeFiles\sleefdetpurecfma_scalar.dir\sleefsimdsp.c.obj 2025-07-24T03:56:02.7133472Z [2081/7174] Building C object sleef\src\libm\CMakeFiles\sleef.dir\rempitab.c.obj 2025-07-24T03:56:02.7184230Z [2082/7174] Building C object sleef\src\libm\CMakeFiles\sleefdetpurecfma_scalar.dir\sleefsimddp.c.obj 2025-07-24T03:56:02.7382370Z [2083/7174] Building C object sleef\src\libm\CMakeFiles\dispscalar_obj.dir\dispscalar.c.obj 2025-07-24T03:56:02.7691725Z [2084/7174] Building C object sleef\src\libm\CMakeFiles\dispsse_obj.dir\dispsse.c.obj 2025-07-24T03:56:02.8113070Z [2085/7174] Linking C static library lib\libittnotify.lib 2025-07-24T03:56:02.8137485Z [2086/7174] Building C object sleef\src\libm\CMakeFiles\dispavx_obj.dir\dispavx.c.obj 2025-07-24T03:56:02.8529563Z [2087/7174] Linking CXX static library lib\XNNPACK.lib 2025-07-24T03:56:02.8604037Z [2088/7174] Building C object sleef\src\common\CMakeFiles\common.dir\common.c.obj 2025-07-24T03:56:02.8616922Z [2089/7174] Linking CXX static library lib\gloo.lib 2025-07-24T03:56:03.0375122Z [2090/7174] Linking C static library sleef\lib\sleef.lib 2025-07-24T03:56:03.0900609Z [2091/7174] Linking CXX static library lib\kineto.lib 2025-07-24T03:56:03.3054645Z [2092/7174] Generating C:/actions-runner/_work/pytorch/pytorch/torch/utils/data/datapipes/datapipe.pyi 2025-07-24T03:56:03.3678294Z [2093/7174] Building CXX object third_party\googletest\googletest\CMakeFiles\gtest.dir\src\gtest-all.cc.obj 2025-07-24T03:56:04.0716625Z [2094/7174] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock.dir\__\googletest\src\gtest-all.cc.obj 2025-07-24T03:56:04.7160811Z [2095/7174] Regenerating version file... 2025-07-24T03:56:04.7188147Z [2096/7174] Linking CXX shared library bin\fbgemm.dll 2025-07-24T03:56:04.7361739Z [2097/7174] Linking CXX shared library bin\c10.dll 2025-07-24T03:56:05.4490155Z [2098/7174] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock.dir\src\gmock-all.cc.obj 2025-07-24T03:56:05.6254989Z [2099/7174] Linking CXX static library lib\onnx.lib 2025-07-24T03:56:05.6909948Z [2100/7174] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark.cc.obj 2025-07-24T03:56:05.9490037Z [2101/7174] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_name.cc.obj 2025-07-24T03:56:05.9568609Z [2102/7174] Linking CXX static library lib\gtest.lib 2025-07-24T03:56:06.0116991Z [2103/7174] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_api_internal.cc.obj 2025-07-24T03:56:06.3548222Z [2104/7174] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_register.cc.obj 2025-07-24T03:56:06.4284873Z [2105/7174] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\check.cc.obj 2025-07-24T03:56:06.5422861Z [2106/7174] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_runner.cc.obj 2025-07-24T03:56:06.5907220Z [2107/7174] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\colorprint.cc.obj 2025-07-24T03:56:06.8441721Z [2108/7174] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\counter.cc.obj 2025-07-24T03:56:06.9406424Z [2109/7174] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\commandlineflags.cc.obj 2025-07-24T03:56:07.0912490Z [2110/7174] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\complexity.cc.obj 2025-07-24T03:56:07.1202909Z [2111/7174] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\console_reporter.cc.obj 2025-07-24T03:56:07.4146596Z [2112/7174] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\csv_reporter.cc.obj 2025-07-24T03:56:07.4959831Z [2113/7174] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\json_reporter.cc.obj 2025-07-24T03:56:07.7513212Z [2114/7174] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\reporter.cc.obj 2025-07-24T03:56:07.7593933Z [2115/7174] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\perf_counters.cc.obj 2025-07-24T03:56:07.9085100Z [2116/7174] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\statistics.cc.obj 2025-07-24T03:56:07.9885202Z [2117/7174] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\string_util.cc.obj 2025-07-24T03:56:08.1825636Z [2118/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\any_lite.cc.obj 2025-07-24T03:56:08.2058954Z [2119/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\arena.cc.obj 2025-07-24T03:56:10.5739388Z [2120/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_enum_util.cc.obj 2025-07-24T03:56:10.5819744Z [2121/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\extension_set.cc.obj 2025-07-24T03:56:10.8818172Z [2122/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_message_table_driven_lite.cc.obj 2025-07-24T03:56:10.9109221Z [2123/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_message_util.cc.obj 2025-07-24T03:56:11.1616761Z [2124/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\implicit_weak_message.cc.obj 2025-07-24T03:56:11.3487485Z [2125/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\coded_stream.cc.obj 2025-07-24T03:56:11.4872479Z [2126/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\io_win32.cc.obj 2025-07-24T03:56:11.5564440Z [2127/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\strtod.cc.obj 2025-07-24T03:56:12.6357812Z [2128/7174] Generating C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/Functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ViewFuncs.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_2.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_3.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_4.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_2.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_3.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_4.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNativeFunctions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/RegisterAutogradLazy.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/RegisterLazy.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/Functions.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/variable_factories.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ViewFuncs.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyIr.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNonNativeIr.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNativeFunctions.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_2.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_3.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_4.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_variable_methods.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_2.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_nn_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_fft_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_linalg_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_nested_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_sparse_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_special_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_return_types.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_enum_tag.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_return_types.h, C:/actions-runner/_work/pytorch/pytorch/torch/testing/_internal/generated/annotated_fn_args.py, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.cpp 2025-07-24T03:56:13.6736327Z [2129/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\AccumulateType.cpp.obj 2025-07-24T03:56:13.7794955Z [2130/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream.cc.obj 2025-07-24T03:56:13.7863828Z [2131/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream_impl.cc.obj 2025-07-24T03:56:14.9272670Z [2132/7174] Generating C:/actions-runner/_work/pytorch/pytorch/torch/_C/__init__.pyi, C:/actions-runner/_work/pytorch/pytorch/torch/_C/_VariableFunctions.pyi, C:/actions-runner/_work/pytorch/pytorch/torch/nn/functional.pyi 2025-07-24T03:56:19.0601325Z [2133/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CPUGeneratorImpl.cpp.obj 2025-07-24T03:56:19.5779369Z [2134/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Context.cpp.obj 2025-07-24T03:56:19.6579632Z [2135/7174] Building CXX object third_party\googletest\googletest\CMakeFiles\gtest_main.dir\src\gtest_main.cc.obj 2025-07-24T03:56:20.1034033Z [2136/7174] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\timers.cc.obj 2025-07-24T03:56:20.1052542Z [2137/7174] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\sysinfo.cc.obj 2025-07-24T03:56:20.7766401Z [2138/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Dispatch.cpp.obj 2025-07-24T03:56:21.5834010Z [2139/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DeviceAccelerator.cpp.obj 2025-07-24T03:56:21.8876219Z [2140/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FuncTorchTLS.cpp.obj 2025-07-24T03:56:22.6089650Z [2141/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\EmptyTensor.cpp.obj 2025-07-24T03:56:24.4791704Z [2142/7174] Linking CXX static library lib\dnnl.lib 2025-07-24T03:56:24.8717872Z [2143/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DynamicLibrary.cpp.obj 2025-07-24T03:56:25.2553379Z [2144/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ConjugateFallback.cpp.obj 2025-07-24T03:56:28.6125289Z [2145/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ExpandUtils.cpp.obj 2025-07-24T03:56:31.8815890Z [2146/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CachedTensorUtils.cpp.obj 2025-07-24T03:56:32.5402124Z [2147/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalStorageImpl.cpp.obj 2025-07-24T03:56:35.0440379Z [2148/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyVmapMode.cpp.obj 2025-07-24T03:56:35.0518369Z [2149/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalTensorWrapper.cpp.obj 2025-07-24T03:56:37.3260508Z [2150/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DLConvertor.cpp.obj 2025-07-24T03:56:38.5933450Z [2151/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchedTensorImpl.cpp.obj 2025-07-24T03:56:39.0346613Z [2152/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalizeFallbackKernel.cpp.obj 2025-07-24T03:56:39.7882928Z [2153/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\MapAllocator.cpp.obj 2025-07-24T03:56:40.2834854Z [2154/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\MemoryOverlap.cpp.obj 2025-07-24T03:56:40.3382860Z [2155/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelNative.cpp.obj 2025-07-24T03:56:43.8176086Z [2156/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelCommon.cpp.obj 2025-07-24T03:56:44.6247051Z [2157/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalInverses.cpp.obj 2025-07-24T03:56:47.1580436Z [2158/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\NamedTensorUtils.cpp.obj 2025-07-24T03:56:48.4421734Z [2159/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\PythonTorchFunctionTLS.cpp.obj 2025-07-24T03:56:49.5669175Z [2160/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SavedTensorHooks.cpp.obj 2025-07-24T03:56:49.6756835Z [2161/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SequenceNumber.cpp.obj 2025-07-24T03:56:50.1785947Z [2162/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelOpenMP.cpp.obj 2025-07-24T03:56:50.2456609Z [2163/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchedFallback.cpp.obj 2025-07-24T03:56:56.4445456Z [2164/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelThreadPoolNative.cpp.obj 2025-07-24T03:56:58.3665744Z [2165/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ScalarOps.cpp.obj 2025-07-24T03:57:00.2430179Z [2166/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchingRegistrations.cpp.obj 2025-07-24T03:57:01.2442342Z [2167/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorGeometry.cpp.obj 2025-07-24T03:57:01.3322109Z [2168/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyVmapTransforms.cpp.obj 2025-07-24T03:57:03.1163206Z [2169/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorMeta.cpp.obj 2025-07-24T03:57:03.3188311Z [2170/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\NestedTensorImpl.cpp.obj 2025-07-24T03:57:06.4643912Z [2171/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ThreadLocalPythonObjects.cpp.obj 2025-07-24T03:57:07.3687984Z [2172/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorIndexing.cpp.obj 2025-07-24T03:57:09.2286829Z [2173/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\StorageUtils.cpp.obj 2025-07-24T03:57:09.9321689Z [2174/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorNames.cpp.obj 2025-07-24T03:57:10.1470763Z [2175/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorIterator.cpp.obj 2025-07-24T03:57:14.9532416Z [2176/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SparseTensorImpl.cpp.obj 2025-07-24T03:57:16.2348078Z [2177/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SparseCsrTensorImpl.cpp.obj 2025-07-24T03:57:16.4602572Z [2178/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\cpu\FlushDenormal.cpp.obj 2025-07-24T03:57:16.5754643Z [2179/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\cpu\Utils.cpp.obj 2025-07-24T03:57:16.6627107Z [2180/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Version.cpp.obj 2025-07-24T03:57:17.7356084Z [2181/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\CPUGuardImpl.cpp.obj 2025-07-24T03:57:18.8745992Z [2182/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\CUDAHooksInterface.cpp.obj 2025-07-24T03:57:20.1151593Z [2183/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\HIPHooksInterface.cpp.obj 2025-07-24T03:57:22.9925603Z [2184/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\VmapModeRegistrations.cpp.obj 2025-07-24T03:57:23.1073768Z [2185/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\HPUHooksInterface.cpp.obj 2025-07-24T03:57:23.8568052Z [2186/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Utils.cpp.obj 2025-07-24T03:57:24.1894128Z [2187/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\IPUHooksInterface.cpp.obj 2025-07-24T03:57:25.6721304Z [2188/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MetaGuardImpl.cpp.obj 2025-07-24T03:57:25.8889913Z [2189/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MAIAHooksInterface.cpp.obj 2025-07-24T03:57:25.9669694Z [2190/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MPSHooksInterface.cpp.obj 2025-07-24T03:57:26.0277324Z [2191/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorUtils.cpp.obj 2025-07-24T03:57:26.4815590Z [2192/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MTIAHooksInterface.cpp.obj 2025-07-24T03:57:28.2381491Z [2193/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\PrivateUse1HooksInterface.cpp.obj 2025-07-24T03:57:28.8874415Z [2194/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\XPUHooksInterface.cpp.obj 2025-07-24T03:57:31.0396301Z [2195/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ThreadLocalState.cpp.obj 2025-07-24T03:57:33.8466208Z [2196/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ZeroTensorFallback.cpp.obj 2025-07-24T03:57:37.3742494Z [2197/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\ADInterpreters.cpp.obj 2025-07-24T03:57:43.6345139Z [2198/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\autocast_mode.cpp.obj 2025-07-24T03:57:55.2455313Z [2199/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesActivation.cpp.obj 2025-07-24T03:57:57.1774817Z [2200/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesConvolution.cpp.obj 2025-07-24T03:57:59.3433386Z [2201/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesDynamic.cpp.obj 2025-07-24T03:58:00.5800824Z [2202/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesFactory.cpp.obj 2025-07-24T03:58:01.6206843Z [2203/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesBinaryOps.cpp.obj 2025-07-24T03:58:07.6054780Z [2204/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesHelper.cpp.obj 2025-07-24T03:58:08.4177915Z [2205/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesDecompositions.cpp.obj 2025-07-24T03:58:15.9014744Z [2206/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesIndexing.cpp.obj 2025-07-24T03:58:24.7612530Z [2207/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesLoss.cpp.obj 2025-07-24T03:58:29.2442299Z [2208/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesPooling.cpp.obj 2025-07-24T03:58:30.8828725Z [2209/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesNorm.cpp.obj 2025-07-24T03:58:32.4377661Z [2210/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesModules.cpp.obj 2025-07-24T03:58:32.4794054Z [2211/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesLinearAlgebra.cpp.obj 2025-07-24T03:58:38.0118670Z [2212/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesRandomness.cpp.obj 2025-07-24T03:58:38.7700750Z [2213/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesReduceOps.cpp.obj 2025-07-24T03:58:41.6508097Z [2214/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchedTensorImpl.cpp.obj 2025-07-24T03:58:48.4748566Z [2215/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\FunctionalizeInterpreter.cpp.obj 2025-07-24T03:58:52.3242830Z [2216/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\Interpreter.cpp.obj 2025-07-24T03:58:53.0955751Z [2217/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesScatterOps.cpp.obj 2025-07-24T03:58:54.2467502Z [2218/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchedFallback.cpp.obj 2025-07-24T03:58:59.4875079Z [2219/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesUnaryOps.cpp.obj 2025-07-24T03:59:00.2641835Z [2220/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesViews.cpp.obj 2025-07-24T03:59:04.3082241Z [2221/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\DynamicLayer.cpp.obj 2025-07-24T03:59:06.4415425Z [2222/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\PlumbingHelper.cpp.obj 2025-07-24T03:59:06.5834547Z [2223/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ATenGeneral.cpp.obj 2025-07-24T03:59:09.1673208Z [2224/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\TensorWrapper.cpp.obj 2025-07-24T03:59:10.2248267Z [2225/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\VmapInterpreter.cpp.obj 2025-07-24T03:59:10.6368140Z [2226/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\CachingHostAllocator.cpp.obj 2025-07-24T03:59:16.0646750Z [2227/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\record_function.cpp.obj 2025-07-24T03:59:16.4736156Z [2228/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\DeprecatedTypePropertiesRegistry.cpp.obj 2025-07-24T03:59:19.0518526Z [2229/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\BackendSelectFallbackKernel.cpp.obj 2025-07-24T03:59:19.1195777Z [2230/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\LegacyBatchingRegistrations.cpp.obj 2025-07-24T03:59:19.9159784Z [2231/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Dimname.cpp.obj 2025-07-24T03:59:20.9925143Z [2232/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\DeprecatedTypeProperties.cpp.obj 2025-07-24T03:59:22.2670192Z [2233/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\LegacyVmapTransforms.cpp.obj 2025-07-24T03:59:22.3024912Z [2234/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\PyTorchOperatorHacks.cpp.obj 2025-07-24T03:59:22.8335655Z [2235/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\GeneratorForPrivateuseone.cpp.obj 2025-07-24T03:59:24.4320378Z [2236/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Generator.cpp.obj 2025-07-24T03:59:25.7486100Z [2237/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NamedTensor.cpp.obj 2025-07-24T03:59:27.4297646Z [2238/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Formatting.cpp.obj 2025-07-24T03:59:28.8711049Z [2239/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NestedIntSymNodeImpl.cpp.obj 2025-07-24T03:59:29.3468469Z [2240/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\List.cpp.obj 2025-07-24T03:59:29.7928028Z [2241/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Dict.cpp.obj 2025-07-24T03:59:29.9229755Z [2242/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Range.cpp.obj 2025-07-24T03:59:30.6636445Z [2243/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\VmapModeRegistrations.cpp.obj 2025-07-24T03:59:34.2708016Z [2244/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\MetaFallbackKernel.cpp.obj 2025-07-24T03:59:35.7499479Z [2245/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Vitals.cpp.obj 2025-07-24T03:59:36.4470970Z [2246/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\VariableHooksInterface.cpp.obj 2025-07-24T03:59:38.1734479Z [2247/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NamedRegistrations.cpp.obj 2025-07-24T03:59:39.9966142Z [2248/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Tensor.cpp.obj 2025-07-24T03:59:40.9085210Z [2249/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\PythonOpRegistrationTrampoline.cpp.obj 2025-07-24T03:59:41.8069536Z [2250/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\PythonFallbackKernel.cpp.obj 2025-07-24T03:59:42.5636487Z [2251/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\blob.cpp.obj 2025-07-24T03:59:42.9466123Z [2252/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\VariableFallbackKernel.cpp.obj 2025-07-24T03:59:43.6715283Z [2253/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\TorchDispatchUtils.cpp.obj 2025-07-24T03:59:44.1671791Z [2254/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\ObservedOperators.cpp.obj 2025-07-24T03:59:48.2555740Z [2255/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\adaption.cpp.obj 2025-07-24T03:59:50.2498371Z [2256/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\class_type.cpp.obj 2025-07-24T03:59:51.8304470Z [2257/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\DispatchKeyExtractor.cpp.obj 2025-07-24T03:59:52.5939834Z [2258/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\boxing\KernelFunction.cpp.obj 2025-07-24T03:59:53.1820045Z [2259/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\Dispatcher.cpp.obj 2025-07-24T03:59:54.5582792Z [2260/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\custom_class.cpp.obj 2025-07-24T03:59:57.0555145Z [2261/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\OperatorEntry.cpp.obj 2025-07-24T03:59:58.2379314Z [2262/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\operator_name.cpp.obj 2025-07-24T04:00:00.4963970Z [2263/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dynamic_type.cpp.obj 2025-07-24T04:00:01.2395903Z [2264/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\register_symbols.cpp.obj 2025-07-24T04:00:02.1572949Z [2265/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\function_schema.cpp.obj 2025-07-24T04:00:06.3392580Z [2266/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\op_registration\op_registration.cpp.obj 2025-07-24T04:00:06.9102327Z [2267/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\op_registration\infer_schema.cpp.obj 2025-07-24T04:00:06.9291983Z [2268/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\library.cpp.obj 2025-07-24T04:00:07.1235792Z [2269/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ivalue.cpp.obj 2025-07-24T04:00:08.7843621Z [2270/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\error_report.cpp.obj 2025-07-24T04:00:10.6236897Z [2271/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\lexer.cpp.obj 2025-07-24T04:00:11.2976134Z [2272/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\type_factory.cpp.obj 2025-07-24T04:00:11.7327160Z [2273/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\strtod.cpp.obj 2025-07-24T04:00:14.0748603Z [2274/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\tensor_type.cpp.obj 2025-07-24T04:00:14.7492507Z [2275/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\union_type.cpp.obj 2025-07-24T04:00:15.8584553Z [2276/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\interned_strings.cpp.obj 2025-07-24T04:00:17.8308506Z [2277/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\type.cpp.obj 2025-07-24T04:00:20.7584075Z [2278/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\function_schema_parser.cpp.obj 2025-07-24T04:00:22.4348223Z [2279/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\source_range.cpp.obj 2025-07-24T04:00:22.5614270Z [2280/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveMaxPooling2d.cpp.obj 2025-07-24T04:00:24.1471631Z [2281/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\schema_type_parser.cpp.obj 2025-07-24T04:00:24.9318882Z [2282/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveAveragePooling3d.cpp.obj 2025-07-24T04:00:25.3209622Z [2283/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveAveragePooling.cpp.obj 2025-07-24T04:00:27.8052748Z [2284/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveMaxPooling3d.cpp.obj 2025-07-24T04:00:29.4140152Z [2285/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Activation.cpp.obj 2025-07-24T04:00:32.4986031Z [2286/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AutogradComposite.cpp.obj 2025-07-24T04:00:33.5157646Z [2287/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AffineGridGenerator.cpp.obj 2025-07-24T04:00:33.9269048Z [2288/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AmpKernels.cpp.obj 2025-07-24T04:00:35.7097276Z [2289/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AveragePool3d.cpp.obj 2025-07-24T04:00:35.9111144Z [2290/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AveragePool2d.cpp.obj 2025-07-24T04:00:37.4509113Z [2291/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BlasKernel.cpp.obj 2025-07-24T04:00:39.3583807Z [2292/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BatchLinearAlgebra.cpp.obj 2025-07-24T04:00:41.5879396Z [2293/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BinaryOps.cpp.obj 2025-07-24T04:00:44.1048921Z [2294/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BatchLinearAlgebraKernel.cpp.obj 2025-07-24T04:00:44.8932732Z [2295/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Blas.cpp.obj 2025-07-24T04:00:45.9610004Z [2296/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Bucketization.cpp.obj 2025-07-24T04:00:48.1366052Z [2297/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ComparisonUtils.cpp.obj 2025-07-24T04:00:49.9164168Z [2298/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\CPUFallback.cpp.obj 2025-07-24T04:00:51.1688874Z [2299/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\CPUBlas.cpp.obj 2025-07-24T04:00:51.4439732Z [2300/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ChanelShuffle.cpp.obj 2025-07-24T04:00:52.9019090Z [2301/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Col2Im.cpp.obj 2025-07-24T04:00:54.4672653Z [2302/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Constraints.cpp.obj 2025-07-24T04:00:59.6034888Z [2303/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionTBC.cpp.obj 2025-07-24T04:00:59.6232074Z [2304/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionMM2d.cpp.obj 2025-07-24T04:01:02.6712585Z [2305/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Correlation.cpp.obj 2025-07-24T04:01:03.2184585Z [2306/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionMM3d.cpp.obj 2025-07-24T04:01:04.5205406Z [2307/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Convolution.cpp.obj 2025-07-24T04:01:05.0535751Z [2308/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Cross.cpp.obj 2025-07-24T04:01:05.5187864Z [2309/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DispatchStub.cpp.obj 2025-07-24T04:01:05.5807358Z [2310/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DilatedMaxPool2d.cpp.obj 2025-07-24T04:01:08.3030428Z [2311/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Copy.cpp.obj 2025-07-24T04:01:14.7829363Z [2312/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DilatedMaxPool3d.cpp.obj 2025-07-24T04:01:16.0152203Z [2313/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Dropout.cpp.obj 2025-07-24T04:01:17.5260166Z [2314/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Embedding.cpp.obj 2025-07-24T04:01:17.5434901Z [2315/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Distributions.cpp.obj 2025-07-24T04:01:17.5486995Z [2316/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Distance.cpp.obj 2025-07-24T04:01:17.6748695Z [2317/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Fill.cpp.obj 2025-07-24T04:01:19.4325352Z [2318/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\EmbeddingBag.cpp.obj 2025-07-24T04:01:22.1412101Z [2319/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FractionalMaxPool2d.cpp.obj 2025-07-24T04:01:22.7307777Z [2320/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ForeachOpsKernels.cpp.obj 2025-07-24T04:01:27.2264476Z [2321/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FractionalMaxPool3d.cpp.obj 2025-07-24T04:01:27.5634683Z [2322/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FunctionOfAMatrixUtils.cpp.obj 2025-07-24T04:01:28.8500667Z [2323/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedAdagrad.cpp.obj 2025-07-24T04:01:29.0654057Z [2324/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedSGD.cpp.obj 2025-07-24T04:01:29.6544844Z [2325/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedAdam.cpp.obj 2025-07-24T04:01:31.3163837Z [2326/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\GatedLinearUnit.cpp.obj 2025-07-24T04:01:39.2469300Z [2327/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Histogram.cpp.obj 2025-07-24T04:01:40.3626316Z [2328/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Integration.cpp.obj 2025-07-24T04:01:40.7061281Z [2329/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Im2Col.cpp.obj 2025-07-24T04:01:40.9748413Z [2330/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\GridSampler.cpp.obj 2025-07-24T04:01:41.1874575Z [2331/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LegacyBatching.cpp.obj 2025-07-24T04:01:41.2388219Z [2332/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\IndexingUtils.cpp.obj 2025-07-24T04:01:41.2632821Z [2333/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Itertools.cpp.obj 2025-07-24T04:01:42.5966599Z [2334/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Lerp.cpp.obj 2025-07-24T04:01:50.5761373Z [2335/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossMultiLabelMargin.cpp.obj 2025-07-24T04:01:52.2983946Z [2336/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossMultiMargin.cpp.obj 2025-07-24T04:01:55.6386067Z [2337/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Loss.cpp.obj 2025-07-24T04:01:55.6474479Z [2338/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossNLL2d.cpp.obj 2025-07-24T04:01:55.9570015Z [2339/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Linear.cpp.obj 2025-07-24T04:01:56.1547281Z [2340/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossNLL.cpp.obj 2025-07-24T04:01:56.2737283Z [2341/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossCTC.cpp.obj 2025-07-24T04:01:56.9186785Z [2342/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LinearAlgebra.cpp.obj 2025-07-24T04:01:59.4074277Z [2343/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MetaTensor.cpp.obj 2025-07-24T04:02:04.3408661Z [2344/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MaxUnpooling.cpp.obj 2025-07-24T04:02:04.4891411Z [2345/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Memory.cpp.obj 2025-07-24T04:02:07.5081656Z [2346/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NNPACK.cpp.obj 2025-07-24T04:02:07.5330556Z [2347/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MaxPooling.cpp.obj 2025-07-24T04:02:08.2040475Z [2348/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveConvolutionTranspose3d.cpp.obj 2025-07-24T04:02:08.4013205Z [2349/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveConvolutionTranspose2d.cpp.obj 2025-07-24T04:02:08.7183241Z [2350/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveDilatedConvolution.cpp.obj 2025-07-24T04:02:12.9300193Z [2351/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PointwiseOps.cpp.obj 2025-07-24T04:02:15.8417797Z [2352/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NamedTensor.cpp.obj 2025-07-24T04:02:17.4453283Z [2353/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Onehot.cpp.obj 2025-07-24T04:02:19.6797901Z [2354/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PadNd.cpp.obj 2025-07-24T04:02:19.8023504Z [2355/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PackedSequence.cpp.obj 2025-07-24T04:02:20.1543140Z [2356/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PixelShuffle.cpp.obj 2025-07-24T04:02:20.2933197Z [2357/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NegateFallback.cpp.obj 2025-07-24T04:02:22.4375591Z [2358/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Normalization.cpp.obj 2025-07-24T04:02:29.1759540Z [2359/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Pooling.cpp.obj 2025-07-24T04:02:30.7517054Z [2360/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Pow.cpp.obj 2025-07-24T04:02:31.8791900Z [2361/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RangeFactories.cpp.obj 2025-07-24T04:02:31.9635849Z [2362/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReduceAllOps.cpp.obj 2025-07-24T04:02:32.2358303Z [2363/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReduceOps.cpp.obj 2025-07-24T04:02:32.8853986Z [2364/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\QuantizedLinear.cpp.obj 2025-07-24T04:02:35.4113485Z [2365/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReflectionPad.cpp.obj 2025-07-24T04:02:42.7537230Z [2366/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReplicationPadding.cpp.obj 2025-07-24T04:02:44.3091879Z [2367/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RNN.cpp.obj 2025-07-24T04:02:44.6294240Z [2368/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RowwisePrune.cpp.obj 2025-07-24T04:02:44.6296150Z [2369/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Repeat.cpp.obj 2025-07-24T04:02:45.2827375Z [2370/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Scalar.cpp.obj 2025-07-24T04:02:45.2978741Z [2371/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Resize.cpp.obj 2025-07-24T04:02:46.6383891Z [2372/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SegmentReduce.cpp.obj 2025-07-24T04:02:50.2062309Z [2373/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SobolEngineOps.cpp.obj 2025-07-24T04:02:53.9720616Z [2374/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SummaryOps.cpp.obj 2025-07-24T04:02:53.9861171Z [2375/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SoftMax.cpp.obj 2025-07-24T04:02:55.7274823Z [2376/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SobolEngineOpsUtils.cpp.obj 2025-07-24T04:02:57.5315419Z [2377/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SpectralOps.cpp.obj 2025-07-24T04:02:58.0025807Z [2378/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Sorting.cpp.obj 2025-07-24T04:03:03.5544417Z [2379/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorCompare.cpp.obj 2025-07-24T04:03:04.2813770Z [2380/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorFactories.cpp.obj 2025-07-24T04:03:07.2946419Z [2381/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorIteratorReduce.cpp.obj 2025-07-24T04:03:07.9268918Z [2382/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorProperties.cpp.obj 2025-07-24T04:03:09.3613070Z [2383/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SparseTensorUtils.cpp.obj 2025-07-24T04:03:12.4673115Z [2384/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorShape.cpp.obj 2025-07-24T04:03:14.3627612Z [2385/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unfold2d.cpp.obj 2025-07-24T04:03:14.4428036Z [2386/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorAdvancedIndexing.cpp.obj 2025-07-24T04:03:15.3549805Z [2387/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorTransformations.cpp.obj 2025-07-24T04:03:19.3773022Z [2388/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TestOps.cpp.obj 2025-07-24T04:03:21.7605139Z [2389/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TriangularOps.cpp.obj 2025-07-24T04:03:22.2903221Z [2390/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TypeProperties.cpp.obj 2025-07-24T04:03:22.5118055Z [2391/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorConversions.cpp.obj 2025-07-24T04:03:24.2685860Z [2392/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UnaryOps.cpp.obj 2025-07-24T04:03:25.0873126Z [2393/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unfold3d.cpp.obj 2025-07-24T04:03:26.2204037Z [2394/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSample.cpp.obj 2025-07-24T04:03:27.8067496Z [2395/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UnfoldBackward.cpp.obj 2025-07-24T04:03:32.7085268Z [2396/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleBicubic2d.cpp.obj 2025-07-24T04:03:32.8276941Z [2397/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleLinear1d.cpp.obj 2025-07-24T04:03:32.9234073Z [2398/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unique.cpp.obj 2025-07-24T04:03:36.7092777Z [2399/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleBilinear2d.cpp.obj 2025-07-24T04:03:37.3043585Z [2400/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest3d.cpp.obj 2025-07-24T04:03:37.7966284Z [2401/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest1d.cpp.obj 2025-07-24T04:03:39.9963466Z [2402/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest2d.cpp.obj 2025-07-24T04:03:41.0680655Z [2403/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleTrilinear3d.cpp.obj 2025-07-24T04:03:43.7728571Z [2404/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\group_norm.cpp.obj 2025-07-24T04:03:43.9269759Z [2405/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\prim_native_functions.cpp.obj 2025-07-24T04:03:44.1633617Z [2406/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\WeightNorm.cpp.obj 2025-07-24T04:03:46.2844072Z [2407/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\VariableMethodStubs.cpp.obj 2025-07-24T04:03:48.1267465Z [2408/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\layer_norm.cpp.obj 2025-07-24T04:03:48.2042800Z [2409/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\verbose_wrapper.cpp.obj 2025-07-24T04:03:51.2560728Z [2410/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\library.cpp.obj 2025-07-24T04:03:55.1199695Z [2411/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\fbgemm_utils.cpp.obj 2025-07-24T04:03:55.1657828Z [2412/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear.cpp.obj 2025-07-24T04:03:57.1897941Z [2413/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_dynamic.cpp.obj 2025-07-24T04:04:00.0198830Z [2414/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_prepack.cpp.obj 2025-07-24T04:04:02.5510810Z [2415/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_unpack.cpp.obj 2025-07-24T04:04:03.5773993Z [2416/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\FlattenIndicesKernel.cpp.obj 2025-07-24T04:04:03.9710681Z [2417/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\ParamUtils.cpp.obj 2025-07-24T04:04:05.9118128Z [2418/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SoftMax.cpp.obj 2025-07-24T04:04:08.3712494Z [2419/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_deserialize.cpp.obj 2025-07-24T04:04:12.2283326Z [2420/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBlas.cpp.obj 2025-07-24T04:04:13.7243206Z [2421/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBinaryOpIntersectionKernel.cpp.obj 2025-07-24T04:04:16.2647794Z [2422/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBlasImpl.cpp.obj 2025-07-24T04:04:16.6376243Z [2423/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseCsrTensor.cpp.obj 2025-07-24T04:04:18.2101034Z [2424/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_serialize.cpp.obj 2025-07-24T04:04:19.3816868Z [2425/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseFactories.cpp.obj 2025-07-24T04:04:20.6484595Z [2426/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseCsrTensorMath.cpp.obj 2025-07-24T04:04:27.0731640Z [2427/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseMatMul.cpp.obj 2025-07-24T04:04:27.4742232Z [2428/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseUnaryOps.cpp.obj 2025-07-24T04:04:29.5153455Z [2429/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\ValidateCompressedIndicesKernel.cpp.obj 2025-07-24T04:04:30.0355411Z [2430/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseTensor.cpp.obj 2025-07-24T04:04:31.7607286Z [2431/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseTensorMath.cpp.obj 2025-07-24T04:04:39.6542882Z [2432/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorAliases.cpp.obj 2025-07-24T04:04:40.8320732Z [2433/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorBinaryOps.cpp.obj 2025-07-24T04:04:43.6421946Z [2434/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorBackward.cpp.obj 2025-07-24T04:04:48.0910022Z [2435/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\AffineQuantizer.cpp.obj 2025-07-24T04:04:49.1618491Z [2436/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorFactories.cpp.obj 2025-07-24T04:04:49.9402746Z [2437/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorTransformerFunctions.cpp.obj 2025-07-24T04:04:51.1952560Z [2438/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\AffineQuantizerBase.cpp.obj 2025-07-24T04:04:51.6458677Z [2439/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorUtils.cpp.obj 2025-07-24T04:04:52.4665755Z [2440/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorMatmul.cpp.obj 2025-07-24T04:04:52.8508068Z [2441/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorMath.cpp.obj 2025-07-24T04:04:57.0884098Z [2442/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorUnaryOps.cpp.obj 2025-07-24T04:04:57.1542848Z [2443/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ACLUtils.cpp.obj 2025-07-24T04:05:07.3521972Z [2444/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\FakeQuantPerChannelAffine.cpp.obj 2025-07-24T04:05:09.2957872Z [2445/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\Copy.cpp.obj 2025-07-24T04:05:10.2406057Z [2446/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AdaptiveAveragePooling.cpp.obj 2025-07-24T04:05:12.0843788Z [2447/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorCompare.cpp.obj 2025-07-24T04:05:12.3973066Z [2448/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\QTensor.cpp.obj 2025-07-24T04:05:12.6620061Z [2449/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\FakeQuantPerTensorAffine.cpp.obj 2025-07-24T04:05:13.1110827Z [2450/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorAdvancedIndexing.cpp.obj 2025-07-24T04:05:19.5279946Z [2451/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorFactories.cpp.obj 2025-07-24T04:05:19.9767056Z [2452/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AveragePool2d.cpp.obj 2025-07-24T04:05:20.4814718Z [2453/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AveragePool3d.cpp.obj 2025-07-24T04:05:22.5496242Z [2454/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ChannelShuffle.cpp.obj 2025-07-24T04:05:22.7940094Z [2455/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\RuyUtils.cpp.obj 2025-07-24T04:05:23.4268080Z [2456/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\BinaryOps.cpp.obj 2025-07-24T04:05:23.5976057Z [2457/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\IntReprQuant.cpp.obj 2025-07-24T04:05:27.3753760Z [2458/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\MakePerTensorQuantizedTensor.cpp.obj 2025-07-24T04:05:32.1917829Z [2459/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\LinearUnpackImpl.cpp.obj 2025-07-24T04:05:32.9266843Z [2460/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ReduceOps.cpp.obj 2025-07-24T04:05:35.1080947Z [2461/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Sorting.cpp.obj 2025-07-24T04:05:35.3411709Z [2462/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Normalization.cpp.obj 2025-07-24T04:05:35.8725030Z [2463/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\TensorOperators.cpp.obj 2025-07-24T04:05:36.7112367Z [2464/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Pooling.cpp.obj 2025-07-24T04:05:36.7698436Z [2465/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\init_qnnpack.cpp.obj 2025-07-24T04:05:40.4531096Z [2466/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\TensorShape.cpp.obj 2025-07-24T04:05:42.9241254Z [2467/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleBilinear2d.cpp.obj 2025-07-24T04:05:43.7027609Z [2468/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleNearest2d.cpp.obj 2025-07-24T04:05:45.4676610Z [2469/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\fused_obs_fake_quant.cpp.obj 2025-07-24T04:05:45.5367471Z [2470/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleNearest3d.cpp.obj 2025-07-24T04:05:49.6355802Z [2471/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qclamp.cpp.obj 2025-07-24T04:05:55.5659403Z [2472/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\fbgemm_utils.cpp.obj 2025-07-24T04:05:57.3033884Z [2473/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\XnnpackUtils.cpp.obj 2025-07-24T04:05:59.8885483Z [2474/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_dynamic.cpp.obj 2025-07-24T04:06:02.0250034Z [2475/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qelu.cpp.obj 2025-07-24T04:06:02.0292427Z [2476/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_prepack.cpp.obj 2025-07-24T04:06:07.1830996Z [2477/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv.cpp.obj 2025-07-24T04:06:10.7990971Z [2478/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qgelu.cpp.obj 2025-07-24T04:06:11.8589779Z [2479/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qhardsigmoid.cpp.obj 2025-07-24T04:06:16.0494767Z [2480/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag_prepack.cpp.obj 2025-07-24T04:06:16.3260200Z [2481/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qdropout.cpp.obj 2025-07-24T04:06:16.4265555Z [2482/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag_unpack.cpp.obj 2025-07-24T04:06:16.9137462Z [2483/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag.cpp.obj 2025-07-24T04:06:21.6056228Z [2484/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_unpack_impl.cpp.obj 2025-07-24T04:06:25.0652302Z [2485/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qhardswish.cpp.obj 2025-07-24T04:06:26.8146703Z [2486/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qnormalization.cpp.obj 2025-07-24T04:06:32.9499605Z [2487/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear_dynamic.cpp.obj 2025-07-24T04:06:33.8159289Z [2488/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear.cpp.obj 2025-07-24T04:06:35.1602283Z [2489/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qmul.cpp.obj 2025-07-24T04:06:36.5950614Z [2490/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear_prepack.cpp.obj 2025-07-24T04:06:40.5340440Z [2491/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qrelu.cpp.obj 2025-07-24T04:06:41.9680068Z [2492/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qsigmoid.cpp.obj 2025-07-24T04:06:42.1035830Z [2493/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qtanh.cpp.obj 2025-07-24T04:06:42.1697602Z [2494/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\MklAllocationHelper.cpp.obj 2025-07-24T04:06:45.1708444Z [2495/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qthreshold.cpp.obj 2025-07-24T04:06:45.6409611Z [2496/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\LinearAlgebra.cpp.obj 2025-07-24T04:06:46.2290715Z [2497/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qmatmul.cpp.obj 2025-07-24T04:06:50.8479495Z [2498/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\library.cpp.obj 2025-07-24T04:06:53.4424547Z [2499/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qsoftmax.cpp.obj 2025-07-24T04:06:53.8678943Z [2500/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SparseBlasImpl.cpp.obj 2025-07-24T04:06:56.5497718Z [2501/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SpectralOps.cpp.obj 2025-07-24T04:06:57.8999371Z [2502/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\qconv_unpack.cpp.obj 2025-07-24T04:06:58.6476576Z [2503/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SparseCsrLinearAlgebra.cpp.obj 2025-07-24T04:07:00.2538827Z [2504/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\BinaryOps.cpp.obj 2025-07-24T04:07:02.6891760Z [2505/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\IDeepRegistration.cpp.obj 2025-07-24T04:07:04.4260673Z [2506/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Copy.cpp.obj 2025-07-24T04:07:08.8639010Z [2507/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Gelu.cpp.obj 2025-07-24T04:07:09.8299618Z [2508/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\qlinear_unpack.cpp.obj 2025-07-24T04:07:13.2325056Z [2509/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MKLDNNCommon.cpp.obj 2025-07-24T04:07:15.1151990Z [2510/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Conv.cpp.obj 2025-07-24T04:07:17.0945243Z [2511/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Linear.cpp.obj 2025-07-24T04:07:20.7267446Z [2512/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MkldnnTensorMath.cpp.obj 2025-07-24T04:07:22.2172220Z [2513/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Matmul.cpp.obj 2025-07-24T04:07:24.8111730Z [2514/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\ConvPrepack.cpp.obj 2025-07-24T04:07:26.2775165Z [2515/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MKLDNNConversions.cpp.obj 2025-07-24T04:07:27.0390763Z [2516/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Normalization.cpp.obj 2025-07-24T04:07:30.5807358Z [2517/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Pooling.cpp.obj 2025-07-24T04:07:34.0566599Z [2518/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\SoftMax.cpp.obj 2025-07-24T04:07:34.6738371Z [2519/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\TensorFactories.cpp.obj 2025-07-24T04:07:36.2303135Z [2520/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Relu.cpp.obj 2025-07-24T04:07:38.6708144Z [2521/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\OpContext.cpp.obj 2025-07-24T04:07:38.7962297Z [2522/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\TensorShape.cpp.obj 2025-07-24T04:07:45.5978951Z [2523/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\UnaryOps.cpp.obj 2025-07-24T04:07:47.2139839Z [2524/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\RegisterMkldnnOpContextClass.cpp.obj 2025-07-24T04:07:48.2299845Z [2525/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Prelu.cpp.obj 2025-07-24T04:07:49.0787283Z [2526/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Utils.cpp.obj 2025-07-24T04:07:49.1899007Z [2527/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\attention.cpp.obj 2025-07-24T04:07:51.0878780Z [2528/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\RNN.cpp.obj 2025-07-24T04:07:52.9348997Z [2529/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Activation.cpp.obj 2025-07-24T04:07:53.8124221Z [2530/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\AveragePooling.cpp.obj 2025-07-24T04:07:53.8636071Z [2531/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\ChannelShuffle.cpp.obj 2025-07-24T04:07:54.7456858Z [2532/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\sdp_utils_cpp.cpp.obj 2025-07-24T04:07:54.9893180Z [2533/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Init.cpp.obj 2025-07-24T04:07:55.3585945Z [2534/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Shim.cpp.obj 2025-07-24T04:07:56.2699279Z [2535/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\utils\Factory.cpp.obj 2025-07-24T04:07:58.1702478Z [2536/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Convolution.cpp.obj 2025-07-24T04:07:58.3058951Z [2537/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\transformer.cpp.obj 2025-07-24T04:08:00.0308507Z [2538/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\MaxPooling.cpp.obj 2025-07-24T04:08:03.0516093Z [2539/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\OpContext.cpp.obj 2025-07-24T04:08:03.7826320Z [2540/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Linear.cpp.obj 2025-07-24T04:08:07.3579849Z [2541/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\RegisterOpContextClass.cpp.obj 2025-07-24T04:08:10.9019919Z [2542/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CompositeViewCopyKernels.cpp.obj 2025-07-24T04:08:13.1251075Z [2543/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Functions.cpp.obj 2025-07-24T04:08:22.2024026Z [2544/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterBackendSelect.cpp.obj 2025-07-24T04:08:44.1515266Z [2545/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_0.cpp.obj 2025-07-24T04:08:46.0014602Z [2546/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_1.cpp.obj 2025-07-24T04:09:00.6407088Z [2547/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_4.cpp.obj 2025-07-24T04:09:03.6208767Z [2548/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_3.cpp.obj 2025-07-24T04:09:07.6619463Z [2549/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_2.cpp.obj 2025-07-24T04:09:12.0538619Z [2550/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeImplicitAutogradNestedTensor_0.cpp.obj 2025-07-24T04:09:19.8507981Z [2551/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeExplicitAutograd_0.cpp.obj 2025-07-24T04:09:27.7215141Z [2552/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_0.cpp.obj 2025-07-24T04:09:35.8390352Z [2553/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeExplicitAutogradNonFunctional_0.cpp.obj 2025-07-24T04:09:40.7000256Z [2554/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_2.cpp.obj 2025-07-24T04:09:41.3935538Z [2555/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_1.cpp.obj 2025-07-24T04:09:41.9930427Z [2556/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_3.cpp.obj 2025-07-24T04:09:58.9379899Z [2557/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterMkldnnCPU_0.cpp.obj 2025-07-24T04:10:05.0983870Z [2558/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_0.cpp.obj 2025-07-24T04:10:05.1476609Z [2559/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeImplicitAutograd_0.cpp.obj 2025-07-24T04:10:08.0815404Z [2560/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorCPU_0.cpp.obj 2025-07-24T04:10:14.9555675Z [2561/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_1.cpp.obj 2025-07-24T04:10:20.3191226Z [2562/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_2.cpp.obj 2025-07-24T04:10:24.0533241Z [2563/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_3.cpp.obj 2025-07-24T04:10:25.5994642Z [2564/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorXPU_0.cpp.obj 2025-07-24T04:10:33.0228485Z [2565/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterMeta_0.cpp.obj 2025-07-24T04:10:33.6279289Z [2566/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorMeta_0.cpp.obj 2025-07-24T04:10:37.2874385Z [2567/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterQuantizedMeta_0.cpp.obj 2025-07-24T04:10:37.9513310Z [2568/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSchema.cpp.obj 2025-07-24T04:10:39.2776217Z [2569/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterQuantizedCPU_0.cpp.obj 2025-07-24T04:10:41.1244145Z [2570/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorHPU_0.cpp.obj 2025-07-24T04:10:47.4610314Z [2571/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCPU_0.cpp.obj 2025-07-24T04:10:47.8295988Z [2572/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrCPU_0.cpp.obj 2025-07-24T04:10:48.8297299Z [2573/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrMPS_0.cpp.obj 2025-07-24T04:10:51.9633014Z [2574/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrXPU_0.cpp.obj 2025-07-24T04:10:53.0747675Z [2575/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseMPS_0.cpp.obj 2025-07-24T04:10:53.5116943Z [2576/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPU_add.cpp.obj 2025-07-24T04:10:56.2694283Z [2577/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseMeta_0.cpp.obj 2025-07-24T04:10:58.0460893Z [2578/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\TensorMethods.cpp.obj 2025-07-24T04:10:59.2827499Z [2579/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrMeta_0.cpp.obj 2025-07-24T04:10:59.5333561Z [2580/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseXPU_0.cpp.obj 2025-07-24T04:10:59.5507877Z [2581/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\quantized\QTensorImpl.cpp.obj 2025-07-24T04:11:00.0948306Z [2582/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_model_loader.cpp.obj 2025-07-24T04:11:00.8813837Z [2583/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_wrapper.cpp.obj 2025-07-24T04:11:03.6508650Z [2584/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterZeroTensor_0.cpp.obj 2025-07-24T04:11:04.5026278Z [2585/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:04.7193552Z [2586/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:06.9041341Z [2587/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:07.5067489Z [2588/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:12.2230731Z [2589/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:14.9864849Z [2590/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\quantized\Quantizer.cpp.obj 2025-07-24T04:11:21.5574876Z [2591/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:21.7338036Z [2592/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:22.5113608Z [2593/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_bind.cpp.obj 2025-07-24T04:11:22.6213409Z [2594/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:24.2729076Z [2595/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_register.cpp.obj 2025-07-24T04:11:25.1721005Z [2596/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:25.3945008Z [2597/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:29.3307410Z [2598/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:29.6953355Z [2599/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:32.5319062Z [2600/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ATenOpList.cpp.obj 2025-07-24T04:11:35.7597918Z [2601/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:35.8262381Z [2602/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:36.6455710Z [2603/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:37.0773738Z [2604/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:39.6032090Z [2605/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:39.8560284Z [2606/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:41.1751375Z [2607/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:44.6725981Z [2608/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:48.9411662Z [2609/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:53.8549102Z [2610/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:59.3240265Z [2611/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:11:59.3397254Z [2612/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:00.0454975Z [2613/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:00.7915866Z [2614/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:05.3005794Z [2615/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:06.0680693Z [2616/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:06.3497567Z [2617/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:06.4872542Z [2618/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:09.7075420Z [2619/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:14.1117526Z [2620/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:14.7926485Z [2621/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:16.9058966Z [2622/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:17.2199808Z [2623/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:17.9338629Z [2624/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:18.9908569Z [2625/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:19.8143124Z [2626/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:20.9084366Z [2627/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:22.1146994Z [2628/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:24.4712490Z [2629/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:26.8425284Z [2630/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:26.8975666Z [2631/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:28.9323583Z [2632/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:29.5589815Z [2633/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:31.9285931Z [2634/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:32.2678162Z [2635/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:32.8158093Z [2636/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:32.9813768Z [2637/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:38.5727135Z [2638/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:38.7233740Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): warning C4180: qualifier applied to function type has no meaning; ignored 2025-07-24T04:12:38.7259892Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): note: the template instantiation context (the oldest one first) is 2025-07-24T04:12:38.7385419Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(422): note: see reference to class template instantiation 'at::native::`anonymous-namespace'::Dist' being compiled 2025-07-24T04:12:38.7389110Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(190): note: while compiling class template member function 'void at::native::`anonymous-namespace'::Dist::apply_pdist(at::Tensor &,const at::Tensor &,const scalar_t)' 2025-07-24T04:12:38.7403729Z with 2025-07-24T04:12:38.7404245Z [ 2025-07-24T04:12:38.7404871Z scalar_t=scalar_t 2025-07-24T04:12:38.7407868Z ] 2025-07-24T04:12:38.7410341Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see the first reference to 'at::native::`anonymous-namespace'::Dist::apply_pdist' in 'at::native::`anonymous-namespace'::pdist_forward_kernel_impl::::()::::operator ()' 2025-07-24T04:12:38.7417449Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(192): note: see reference to function template instantiation 'void at::native::`anonymous-namespace'::Dist::run_parallel_pdist::zdist_calc>>(at::Tensor &,const at::Tensor &,const scalar_t)' being compiled 2025-07-24T04:12:38.7422910Z with 2025-07-24T04:12:38.7423396Z [ 2025-07-24T04:12:38.7423860Z scalar_t=scalar_t 2025-07-24T04:12:38.7424382Z ] 2025-07-24T04:12:38.7429418Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(175): note: see reference to function template instantiation 'scalar_t at::vec::map2_reduce_all::run_parallel_pdist::::()::,data_t(const data_t &,const data_t &),0>(const MapOp &,ReduceOp (__cdecl &),const scalar_t *,const scalar_t *,int64_t)' being compiled 2025-07-24T04:12:38.7510615Z with 2025-07-24T04:12:38.7511491Z [ 2025-07-24T04:12:38.7512458Z scalar_t=scalar_t, 2025-07-24T04:12:38.7513476Z data_t=at::vec::DEFAULT::Vectorized, 2025-07-24T04:12:38.7515701Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-07-24T04:12:38.7518259Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-07-24T04:12:38.7519946Z ] 2025-07-24T04:12:38.7522368Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(299): note: see reference to function template instantiation 'scalar_t at::vec::vec_reduce_all(Op (__cdecl &),const at::vec::DEFAULT::Vectorized &)' being compiled 2025-07-24T04:12:38.7525125Z with 2025-07-24T04:12:38.7525812Z [ 2025-07-24T04:12:38.7526314Z scalar_t=float, 2025-07-24T04:12:38.7527901Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &), 2025-07-24T04:12:38.7530146Z Op=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-07-24T04:12:38.7531610Z ] 2025-07-24T04:12:39.1639049Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(176): note: see reference to class template instantiation 'at::vec::VecReduceAllSIMD' being compiled 2025-07-24T04:12:39.1641009Z with 2025-07-24T04:12:39.1642628Z [ 2025-07-24T04:12:39.1644102Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-07-24T04:12:39.1645215Z ] 2025-07-24T04:12:39.1646089Z [2639/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:45.6777641Z [2640/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:46.2360547Z [2641/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:46.2989367Z [2642/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:49.3364647Z [2643/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:51.4595524Z [2644/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:52.3295757Z [2645/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:54.0111178Z [2646/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:58.6268365Z [2647/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:05.0902474Z [2648/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:05.3678418Z [2649/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\mkl\SparseBlas.cpp.obj 2025-07-24T04:13:05.4363280Z [2650/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:07.5008246Z [2651/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\core\common.cc.obj 2025-07-24T04:13:07.9137399Z [2652/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:09.9584986Z [2653/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:13.8287653Z [2654/7174] Building C object caffe2\CMakeFiles\torch_cpu.dir\__\third_party\miniz-3.0.2\miniz.c.obj 2025-07-24T04:13:14.4309226Z C:\actions-runner\_work\pytorch\pytorch\third_party\miniz-3.0.2\miniz.c(3137): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-07-24T04:13:14.4311477Z C:\actions-runner\_work\pytorch\pytorch\third_party\miniz-3.0.2\miniz.c(3137): note: 'WIN32_LEAN_AND_MEAN' previously declared on the command line 2025-07-24T04:13:14.4313453Z [2655/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:15.3926784Z [2656/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\istream_adapter.cc.obj 2025-07-24T04:13:15.7065970Z [2657/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\crc.cc.obj 2025-07-24T04:13:15.7916580Z [2658/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\read_adapter_interface.cc.obj 2025-07-24T04:13:17.0577442Z [2659/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\file_adapter.cc.obj 2025-07-24T04:13:18.3928567Z [2660/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\inline_container.cc.obj 2025-07-24T04:13:18.7149061Z [2661/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\vulkan\Context.cpp.obj 2025-07-24T04:13:18.8013184Z [2662/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\thread_pool_guard.cpp.obj 2025-07-24T04:13:19.1782697Z [2663/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\string_utils.cc.obj 2025-07-24T04:13:21.6454139Z [2664/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\pthreadpool-cpp.cc.obj 2025-07-24T04:13:22.3633051Z [2665/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\proto_wrap.cc.obj 2025-07-24T04:13:22.6283149Z [2666/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:22.6286080Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(522): warning C4333: '>>': right shift by too large amount, data loss 2025-07-24T04:13:22.6289116Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_base.h(1194): warning C4333: '>>': right shift by too large amount, data loss 2025-07-24T04:13:22.6290940Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_base.h(1194): note: the template instantiation context (the oldest one first) is 2025-07-24T04:13:22.7760865Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(522): note: see reference to function template instantiation 'at::vec::DEFAULT::Vectorized at::vec::DEFAULT::operator >>(const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &)' being compiled 2025-07-24T04:13:22.7764758Z [2667/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\ThreadPool.cc.obj 2025-07-24T04:13:22.9281002Z [2668/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:23.1927854Z [2669/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\metal\Context.cpp.obj 2025-07-24T04:13:29.9353158Z [2670/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ViewFuncs.cpp.obj 2025-07-24T04:14:21.0044505Z [2671/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\Functions.cpp.obj 2025-07-24T04:14:31.0468642Z [2672/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_1.cpp.obj 2025-07-24T04:14:43.9240183Z [2673/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_0.cpp.obj 2025-07-24T04:14:46.8266024Z [2674/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_0.cpp.obj 2025-07-24T04:14:47.3120534Z [2675/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_4.cpp.obj 2025-07-24T04:14:50.0748321Z [2676/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_1.cpp.obj 2025-07-24T04:14:50.4634517Z [2677/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_2.cpp.obj 2025-07-24T04:14:51.7558895Z [2678/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_3.cpp.obj 2025-07-24T04:14:58.4018710Z [2679/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\generated\c_shim_cpu.cpp.obj 2025-07-24T04:15:01.2598977Z [2680/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\RegisterAutogradLazy.cpp.obj 2025-07-24T04:15:18.9571013Z [2681/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ADInplaceOrViewType_0.cpp.obj 2025-07-24T04:15:21.3184009Z [2682/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ADInplaceOrViewType_1.cpp.obj 2025-07-24T04:15:36.7413507Z [2683/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\RegisterLazy.cpp.obj 2025-07-24T04:15:37.1270091Z [2684/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_2.cpp.obj 2025-07-24T04:15:37.8291022Z [2685/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_4.cpp.obj 2025-07-24T04:15:41.0191949Z [2686/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\anomaly_mode.cpp.obj 2025-07-24T04:15:41.3438336Z [2687/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_3.cpp.obj 2025-07-24T04:15:42.6680585Z [2688/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd_meta.cpp.obj 2025-07-24T04:15:44.2988248Z [2689/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd.cpp.obj 2025-07-24T04:15:46.6627065Z [2690/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\forward_grad.cpp.obj 2025-07-24T04:15:50.3192739Z [2691/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\cpp_hook.cpp.obj 2025-07-24T04:15:51.1897018Z [2692/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd_not_implemented_fallback.cpp.obj 2025-07-24T04:15:55.8746163Z [2693/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\engine.cpp.obj 2025-07-24T04:16:04.4646971Z [2694/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\utils.cpp.obj 2025-07-24T04:16:08.5824122Z [2695/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\custom_function.cpp.obj 2025-07-24T04:16:08.7188847Z [2696/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\function.cpp.obj 2025-07-24T04:16:12.4341999Z [2697/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\accumulate_grad.cpp.obj 2025-07-24T04:16:13.9038416Z [2698/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\LazyNativeFunctions.cpp.obj 2025-07-24T04:16:16.9370982Z [2699/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\input_metadata.cpp.obj 2025-07-24T04:16:20.0040159Z [2700/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\tensor.cpp.obj 2025-07-24T04:16:20.4027257Z [2701/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\jit_decomp_interface.cpp.obj 2025-07-24T04:16:21.3919167Z [2702/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\input_buffer.cpp.obj 2025-07-24T04:16:21.5881505Z [2703/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\utils\warnings.cpp.obj 2025-07-24T04:16:25.8783942Z [2704/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\profiler_kineto.cpp.obj 2025-07-24T04:16:26.0661532Z [2705/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\basic_ops.cpp.obj 2025-07-24T04:16:31.3291644Z [2706/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\saved_variable.cpp.obj 2025-07-24T04:16:31.3871639Z [2707/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\record_function_ops.cpp.obj 2025-07-24T04:16:33.5946943Z [2708/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\variable_info.cpp.obj 2025-07-24T04:16:34.5075624Z [2709/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\dynamo\compiled_autograd.cpp.obj 2025-07-24T04:16:36.7098013Z [2710/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\profiler_legacy.cpp.obj 2025-07-24T04:16:39.6965389Z [2711/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner_cpu.cpp.obj 2025-07-24T04:16:40.2601466Z [2712/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\mkldnn_tensor.cpp.obj 2025-07-24T04:16:45.9428416Z [2713/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_package\model_package_loader.cpp.obj 2025-07-24T04:16:46.9629322Z [2714/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner.cpp.obj 2025-07-24T04:16:55.4913861Z [2715/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\shim_common.cpp.obj 2025-07-24T04:16:56.1181036Z [2716/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\tensor_converter.cpp.obj 2025-07-24T04:16:57.2356879Z [2717/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\oss_proxy_executor.cpp.obj 2025-07-24T04:16:57.2844612Z [2718/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\variable.cpp.obj 2025-07-24T04:17:07.7384852Z [2719/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\shim_cpu.cpp.obj 2025-07-24T04:17:12.5636348Z [2720/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_debug_handler.cpp.obj 2025-07-24T04:17:14.1115526Z [2721/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\module.cpp.obj 2025-07-24T04:17:17.2934738Z [2722/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\object.cpp.obj 2025-07-24T04:17:17.8731696Z [2723/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\inductor_ops.cpp.obj 2025-07-24T04:17:18.0126980Z [2724/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_debug_info.cpp.obj 2025-07-24T04:17:20.9467217Z [2725/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_detail.cpp.obj 2025-07-24T04:17:25.6613991Z [2726/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_interface.cpp.obj 2025-07-24T04:17:28.3395562Z [2727/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\function_impl.cpp.obj 2025-07-24T04:17:29.8708442Z [2728/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_resolver.cpp.obj 2025-07-24T04:17:47.8893740Z [2729/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\codegen.cpp.obj 2025-07-24T04:17:48.7452409Z [2730/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\canonicalize_modified_loop.cpp.obj 2025-07-24T04:17:48.7974464Z [2731/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\compiler.cpp.obj 2025-07-24T04:17:51.1934266Z [2732/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\edit_distance.cpp.obj 2025-07-24T04:17:51.3893061Z [2733/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\builtin_functions.cpp.obj 2025-07-24T04:17:52.5155690Z [2734/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\fallback.cpp.obj 2025-07-24T04:17:52.8956227Z [2735/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\executor.cpp.obj 2025-07-24T04:17:53.9974107Z [2736/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\name_mangler.cpp.obj 2025-07-24T04:17:54.7165584Z [2737/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\interface.cpp.obj 2025-07-24T04:17:56.8330384Z [2738/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\parser.cpp.obj 2025-07-24T04:18:03.5968748Z [2739/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\kernel_cache.cpp.obj 2025-07-24T04:18:04.6955395Z [2740/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\inline_loop_condition.cpp.obj 2025-07-24T04:18:05.2123152Z [2741/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\exit_transforms.cpp.obj 2025-07-24T04:18:11.7768043Z [2742/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\convert_to_ssa.cpp.obj 2025-07-24T04:18:15.6095928Z [2743/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\schema_matching.cpp.obj 2025-07-24T04:18:17.1801387Z [2744/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\ir_emitter.cpp.obj 2025-07-24T04:18:22.0751348Z [2745/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\script_type_parser.cpp.obj 2025-07-24T04:18:24.9198853Z [2746/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\sugared_value.cpp.obj 2025-07-24T04:18:27.4834081Z [2747/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\tracer.cpp.obj 2025-07-24T04:18:28.6681144Z [2748/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\versioned_symbols.cpp.obj 2025-07-24T04:18:31.3557510Z [2749/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\attributes.cpp.obj 2025-07-24T04:18:34.3541252Z [2750/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\alias_analysis.cpp.obj 2025-07-24T04:18:36.4549841Z [2751/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\graph_utils.cpp.obj 2025-07-24T04:18:39.6881328Z [2752/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\scope.cpp.obj 2025-07-24T04:18:43.4558959Z [2753/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\ir.cpp.obj 2025-07-24T04:18:43.4883870Z [2754/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\irparser.cpp.obj 2025-07-24T04:18:44.9962096Z [2755/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\node_hashing.cpp.obj 2025-07-24T04:18:52.7434957Z [2756/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\subgraph_matcher.cpp.obj 2025-07-24T04:18:56.8846053Z [2757/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\runtime_compatibility.cpp.obj 2025-07-24T04:18:58.3857207Z [2758/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\type_hashing.cpp.obj 2025-07-24T04:18:58.4061281Z [2759/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\constants.cpp.obj 2025-07-24T04:19:02.1569256Z [2760/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\jit_opt_limit.cpp.obj 2025-07-24T04:19:03.3355446Z [2761/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\jit_log.cpp.obj 2025-07-24T04:19:04.0072472Z [2762/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\model_compatibility.cpp.obj 2025-07-24T04:19:13.1721925Z [2763/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\function.cpp.obj 2025-07-24T04:19:16.1208430Z [2764/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\interpreter.cpp.obj 2025-07-24T04:19:16.3280570Z [2765/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\backend.cpp.obj 2025-07-24T04:19:17.0300802Z [2766/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\observer.cpp.obj 2025-07-24T04:19:17.7214153Z [2767/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\registry.cpp.obj 2025-07-24T04:19:17.9931926Z [2768/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\import.cpp.obj 2025-07-24T04:19:20.4394864Z [2769/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\module.cpp.obj 2025-07-24T04:19:22.5143298Z [2770/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\context.cpp.obj 2025-07-24T04:19:26.7297826Z [2771/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\parse_bytecode.cpp.obj 2025-07-24T04:19:29.1221514Z [2772/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\prim_ops_registery.cpp.obj 2025-07-24T04:19:29.1468917Z [2773/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\parse_operators.cpp.obj 2025-07-24T04:19:30.9490824Z [2774/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\flatbuffer_loader.cpp.obj 2025-07-24T04:19:38.5715026Z [2775/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\promoted_prim_ops.cpp.obj 2025-07-24T04:19:43.7426473Z [2776/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\type_parser.cpp.obj 2025-07-24T04:19:44.5153963Z [2777/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\upgrader_mobile.cpp.obj 2025-07-24T04:19:45.1652198Z [2778/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\quantization.cpp.obj 2025-07-24T04:19:45.5232545Z [2779/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\aot_compiler.cpp.obj 2025-07-24T04:19:46.8755082Z [2780/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\upgraders.cpp.obj 2025-07-24T04:19:46.9245009Z [2781/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\utils.cpp.obj 2025-07-24T04:19:47.2809063Z [2782/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\version_map.cpp.obj 2025-07-24T04:19:47.6075654Z [2783/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\register_ops_common_utils.cpp.obj 2025-07-24T04:19:59.7104161Z [2784/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\add_if_then_else.cpp.obj 2025-07-24T04:20:00.9494636Z [2785/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\upgraders_entry.cpp.obj 2025-07-24T04:20:03.3145890Z [2786/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\annotate_warns.cpp.obj 2025-07-24T04:20:04.5166390Z [2787/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\check_strict_fusion.cpp.obj 2025-07-24T04:20:04.9116240Z [2788/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\canonicalize_graph_fuser_ops.cpp.obj 2025-07-24T04:20:05.0717264Z [2789/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\canonicalize.cpp.obj 2025-07-24T04:20:16.8746338Z [2790/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\common_subexpression_elimination.cpp.obj 2025-07-24T04:20:19.5498555Z [2791/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\bailout_graph.cpp.obj 2025-07-24T04:20:21.0353200Z [2792/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\concat_opt.cpp.obj 2025-07-24T04:20:22.8053248Z [2793/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\constant_propagation.cpp.obj 2025-07-24T04:20:23.1386353Z [2794/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\constant_pooling.cpp.obj 2025-07-24T04:20:24.2381585Z [2795/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\batch_mm.cpp.obj 2025-07-24T04:20:34.2126652Z [2796/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\create_autodiff_subgraphs.cpp.obj 2025-07-24T04:20:37.1907067Z [2797/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\clear_profiling.cpp.obj 2025-07-24T04:20:41.0969487Z [2798/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dead_code_elimination.cpp.obj 2025-07-24T04:20:41.5045038Z [2799/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\create_functional_graphs.cpp.obj 2025-07-24T04:20:43.5218597Z [2800/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\clear_undefinedness.cpp.obj 2025-07-24T04:20:44.1501140Z [2801/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\decompose_ops.cpp.obj 2025-07-24T04:20:44.2819675Z [2802/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dbr_quantization\remove_redundant_aliases.cpp.obj 2025-07-24T04:20:45.3475671Z [2803/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\device_type_analysis.cpp.obj 2025-07-24T04:20:57.6322218Z [2804/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dtype_analysis.cpp.obj 2025-07-24T04:20:58.1816986Z [2805/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\eliminate_no_ops.cpp.obj 2025-07-24T04:21:03.5018652Z [2806/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\erase_number_types.cpp.obj 2025-07-24T04:21:04.0864155Z [2807/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_concat_linear.cpp.obj 2025-07-24T04:21:04.5869001Z [2808/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fixup_trace_scope_blocks.cpp.obj 2025-07-24T04:21:05.5949916Z [2809/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fold_linear_bn.cpp.obj 2025-07-24T04:21:07.0147274Z [2810/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fold_conv_bn.cpp.obj 2025-07-24T04:21:20.5001281Z [2811/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_conv_folding.cpp.obj 2025-07-24T04:21:21.3885030Z [2812/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_graph_optimizations.cpp.obj 2025-07-24T04:21:25.5688913Z [2813/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fuse_linear.cpp.obj 2025-07-24T04:21:25.7507753Z [2814/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_linear_transpose.cpp.obj 2025-07-24T04:21:25.9946547Z [2815/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_conv_add_relu_fusion.cpp.obj 2025-07-24T04:21:26.2588608Z [2816/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_linear_folding.cpp.obj 2025-07-24T04:21:33.4534385Z [2817/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\freeze_module.cpp.obj 2025-07-24T04:21:40.8283335Z [2818/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fuse_relu.cpp.obj 2025-07-24T04:21:41.2644216Z [2819/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\graph_rewrite_helper.cpp.obj 2025-07-24T04:21:43.6771762Z [2820/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_autodiff_subgraphs.cpp.obj 2025-07-24T04:21:46.4792896Z [2821/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\hoist_conv_packed_params.cpp.obj 2025-07-24T04:21:47.9069619Z [2822/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_ops_to_mkldnn.cpp.obj 2025-07-24T04:21:55.3265221Z [2823/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_fork_wait.cpp.obj 2025-07-24T04:22:01.2741209Z [2824/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\guard_elimination.cpp.obj 2025-07-24T04:22:01.7615755Z [2825/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inliner.cpp.obj 2025-07-24T04:22:02.1627684Z [2826/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inplace_check.cpp.obj 2025-07-24T04:22:04.6242251Z [2827/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_forked_closures.cpp.obj 2025-07-24T04:22:07.0099439Z [2828/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\graph_fuser.cpp.obj 2025-07-24T04:22:10.6586580Z [2829/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\integer_value_refinement.cpp.obj 2025-07-24T04:22:15.7323138Z [2830/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_grad_of.cpp.obj 2025-07-24T04:22:15.9232586Z [2831/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\loop_unrolling.cpp.obj 2025-07-24T04:22:21.6724332Z [2832/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\insert_guards.cpp.obj 2025-07-24T04:22:21.9557542Z [2833/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_tuples.cpp.obj 2025-07-24T04:22:21.9871495Z [2834/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lift_closures.cpp.obj 2025-07-24T04:22:32.2934520Z [2835/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\pass_manager.cpp.obj 2025-07-24T04:22:36.2916928Z [2836/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\liveness.cpp.obj 2025-07-24T04:22:38.0067054Z [2837/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\normalize_ops.cpp.obj 2025-07-24T04:22:38.6942300Z [2838/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_alias_sensitive.cpp.obj 2025-07-24T04:22:39.3948681Z [2839/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole.cpp.obj 2025-07-24T04:22:40.5356450Z [2840/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_dict_idioms.cpp.obj 2025-07-24T04:22:50.9198359Z [2841/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\metal_rewrite.cpp.obj 2025-07-24T04:22:52.3585522Z [2842/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_list_idioms.cpp.obj 2025-07-24T04:22:54.8516905Z [2843/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\prepack_folding.cpp.obj 2025-07-24T04:22:56.1220534Z [2844/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_non_tensor.cpp.obj 2025-07-24T04:22:59.1216023Z [2845/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\quantization_type.cpp.obj 2025-07-24T04:22:59.8226278Z [2846/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\dedup_module_uses.cpp.obj 2025-07-24T04:23:02.0605113Z [2847/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\mkldnn_rewrite.cpp.obj 2025-07-24T04:23:04.5734408Z [2848/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\fusion_passes.cpp.obj 2025-07-24T04:23:16.6784824Z [2849/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\helper.cpp.obj 2025-07-24T04:23:17.3905578Z [2850/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\insert_quant_dequant.cpp.obj 2025-07-24T04:23:19.1629230Z [2851/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\refine_tuple_types.cpp.obj 2025-07-24T04:23:23.3505149Z [2852/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_dropout.cpp.obj 2025-07-24T04:23:24.2723945Z [2853/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\insert_observers.cpp.obj 2025-07-24T04:23:25.7241479Z [2854/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_exceptions.cpp.obj 2025-07-24T04:23:26.4557844Z [2855/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\finalize.cpp.obj 2025-07-24T04:23:32.1369916Z [2856/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_expands.cpp.obj 2025-07-24T04:23:33.2850133Z [2857/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\register_packed_params.cpp.obj 2025-07-24T04:23:38.5743003Z [2858/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\requires_grad_analysis.cpp.obj 2025-07-24T04:23:40.1681512Z [2859/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_redundant_profiles.cpp.obj 2025-07-24T04:23:43.4943799Z [2860/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\restore_mutation.cpp.obj 2025-07-24T04:23:43.8443859Z [2861/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_mutation.cpp.obj 2025-07-24T04:23:44.7820760Z [2862/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\replacement_of_old_operators.cpp.obj 2025-07-24T04:23:49.6900522Z [2863/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\shape_analysis.cpp.obj 2025-07-24T04:23:54.4939881Z [2864/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\subgraph_rewrite.cpp.obj 2025-07-24T04:23:57.4774747Z [2865/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_cache.cpp.obj 2025-07-24T04:23:58.5604706Z [2866/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_analysis.cpp.obj 2025-07-24T04:24:01.6548962Z [2867/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\update_differentiable_graph_requires_grad.cpp.obj 2025-07-24T04:24:09.0151833Z [2868/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\memory_dag.cpp.obj 2025-07-24T04:24:11.6256458Z [2869/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\specialize_autogradzero.cpp.obj 2025-07-24T04:24:16.2038969Z [2870/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\subgraph_utils.cpp.obj 2025-07-24T04:24:16.8671147Z [2871/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\optimization_utils.cpp.obj 2025-07-24T04:24:17.3178654Z [2872/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\op_registry.cpp.obj 2025-07-24T04:24:18.7705282Z [2873/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\python\utf8_decoding_ignore.cpp.obj 2025-07-24T04:24:20.5366768Z [2874/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\python\update_graph_executor_opt.cpp.obj 2025-07-24T04:24:21.4766908Z [2875/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_runtime_fusion.cpp.obj 2025-07-24T04:24:25.1310626Z [2876/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\tensorexpr_fuser.cpp.obj 2025-07-24T04:24:27.2373181Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\passes\tensorexpr_fuser.cpp(476): warning C4805: '&=': unsafe mix of type 'bool' and type 'unsigned __int64' in operation 2025-07-24T04:24:27.2375633Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\passes\tensorexpr_fuser.cpp(476): warning C4805: '&': unsafe mix of type 'bool' and type 'unsigned __int64' in operation 2025-07-24T04:24:27.2377671Z [2877/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\value_refinement_utils.cpp.obj 2025-07-24T04:24:32.7874262Z [2878/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\variadic_ops.cpp.obj 2025-07-24T04:24:32.9247906Z [2879/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\argument_spec.cpp.obj 2025-07-24T04:24:34.1301374Z [2880/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\instruction.cpp.obj 2025-07-24T04:24:36.9772770Z [2881/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\autodiff.cpp.obj 2025-07-24T04:24:41.8375560Z [2882/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\decomposition_registry_util.cpp.obj 2025-07-24T04:24:42.3232639Z [2883/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\jit_exception.cpp.obj 2025-07-24T04:24:42.8784323Z [2884/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\decomposition_registry.cpp.obj 2025-07-24T04:24:44.2764753Z [2885/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\logging.cpp.obj 2025-07-24T04:24:49.0295833Z [2886/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\xnnpack_rewrite.cpp.obj 2025-07-24T04:24:50.2551143Z [2887/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\print_handler.cpp.obj 2025-07-24T04:24:55.5217638Z [2888/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter\preprocess_graph.cpp.obj 2025-07-24T04:24:56.5887125Z [2889/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\vulkan_rewrite.cpp.obj 2025-07-24T04:25:03.6012560Z [2890/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter\frame.cpp.obj 2025-07-24T04:25:08.5981054Z [2891/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\graph_executor.cpp.obj 2025-07-24T04:25:10.9406090Z [2892/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\jit_trace.cpp.obj 2025-07-24T04:25:11.7609755Z [2893/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter.cpp.obj 2025-07-24T04:25:12.8312506Z [2894/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\slice_indices_adjust.cpp.obj 2025-07-24T04:25:18.1243166Z [2895/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\operator.cpp.obj 2025-07-24T04:25:22.4433098Z [2896/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\script_profile.cpp.obj 2025-07-24T04:25:22.5551483Z [2897/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\serialized_shape_function_registry.cpp.obj 2025-07-24T04:25:32.3088938Z [2898/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\profiling_graph_executor_impl.cpp.obj 2025-07-24T04:25:32.3547748Z [2899/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\profiling_record.cpp.obj 2025-07-24T04:25:33.2401636Z [2900/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\fusion.cpp.obj 2025-07-24T04:25:41.1283675Z [2901/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_ops_utils.cpp.obj 2025-07-24T04:25:44.5511835Z [2902/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\memory_planner.cpp.obj 2025-07-24T04:25:46.8275901Z [2903/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\simple_graph_executor_impl.cpp.obj 2025-07-24T04:25:53.3025416Z [2904/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\impl.cpp.obj 2025-07-24T04:25:56.0205945Z [2905/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\passes.cpp.obj 2025-07-24T04:26:00.8668875Z [2906/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_script.cpp.obj 2025-07-24T04:26:08.5937014Z [2907/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_shape_registry.cpp.obj 2025-07-24T04:26:18.5911597Z [2908/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\generated_ops.cpp.obj 2025-07-24T04:26:22.0274066Z [2909/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_shape_registry_util.cpp.obj 2025-07-24T04:26:22.4709884Z [2910/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\te_wrapper.cpp.obj 2025-07-24T04:26:24.2059343Z [2911/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\native_ops.cpp.obj 2025-07-24T04:26:28.9757489Z [2912/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_export_helpers.cpp.obj 2025-07-24T04:26:29.1176176Z [2913/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\vararg_functions.cpp.obj 2025-07-24T04:26:34.6759017Z [2914/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\ops.cpp.obj 2025-07-24T04:26:37.0653532Z [2915/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\callstack_debug_info_serialization.cpp.obj 2025-07-24T04:26:41.1096374Z [2916/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_read.cpp.obj 2025-07-24T04:26:45.5328263Z [2917/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_source.cpp.obj 2025-07-24T04:26:45.9331133Z [2918/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickle.cpp.obj 2025-07-24T04:26:59.7641174Z [2919/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import.cpp.obj 2025-07-24T04:27:00.3649155Z [2920/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\type_name_uniquer.cpp.obj 2025-07-24T04:27:03.5845499Z [2921/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\python_print.cpp.obj 2025-07-24T04:27:05.5561178Z [2922/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\source_range_serialization.cpp.obj 2025-07-24T04:27:06.2126209Z [2923/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickler_helper.cpp.obj 2025-07-24T04:27:07.5328314Z [2924/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickler.cpp.obj 2025-07-24T04:27:15.9889049Z [2925/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\block_codegen.cpp.obj 2025-07-24T04:27:20.7506318Z [2926/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\unpickler.cpp.obj 2025-07-24T04:27:29.4612387Z [2927/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\bounds_overlap.cpp.obj 2025-07-24T04:27:31.0206037Z [2928/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\codegen.cpp.obj 2025-07-24T04:27:35.8783038Z [2929/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_registry.cpp.obj 2025-07-24T04:27:36.6590453Z [2930/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\bounds_inference.cpp.obj 2025-07-24T04:27:36.8348835Z [2931/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\expr.cpp.obj 2025-07-24T04:27:37.1302684Z [2932/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\intrinsic_symbols.cpp.obj 2025-07-24T04:27:37.4582476Z [2933/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\cpp_codegen.cpp.obj 2025-07-24T04:27:42.4370422Z [2934/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\eval.cpp.obj 2025-07-24T04:27:47.5148787Z [2935/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir.cpp.obj 2025-07-24T04:27:49.7735323Z [2936/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_codegen.cpp.obj 2025-07-24T04:27:50.4538468Z [2937/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_core.cpp.obj 2025-07-24T04:28:01.6225177Z [2938/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\hash_provider.cpp.obj 2025-07-24T04:28:05.0134312Z [2939/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions.cpp.obj 2025-07-24T04:28:08.9804414Z [2940/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_cloner.cpp.obj 2025-07-24T04:28:09.3864597Z [2941/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\llvm_codegen.cpp.obj 2025-07-24T04:28:09.5891986Z [2942/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\llvm_jit.cpp.obj 2025-07-24T04:28:13.0757403Z [2943/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\graph_opt.cpp.obj 2025-07-24T04:28:13.3081761Z [2944/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_mutator.cpp.obj 2025-07-24T04:28:16.8136921Z [2945/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_printer.cpp.obj 2025-07-24T04:28:25.0112247Z [2946/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_verifier.cpp.obj 2025-07-24T04:28:27.4759777Z [2947/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_simplifier.cpp.obj 2025-07-24T04:28:27.4761043Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): warning C4805: '==': unsafe mix of type 'c10::impl::ScalarTypeToCPPType::type' and type 'T' in operation 2025-07-24T04:28:27.4761867Z with 2025-07-24T04:28:27.4762044Z [ 2025-07-24T04:28:27.4762202Z T=int 2025-07-24T04:28:27.4762452Z ] 2025-07-24T04:28:27.4763056Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): note: the template instantiation context (the oldest one first) is 2025-07-24T04:28:28.9627042Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\tensorexpr\ir_simplifier.cpp(318): note: see reference to function template instantiation 'bool torch::jit::tensorexpr::immediateEquals(const torch::jit::tensorexpr::ExprPtr &,T)' being compiled 2025-07-24T04:28:28.9628738Z with 2025-07-24T04:28:28.9629202Z [ 2025-07-24T04:28:28.9629397Z T=int 2025-07-24T04:28:28.9629640Z ] 2025-07-24T04:28:28.9630104Z [2948/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_visitor.cpp.obj 2025-07-24T04:28:45.0834771Z [2949/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\loopnest_randomization.cpp.obj 2025-07-24T04:28:46.7139103Z [2950/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\loopnest.cpp.obj 2025-07-24T04:28:53.5350382Z [2951/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\mem_dependency_checker.cpp.obj 2025-07-24T04:28:53.5352871Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): warning C4805: '==': unsafe mix of type 'c10::impl::ScalarTypeToCPPType::type' and type 'T' in operation 2025-07-24T04:28:53.6305148Z with 2025-07-24T04:28:53.6352645Z [ 2025-07-24T04:28:53.7275971Z T=int 2025-07-24T04:28:53.7276430Z ] 2025-07-24T04:28:53.7277645Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): note: the template instantiation context (the oldest one first) is 2025-07-24T04:28:59.9098773Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\tensorexpr\mem_dependency_checker.cpp(627): note: see reference to function template instantiation 'bool torch::jit::tensorexpr::immediateEquals(const torch::jit::tensorexpr::ExprPtr &,T)' being compiled 2025-07-24T04:28:59.9254540Z with 2025-07-24T04:28:59.9255027Z [ 2025-07-24T04:28:59.9415214Z T=int 2025-07-24T04:28:59.9480185Z ] 2025-07-24T04:28:59.9481205Z [2952/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\lowerings.cpp.obj 2025-07-24T04:29:00.9753165Z [2953/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\kernel.cpp.obj 2025-07-24T04:29:03.3212418Z [2954/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\conv2d.cpp.obj 2025-07-24T04:29:09.6029216Z [2955/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\matmul.cpp.obj 2025-07-24T04:29:10.2907156Z [2956/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\misc.cpp.obj 2025-07-24T04:29:16.6829131Z [2957/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\reduction.cpp.obj 2025-07-24T04:29:18.9176114Z [2958/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\types.cpp.obj 2025-07-24T04:29:21.8010522Z [2959/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\tensor.cpp.obj 2025-07-24T04:29:29.5126312Z [2960/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\pointwise.cpp.obj 2025-07-24T04:29:30.7539909Z [2961/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\norm.cpp.obj 2025-07-24T04:29:37.1219216Z [2962/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\reduction.cpp.obj 2025-07-24T04:29:37.6520888Z [2963/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\unique_name_manager.cpp.obj 2025-07-24T04:29:40.5015370Z [2964/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\quantization.cpp.obj 2025-07-24T04:29:41.9868039Z [2965/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\config.cpp.obj 2025-07-24T04:29:49.4785065Z [2966/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\testing\file_check.cpp.obj 2025-07-24T04:29:55.1599655Z [2967/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\registerizer.cpp.obj 2025-07-24T04:29:55.2840323Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): warning C4805: '==': unsafe mix of type 'c10::impl::ScalarTypeToCPPType::type' and type 'T' in operation 2025-07-24T04:29:55.3494267Z with 2025-07-24T04:29:55.4629440Z [ 2025-07-24T04:29:55.4631607Z T=int 2025-07-24T04:29:55.4632121Z ] 2025-07-24T04:29:55.4633271Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): note: the template instantiation context (the oldest one first) is 2025-07-24T04:29:56.2592531Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\tensorexpr\registerizer.cpp(92): note: see reference to function template instantiation 'bool torch::jit::tensorexpr::immediateEquals(const torch::jit::tensorexpr::ExprPtr &,T)' being compiled 2025-07-24T04:29:56.2595057Z with 2025-07-24T04:29:56.2595610Z [ 2025-07-24T04:29:56.2596093Z T=int 2025-07-24T04:29:56.2596600Z ] 2025-07-24T04:29:56.2597653Z [2968/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\lowering_context.cpp.obj 2025-07-24T04:29:56.6716904Z [2969/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\testing\hooks_for_testing.cpp.obj 2025-07-24T04:29:56.6801313Z [2970/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\backend_device.cpp.obj 2025-07-24T04:29:58.5849163Z [2971/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\backend_interface.cpp.obj 2025-07-24T04:30:00.5545988Z [2972/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\hash.cpp.obj 2025-07-24T04:30:02.2293633Z [2973/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\softmax.cpp.obj 2025-07-24T04:30:10.4623077Z [2974/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\debug_util.cpp.obj 2025-07-24T04:30:12.3962479Z [2975/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\helpers.cpp.obj 2025-07-24T04:30:14.2386918Z [2976/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\multi_wait.cpp.obj 2025-07-24T04:30:15.1265301Z [2977/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_util.cpp.obj 2025-07-24T04:30:15.4936018Z [2978/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_metadata.cpp.obj 2025-07-24T04:30:15.5726993Z [2979/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir.cpp.obj 2025-07-24T04:30:16.5635101Z [2980/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\permutation_util.cpp.obj 2025-07-24T04:30:16.9668630Z [2981/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_dump_util.cpp.obj 2025-07-24T04:30:24.9951836Z [2982/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\lazy_graph_executor.cpp.obj 2025-07-24T04:30:25.9922484Z [2983/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\metrics.cpp.obj 2025-07-24T04:30:29.0365913Z [2984/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ops\utils.cpp.obj 2025-07-24T04:30:30.8264636Z [2985/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\shape.cpp.obj 2025-07-24T04:30:31.4697927Z [2986/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\thread_pool.cpp.obj 2025-07-24T04:30:31.4735760Z [2987/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ops\arithmetic_ir_ops.cpp.obj 2025-07-24T04:30:32.5719769Z [2988/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\monitor\counters.cpp.obj 2025-07-24T04:30:32.8422578Z [2989/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\monitor\events.cpp.obj 2025-07-24T04:30:38.0760092Z [2990/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor_impl.cpp.obj 2025-07-24T04:30:39.1222738Z [2991/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor.cpp.obj 2025-07-24T04:30:44.2928409Z [2992/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor_util.cpp.obj 2025-07-24T04:30:46.1769215Z [2993/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\mtia\profiler\MTIAMemoryProfiler.cpp.obj 2025-07-24T04:30:47.0526329Z [2994/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\trie.cpp.obj 2025-07-24T04:30:50.0225362Z [2995/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\combined_traceback.cpp.obj 2025-07-24T04:30:54.3536588Z [2996/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\collection.cpp.obj 2025-07-24T04:30:55.9911632Z [2997/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\perf.cpp.obj 2025-07-24T04:30:56.2742156Z [2998/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\shape_inference.cpp.obj 2025-07-24T04:30:56.7972578Z [2999/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\data_flow.cpp.obj 2025-07-24T04:30:59.1391687Z [3000/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\kineto_client_interface.cpp.obj 2025-07-24T04:31:01.5138449Z [3001/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\observer.cpp.obj 2025-07-24T04:31:02.2657910Z [3002/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\python_tracer.cpp.obj 2025-07-24T04:31:03.4461071Z [3003/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\vulkan.cpp.obj 2025-07-24T04:31:03.5065984Z [3004/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\unwind\unwind_fb.cpp.obj 2025-07-24T04:31:03.7846817Z [3005/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\unwind\unwind.cpp.obj 2025-07-24T04:31:03.9503006Z [3006/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\stubs\base.cpp.obj 2025-07-24T04:31:05.0923366Z [3007/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\cpp_stacktraces.cpp.obj 2025-07-24T04:31:08.2105473Z [3008/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\kineto_shim.cpp.obj 2025-07-24T04:31:09.0710238Z [3009/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\itt_observer.cpp.obj 2025-07-24T04:31:09.8141815Z [3010/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\nvtx_observer.cpp.obj 2025-07-24T04:31:12.0990679Z [3011/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\privateuse1_observer.cpp.obj 2025-07-24T04:31:15.4572656Z [3012/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\execution_trace_observer.cpp.obj 2025-07-24T04:31:17.6687546Z [3013/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\schema_info.cpp.obj 2025-07-24T04:31:18.1168532Z [3014/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\variadic.cpp.obj 2025-07-24T04:31:25.9142160Z [3015/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\util.cpp.obj 2025-07-24T04:31:28.2161181Z [3016/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\tensor_flatten.cpp.obj 2025-07-24T04:31:30.5487548Z [3017/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_graph.cpp.obj 2025-07-24T04:31:32.0815528Z [3018/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_inplace_ops.cpp.obj 2025-07-24T04:31:34.2159948Z [3019/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_c10_ops.cpp.obj 2025-07-24T04:31:35.7188271Z [3020/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\check_alias_annotation.cpp.obj 2025-07-24T04:31:45.8073350Z [3021/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\autocast.cpp.obj 2025-07-24T04:31:46.5085598Z [3022/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\cuda\interface.cpp.obj 2025-07-24T04:31:50.3594999Z [3023/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\GraphSignature.cpp.obj 2025-07-24T04:31:58.4424731Z [3024/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\GraphPasses.cpp.obj 2025-07-24T04:31:58.9935579Z [3025/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\TensorMeta.cpp.obj 2025-07-24T04:31:59.8063404Z [3026/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\Graph.cpp.obj 2025-07-24T04:32:10.7833255Z [3027/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_prim_ops_fulljit.cpp.obj 2025-07-24T04:32:11.0443206Z [3028/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_special_ops.cpp.obj 2025-07-24T04:32:11.1989796Z [3029/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\Placement.cpp.obj 2025-07-24T04:32:13.9649624Z [3030/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\Serialization.cpp.obj 2025-07-24T04:32:14.6692800Z [3031/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_prim_ops.cpp.obj 2025-07-24T04:32:16.7426762Z [3032/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\DelegateExecutor.cpp.obj 2025-07-24T04:32:17.4329901Z [3033/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\PlacementUtils.cpp.obj 2025-07-24T04:32:26.7023684Z [3034/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\ExecutionPlanner.cpp.obj 2025-07-24T04:32:34.0234525Z [3035/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\FunctionSchema.cpp.obj 2025-07-24T04:32:40.3467883Z [3036/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\common\FileUtil.cpp.obj 2025-07-24T04:32:40.4375839Z [3037/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\ExecutionFrame.cpp.obj 2025-07-24T04:32:44.3752801Z [3038/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\GraphExecutorBase.cpp.obj 2025-07-24T04:32:48.0955573Z [3039/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\ConstantFolder.cpp.obj 2025-07-24T04:32:48.7968492Z [3040/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\Weights.cpp.obj 2025-07-24T04:32:49.4577203Z [3041/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\OpKernel.cpp.obj 2025-07-24T04:32:49.4867324Z [3042/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\Executor.cpp.obj 2025-07-24T04:32:49.9389766Z [3043/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\Bump.cpp.obj 2025-07-24T04:32:50.6493608Z [3044/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\GreedyBySize.cpp.obj 2025-07-24T04:32:53.0921891Z [3045/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\SerialGraphExecutor.cpp.obj 2025-07-24T04:33:06.5286312Z [3046/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\detail\ITree.cpp.obj 2025-07-24T04:33:08.6886315Z [3047/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\DisjointStorageGroups.cpp.obj 2025-07-24T04:33:18.9384742Z [3048/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\C10Kernel.cpp.obj 2025-07-24T04:33:20.2175174Z [3049/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\AutoFunctionalizeKernel.cpp.obj 2025-07-24T04:33:23.2185522Z [3050/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\CallTorchBindKernel.cpp.obj 2025-07-24T04:33:23.7014450Z [3051/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\HigherOrderKernel.cpp.obj 2025-07-24T04:33:24.9690916Z [3052/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\ParallelGraphExecutor.cpp.obj 2025-07-24T04:33:27.2802003Z [3053/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\KernelFactory.cpp.obj 2025-07-24T04:33:33.6116965Z [3054/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\PrimKernelRegistry.cpp.obj 2025-07-24T04:33:37.6278477Z [3055/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\AliasAnalyzer.cpp.obj 2025-07-24T04:33:41.9243711Z [3056/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\LayoutPlanner.cpp.obj 2025-07-24T04:33:43.0403406Z [3057/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\config.cpp.obj 2025-07-24T04:33:51.3131436Z [3058/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\debug_info.cpp.obj 2025-07-24T04:33:54.8496479Z [3059/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\dynamic_ir.cpp.obj 2025-07-24T04:33:55.3551998Z [3060/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\LayoutManager.cpp.obj 2025-07-24T04:34:01.0377632Z [3061/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\NativeKernels.cpp.obj 2025-07-24T04:34:05.9526310Z [3062/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\GeneratedNativeStaticDispatchKernels.cpp.obj 2025-07-24T04:34:09.6014840Z [3063/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\GeneratedStaticDispatchKernels.cpp.obj 2025-07-24T04:34:10.4222509Z [3064/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ops\device_data.cpp.obj 2025-07-24T04:34:14.5495995Z [3065/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ops\generic.cpp.obj 2025-07-24T04:34:18.3510345Z [3066/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_autograd_functions.cpp.obj 2025-07-24T04:34:19.0052518Z [3067/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\tensor_aten_ops.cpp.obj 2025-07-24T04:34:20.1146916Z [3068/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\KernelRegistry.cpp.obj 2025-07-24T04:34:32.5926509Z [3069/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_lowering_context.cpp.obj 2025-07-24T04:34:34.7077713Z [3070/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_backend_impl.cpp.obj 2025-07-24T04:34:37.6395144Z [3071/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_node.cpp.obj 2025-07-24T04:34:38.6293287Z [3072/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_eager_fallback.cpp.obj 2025-07-24T04:34:38.6456763Z [3073/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\export_data.cpp.obj 2025-07-24T04:34:51.1671847Z [3074/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_node_lowering.cpp.obj 2025-07-24T04:34:51.6117375Z [3075/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_native_functions.cpp.obj 2025-07-24T04:34:55.0366732Z [3076/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\out_types.cpp.obj 2025-07-24T04:34:55.7433921Z [3077/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\import_data.cpp.obj 2025-07-24T04:35:01.1723540Z [3078/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\itt_wrapper.cpp.obj 2025-07-24T04:35:01.6845036Z [3079/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\optim\sgd.cpp.obj 2025-07-24T04:35:01.8203659Z [3080/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\random.cpp.obj 2025-07-24T04:35:04.5592385Z [3081/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\stubs\itt.cpp.obj 2025-07-24T04:35:06.7096247Z [3082/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\sequential.cpp.obj 2025-07-24T04:35:07.1620407Z [3083/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\TraceTypeManual.cpp.obj 2025-07-24T04:35:10.7964908Z [3084/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\FunctionsManual.cpp.obj 2025-07-24T04:35:14.6923606Z [3085/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\backport.cpp.obj 2025-07-24T04:35:16.3912032Z [3086/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\flatbuffer_serializer.cpp.obj 2025-07-24T04:35:22.7543778Z [3087/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\jit.cpp.obj 2025-07-24T04:35:23.7647097Z [3088/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\backport_manager.cpp.obj 2025-07-24T04:35:25.0360228Z [3089/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\byte_order.cpp.obj 2025-07-24T04:35:27.0661711Z [3090/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Backoff.cpp.obj 2025-07-24T04:35:27.2437191Z [3091/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\onnx.cpp.obj 2025-07-24T04:35:33.0251861Z [3092/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export_bytecode.cpp.obj 2025-07-24T04:35:33.5268320Z [3093/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\VariableTypeManual.cpp.obj 2025-07-24T04:35:43.6361190Z [3094/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\module_save.cpp.obj 2025-07-24T04:35:45.1402991Z [3095/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\FileStore.cpp.obj 2025-07-24T04:35:47.7108776Z [3096/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export.cpp.obj 2025-07-24T04:35:52.1943988Z [3097/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\cpu\fused_kernel.cpp.obj 2025-07-24T04:35:53.0932183Z [3098/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export_module.cpp.obj 2025-07-24T04:35:56.1081196Z [3099/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Backend.cpp.obj 2025-07-24T04:35:59.7032789Z [3100/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ParamCommsUtils.cpp.obj 2025-07-24T04:36:02.0013903Z [3101/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\PrefixStore.cpp.obj 2025-07-24T04:36:02.1358015Z [3102/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupMPI.cpp.obj 2025-07-24T04:36:04.6928414Z [3103/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\GlooDeviceFactory.cpp.obj 2025-07-24T04:36:12.9206669Z [3104/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\GroupRegistry.cpp.obj 2025-07-24T04:36:13.8835956Z [3105/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Functional.cpp.obj 2025-07-24T04:36:20.0494566Z [3106/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Ops.cpp.obj 2025-07-24T04:36:20.3760341Z [3107/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Store.cpp.obj 2025-07-24T04:36:22.7793341Z [3108/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\FlightRecorder.cpp.obj 2025-07-24T04:36:30.5251861Z [3109/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroup.cpp.obj 2025-07-24T04:36:31.3992896Z [3110/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStoreLibUvBackend.cpp.obj 2025-07-24T04:36:33.0211999Z [3111/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupWrapper.cpp.obj 2025-07-24T04:36:37.8605721Z [3112/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_plane\Handlers.cpp.obj 2025-07-24T04:36:40.5117151Z [3113/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStoreBackend.cpp.obj 2025-07-24T04:36:40.7210088Z [3114/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupGloo.cpp.obj 2025-07-24T04:36:42.6662591Z [3115/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\cuda\StreamBlock.cpp.obj 2025-07-24T04:36:45.4506186Z [3116/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_collectives\StoreCollectives.cpp.obj 2025-07-24T04:36:45.9449901Z [3117/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\debug.cpp.obj 2025-07-24T04:36:46.7705865Z [3118/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStore.cpp.obj 2025-07-24T04:36:48.0700568Z [3119/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Utils.cpp.obj 2025-07-24T04:36:48.2370581Z [3120/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_plane\WorkerServer.cpp.obj 2025-07-24T04:36:48.6530326Z [3121/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\logging.cpp.obj 2025-07-24T04:36:53.0507086Z [3122/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\socket.cpp.obj 2025-07-24T04:36:55.8786517Z [3123/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\sequence_num.cpp.obj 2025-07-24T04:36:56.8674157Z [3124/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Work.cpp.obj 2025-07-24T04:36:59.8971783Z [3125/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\cuda.cpp.obj 2025-07-24T04:37:02.9041586Z [3126/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\comm.cpp.obj 2025-07-24T04:37:06.4021053Z [3127/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\quantization\quantization.cpp.obj 2025-07-24T04:37:12.3488177Z [3128/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\symm_mem\DMAConnectivity.cpp.obj 2025-07-24T04:37:15.0725275Z [3129/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\logger.cpp.obj 2025-07-24T04:37:16.3470406Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\distributed\c10d\logger.cpp(294): warning C4805: '!=': unsafe mix of type '__int64' and type 'bool' in operation 2025-07-24T04:37:16.3472483Z [3130/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\symm_mem\SymmetricMemory.cpp.obj 2025-07-24T04:37:17.3851297Z [3131/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\enum.cpp.obj 2025-07-24T04:37:25.8916069Z [3132/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\reducer.cpp.obj 2025-07-24T04:37:27.8910255Z [3133/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\datasets\mnist.cpp.obj 2025-07-24T04:37:31.7917784Z [3134/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\default_comm_hooks.cpp.obj 2025-07-24T04:37:31.9013447Z [3135/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\mps.cpp.obj 2025-07-24T04:37:32.3640118Z [3136/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\imethod.cpp.obj 2025-07-24T04:37:33.0983197Z [3137/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\distributed.cpp.obj 2025-07-24T04:37:44.8607881Z [3138/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\random.cpp.obj 2025-07-24T04:37:46.4779835Z [3139/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\stream.cpp.obj 2025-07-24T04:37:51.9038534Z [3140/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\sequential.cpp.obj 2025-07-24T04:37:53.6296518Z [3141/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize.cpp.obj 2025-07-24T04:37:54.4959030Z [3142/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\init.cpp.obj 2025-07-24T04:38:01.4559377Z [3143/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\module.cpp.obj 2025-07-24T04:38:03.1988699Z [3144/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\_functions.cpp.obj 2025-07-24T04:38:10.3841457Z [3145/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\activation.cpp.obj 2025-07-24T04:38:15.6155501Z [3146/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\adaptive.cpp.obj 2025-07-24T04:38:19.9109969Z [3147/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\batchnorm.cpp.obj 2025-07-24T04:38:22.3899276Z [3148/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\instancenorm.cpp.obj 2025-07-24T04:38:28.7170764Z [3149/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\conv.cpp.obj 2025-07-24T04:38:31.1034092Z [3150/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\normalization.cpp.obj 2025-07-24T04:38:33.1855236Z [3151/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\dropout.cpp.obj 2025-07-24T04:38:35.0861611Z [3152/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\distance.cpp.obj 2025-07-24T04:38:45.0963056Z [3153/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\embedding.cpp.obj 2025-07-24T04:38:46.5417162Z [3154/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\fold.cpp.obj 2025-07-24T04:38:51.9628702Z [3155/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\loss.cpp.obj 2025-07-24T04:38:53.6866282Z [3156/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\linear.cpp.obj 2025-07-24T04:38:59.4058528Z [3157/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\pixelshuffle.cpp.obj 2025-07-24T04:39:00.9476926Z [3158/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\padding.cpp.obj 2025-07-24T04:39:06.6369963Z [3159/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\pooling.cpp.obj 2025-07-24T04:39:15.4608900Z [3160/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\rnn.cpp.obj 2025-07-24T04:39:18.8783877Z [3161/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\activation.cpp.obj 2025-07-24T04:39:19.4032957Z [3162/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\upsampling.cpp.obj 2025-07-24T04:39:24.5118632Z [3163/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\adaptive.cpp.obj 2025-07-24T04:39:26.4268677Z [3164/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\container\functional.cpp.obj 2025-07-24T04:39:27.5750517Z [3165/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\batchnorm.cpp.obj 2025-07-24T04:39:29.2955812Z [3166/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\transformer.cpp.obj 2025-07-24T04:39:36.5118746Z [3167/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\embedding.cpp.obj 2025-07-24T04:39:43.1979894Z [3168/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\instancenorm.cpp.obj 2025-07-24T04:39:43.6349408Z [3169/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\conv.cpp.obj 2025-07-24T04:39:46.5584840Z [3170/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\linear.cpp.obj 2025-07-24T04:39:47.4689496Z [3171/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\normalization.cpp.obj 2025-07-24T04:39:48.4477936Z [3172/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\dropout.cpp.obj 2025-07-24T04:39:49.5182367Z [3173/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\padding.cpp.obj 2025-07-24T04:39:54.8550728Z [3174/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\pooling.cpp.obj 2025-07-24T04:40:03.4874410Z [3175/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\rnn.cpp.obj 2025-07-24T04:40:03.9272106Z [3176/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\vision.cpp.obj 2025-07-24T04:40:12.3961681Z [3177/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adagrad.cpp.obj 2025-07-24T04:40:13.5234619Z [3178/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adam.cpp.obj 2025-07-24T04:40:20.6155346Z [3179/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\lr_scheduler.cpp.obj 2025-07-24T04:40:21.2410993Z [3180/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\transformer.cpp.obj 2025-07-24T04:40:21.2619572Z [3181/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adamw.cpp.obj 2025-07-24T04:40:21.8483428Z [3182/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\lbfgs.cpp.obj 2025-07-24T04:40:24.2567344Z [3183/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\step_lr.cpp.obj 2025-07-24T04:40:25.8583094Z [3184/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\reduce_on_plateau_scheduler.cpp.obj 2025-07-24T04:40:27.3992862Z [3185/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\xpu.cpp.obj 2025-07-24T04:40:27.7016269Z [3186/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\optimizer.cpp.obj 2025-07-24T04:40:30.5672330Z [3187/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.AVX2.cpp.obj 2025-07-24T04:40:30.5673580Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:30.5674764Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:30.9157781Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:30.9159709Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:30.9161406Z [3188/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.AVX2.cpp.obj 2025-07-24T04:40:30.9162452Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:30.9163651Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:38.2119819Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:38.2122156Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:38.2124044Z [3189/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\serialize.cpp.obj 2025-07-24T04:40:38.6028109Z [3190/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\sgd.cpp.obj 2025-07-24T04:40:39.5847733Z [3191/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.AVX2.cpp.obj 2025-07-24T04:40:39.5849791Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:39.5851537Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:39.6776577Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:39.6778902Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:39.6780858Z [3192/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.AVX2.cpp.obj 2025-07-24T04:40:39.6782703Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:39.6784834Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:46.2556843Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:46.2558941Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:46.7343011Z [3193/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\rmsprop.cpp.obj 2025-07-24T04:40:46.7344949Z [3194/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.AVX2.cpp.obj 2025-07-24T04:40:46.7347443Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:46.7349835Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:50.6691958Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:50.6694509Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:50.6697019Z [3195/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.AVX2.cpp.obj 2025-07-24T04:40:50.6698896Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:50.6704478Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:51.3538922Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:51.3543121Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:51.3545150Z [3196/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize\input-archive.cpp.obj 2025-07-24T04:40:54.1547113Z [3197/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize\output-archive.cpp.obj 2025-07-24T04:40:54.4473538Z [3198/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.AVX2.cpp.obj 2025-07-24T04:40:54.4475759Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:54.4478813Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:54.6246612Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:54.6247955Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:54.6249015Z [3199/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.AVX2.cpp.obj 2025-07-24T04:40:54.6249991Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:54.6251166Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:55.2706630Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:55.2708216Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:55.2709323Z [3200/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.AVX2.cpp.obj 2025-07-24T04:40:55.2710346Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:40:55.2711506Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:00.0309949Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:00.0365811Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:00.0367602Z [3201/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:00.0418073Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:00.0420364Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:00.8277990Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:00.8280342Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:00.8282832Z [3202/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:00.8284710Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:00.8287150Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:02.3793930Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:02.3798840Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:02.4070947Z [3203/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:02.4073416Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:02.4209638Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:02.7037125Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:02.7038850Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:02.7040152Z [3204/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.AVX2.cpp.obj 2025-07-24T04:41:02.7041169Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:02.7042407Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:04.2059558Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:04.2060883Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:04.2062122Z [3205/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:04.2063617Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:04.2064824Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:08.1137442Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:08.1145219Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:08.1148643Z [3206/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:08.1151927Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:08.1159152Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:08.3786539Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:08.3846812Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:08.3849051Z [3207/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:08.3852378Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:08.3854640Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:10.1334403Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:10.1335704Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:10.1336766Z [3208/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:10.1337738Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:10.1339693Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:10.2508743Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:10.2510082Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:10.2511204Z [3209/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:10.2512215Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:10.2513403Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:11.1080990Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:11.1082300Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:11.1083373Z [3210/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.AVX2.cpp.obj 2025-07-24T04:41:11.1084380Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:11.1085662Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:16.6303274Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:16.7034942Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:16.7420021Z [3211/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:16.8073991Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:16.8938273Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:17.1489010Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:17.2194431Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:17.2355589Z [3212/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:17.2664334Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:17.3876330Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:18.4745874Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:18.4749329Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:18.4751544Z [3213/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:18.4754621Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:18.4756813Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:25.9692334Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:26.0948277Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:26.2365149Z [3214/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:26.3934834Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:26.4612666Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:27.9353168Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:28.0413729Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:28.2311644Z [3215/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:28.3679242Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:28.6204297Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:31.0596429Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:31.0599196Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:31.0601452Z [3216/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:31.0603373Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:31.0652667Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:32.5852421Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:32.6458574Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:32.6648187Z [3217/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:32.6650049Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:32.7071182Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:35.0055129Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:35.0059255Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:35.0061148Z [3218/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:35.0064638Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:35.0066700Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:38.7536323Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:38.7539040Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:38.7717769Z [3219/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:38.8225524Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:38.8524055Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:38.8526627Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:38.8751111Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:38.8753312Z [3220/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:38.9529773Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:38.9532614Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:38.9559344Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:38.9563948Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:38.9566307Z [3221/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:38.9570215Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:38.9572328Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:39.7335970Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:39.7581668Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:39.7584023Z [3222/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:39.8118151Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:39.8120147Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:41.7126359Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:41.7128826Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:41.7130831Z [3223/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:41.7132589Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:41.7134464Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:43.2563625Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:43.2564913Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:43.2566003Z [3224/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:43.2567113Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:43.2568270Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:45.1574964Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:45.3101146Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:45.4665762Z [3225/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:45.5052891Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:45.5204439Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:46.1935131Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:46.2530702Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:46.3627368Z [3226/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:46.3890900Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:46.6827923Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:47.4543627Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:47.4545605Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:47.4547234Z [3227/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:47.4548794Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:47.4550649Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:49.0914257Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:49.0916298Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:49.0918100Z [3228/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:49.0919701Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:49.1042823Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:49.1045460Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:49.1047779Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:49.1049724Z [3229/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.AVX2.cpp.obj 2025-07-24T04:41:49.1051668Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:49.1053812Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:51.9364036Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:51.9366463Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:51.9368448Z [3230/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:51.9370252Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:51.9372391Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:52.1324059Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:52.1326505Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:52.1328479Z [3231/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:52.1330354Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:52.1334292Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:55.1844304Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:55.1847299Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:55.2490792Z [3232/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:55.2492991Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:55.3212750Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:55.8217394Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:55.8220092Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:55.8356883Z [3233/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:55.8358888Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:55.8361244Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:56.4943474Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:56.4946240Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:56.5546822Z [3234/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.AVX2.cpp.obj 2025-07-24T04:41:56.5548928Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:56.6044911Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:57.5017197Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:57.5018696Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:41:57.5019840Z [3235/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.AVX2.cpp.obj 2025-07-24T04:42:01.0626666Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:01.0794668Z [3236/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.AVX2.cpp.obj 2025-07-24T04:42:01.4350973Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:01.4724453Z [3237/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.AVX2.cpp.obj 2025-07-24T04:42:01.4726506Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:01.4732460Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:01.5061272Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:01.5063789Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:01.5065850Z [3238/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.AVX2.cpp.obj 2025-07-24T04:42:01.5067803Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:01.5069898Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:01.8169643Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:01.8172466Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:01.8174410Z [3239/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.AVX2.cpp.obj 2025-07-24T04:42:01.8176848Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:01.8179243Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:04.2068586Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:04.2071274Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:04.2074285Z [3240/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.AVX2.cpp.obj 2025-07-24T04:42:04.2076212Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:04.2079728Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:08.1745188Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:08.1747894Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:08.1794810Z [3241/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.AVX2.cpp.obj 2025-07-24T04:42:09.5921603Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:09.5922861Z [3242/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.AVX2.cpp.obj 2025-07-24T04:42:09.5924109Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:09.5925353Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:09.6356852Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:09.6359316Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:09.6361438Z [3243/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.AVX2.cpp.obj 2025-07-24T04:42:09.6363386Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:09.6365630Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:09.6368011Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:09.6370322Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:09.6372690Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): warning C4180: qualifier applied to function type has no meaning; ignored 2025-07-24T04:42:09.6375051Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): note: the template instantiation context (the oldest one first) is 2025-07-24T04:42:09.6377778Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(422): note: see reference to class template instantiation 'at::native::`anonymous-namespace'::Dist' being compiled 2025-07-24T04:42:09.6381322Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(190): note: while compiling class template member function 'void at::native::`anonymous-namespace'::Dist::apply_pdist(at::Tensor &,const at::Tensor &,const scalar_t)' 2025-07-24T04:42:09.6383562Z with 2025-07-24T04:42:09.6383976Z [ 2025-07-24T04:42:09.6384337Z scalar_t=scalar_t 2025-07-24T04:42:09.6384791Z ] 2025-07-24T04:42:09.6386974Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see the first reference to 'at::native::`anonymous-namespace'::Dist::apply_pdist' in 'at::native::`anonymous-namespace'::pdist_forward_kernel_impl::::()::::operator ()' 2025-07-24T04:42:09.6391765Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(192): note: see reference to function template instantiation 'void at::native::`anonymous-namespace'::Dist::run_parallel_pdist::zdist_calc>>(at::Tensor &,const at::Tensor &,const scalar_t)' being compiled 2025-07-24T04:42:09.6394490Z with 2025-07-24T04:42:09.6394866Z [ 2025-07-24T04:42:09.6395206Z scalar_t=scalar_t 2025-07-24T04:42:09.6395580Z ] 2025-07-24T04:42:09.6398298Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(175): note: see reference to function template instantiation 'scalar_t at::vec::map2_reduce_all::run_parallel_pdist::::()::,data_t(const data_t &,const data_t &),0>(const MapOp &,ReduceOp (__cdecl &),const scalar_t *,const scalar_t *,int64_t)' being compiled 2025-07-24T04:42:09.6401394Z with 2025-07-24T04:42:09.6401688Z [ 2025-07-24T04:42:09.6402074Z scalar_t=scalar_t, 2025-07-24T04:42:09.6402534Z data_t=at::vec::AVX2::Vectorized, 2025-07-24T04:42:09.6403478Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-07-24T04:42:09.6404835Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-07-24T04:42:09.6405708Z ] 2025-07-24T04:42:09.6407384Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(299): note: see reference to function template instantiation 'scalar_t at::vec::vec_reduce_all(Op (__cdecl &),const at::vec::AVX2::Vectorized &)' being compiled 2025-07-24T04:42:09.6409261Z with 2025-07-24T04:42:09.6409558Z [ 2025-07-24T04:42:09.6409834Z scalar_t=float, 2025-07-24T04:42:09.6410753Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &), 2025-07-24T04:42:12.8916690Z Op=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-07-24T04:42:12.9719847Z ] 2025-07-24T04:42:13.0005825Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(176): note: see reference to class template instantiation 'at::vec::VecReduceAllSIMD' being compiled 2025-07-24T04:42:13.0007478Z with 2025-07-24T04:42:13.0207634Z [ 2025-07-24T04:42:13.0209007Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-07-24T04:42:13.0210063Z ] 2025-07-24T04:42:13.0213168Z [3244/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.AVX2.cpp.obj 2025-07-24T04:42:13.6756573Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:13.7722809Z [3245/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.AVX2.cpp.obj 2025-07-24T04:42:13.8738902Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:13.8794194Z [3246/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.AVX2.cpp.obj 2025-07-24T04:42:13.8796254Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:13.9039074Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:15.0983335Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:15.0985786Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:15.0987856Z [3247/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.AVX2.cpp.obj 2025-07-24T04:42:15.0989822Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:15.0993452Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:17.4827842Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:17.4830235Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:17.4832130Z [3248/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.AVX2.cpp.obj 2025-07-24T04:42:17.4834000Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:17.4836262Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:21.2523991Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:21.3731608Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:21.3811959Z [3249/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.AVX2.cpp.obj 2025-07-24T04:42:21.3813965Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:21.5177822Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:22.3461437Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:22.3463878Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:22.3465855Z [3250/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.AVX2.cpp.obj 2025-07-24T04:42:22.3467640Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:22.3469891Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:23.0581918Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:23.0584428Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:23.0800073Z [3251/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.AVX2.cpp.obj 2025-07-24T04:42:23.0802226Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:23.1323794Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:28.7137365Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:28.7140040Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:28.7420298Z [3252/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.AVX2.cpp.obj 2025-07-24T04:42:28.7422274Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:28.7424448Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:34.2887596Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:34.2890208Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:34.4855486Z [3253/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.AVX2.cpp.obj 2025-07-24T04:42:34.6577007Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:34.8196013Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:35.7400697Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:35.8009288Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:35.8659117Z [3254/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.AVX2.cpp.obj 2025-07-24T04:42:36.0954443Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:36.0994395Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:36.7964748Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:36.8889784Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:36.9245304Z [3255/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.AVX512.cpp.obj 2025-07-24T04:42:37.5347028Z [3256/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.AVX2.cpp.obj 2025-07-24T04:42:37.5350737Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:37.5353001Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:39.9740096Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:39.9742878Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:39.9744964Z [3257/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.AVX512.cpp.obj 2025-07-24T04:42:40.7405306Z [3258/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.AVX512.cpp.obj 2025-07-24T04:42:41.6034635Z [3259/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.AVX512.cpp.obj 2025-07-24T04:42:44.7249467Z [3260/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.AVX512.cpp.obj 2025-07-24T04:42:50.6162525Z [3261/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.AVX512.cpp.obj 2025-07-24T04:42:52.6590064Z [3262/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.AVX512.cpp.obj 2025-07-24T04:42:57.4519667Z [3263/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.AVX2.cpp.obj 2025-07-24T04:42:57.4887543Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:57.4889807Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:57.5657662Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:57.5743631Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:57.5745954Z [3264/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.AVX512.cpp.obj 2025-07-24T04:42:58.5513938Z [3265/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.AVX512.cpp.obj 2025-07-24T04:42:58.9907018Z [3266/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.AVX2.cpp.obj 2025-07-24T04:42:58.9908997Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:58.9911207Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:59.8535859Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:59.8540110Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:42:59.8542511Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(522): warning C4333: '>>': right shift by too large amount, data loss 2025-07-24T04:42:59.8544702Z [3267/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:00.1382914Z [3268/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.AVX512.cpp.obj 2025-07-24T04:43:03.0374411Z [3269/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.AVX512.cpp.obj 2025-07-24T04:43:03.1147308Z [3270/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:05.1822490Z [3271/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:06.2223586Z [3272/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:07.6986596Z [3273/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:10.1602467Z [3274/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:10.9676127Z [3275/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:11.1076603Z [3276/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.AVX512.cpp.obj 2025-07-24T04:43:15.7848023Z [3277/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:16.6273862Z [3278/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:18.2389037Z [3279/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:21.5485558Z [3280/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:24.3514086Z [3281/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:32.4117546Z [3282/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:32.5825213Z [3283/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:35.9396541Z [3284/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:36.3907959Z [3285/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:37.7793374Z [3286/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:38.1204237Z [3287/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:39.0239538Z [3288/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:43.3984061Z [3289/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:43.4208191Z [3290/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:44.2307495Z [3291/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:46.2578101Z [3292/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:46.3027307Z [3293/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:49.4436191Z [3294/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:49.5143633Z [3295/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.AVX512.cpp.obj 2025-07-24T04:43:49.6055389Z [3296/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:51.9838173Z [3297/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:53.5287890Z [3298/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:55.1011420Z [3299/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:56.2653202Z [3300/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:56.9529438Z [3301/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.AVX512.cpp.obj 2025-07-24T04:43:58.5624726Z [3302/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.AVX512.cpp.obj 2025-07-24T04:44:00.1117593Z [3303/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.AVX512.cpp.obj 2025-07-24T04:44:00.1476627Z [3304/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.AVX512.cpp.obj 2025-07-24T04:44:01.5848043Z [3305/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.AVX512.cpp.obj 2025-07-24T04:44:03.4275244Z [3306/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.AVX512.cpp.obj 2025-07-24T04:44:07.2427371Z [3307/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.AVX512.cpp.obj 2025-07-24T04:44:08.5918827Z [3308/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.AVX512.cpp.obj 2025-07-24T04:44:08.5921000Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): warning C4180: qualifier applied to function type has no meaning; ignored 2025-07-24T04:44:08.5923305Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): note: the template instantiation context (the oldest one first) is 2025-07-24T04:44:08.5926149Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(422): note: see reference to class template instantiation 'at::native::`anonymous-namespace'::Dist' being compiled 2025-07-24T04:44:08.5997583Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(190): note: while compiling class template member function 'void at::native::`anonymous-namespace'::Dist::apply_pdist(at::Tensor &,const at::Tensor &,const scalar_t)' 2025-07-24T04:44:08.5999975Z with 2025-07-24T04:44:08.6120789Z [ 2025-07-24T04:44:08.6121232Z scalar_t=scalar_t 2025-07-24T04:44:08.6121652Z ] 2025-07-24T04:44:08.6123973Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see the first reference to 'at::native::`anonymous-namespace'::Dist::apply_pdist' in 'at::native::`anonymous-namespace'::pdist_forward_kernel_impl::::()::::operator ()' 2025-07-24T04:44:08.6129092Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(192): note: see reference to function template instantiation 'void at::native::`anonymous-namespace'::Dist::run_parallel_pdist::zdist_calc>>(at::Tensor &,const at::Tensor &,const scalar_t)' being compiled 2025-07-24T04:44:08.6133890Z with 2025-07-24T04:44:08.6134248Z [ 2025-07-24T04:44:08.6134892Z scalar_t=scalar_t 2025-07-24T04:44:08.6135323Z ] 2025-07-24T04:44:08.6138318Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(175): note: see reference to function template instantiation 'scalar_t at::vec::map2_reduce_all::run_parallel_pdist::::()::,data_t(const data_t &,const data_t &),0>(const MapOp &,ReduceOp (__cdecl &),const scalar_t *,const scalar_t *,int64_t)' being compiled 2025-07-24T04:44:08.6141422Z with 2025-07-24T04:44:08.6141751Z [ 2025-07-24T04:44:08.6142065Z scalar_t=scalar_t, 2025-07-24T04:44:08.6142573Z data_t=at::vec::AVX512::Vectorized, 2025-07-24T04:44:08.6143597Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-07-24T04:44:08.6145151Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-07-24T04:44:08.6146227Z ] 2025-07-24T04:44:08.6148079Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(299): note: see reference to function template instantiation 'scalar_t at::vec::vec_reduce_all(Op (__cdecl &),const at::vec::AVX512::Vectorized &)' being compiled 2025-07-24T04:44:08.6150063Z with 2025-07-24T04:44:08.6150396Z [ 2025-07-24T04:44:08.6150712Z scalar_t=float, 2025-07-24T04:44:08.6151754Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &), 2025-07-24T04:44:08.6153393Z Op=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-07-24T04:44:08.6154518Z ] 2025-07-24T04:44:10.4499286Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(176): note: see reference to class template instantiation 'at::vec::VecReduceAllSIMD' being compiled 2025-07-24T04:44:10.4648666Z with 2025-07-24T04:44:10.4650793Z [ 2025-07-24T04:44:10.4651702Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-07-24T04:44:10.4652691Z ] 2025-07-24T04:44:10.4653657Z [3309/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.AVX512.cpp.obj 2025-07-24T04:44:12.6646217Z [3310/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.AVX512.cpp.obj 2025-07-24T04:44:12.8059470Z [3311/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.AVX512.cpp.obj 2025-07-24T04:44:13.8461791Z [3312/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.AVX512.cpp.obj 2025-07-24T04:44:14.6863727Z [3313/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.AVX512.cpp.obj 2025-07-24T04:44:19.4636907Z [3314/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.AVX512.cpp.obj 2025-07-24T04:44:20.4369239Z [3315/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.AVX512.cpp.obj 2025-07-24T04:44:27.7446763Z [3316/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.AVX512.cpp.obj 2025-07-24T04:44:28.2358919Z [3317/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.AVX512.cpp.obj 2025-07-24T04:44:29.5841901Z [3318/7174] Building CXX object caffe2\CMakeFiles\torch.dir\__\empty.cpp.obj 2025-07-24T04:44:33.4097079Z [3319/7174] Building CXX object caffe2\torch\lib\libshm_windows\CMakeFiles\shm.dir\core.cpp.obj 2025-07-24T04:44:34.2861600Z [3320/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.AVX512.cpp.obj 2025-07-24T04:44:37.4017515Z [3321/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.AVX512.cpp.obj 2025-07-24T04:44:38.3181531Z [3322/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.AVX512.cpp.obj 2025-07-24T04:44:38.5490907Z [3323/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.AVX512.cpp.obj 2025-07-24T04:44:43.5497868Z [3324/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.AVX512.cpp.obj 2025-07-24T04:44:45.5802935Z [3325/7174] Building CXX object test_jit\CMakeFiles\jitbackend_test.dir\test_backend_lib.cpp.obj 2025-07-24T04:44:47.6119495Z [3326/7174] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\test_backend_compiler_preprocess.cpp.obj 2025-07-24T04:44:47.8410164Z [3327/7174] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\__\__\__\torch\csrc\jit\mobile\profiler_edge.cpp.obj 2025-07-24T04:44:48.0852044Z [3328/7174] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\test_backend_compiler_lib.cpp.obj 2025-07-24T04:44:54.8971461Z [3329/7174] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.AVX512.cpp.obj 2025-07-24T04:44:59.7779684Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(522): warning C4333: '>>': right shift by too large amount, data loss 2025-07-24T04:44:59.7781825Z [3330/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_0.cpp.obj 2025-07-24T04:45:00.2434844Z [3331/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_1.cpp.obj 2025-07-24T04:45:03.6007238Z [3332/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_2.cpp.obj 2025-07-24T04:45:04.8447773Z [3333/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_3.cpp.obj 2025-07-24T04:45:07.2727307Z [3334/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_4.cpp.obj 2025-07-24T04:45:12.4238897Z [3335/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_0.cpp.obj 2025-07-24T04:45:22.4059857Z [3336/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_nn_functions.cpp.obj 2025-07-24T04:45:23.8128982Z [3337/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_variable_methods.cpp.obj 2025-07-24T04:45:25.1688493Z [3338/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_fft_functions.cpp.obj 2025-07-24T04:45:27.5508106Z [3339/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_linalg_functions.cpp.obj 2025-07-24T04:45:28.8685393Z [3340/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_1.cpp.obj 2025-07-24T04:45:29.8332783Z [3341/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DataLoader.cpp.obj 2025-07-24T04:45:33.8573872Z [3342/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_nested_functions.cpp.obj 2025-07-24T04:45:33.8953290Z [3343/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_return_types.cpp.obj 2025-07-24T04:45:35.2575345Z [3344/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_2.cpp.obj 2025-07-24T04:45:36.8338900Z [3345/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_enum_tag.cpp.obj 2025-07-24T04:45:38.1657203Z [3346/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_sparse_functions.cpp.obj 2025-07-24T04:45:39.2486597Z [3347/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DeviceAccelerator.cpp.obj 2025-07-24T04:45:41.9895072Z [3348/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_special_functions.cpp.obj 2025-07-24T04:45:44.3412611Z [3349/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Dtype.cpp.obj 2025-07-24T04:45:46.4050255Z [3350/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Device.cpp.obj 2025-07-24T04:45:46.4984051Z [3351/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Layout.cpp.obj 2025-07-24T04:45:49.3040830Z [3352/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\MemoryFormat.cpp.obj 2025-07-24T04:45:50.9257686Z [3353/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DynamicTypes.cpp.obj 2025-07-24T04:45:51.3434114Z [3354/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\QScheme.cpp.obj 2025-07-24T04:45:55.7571159Z [3355/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Exceptions.cpp.obj 2025-07-24T04:45:56.1602886Z [3356/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\python_dimname.cpp.obj 2025-07-24T04:45:59.7076887Z [3357/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Generator.cpp.obj 2025-07-24T04:46:02.4249091Z [3358/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Size.cpp.obj 2025-07-24T04:46:06.2824402Z [3359/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\PyInterpreter.cpp.obj 2025-07-24T04:46:11.6462778Z [3360/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Storage.cpp.obj 2025-07-24T04:46:13.9763305Z [3361/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Module.cpp.obj 2025-07-24T04:46:15.3581629Z [3362/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\StorageSharing.cpp.obj 2025-07-24T04:46:17.4707424Z [3363/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\StorageMethods.cpp.obj 2025-07-24T04:46:20.6140911Z [3364/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Stream.cpp.obj 2025-07-24T04:46:24.4348793Z [3365/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Event.cpp.obj 2025-07-24T04:46:26.1655702Z [3366/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\TypeInfo.cpp.obj 2025-07-24T04:46:31.1639724Z [3367/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\profiler_python.cpp.obj 2025-07-24T04:46:32.0687469Z [3368/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_anomaly_mode.cpp.obj 2025-07-24T04:46:32.0894664Z [3369/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\api\src\python\init.cpp.obj 2025-07-24T04:46:32.6121957Z [3370/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\functions\init.cpp.obj 2025-07-24T04:46:39.3475422Z [3371/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_cpp_function.cpp.obj 2025-07-24T04:46:43.0164033Z [3372/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_saved_variable_hooks.cpp.obj 2025-07-24T04:46:45.0261315Z [3373/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\init.cpp.obj 2025-07-24T04:46:48.9484788Z [3374/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_engine.cpp.obj 2025-07-24T04:46:49.8676056Z [3375/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_hook.cpp.obj 2025-07-24T04:46:50.9040246Z [3376/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_legacy_variable.cpp.obj 2025-07-24T04:46:57.5796907Z [3377/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_function.cpp.obj 2025-07-24T04:46:57.9427266Z [3378/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cache_entry.cpp.obj 2025-07-24T04:47:01.4776147Z [3379/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_torch_functions_manual.cpp.obj 2025-07-24T04:47:02.4557426Z [3380/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cpp_shim.cpp.obj 2025-07-24T04:47:04.7006086Z [3381/7174] Building C object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cpython_defs.c.obj 2025-07-24T04:47:04.7794588Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(41): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-07-24T04:47:04.7796711Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-07-24T04:47:04.7798407Z [3382/7174] Building C object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\eval_frame.c.obj 2025-07-24T04:47:06.6282128Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(41): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-07-24T04:47:06.6284067Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-07-24T04:47:06.6285816Z [3383/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_nested_functions_manual.cpp.obj 2025-07-24T04:47:06.9015832Z [3384/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_variable_indexing.cpp.obj 2025-07-24T04:47:09.6965621Z [3385/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_variable.cpp.obj 2025-07-24T04:47:11.9049602Z [3386/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\eval_frame_cpp.cpp.obj 2025-07-24T04:47:12.8659450Z [3387/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\framelocals_mapping.cpp.obj 2025-07-24T04:47:13.3622889Z [3388/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\extra_state.cpp.obj 2025-07-24T04:47:13.9618690Z [3389/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\fx\node.cpp.obj 2025-07-24T04:47:14.7305806Z [3390/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\python_compiled_autograd.cpp.obj 2025-07-24T04:47:14.8408864Z [3391/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\utils.cpp.obj 2025-07-24T04:47:17.5680287Z [3392/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\export\upgrader.cpp.obj 2025-07-24T04:47:20.2753030Z [3393/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\export\example_upgraders.cpp.obj 2025-07-24T04:47:22.7819420Z [3394/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\init.cpp.obj 2025-07-24T04:47:29.5777447Z [3395/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\mtia\Module.cpp.obj 2025-07-24T04:47:31.8354024Z [3396/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\mps\Module.cpp.obj 2025-07-24T04:47:32.9181217Z [3397/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_package\pybind.cpp.obj 2025-07-24T04:47:33.5212119Z [3398/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\export\pybind.cpp.obj 2025-07-24T04:47:33.5756842Z [3399/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\static_cuda_launcher.cpp.obj 2025-07-24T04:47:33.6016604Z [3400/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_runner\pybind.cpp.obj 2025-07-24T04:47:39.2224197Z [3401/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\resize_storage_bytes.cpp.obj 2025-07-24T04:47:40.0110843Z [3402/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\functorch\init.cpp.obj 2025-07-24T04:47:47.0245444Z [3403/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_eager\kernel_meta_info.cpp.obj 2025-07-24T04:47:47.0776465Z [3404/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\guards.cpp.obj 2025-07-24T04:47:49.2124726Z [3405/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\cast_all_constant_to_floating.cpp.obj 2025-07-24T04:47:49.3215311Z [3406/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_eager\kernel_holder.cpp.obj 2025-07-24T04:47:54.2109604Z [3407/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\deduplicate_initializers.cpp.obj 2025-07-24T04:47:57.8155144Z [3408/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\backends\backend_init.cpp.obj 2025-07-24T04:47:59.5000319Z [3409/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\constant_map.cpp.obj 2025-07-24T04:48:01.0770847Z [3410/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\constant_fold.cpp.obj 2025-07-24T04:48:02.2403146Z [3411/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\eliminate_unused_items.cpp.obj 2025-07-24T04:48:05.4172227Z [3412/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx.cpp.obj 2025-07-24T04:48:06.5080348Z [3413/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\eval_peephole.cpp.obj 2025-07-24T04:48:08.1825584Z [3414/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\list_model_parameters.cpp.obj 2025-07-24T04:48:10.4156170Z [3415/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\function_substitution.cpp.obj 2025-07-24T04:48:12.4123063Z [3416/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\helper.cpp.obj 2025-07-24T04:48:15.6518406Z [3417/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\peephole.cpp.obj 2025-07-24T04:48:16.8926072Z [3418/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\preprocess_for_onnx.cpp.obj 2025-07-24T04:48:17.2400376Z [3419/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\prepare_division_for_onnx.cpp.obj 2025-07-24T04:48:17.6062098Z [3420/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\init.cpp.obj 2025-07-24T04:48:18.2960535Z [3421/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\onnx_log.cpp.obj 2025-07-24T04:48:19.8371472Z [3422/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\scalar_type_analysis.cpp.obj 2025-07-24T04:48:21.4584598Z [3423/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\fixup_onnx_controlflow.cpp.obj 2025-07-24T04:48:24.8885332Z [3424/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\remove_inplace_ops_for_onnx.cpp.obj 2025-07-24T04:48:26.3468747Z [3425/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\unpack_quantized_weights.cpp.obj 2025-07-24T04:48:26.6267706Z [3426/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\naming.cpp.obj 2025-07-24T04:48:27.6989859Z [3427/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\function_extraction.cpp.obj 2025-07-24T04:48:29.7123409Z [3428/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\autograd_function_process.cpp.obj 2025-07-24T04:48:32.0852093Z [3429/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\common.cpp.obj 2025-07-24T04:48:36.6258720Z [3430/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\pattern_encapsulation.cpp.obj 2025-07-24T04:48:37.4695809Z [3431/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\pattern_conversion.cpp.obj 2025-07-24T04:48:43.0056732Z [3432/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\pybind_utils.cpp.obj 2025-07-24T04:48:44.5677103Z [3433/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\shape_type_inference.cpp.obj 2025-07-24T04:48:50.3363942Z [3434/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_arg_flatten.cpp.obj 2025-07-24T04:48:51.2793584Z [3435/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_custom_class.cpp.obj 2025-07-24T04:48:55.0428254Z [3436/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_dict.cpp.obj 2025-07-24T04:48:56.7593467Z [3437/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\frontend\tree_views.cpp.obj 2025-07-24T04:49:00.5595484Z [3438/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_interpreter.cpp.obj 2025-07-24T04:49:05.0675691Z [3439/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_list.cpp.obj 2025-07-24T04:49:11.8007864Z [3440/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_tracer.cpp.obj 2025-07-24T04:49:16.1418276Z [3441/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_ir.cpp.obj 2025-07-24T04:49:16.1844307Z [3442/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_tree_views.cpp.obj 2025-07-24T04:49:17.5533285Z [3443/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\frontend\concrete_module_type.cpp.obj 2025-07-24T04:49:17.5534559Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(487): warning C4996: 'pybind11::handle::operator ==': Use obj1.is(obj2) instead 2025-07-24T04:49:17.5535772Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(487): note: the template instantiation context (the oldest one first) is 2025-07-24T04:49:17.5537727Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\frontend\concrete_module_type.cpp(118): note: see reference to function template instantiation 'bool std::operator ==>(const std::vector> &,const std::vector> &)' being compiled 2025-07-24T04:49:17.5540166Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(2238): note: see reference to function template instantiation 'bool std::equal(const _InIt1,const _InIt1,const _InIt2)' being compiled 2025-07-24T04:49:17.5541264Z with 2025-07-24T04:49:17.5541437Z [ 2025-07-24T04:49:17.5541642Z _InIt1=const pybind11::object *, 2025-07-24T04:49:17.5541931Z _InIt2=const pybind11::object * 2025-07-24T04:49:17.5542191Z ] 2025-07-24T04:49:17.5543183Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(5277): note: see reference to function template instantiation 'bool std::equal<_InIt1,_InIt2,std::equal_to>(const _InIt1,const _InIt1,const _InIt2,_Pr)' being compiled 2025-07-24T04:49:17.5544217Z with 2025-07-24T04:49:17.5544397Z [ 2025-07-24T04:49:17.5544786Z _InIt1=const pybind11::object *, 2025-07-24T04:49:23.2047285Z _InIt2=const pybind11::object *, 2025-07-24T04:49:23.2047634Z _Pr=std::equal_to 2025-07-24T04:49:23.2047877Z ] 2025-07-24T04:49:23.2048969Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(5260): note: see reference to function template instantiation 'bool std::equal_to::operator ()(_Ty1,_Ty2) noexcept(false) const' being compiled 2025-07-24T04:49:23.2050159Z with 2025-07-24T04:49:23.2050343Z [ 2025-07-24T04:49:23.2050521Z _Ty1=const pybind11::object &, 2025-07-24T04:49:23.2050816Z _Ty2=const pybind11::object & 2025-07-24T04:49:23.2051063Z ] 2025-07-24T04:49:23.2051490Z [3444/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\multiprocessing\init.cpp.obj 2025-07-24T04:49:28.1145778Z [3445/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_sugared_value.cpp.obj 2025-07-24T04:49:34.4476286Z [3446/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\monitor\python_init.cpp.obj 2025-07-24T04:49:35.1758936Z [3447/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\runtime\static\init.cpp.obj 2025-07-24T04:49:35.3606080Z [3448/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\script_init.cpp.obj 2025-07-24T04:49:41.4329926Z [3449/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\profiler\python\combined_traceback.cpp.obj 2025-07-24T04:49:52.9324923Z [3450/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\onnx\init.cpp.obj 2025-07-24T04:49:53.9344892Z [3451/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\serialization.cpp.obj 2025-07-24T04:49:55.0776690Z [3452/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\tensorexpr\tensorexpr_init.cpp.obj 2025-07-24T04:49:55.9341702Z [3453/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\tensor\python_tensor.cpp.obj 2025-07-24T04:49:57.9718727Z [3454/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\profiler\python\init.cpp.obj 2025-07-24T04:49:59.3186962Z [3455/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\object_ptr.cpp.obj 2025-07-24T04:50:01.1522211Z [3456/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\init.cpp.obj 2025-07-24T04:50:01.2386994Z [3457/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\device_lazy_init.cpp.obj 2025-07-24T04:50:02.8971206Z [3458/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\invalid_arguments.cpp.obj 2025-07-24T04:50:07.8430174Z [3459/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\throughput_benchmark.cpp.obj 2025-07-24T04:50:08.8522663Z [3460/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\pyobject_preservation.cpp.obj 2025-07-24T04:50:10.0111842Z [3461/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_symnode.cpp.obj 2025-07-24T04:50:12.7730320Z [3462/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils.cpp.obj 2025-07-24T04:50:15.2269642Z [3463/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\pybind.cpp.obj 2025-07-24T04:50:16.9530818Z [3464/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\structseq.cpp.obj 2025-07-24T04:50:17.7599115Z [3465/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_arg_parser.cpp.obj 2025-07-24T04:50:20.0241565Z [3466/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_dtypes.cpp.obj 2025-07-24T04:50:22.3792458Z [3467/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_layouts.cpp.obj 2025-07-24T04:50:23.3344848Z [3468/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\nested.cpp.obj 2025-07-24T04:50:24.2807531Z [3469/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_memoryformats.cpp.obj 2025-07-24T04:50:25.7396492Z [3470/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_qschemes.cpp.obj 2025-07-24T04:50:26.8969548Z [3471/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_apply.cpp.obj 2025-07-24T04:50:32.7123197Z [3472/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_dispatch.cpp.obj 2025-07-24T04:50:34.3334572Z [3473/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\verbose.cpp.obj 2025-07-24T04:50:34.6090837Z [3474/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_types.cpp.obj 2025-07-24T04:50:37.1333280Z [3475/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\disable_torch_function.cpp.obj 2025-07-24T04:50:37.3709100Z [3476/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_list.cpp.obj 2025-07-24T04:50:40.2003278Z [3477/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cpu\Module.cpp.obj 2025-07-24T04:50:41.6733221Z [3478/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_new.cpp.obj 2025-07-24T04:50:43.0359145Z [3479/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\instruction_counter\Module.cpp.obj 2025-07-24T04:50:43.3179441Z [3480/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_numpy.cpp.obj 2025-07-24T04:50:47.4167960Z [3481/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\itt.cpp.obj 2025-07-24T04:50:48.2993967Z [3482/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\lazy\python\python_util.cpp.obj 2025-07-24T04:50:48.6439611Z [3483/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\parse_context.cc.obj 2025-07-24T04:50:48.6806924Z [3484/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\message_lite.cc.obj 2025-07-24T04:50:48.7800983Z [3485/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream_impl_lite.cc.obj 2025-07-24T04:50:49.0470496Z [3486/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\repeated_field.cc.obj 2025-07-24T04:50:49.0541057Z [3487/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\bytestream.cc.obj 2025-07-24T04:50:49.2871168Z [3488/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\status.cc.obj 2025-07-24T04:50:49.3267447Z [3489/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\int128.cc.obj 2025-07-24T04:50:49.4959610Z [3490/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\statusor.cc.obj 2025-07-24T04:50:49.5117281Z [3491/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\common.cc.obj 2025-07-24T04:50:49.6330735Z [3492/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\stringpiece.cc.obj 2025-07-24T04:50:49.7115901Z [3493/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\structurally_valid.cc.obj 2025-07-24T04:50:49.7762949Z [3494/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\stringprintf.cc.obj 2025-07-24T04:50:49.9922916Z [3495/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\time.cc.obj 2025-07-24T04:50:50.0146244Z [3496/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\strutil.cc.obj 2025-07-24T04:50:50.0632560Z [3497/7174] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\version.rc.res 2025-07-24T04:50:50.2311957Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-07-24T04:50:50.2312295Z 2025-07-24T04:50:50.2312300Z 2025-07-24T04:50:50.2312509Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-07-24T04:50:50.2312794Z 2025-07-24T04:50:50.2845214Z 2025-07-24T04:50:50.2845255Z 2025-07-24T04:50:50.2845333Z 2025-07-24T04:50:50.2846135Z [3498/7174] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\wire_format_lite.cc.obj 2025-07-24T04:50:51.0021787Z [3499/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\cache.c.obj 2025-07-24T04:50:51.0088334Z [3500/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\api.c.obj 2025-07-24T04:50:51.1366881Z [3501/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\init.c.obj 2025-07-24T04:50:51.1965724Z [3502/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\init.c.obj 2025-07-24T04:50:51.2357171Z [3503/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\info.c.obj 2025-07-24T04:50:51.2667915Z [3504/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\vendor.c.obj 2025-07-24T04:50:51.2976068Z [3505/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\log.c.obj 2025-07-24T04:50:51.3037220Z [3506/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\uarch.c.obj 2025-07-24T04:50:51.3436769Z [3507/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\name.c.obj 2025-07-24T04:50:51.3898333Z [3508/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\isa.c.obj 2025-07-24T04:50:51.3952352Z [3509/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\topology.c.obj 2025-07-24T04:50:51.4357966Z [3510/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\init.c.obj 2025-07-24T04:50:51.4630574Z [3511/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\descriptor.c.obj 2025-07-24T04:50:51.7886086Z [3512/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\deterministic.c.obj 2025-07-24T04:50:51.8074357Z [3513/7174] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\windows\init.c.obj 2025-07-24T04:50:53.1413543Z [3514/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u3.c.obj 2025-07-24T04:50:53.3179318Z [3515/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u1.c.obj 2025-07-24T04:50:53.3334455Z [3516/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\__\test\cpp\jit\torch_python_test.cpp.obj 2025-07-24T04:50:53.3392279Z [3517/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u2.c.obj 2025-07-24T04:50:53.4309970Z [3518/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u2.c.obj 2025-07-24T04:50:53.4322123Z [3519/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u4.c.obj 2025-07-24T04:50:53.4408687Z [3520/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u1.c.obj 2025-07-24T04:50:53.4652979Z [3521/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u3.c.obj 2025-07-24T04:50:53.5365219Z [3522/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u2.c.obj 2025-07-24T04:50:53.5538259Z [3523/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u3.c.obj 2025-07-24T04:50:53.5791029Z [3524/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u1.c.obj 2025-07-24T04:50:53.6090081Z [3525/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u2.c.obj 2025-07-24T04:50:53.6380390Z [3526/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u3.c.obj 2025-07-24T04:50:53.6796171Z [3527/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u3-acc3.c.obj 2025-07-24T04:50:53.6984922Z [3528/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u1.c.obj 2025-07-24T04:50:53.7273408Z [3529/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u4-acc2.c.obj 2025-07-24T04:50:53.7476994Z [3530/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u4-acc4.c.obj 2025-07-24T04:50:53.7842221Z [3531/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u1.c.obj 2025-07-24T04:50:53.8179622Z [3532/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u2-acc2.c.obj 2025-07-24T04:50:53.8474997Z [3533/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u3-acc3.c.obj 2025-07-24T04:50:53.8907924Z [3534/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u4-acc2.c.obj 2025-07-24T04:50:53.9146297Z [3535/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u4-acc4.c.obj 2025-07-24T04:50:53.9572756Z [3536/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u1.c.obj 2025-07-24T04:50:53.9820434Z [3537/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u3-acc3.c.obj 2025-07-24T04:50:54.0022237Z [3538/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u4-acc2.c.obj 2025-07-24T04:50:54.0645394Z [3539/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u4-acc4.c.obj 2025-07-24T04:50:54.1267546Z [3540/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc\f32-conv-hwc-3x3s2p1c3x4-scalar-1x1.c.obj 2025-07-24T04:50:54.2477966Z [3541/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc\f32-conv-hwc-3x3s2p0p1c3x4-scalar-1x1.c.obj 2025-07-24T04:50:54.6401615Z [3542/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-scalar-acc2.c.obj 2025-07-24T04:50:54.6477073Z [3543/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-minmax-scalar-acc2.c.obj 2025-07-24T04:50:54.6488718Z [3544/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-minmax-scalar.c.obj 2025-07-24T04:50:54.6504256Z [3545/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-scalar.c.obj 2025-07-24T04:50:54.7729316Z [3546/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-scalar-acc2.c.obj 2025-07-24T04:50:54.7791343Z [3547/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-minmax-scalar.c.obj 2025-07-24T04:50:54.7903532Z [3548/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-scalar.c.obj 2025-07-24T04:50:54.8137126Z [3549/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3f3m3l1c1s1r-scalar-acc2.c.obj 2025-07-24T04:50:54.9350560Z [3550/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3f3m3l1c1s1r-scalar.c.obj 2025-07-24T04:50:55.0318613Z [3551/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-minmax-scalar.c.obj 2025-07-24T04:50:55.0335854Z [3552/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-minmax-scalar-acc2.c.obj 2025-07-24T04:50:55.0522154Z [3553/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-scalar.c.obj 2025-07-24T04:50:55.1024657Z [3554/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-minmax-scalar.c.obj 2025-07-24T04:50:55.2083877Z [3555/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-minmax-scalar.c.obj 2025-07-24T04:50:55.2583428Z [3556/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-scalar.c.obj 2025-07-24T04:50:55.2661109Z [3557/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-scalar.c.obj 2025-07-24T04:50:55.3381041Z [3558/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-scalar-acc2.c.obj 2025-07-24T04:50:55.3645184Z [3559/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-minmax-scalar-acc2.c.obj 2025-07-24T04:50:55.4137532Z [3560/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-minmax-scalar.c.obj 2025-07-24T04:50:55.4327970Z [3561/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-scalar-acc2.c.obj 2025-07-24T04:50:55.5174516Z [3562/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-scalar.c.obj 2025-07-24T04:50:55.5292144Z [3563/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-minmax-scalar-acc2.c.obj 2025-07-24T04:50:55.5860443Z [3564/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-scalar-acc2.c.obj 2025-07-24T04:50:55.5979373Z [3565/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-minmax-scalar.c.obj 2025-07-24T04:50:55.6744623Z [3566/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-scalar.c.obj 2025-07-24T04:50:55.6828412Z [3567/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-minmax-scalar-acc2.c.obj 2025-07-24T04:50:55.7813042Z [3568/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-scalar-acc2.c.obj 2025-07-24T04:50:55.7829477Z [3569/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-minmax-scalar.c.obj 2025-07-24T04:50:55.8185134Z [3570/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-scalar.c.obj 2025-07-24T04:50:55.8811284Z [3571/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-minmax-scalar-acc2.c.obj 2025-07-24T04:50:55.9425377Z [3572/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-minmax-scalar.c.obj 2025-07-24T04:50:55.9580530Z [3573/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-scalar-acc2.c.obj 2025-07-24T04:50:55.9782404Z [3574/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-scalar.c.obj 2025-07-24T04:50:56.0626070Z [3575/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-minmax-scalar.c.obj 2025-07-24T04:50:56.0941825Z [3576/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-scalar.c.obj 2025-07-24T04:50:56.1281687Z [3577/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-minmax-scalar.c.obj 2025-07-24T04:50:56.1523803Z [3578/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-minmax-scalar-acc2.c.obj 2025-07-24T04:50:56.2132179Z [3579/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-scalar-acc2.c.obj 2025-07-24T04:50:56.2503430Z [3580/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-scalar.c.obj 2025-07-24T04:50:56.2803609Z [3581/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-minmax-scalar.c.obj 2025-07-24T04:50:56.3029445Z [3582/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-scalar.c.obj 2025-07-24T04:50:56.4164200Z [3583/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-minmax-scalar.c.obj 2025-07-24T04:50:56.4276722Z [3584/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-minmax-scalar-acc2.c.obj 2025-07-24T04:50:56.5236879Z [3585/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-scalar-acc2.c.obj 2025-07-24T04:50:56.5537947Z [3586/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-scalar.c.obj 2025-07-24T04:50:56.6193630Z [3587/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc2.c.obj 2025-07-24T04:50:56.6547860Z [3588/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc3.c.obj 2025-07-24T04:50:56.6624794Z [3589/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc4.c.obj 2025-07-24T04:50:56.7040285Z [3590/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1.c.obj 2025-07-24T04:50:56.7423191Z [3591/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1.c.obj 2025-07-24T04:50:56.7753822Z [3592/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-3x1.c.obj 2025-07-24T04:50:56.7967135Z [3593/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-5x1.c.obj 2025-07-24T04:50:56.8408170Z [3594/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-6x1.c.obj 2025-07-24T04:50:56.8953048Z [3595/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc3.c.obj 2025-07-24T04:50:56.9027528Z [3596/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc4.c.obj 2025-07-24T04:50:56.9433833Z [3597/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1.c.obj 2025-07-24T04:50:57.0288995Z [3598/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1.c.obj 2025-07-24T04:50:57.0307919Z [3599/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-3x1.c.obj 2025-07-24T04:50:57.0973116Z [3600/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-4x1.c.obj 2025-07-24T04:50:57.2062448Z [3601/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc4.c.obj 2025-07-24T04:50:57.2112319Z [3602/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1.c.obj 2025-07-24T04:50:57.2793273Z [3603/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc2.c.obj 2025-07-24T04:50:57.2805823Z [3604/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc3.c.obj 2025-07-24T04:50:57.3880430Z [3605/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc3.c.obj 2025-07-24T04:50:57.3930516Z [3606/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1.c.obj 2025-07-24T04:50:57.3943217Z [3607/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-3x1-acc2.c.obj 2025-07-24T04:50:57.4407757Z [3608/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-3x1.c.obj 2025-07-24T04:50:57.5498326Z [3609/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc2.c.obj 2025-07-24T04:50:57.5638536Z [3610/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc3.c.obj 2025-07-24T04:50:57.5815441Z [3611/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc4.c.obj 2025-07-24T04:50:57.5875753Z [3612/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1.c.obj 2025-07-24T04:50:57.6762294Z [3613/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc3.c.obj 2025-07-24T04:50:57.7362057Z [3614/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-3x1-acc2.c.obj 2025-07-24T04:50:57.7412218Z [3615/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-3x1.c.obj 2025-07-24T04:50:57.7513529Z [3616/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1.c.obj 2025-07-24T04:50:57.8720056Z [3617/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u1.c.obj 2025-07-24T04:50:57.8747057Z [3618/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u3.c.obj 2025-07-24T04:50:57.8815025Z [3619/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u1.c.obj 2025-07-24T04:50:57.8867055Z [3620/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u2.c.obj 2025-07-24T04:50:58.0101266Z [3621/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u3.c.obj 2025-07-24T04:50:58.0161905Z [3622/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u4.c.obj 2025-07-24T04:50:58.2230008Z [3623/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-2x4-minmax-scalar.c.obj 2025-07-24T04:50:58.2294434Z [3624/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x4-minmax-scalar.c.obj 2025-07-24T04:50:58.2306280Z [3625/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x2-relu-scalar.c.obj 2025-07-24T04:50:58.2459894Z [3626/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x4-minmax-scalar.c.obj 2025-07-24T04:50:58.4208999Z [3627/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c4.c.obj 2025-07-24T04:50:58.4258266Z [3628/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p2.c.obj 2025-07-24T04:50:58.4269546Z [3629/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c1.c.obj 2025-07-24T04:50:58.4404670Z [3630/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p1.c.obj 2025-07-24T04:50:58.6699028Z [3631/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-2x4-minmax-scalar.c.obj 2025-07-24T04:50:58.6782889Z [3632/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x2-minmax-scalar.c.obj 2025-07-24T04:50:58.6828035Z [3633/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-3x3-minmax-scalar.c.obj 2025-07-24T04:50:58.6889369Z [3634/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x2-relu-scalar.c.obj 2025-07-24T04:50:58.7843629Z [3635/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x4-minmax-scalar.c.obj 2025-07-24T04:50:58.8795343Z [3636/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-2x4-minmax-scalar.c.obj 2025-07-24T04:50:58.9342697Z [3637/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x2-minmax-scalar.c.obj 2025-07-24T04:50:58.9748626Z [3638/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-scalar.c.obj 2025-07-24T04:50:59.0197916Z [3639/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\lazy\python\init.cpp.obj 2025-07-24T04:50:59.0255192Z [3640/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-relu-scalar.c.obj 2025-07-24T04:50:59.1510299Z [3641/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-minmax-scalar.c.obj 2025-07-24T04:50:59.1523028Z [3642/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-scalar.c.obj 2025-07-24T04:50:59.1535529Z [3643/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-relu-scalar.c.obj 2025-07-24T04:50:59.2516693Z [3644/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-minmax-scalar.c.obj 2025-07-24T04:50:59.2760975Z [3645/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-relu-scalar.c.obj 2025-07-24T04:50:59.2815398Z [3646/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-scalar.c.obj 2025-07-24T04:50:59.2949813Z [3647/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-relu-scalar.c.obj 2025-07-24T04:50:59.2998201Z [3648/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-scalar.c.obj 2025-07-24T04:50:59.3689582Z [3649/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-1x1-minmax-scalar.c.obj 2025-07-24T04:50:59.3848020Z [3650/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-2x1-minmax-scalar.c.obj 2025-07-24T04:50:59.3901645Z [3651/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-4x1-minmax-scalar.c.obj 2025-07-24T04:50:59.4057153Z [3652/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x1-minmax-scalar.c.obj 2025-07-24T04:50:59.4077665Z [3653/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x2-minmax-scalar.c.obj 2025-07-24T04:50:59.4892484Z [3654/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x4-minmax-scalar.c.obj 2025-07-24T04:50:59.4964513Z [3655/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u2.c.obj 2025-07-24T04:50:59.5094500Z [3656/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u1.c.obj 2025-07-24T04:50:59.5561669Z [3657/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u4.c.obj 2025-07-24T04:50:59.5573936Z [3658/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u3.c.obj 2025-07-24T04:50:59.6269228Z [3659/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u3.c.obj 2025-07-24T04:50:59.6551788Z [3660/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u1.c.obj 2025-07-24T04:50:59.6565067Z [3661/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u2.c.obj 2025-07-24T04:50:59.6630699Z [3662/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u2.c.obj 2025-07-24T04:50:59.6967412Z [3663/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u3.c.obj 2025-07-24T04:50:59.8322961Z [3664/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u2.c.obj 2025-07-24T04:50:59.8391521Z [3665/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u2.c.obj 2025-07-24T04:50:59.8618774Z [3666/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u1.c.obj 2025-07-24T04:50:59.8630646Z [3667/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u3.c.obj 2025-07-24T04:50:59.9196453Z [3668/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u4.c.obj 2025-07-24T04:50:59.9911225Z [3669/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u1.c.obj 2025-07-24T04:50:59.9936622Z [3670/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u2.c.obj 2025-07-24T04:50:59.9948738Z [3671/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u3.c.obj 2025-07-24T04:51:00.0755210Z [3672/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u3.c.obj 2025-07-24T04:51:00.1669578Z [3673/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u4-acc2.c.obj 2025-07-24T04:51:00.1752957Z [3674/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u4-acc4.c.obj 2025-07-24T04:51:00.1764487Z [3675/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u2-acc2.c.obj 2025-07-24T04:51:00.1996653Z [3676/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u1.c.obj 2025-07-24T04:51:00.2009059Z [3677/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u1.c.obj 2025-07-24T04:51:00.2917767Z [3678/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc4.c.obj 2025-07-24T04:51:00.3122396Z [3679/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u2-acc2.c.obj 2025-07-24T04:51:00.3791464Z [3680/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u2-acc2.c.obj 2025-07-24T04:51:00.3803304Z [3681/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u1.c.obj 2025-07-24T04:51:00.3849324Z [3682/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u3-acc3.c.obj 2025-07-24T04:51:00.4181244Z [3683/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u4-acc2.c.obj 2025-07-24T04:51:00.4258450Z [3684/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u1.c.obj 2025-07-24T04:51:00.4889405Z [3685/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u4-acc2.c.obj 2025-07-24T04:51:00.4975476Z [3686/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u3-acc3.c.obj 2025-07-24T04:51:00.5053088Z [3687/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u2-acc2.c.obj 2025-07-24T04:51:00.5280718Z [3688/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u4-acc4.c.obj 2025-07-24T04:51:00.5332437Z [3689/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u1.c.obj 2025-07-24T04:51:00.6013873Z [3690/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u3-acc3.c.obj 2025-07-24T04:51:00.6280618Z [3691/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u4-acc2.c.obj 2025-07-24T04:51:00.6305805Z [3692/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u2-acc2.c.obj 2025-07-24T04:51:00.6908894Z [3693/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u1.c.obj 2025-07-24T04:51:00.7470270Z [3694/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u3-acc3.c.obj 2025-07-24T04:51:00.7486078Z [3695/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u2-acc2.c.obj 2025-07-24T04:51:00.7846232Z [3696/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u4-acc2.c.obj 2025-07-24T04:51:00.8104306Z [3697/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-1x1-minmax-scalar-pipelined.c.obj 2025-07-24T04:51:00.8478042Z [3698/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-1x1-minmax-scalar.c.obj 2025-07-24T04:51:00.8620510Z [3699/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-2x1-minmax-scalar.c.obj 2025-07-24T04:51:00.8637459Z [3700/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-2x1-minmax-scalar-pipelined.c.obj 2025-07-24T04:51:00.9986578Z [3701/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-scalar-pipelined.c.obj 2025-07-24T04:51:01.0004096Z [3702/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-scalar.c.obj 2025-07-24T04:51:01.1166882Z [3703/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-scalar-pipelined.c.obj 2025-07-24T04:51:01.6829707Z [3704/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u2.c.obj 2025-07-24T04:51:01.7024718Z [3705/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u1.c.obj 2025-07-24T04:51:01.7092904Z [3706/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u2.c.obj 2025-07-24T04:51:01.7105920Z [3707/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u1.c.obj 2025-07-24T04:51:01.8244408Z [3708/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u4.c.obj 2025-07-24T04:51:01.9178496Z [3709/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u4.c.obj 2025-07-24T04:51:01.9196598Z [3710/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u1.c.obj 2025-07-24T04:51:01.9269718Z [3711/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u4.c.obj 2025-07-24T04:51:01.9676384Z [3712/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u1.c.obj 2025-07-24T04:51:01.9798980Z [3713/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u8.c.obj 2025-07-24T04:51:02.0720448Z [3714/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u4.c.obj 2025-07-24T04:51:02.0893890Z [3715/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u1.c.obj 2025-07-24T04:51:02.1137127Z [3716/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u8.c.obj 2025-07-24T04:51:02.1925583Z [3717/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u4.c.obj 2025-07-24T04:51:02.2102247Z [3718/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u2.c.obj 2025-07-24T04:51:02.2370609Z [3719/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u2.c.obj 2025-07-24T04:51:02.2432088Z [3720/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u1.c.obj 2025-07-24T04:51:02.2717548Z [3721/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u4.c.obj 2025-07-24T04:51:02.3262998Z [3722/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u1.c.obj 2025-07-24T04:51:02.3360693Z [3723/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u2.c.obj 2025-07-24T04:51:02.3667134Z [3724/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u4.c.obj 2025-07-24T04:51:02.3680147Z [3725/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u1.c.obj 2025-07-24T04:51:02.3904184Z [3726/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u2.c.obj 2025-07-24T04:51:02.4445860Z [3727/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u4.c.obj 2025-07-24T04:51:02.4856133Z [3728/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u2.c.obj 2025-07-24T04:51:02.4869794Z [3729/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u1.c.obj 2025-07-24T04:51:02.4935248Z [3730/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u4.c.obj 2025-07-24T04:51:02.5762398Z [3731/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u2.c.obj 2025-07-24T04:51:02.5775887Z [3732/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u1.c.obj 2025-07-24T04:51:02.6027272Z [3733/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u1.c.obj 2025-07-24T04:51:02.6144633Z [3734/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u2.c.obj 2025-07-24T04:51:02.6389367Z [3735/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u4.c.obj 2025-07-24T04:51:02.7011903Z [3736/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u1.c.obj 2025-07-24T04:51:02.7150308Z [3737/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u4.c.obj 2025-07-24T04:51:02.7303855Z [3738/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u2.c.obj 2025-07-24T04:51:02.7316579Z [3739/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u4.c.obj 2025-07-24T04:51:02.7838791Z [3740/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u1.c.obj 2025-07-24T04:51:02.8482510Z [3741/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u2.c.obj 2025-07-24T04:51:02.8588182Z [3742/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u8.c.obj 2025-07-24T04:51:02.8652565Z [3743/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u4.c.obj 2025-07-24T04:51:02.8664837Z [3744/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u1.c.obj 2025-07-24T04:51:02.8948483Z [3745/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u4.c.obj 2025-07-24T04:51:02.9850729Z [3746/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u2.c.obj 2025-07-24T04:51:02.9916990Z [3747/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u1.c.obj 2025-07-24T04:51:02.9962399Z [3748/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u1.c.obj 2025-07-24T04:51:03.0022782Z [3749/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u4.c.obj 2025-07-24T04:51:03.0209729Z [3750/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u2.c.obj 2025-07-24T04:51:03.1127987Z [3751/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u1.c.obj 2025-07-24T04:51:03.1367300Z [3752/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u1.c.obj 2025-07-24T04:51:03.1447817Z [3753/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u4.c.obj 2025-07-24T04:51:03.1505396Z [3754/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u4.c.obj 2025-07-24T04:51:03.1665079Z [3755/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u2.c.obj 2025-07-24T04:51:03.2495628Z [3756/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u2.c.obj 2025-07-24T04:51:03.2610413Z [3757/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u4.c.obj 2025-07-24T04:51:03.3537289Z [3758/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u1.c.obj 2025-07-24T04:51:03.3551487Z [3759/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u2.c.obj 2025-07-24T04:51:03.3602071Z [3760/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u4.c.obj 2025-07-24T04:51:03.5171123Z [3761/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u2.c.obj 2025-07-24T04:51:03.5992514Z [3762/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u1.c.obj 2025-07-24T04:51:03.6053677Z [3763/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u8.c.obj 2025-07-24T04:51:03.8828127Z [3764/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\distributed\c10d\python_comm_hook.cpp.obj 2025-07-24T04:51:04.6253906Z [3765/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u6.c.obj 2025-07-24T04:51:04.6308294Z [3766/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u2.c.obj 2025-07-24T04:51:04.6319530Z [3767/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u1.c.obj 2025-07-24T04:51:04.6426682Z [3768/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u5.c.obj 2025-07-24T04:51:04.6441645Z [3769/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u1.c.obj 2025-07-24T04:51:04.6558553Z [3770/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u3.c.obj 2025-07-24T04:51:04.7600747Z [3771/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u1.c.obj 2025-07-24T04:51:04.7683889Z [3772/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u3.c.obj 2025-07-24T04:51:04.7734129Z [3773/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u4.c.obj 2025-07-24T04:51:04.7779950Z [3774/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u5.c.obj 2025-07-24T04:51:04.7840583Z [3775/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u2.c.obj 2025-07-24T04:51:04.7897755Z [3776/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u6.c.obj 2025-07-24T04:51:04.9557018Z [3777/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vgelu\gen\f32-vgelu-scalar.c.obj 2025-07-24T04:51:04.9856241Z [3778/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u1.c.obj 2025-07-24T04:51:05.0138586Z [3779/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u2.c.obj 2025-07-24T04:51:05.0263251Z [3780/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u1.c.obj 2025-07-24T04:51:05.0275718Z [3781/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u2.c.obj 2025-07-24T04:51:05.0330336Z [3782/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-scalar-log.c.obj 2025-07-24T04:51:05.0841837Z [3783/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c2-minmax-scalar-2x.c.obj 2025-07-24T04:51:05.0913121Z [3784/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c4-minmax-scalar-2x.c.obj 2025-07-24T04:51:05.1366971Z [3785/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u1.c.obj 2025-07-24T04:51:05.1594184Z [3786/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u2.c.obj 2025-07-24T04:51:05.1707307Z [3787/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u2.c.obj 2025-07-24T04:51:05.1816437Z [3788/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u4.c.obj 2025-07-24T04:51:05.2559099Z [3789/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u2.c.obj 2025-07-24T04:51:05.2575295Z [3790/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u2.c.obj 2025-07-24T04:51:05.2587753Z [3791/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u2.c.obj 2025-07-24T04:51:05.3294386Z [3792/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u2.c.obj 2025-07-24T04:51:05.3423817Z [3793/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-lut64-p2-div-u1.c.obj 2025-07-24T04:51:05.3648402Z [3794/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-lut2048-p1-div-u1.c.obj 2025-07-24T04:51:05.3732874Z [3795/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-lut2048-p1-div-u2.c.obj 2025-07-24T04:51:05.4356299Z [3796/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-lut64-p2-div-u4.c.obj 2025-07-24T04:51:05.4368722Z [3797/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-lut2048-p1-div-u4.c.obj 2025-07-24T04:51:05.4432952Z [3798/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u1.c.obj 2025-07-24T04:51:05.5187201Z [3799/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u2.c.obj 2025-07-24T04:51:05.5327954Z [3800/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u2.c.obj 2025-07-24T04:51:05.5377969Z [3801/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u4.c.obj 2025-07-24T04:51:05.5637927Z [3802/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u4.c.obj 2025-07-24T04:51:05.6893191Z [3803/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-1x2-minmax-scalar.c.obj 2025-07-24T04:51:05.6944194Z [3804/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-1x8-minmax-scalar.c.obj 2025-07-24T04:51:05.9423351Z [3805/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-1x4-minmax-scalar.c.obj 2025-07-24T04:51:05.9435360Z [3806/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-2x4-minmax-scalar.c.obj 2025-07-24T04:51:05.9454672Z [3807/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-2x8-minmax-scalar.c.obj 2025-07-24T04:51:05.9465735Z [3808/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-2x2-minmax-scalar.c.obj 2025-07-24T04:51:06.0175512Z [3809/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-4x4-minmax-scalar.c.obj 2025-07-24T04:51:06.1453687Z [3810/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x2-minmax-scalar.c.obj 2025-07-24T04:51:06.1474314Z [3811/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x2-minmax-scalar.c.obj 2025-07-24T04:51:06.1580831Z [3812/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x8-minmax-scalar.c.obj 2025-07-24T04:51:06.2116595Z [3813/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x8-minmax-scalar.c.obj 2025-07-24T04:51:06.2164767Z [3814/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x4-minmax-scalar.c.obj 2025-07-24T04:51:06.2855089Z [3815/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x1-minmax-scalar.c.obj 2025-07-24T04:51:06.2933736Z [3816/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8-minmax-scalar.c.obj 2025-07-24T04:51:06.3044704Z [3817/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x2-minmax-scalar.c.obj 2025-07-24T04:51:06.3659830Z [3818/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4-minmax-scalar.c.obj 2025-07-24T04:51:06.3874271Z [3819/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x8-minmax-scalar.c.obj 2025-07-24T04:51:06.3893803Z [3820/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x2-minmax-scalar.c.obj 2025-07-24T04:51:06.4730400Z [3821/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x8-minmax-scalar.c.obj 2025-07-24T04:51:06.5634537Z [3822/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x8-minmax-scalar.c.obj 2025-07-24T04:51:06.5711244Z [3823/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x4-minmax-scalar.c.obj 2025-07-24T04:51:06.6152672Z [3824/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x8-minmax-scalar.c.obj 2025-07-24T04:51:06.7161160Z [3825/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x4-minmax-scalar.c.obj 2025-07-24T04:51:06.7455603Z [3826/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x8-minmax-scalar.c.obj 2025-07-24T04:51:06.7946359Z [3827/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:06.7969937Z [3828/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:06.8049869Z [3829/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:06.8161789Z [3830/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:06.8573016Z [3831/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:06.8814924Z [3832/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:06.9582042Z [3833/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:06.9647473Z [3834/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:06.9715746Z [3835/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:07.0316868Z [3836/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:07.0375012Z [3837/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:07.0533292Z [3838/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:07.1397029Z [3839/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:07.1748643Z [3840/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:07.1765504Z [3841/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:07.1780935Z [3842/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:07.2675715Z [3843/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:07.2691113Z [3844/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:07.3517161Z [3845/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:07.3563213Z [3846/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:07.3627079Z [3847/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:07.5671459Z [3848/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:07.5685960Z [3849/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:07.5699399Z [3850/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:07.5971595Z [3851/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:07.6617326Z [3852/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:07.6684929Z [3853/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:07.6785502Z [3854/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-rndnu-scalar.c.obj 2025-07-24T04:51:07.6831640Z [3855/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:07.7155242Z [3856/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:07.7852870Z [3857/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:07.8017450Z [3858/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-rndnu-scalar.c.obj 2025-07-24T04:51:07.8030045Z [3859/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:07.8238084Z [3860/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:07.8310044Z [3861/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:07.9669383Z [3862/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-rndnu-scalar.c.obj 2025-07-24T04:51:08.0453748Z [3863/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:08.0543864Z [3864/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:08.0646734Z [3865/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:08.1667790Z [3866/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u2.c.obj 2025-07-24T04:51:08.1770960Z [3867/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u3.c.obj 2025-07-24T04:51:08.2700585Z [3868/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:08.2720450Z [3869/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:08.2774129Z [3870/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:08.6318612Z [3871/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c4-gemm-goi-scalar.c.obj 2025-07-24T04:51:08.6339211Z [3872/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c4-gemm-gio-scalar.c.obj 2025-07-24T04:51:08.6388044Z [3873/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-scalar.c.obj 2025-07-24T04:51:08.6399165Z [3874/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c4-gemm-goi-scalar.c.obj 2025-07-24T04:51:08.6474522Z [3875/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c4-gemm-gio-scalar.c.obj 2025-07-24T04:51:08.6595857Z [3876/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-gio-scalar.c.obj 2025-07-24T04:51:08.7664484Z [3877/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-gio-scalar.c.obj 2025-07-24T04:51:08.8097566Z [3878/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x32c4-gemm-goi-scalar.c.obj 2025-07-24T04:51:08.8112208Z [3879/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x32c4-gemm-gio-scalar.c.obj 2025-07-24T04:51:08.8197858Z [3880/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x8c8-gemm-goi-scalar.c.obj 2025-07-24T04:51:09.0618280Z [3881/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x16c8-gemm-goi-scalar.c.obj 2025-07-24T04:51:09.0697177Z [3882/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-4p2c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:09.0710250Z [3883/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x64c4-gemm-gio-scalar.c.obj 2025-07-24T04:51:09.0722959Z [3884/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x32c8-gemm-goi-scalar.c.obj 2025-07-24T04:51:09.1616343Z [3885/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:09.1679892Z [3886/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:09.1849115Z [3887/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:09.3369240Z [3888/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:09.3383558Z [3889/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:09.3396771Z [3890/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:09.4172320Z [3891/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:09.4502324Z [3892/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:09.4555084Z [3893/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:09.5030905Z [3894/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:09.5090287Z [3895/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:09.5172202Z [3896/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:09.5441529Z [3897/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:09.5734181Z [3898/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:09.5751561Z [3899/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:09.7129375Z [3900/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:09.7244148Z [3901/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:09.7408296Z [3902/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:09.7686692Z [3903/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:09.7698669Z [3904/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:09.7713341Z [3905/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:09.8514974Z [3906/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:09.8595935Z [3907/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:09.8908177Z [3908/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:10.0639706Z [3909/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:10.0654377Z [3910/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:10.0883652Z [3911/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:10.1204494Z [3912/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:10.1325983Z [3913/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:10.1383279Z [3914/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:10.1858754Z [3915/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:10.2016041Z [3916/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p4c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:10.2191919Z [3917/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:10.3275178Z [3918/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:10.3327317Z [3919/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:10.3345045Z [3920/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:10.4934038Z [3921/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:10.5422682Z [3922/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p4c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:10.5435437Z [3923/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:10.6333926Z [3924/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:10.6383776Z [3925/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:10.6475906Z [3926/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:10.6758205Z [3927/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:10.7669871Z [3928/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:10.8283017Z [3929/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:10.8380960Z [3930/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:10.8394385Z [3931/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:10.8406019Z [3932/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:10.9106391Z [3933/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:10.9710787Z [3934/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:10.9772610Z [3935/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:11.0092341Z [3936/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:11.0103491Z [3937/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:11.0600617Z [3938/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:11.0657702Z [3939/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:11.1127616Z [3940/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:11.1910188Z [3941/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:11.1995060Z [3942/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:11.2021720Z [3943/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:11.3670519Z [3944/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:11.3682765Z [3945/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:11.3703432Z [3946/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:11.4104376Z [3947/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:11.4530587Z [3948/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:11.5033780Z [3949/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:11.5079443Z [3950/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:11.5090312Z [3951/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:11.5159836Z [3952/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:11.6219015Z [3953/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:11.6336198Z [3954/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:11.6834933Z [3955/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:11.6996226Z [3956/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:11.7051107Z [3957/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:11.7468822Z [3958/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:11.7718681Z [3959/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:11.7921142Z [3960/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:11.8282767Z [3961/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:11.8332540Z [3962/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:11.8463994Z [3963/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:11.9728202Z [3964/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x8c8-gemm-goi-scalar.c.obj 2025-07-24T04:51:11.9807072Z [3965/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x16c8-gemm-gio-scalar.c.obj 2025-07-24T04:51:12.0167482Z [3966/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u2.c.obj 2025-07-24T04:51:12.0257658Z [3967/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u2.c.obj 2025-07-24T04:51:12.0337171Z [3968/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x8c8-gemm-gio-scalar.c.obj 2025-07-24T04:51:12.0387480Z [3969/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u1.c.obj 2025-07-24T04:51:12.1024894Z [3970/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u2.c.obj 2025-07-24T04:51:12.1536856Z [3971/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u2.c.obj 2025-07-24T04:51:12.1589582Z [3972/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u1.c.obj 2025-07-24T04:51:12.1779789Z [3973/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u2.c.obj 2025-07-24T04:51:12.1794253Z [3974/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u1.c.obj 2025-07-24T04:51:12.1811326Z [3975/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u2.c.obj 2025-07-24T04:51:12.2225280Z [3976/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u1.c.obj 2025-07-24T04:51:12.2834527Z [3977/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u2.c.obj 2025-07-24T04:51:12.2888856Z [3978/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u2.c.obj 2025-07-24T04:51:12.2901346Z [3979/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u1.c.obj 2025-07-24T04:51:12.3826157Z [3980/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:12.3947062Z [3981/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:12.4404742Z [3982/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:12.4424084Z [3983/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:12.4443919Z [3984/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:12.4775796Z [3985/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:12.5073792Z [3986/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:12.5167064Z [3987/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:12.5556543Z [3988/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:12.6379735Z [3989/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:12.6392336Z [3990/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:12.6442240Z [3991/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:12.6491747Z [3992/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:12.6601264Z [3993/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:12.7255157Z [3994/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:12.9284410Z [3995/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:12.9298112Z [3996/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:12.9654754Z [3997/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:12.9721855Z [3998/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:12.9989307Z [3999/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:13.0001236Z [4000/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:13.1522350Z [4001/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:13.1536566Z [4002/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:13.1559534Z [4003/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:13.3123793Z [4004/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:13.3138217Z [4005/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:13.3223317Z [4006/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:13.3574025Z [4007/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:13.3648287Z [4008/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:13.3699144Z [4009/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-rndnu-scalar.c.obj 2025-07-24T04:51:13.4486929Z [4010/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-rndnu-scalar.c.obj 2025-07-24T04:51:13.4550165Z [4011/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:13.4563981Z [4012/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:13.4871062Z [4013/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:13.5064121Z [4014/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-rndnu-scalar.c.obj 2025-07-24T04:51:13.5115444Z [4015/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:13.6887804Z [4016/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:13.7047127Z [4017/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:13.7102459Z [4018/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:13.8003314Z [4019/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:13.8179228Z [4020/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u3.c.obj 2025-07-24T04:51:13.8231963Z [4021/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u2.c.obj 2025-07-24T04:51:13.8244079Z [4022/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:13.8264491Z [4023/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:13.8584074Z [4024/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:13.9545611Z [4025/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-rndnu-scalar.c.obj 2025-07-24T04:51:13.9612757Z [4026/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-rndnu-scalar.c.obj 2025-07-24T04:51:13.9667750Z [4027/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:13.9718596Z [4028/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:13.9847826Z [4029/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:14.0957289Z [4030/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:14.1036924Z [4031/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:14.1049164Z [4032/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:14.1060142Z [4033/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-rndnu-scalar.c.obj 2025-07-24T04:51:14.1131914Z [4034/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:14.1291708Z [4035/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:14.2278918Z [4036/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-rndnu-scalar.c.obj 2025-07-24T04:51:14.2828873Z [4037/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-rndnu-scalar.c.obj 2025-07-24T04:51:14.2880408Z [4038/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:14.3883927Z [4039/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:14.3937400Z [4040/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:14.3948444Z [4041/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:14.3958952Z [4042/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:14.5042209Z [4043/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-rndnu-scalar.c.obj 2025-07-24T04:51:14.5892921Z [4044/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:14.5912129Z [4045/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-rndnu-scalar.c.obj 2025-07-24T04:51:14.5984042Z [4046/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:14.6152543Z [4047/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:14.6163283Z [4048/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:14.6388915Z [4049/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:14.7170369Z [4050/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-rndnu-scalar.c.obj 2025-07-24T04:51:14.7340953Z [4051/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:14.8239106Z [4052/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:14.8292014Z [4053/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:14.8350132Z [4054/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-rndnu-scalar.c.obj 2025-07-24T04:51:14.8355653Z [4055/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:14.8677457Z [4056/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-rndnu-scalar.c.obj 2025-07-24T04:51:14.8950383Z [4057/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:14.9456535Z [4058/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:14.9625461Z [4059/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:15.1389040Z [4060/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-rndnu-scalar.c.obj 2025-07-24T04:51:15.1436866Z [4061/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:15.1438251Z [4062/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:15.1439427Z [4063/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:15.1440530Z [4064/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:15.1441884Z [4065/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-rndnu-scalar.c.obj 2025-07-24T04:51:15.3189510Z [4066/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:15.3201913Z [4067/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:15.3215502Z [4068/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:15.3228730Z [4069/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-rndnu-scalar.c.obj 2025-07-24T04:51:15.3240126Z [4070/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:15.4037728Z [4071/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-rndnu-scalar.c.obj 2025-07-24T04:51:15.5188111Z [4072/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:15.5369611Z [4073/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-rndnu-scalar.c.obj 2025-07-24T04:51:15.5416026Z [4074/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:15.5439065Z [4075/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T04:51:15.5484386Z [4076/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:15.5556570Z [4077/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T04:51:15.6541429Z [4078/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u1.c.obj 2025-07-24T04:51:15.6690483Z [4079/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-rndnu-scalar.c.obj 2025-07-24T04:51:15.6819533Z [4080/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T04:51:15.6887644Z [4081/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u2.c.obj 2025-07-24T04:51:15.6901793Z [4082/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u2.c.obj 2025-07-24T04:51:15.7071219Z [4083/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u2.c.obj 2025-07-24T04:51:15.7602043Z [4084/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u2.c.obj 2025-07-24T04:51:15.7883316Z [4085/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u1.c.obj 2025-07-24T04:51:15.8185721Z [4086/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u2.c.obj 2025-07-24T04:51:15.8312573Z [4087/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u1.c.obj 2025-07-24T04:51:15.8438324Z [4088/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u2.c.obj 2025-07-24T04:51:15.8494558Z [4089/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u1.c.obj 2025-07-24T04:51:15.9072795Z [4090/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u1.c.obj 2025-07-24T04:51:15.9130008Z [4091/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u2.c.obj 2025-07-24T04:51:15.9335374Z [4092/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u2.c.obj 2025-07-24T04:51:15.9596199Z [4093/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c4.c.obj 2025-07-24T04:51:15.9647467Z [4094/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c2.c.obj 2025-07-24T04:51:15.9659335Z [4095/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c2.c.obj 2025-07-24T04:51:16.0337001Z [4096/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c4.c.obj 2025-07-24T04:51:16.0597044Z [4097/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u1.c.obj 2025-07-24T04:51:16.0612278Z [4098/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u2.c.obj 2025-07-24T04:51:16.0743321Z [4099/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u16.c.obj 2025-07-24T04:51:16.1317580Z [4100/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u8.c.obj 2025-07-24T04:51:16.2566275Z [4101/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x2-gemm-goi-scalar-u2.c.obj 2025-07-24T04:51:16.2631197Z [4102/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x4-gemm-goi-scalar-u4.c.obj 2025-07-24T04:51:16.2735323Z [4103/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x2-gemm-goi-scalar-u4.c.obj 2025-07-24T04:51:16.2788522Z [4104/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-gio-scalar.c.obj 2025-07-24T04:51:16.2807544Z [4105/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16-gemm-goi-scalar-u4.c.obj 2025-07-24T04:51:16.2980132Z [4106/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8-gemm-goi-scalar-u4.c.obj 2025-07-24T04:51:16.4597279Z [4107/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-1x4-scalar-int.c.obj 2025-07-24T04:51:16.4738736Z [4108/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-1x2-scalar-int.c.obj 2025-07-24T04:51:16.4749715Z [4109/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x1-scalar-int.c.obj 2025-07-24T04:51:16.4761240Z [4110/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-2x2-scalar-int.c.obj 2025-07-24T04:51:16.4772542Z [4111/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-2x1-scalar-int.c.obj 2025-07-24T04:51:17.8992310Z [4112/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x32-gemm-goi-scalar-u4.c.obj 2025-07-24T04:51:17.8993360Z [4113/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x4-scalar-int.c.obj 2025-07-24T04:51:17.8994570Z [4114/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x8-gemm-goi-scalar-int-u4.c.obj 2025-07-24T04:51:17.8995586Z [4115/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x2-scalar-int.c.obj 2025-07-24T04:51:17.8996699Z [4116/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x16-gemm-goi-scalar-int-u4.c.obj 2025-07-24T04:51:17.8997721Z [4117/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-1x2-scalar-int.c.obj 2025-07-24T04:51:17.8998890Z [4118/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x32-gemm-goi-scalar-int-u4.c.obj 2025-07-24T04:51:17.9000408Z [4119/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-1x4-scalar-int.c.obj 2025-07-24T04:51:17.9001535Z [4120/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-2x2-scalar-int.c.obj 2025-07-24T04:51:17.9002649Z [4121/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-2x1-scalar-int.c.obj 2025-07-24T04:51:17.9003659Z [4122/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x4-scalar-int.c.obj 2025-07-24T04:51:17.9004779Z [4123/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x1-scalar-int.c.obj 2025-07-24T04:51:17.9005807Z [4124/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x2-scalar-int.c.obj 2025-07-24T04:51:17.9007365Z [4125/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-1x4-scalar.c.obj 2025-07-24T04:51:17.9008557Z [4126/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x1-scalar.c.obj 2025-07-24T04:51:17.9009538Z [4127/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x2-scalar.c.obj 2025-07-24T04:51:17.9010599Z [4128/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x1-scalar.c.obj 2025-07-24T04:51:17.9011730Z [4129/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x4-scalar.c.obj 2025-07-24T04:51:17.9012699Z [4130/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x4-scalar.c.obj 2025-07-24T04:51:17.9013686Z [4131/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x2-scalar.c.obj 2025-07-24T04:51:17.9014701Z [4132/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c1s1r-gemm-scalar-float.c.obj 2025-07-24T04:51:17.9015791Z [4133/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c1s1r-gemm-scalar-int.c.obj 2025-07-24T04:51:17.9016804Z [4134/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c1s1r-gemm-scalar-int.c.obj 2025-07-24T04:51:17.9017803Z [4135/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c2s1r-gemm-scalar-float.c.obj 2025-07-24T04:51:17.9018909Z [4136/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c1s1r-gemm-scalar-float.c.obj 2025-07-24T04:51:17.9028267Z [4137/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c2s1r-gemm-scalar-int.c.obj 2025-07-24T04:51:17.9029384Z [4138/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c4s1r-gemm-scalar-float.c.obj 2025-07-24T04:51:17.9030403Z [4139/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c4s1r-gemm-scalar-int.c.obj 2025-07-24T04:51:17.9031570Z [4140/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x2-gemm-goi-scalar-int-u4.c.obj 2025-07-24T04:51:17.9033573Z [4141/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x4-gemm-goi-scalar-int-u4.c.obj 2025-07-24T04:51:17.9035139Z [4142/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x3-gemm-goi-scalar-int-u4.c.obj 2025-07-24T04:51:17.9036703Z [4143/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x3-gemm-goi-scalar-float-u4.c.obj 2025-07-24T04:51:17.9037958Z [4144/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x4-gemm-gio-scalar.c.obj 2025-07-24T04:51:17.9039275Z [4145/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-scalar.c.obj 2025-07-24T04:51:17.9040375Z [4146/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-scalar.c.obj 2025-07-24T04:51:17.9041464Z [4147/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-scalar-int-u4.c.obj 2025-07-24T04:51:17.9042552Z [4148/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-scalar-float-u4.c.obj 2025-07-24T04:51:17.9043595Z [4149/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-scalar-int-u4.c.obj 2025-07-24T04:51:17.9211965Z [4150/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-4x-scalar.c.obj 2025-07-24T04:51:17.9266178Z [4151/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-3x-scalar.c.obj 2025-07-24T04:51:17.9369710Z [4152/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-scalar.c.obj 2025-07-24T04:51:17.9612582Z [4153/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-scalar-float-u4.c.obj 2025-07-24T04:51:17.9626748Z [4154/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-2x-scalar.c.obj 2025-07-24T04:51:18.0327709Z [4155/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x2-scalar-float.c.obj 2025-07-24T04:51:18.0427735Z [4156/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x2-scalar-int.c.obj 2025-07-24T04:51:18.0585457Z [4157/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x4-scalar-float.c.obj 2025-07-24T04:51:18.0760004Z [4158/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x4-scalar-int.c.obj 2025-07-24T04:51:18.1009368Z [4159/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x1-scalar-float.c.obj 2025-07-24T04:51:18.1063820Z [4160/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x1-scalar-int.c.obj 2025-07-24T04:51:18.1801272Z [4161/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x2-scalar-float.c.obj 2025-07-24T04:51:18.2078620Z [4162/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x2-scalar-int.c.obj 2025-07-24T04:51:18.2231353Z [4163/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x1-scalar-float.c.obj 2025-07-24T04:51:18.2303745Z [4164/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x4-scalar-float.c.obj 2025-07-24T04:51:18.2419091Z [4165/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x2-scalar-float.c.obj 2025-07-24T04:51:18.2436139Z [4166/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x1-scalar-int.c.obj 2025-07-24T04:51:18.3135529Z [4167/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x2-scalar-int.c.obj 2025-07-24T04:51:18.3383533Z [4168/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-scalar-float.c.obj 2025-07-24T04:51:18.4397378Z [4169/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c1s1r-gemm-scalar-int.c.obj 2025-07-24T04:51:18.4404032Z [4170/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c1s1r-gemm-scalar-float.c.obj 2025-07-24T04:51:18.4418697Z [4171/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c2s1r-gemm-scalar-float.c.obj 2025-07-24T04:51:18.4439522Z [4172/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-scalar-int.c.obj 2025-07-24T04:51:18.5778259Z [4173/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-1x2-scalar-float.c.obj 2025-07-24T04:51:18.5898493Z [4174/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c4s1r-gemm-scalar-int.c.obj 2025-07-24T04:51:18.5937698Z [4175/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c2s1r-gemm-scalar-int.c.obj 2025-07-24T04:51:18.6150318Z [4176/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c1s1r-gemm-scalar-int.c.obj 2025-07-24T04:51:18.6294261Z [4177/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c1s1r-gemm-scalar-float.c.obj 2025-07-24T04:51:18.7115279Z [4178/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-1x2-scalar-int.c.obj 2025-07-24T04:51:18.7260994Z [4179/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c4s1r-gemm-scalar-float.c.obj 2025-07-24T04:51:18.7844536Z [4180/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x1-scalar-float.c.obj 2025-07-24T04:51:18.7862193Z [4181/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-scalar-float.c.obj 2025-07-24T04:51:18.7877050Z [4182/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x1-scalar-int.c.obj 2025-07-24T04:51:18.7889303Z [4183/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-scalar-int.c.obj 2025-07-24T04:51:18.8612795Z [4184/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x1-scalar-float.c.obj 2025-07-24T04:51:18.8811688Z [4185/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x1-scalar-int.c.obj 2025-07-24T04:51:18.9185781Z [4186/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x2-scalar-float.c.obj 2025-07-24T04:51:18.9260406Z [4187/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-sse-1x1.c.obj 2025-07-24T04:51:18.9451376Z [4188/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p4c-minmax-sse-acc2.c.obj 2025-07-24T04:51:18.9525487Z [4189/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p4c-minmax-sse.c.obj 2025-07-24T04:51:19.0358626Z [4190/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-sse-acc2.c.obj 2025-07-24T04:51:19.0674284Z [4191/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p4c-minmax-sse-acc2.c.obj 2025-07-24T04:51:19.1113019Z [4192/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-sse-acc2.c.obj 2025-07-24T04:51:19.1185272Z [4193/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l4c4s4r-minmax-sse-acc2.c.obj 2025-07-24T04:51:19.1251362Z [4194/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p4c-minmax-sse.c.obj 2025-07-24T04:51:19.1632073Z [4195/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l4c4s4r-minmax-sse.c.obj 2025-07-24T04:51:19.2192762Z [4196/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c4s4r-minmax-sse.c.obj 2025-07-24T04:51:19.2209502Z [4197/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c4s4r-minmax-sse-acc2.c.obj 2025-07-24T04:51:19.2964312Z [4198/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c4s4r-minmax-sse.c.obj 2025-07-24T04:51:19.3040883Z [4199/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l4c4s4r-minmax-sse-acc2.c.obj 2025-07-24T04:51:19.3052807Z [4200/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c4s4r-minmax-sse-acc2.c.obj 2025-07-24T04:51:19.3474661Z [4201/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l4c4s4r-minmax-sse.c.obj 2025-07-24T04:51:19.3975851Z [4202/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c4s4r-minmax-sse.c.obj 2025-07-24T04:51:19.4036993Z [4203/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c4s4r-minmax-sse-acc2.c.obj 2025-07-24T04:51:19.4702252Z [4204/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c4s4r-minmax-sse.c.obj 2025-07-24T04:51:19.4952241Z [4205/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l4c4s4r-minmax-sse-acc2.c.obj 2025-07-24T04:51:19.4972031Z [4206/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c4s4r-minmax-sse-acc2.c.obj 2025-07-24T04:51:19.5623374Z [4207/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l4c4s4r-minmax-sse.c.obj 2025-07-24T04:51:19.5685295Z [4208/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c4s4r-minmax-sse-acc2.c.obj 2025-07-24T04:51:19.6143641Z [4209/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c4s4r-minmax-sse.c.obj 2025-07-24T04:51:19.7233374Z [4210/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p4c-minmax-sse-acc2.c.obj 2025-07-24T04:51:19.7303001Z [4211/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-sse-acc2.c.obj 2025-07-24T04:51:19.7530760Z [4212/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c4s4r-minmax-sse-acc2.c.obj 2025-07-24T04:51:19.7544269Z [4213/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p4c-minmax-sse.c.obj 2025-07-24T04:51:19.7623148Z [4214/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p4c-minmax-sse.c.obj 2025-07-24T04:51:19.7693121Z [4215/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p4c-minmax-sse-acc2.c.obj 2025-07-24T04:51:19.8965646Z [4216/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-1x4-acc2.c.obj 2025-07-24T04:51:19.9183609Z [4217/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-1x4-acc3.c.obj 2025-07-24T04:51:19.9197854Z [4218/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-1x4-acc4.c.obj 2025-07-24T04:51:19.9210997Z [4219/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-1x4.c.obj 2025-07-24T04:51:19.9407143Z [4220/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-sse-acc2.c.obj 2025-07-24T04:51:19.9508644Z [4221/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-2x4.c.obj 2025-07-24T04:51:20.0448198Z [4222/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-3x4.c.obj 2025-07-24T04:51:20.1403230Z [4223/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc4.c.obj 2025-07-24T04:51:20.1471652Z [4224/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-6x4.c.obj 2025-07-24T04:51:20.1993580Z [4225/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-5x4.c.obj 2025-07-24T04:51:20.1997263Z [4226/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc2.c.obj 2025-07-24T04:51:20.2023537Z [4227/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-4x4.c.obj 2025-07-24T04:51:20.2994456Z [4228/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4.c.obj 2025-07-24T04:51:20.3010086Z [4229/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-2x4-acc2.c.obj 2025-07-24T04:51:20.4922326Z [4230/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-4x4.c.obj 2025-07-24T04:51:20.6049886Z [4231/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc2.c.obj 2025-07-24T04:51:20.6119151Z [4232/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-2x4.c.obj 2025-07-24T04:51:20.6133819Z [4233/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-3x4.c.obj 2025-07-24T04:51:20.6200311Z [4234/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc4.c.obj 2025-07-24T04:51:20.6223470Z [4235/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc3.c.obj 2025-07-24T04:51:20.7956637Z [4236/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-2x4.c.obj 2025-07-24T04:51:20.8570171Z [4237/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-1x4.c.obj 2025-07-24T04:51:20.8642276Z [4238/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc5.c.obj 2025-07-24T04:51:20.8686995Z [4239/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-2x4-acc2.c.obj 2025-07-24T04:51:20.8704928Z [4240/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-3x4-acc2.c.obj 2025-07-24T04:51:20.8719950Z [4241/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-2x4-acc3.c.obj 2025-07-24T04:51:21.0385132Z [4242/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-4x4-acc2.c.obj 2025-07-24T04:51:21.0456791Z [4243/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-3x4.c.obj 2025-07-24T04:51:21.1203393Z [4244/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-5x4.c.obj 2025-07-24T04:51:21.1217285Z [4245/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc3.c.obj 2025-07-24T04:51:21.1294419Z [4246/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc2.c.obj 2025-07-24T04:51:21.1310760Z [4247/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc4.c.obj 2025-07-24T04:51:21.2213422Z [4248/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4.c.obj 2025-07-24T04:51:21.2412326Z [4249/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc5.c.obj 2025-07-24T04:51:21.3385842Z [4250/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4-acc2.c.obj 2025-07-24T04:51:21.3446829Z [4251/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4-acc3.c.obj 2025-07-24T04:51:21.4265242Z [4252/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-3x4-acc2.c.obj 2025-07-24T04:51:21.4370899Z [4253/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-3x4.c.obj 2025-07-24T04:51:21.5174924Z [4254/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-sse-dup.c.obj 2025-07-24T04:51:21.5347898Z [4255/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8-minmax-sse-dup.c.obj 2025-07-24T04:51:21.5360157Z [4256/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8s4-minmax-sse.c.obj 2025-07-24T04:51:21.5962793Z [4257/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8-minmax-sse-load1.c.obj 2025-07-24T04:51:21.6022613Z [4258/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8s4-minmax-sse.c.obj 2025-07-24T04:51:21.6367285Z [4259/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-sse-dup.c.obj 2025-07-24T04:51:21.7609960Z [4260/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8s4-minmax-sse.c.obj 2025-07-24T04:51:21.8031673Z [4261/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-sse-load1.c.obj 2025-07-24T04:51:21.8095811Z [4262/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-sse-dup.c.obj 2025-07-24T04:51:21.8116042Z [4263/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8s4-minmax-sse.c.obj 2025-07-24T04:51:21.8545979Z [4264/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x2c4-minmax-sse.c.obj 2025-07-24T04:51:21.8845126Z [4265/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-sse-dup.c.obj 2025-07-24T04:51:21.9395371Z [4266/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-sse-load1.c.obj 2025-07-24T04:51:22.0449101Z [4267/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-sse-load1.c.obj 2025-07-24T04:51:22.0509452Z [4268/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8-minmax-sse-dup.c.obj 2025-07-24T04:51:22.0520819Z [4269/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8s4-minmax-sse.c.obj 2025-07-24T04:51:22.0577622Z [4270/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-sse-dup.c.obj 2025-07-24T04:51:22.0764440Z [4271/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8s4-minmax-sse.c.obj 2025-07-24T04:51:22.1251948Z [4272/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8-minmax-sse-load1.c.obj 2025-07-24T04:51:22.2299921Z [4273/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-sse-dup.c.obj 2025-07-24T04:51:22.2310708Z [4274/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-sse-load1.c.obj 2025-07-24T04:51:22.2397763Z [4275/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8s4-minmax-sse.c.obj 2025-07-24T04:51:22.3481398Z [4276/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8s4-minmax-sse.c.obj 2025-07-24T04:51:22.3547501Z [4277/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-sse-dup.c.obj 2025-07-24T04:51:22.3975380Z [4278/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-sse-load1.c.obj 2025-07-24T04:51:22.4973316Z [4279/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8s4-minmax-sse.c.obj 2025-07-24T04:51:22.4986748Z [4280/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-sse-dup.c.obj 2025-07-24T04:51:22.5041041Z [4281/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-sse-p4.c.obj 2025-07-24T04:51:22.5076498Z [4282/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-sse-load1.c.obj 2025-07-24T04:51:22.5528732Z [4283/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8s4-minmax-sse.c.obj 2025-07-24T04:51:22.6352806Z [4284/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-sse-c4.c.obj 2025-07-24T04:51:22.6966819Z [4285/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-sse-dup.c.obj 2025-07-24T04:51:22.7099808Z [4286/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8s4-minmax-sse.c.obj 2025-07-24T04:51:22.7169089Z [4287/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8-minmax-sse-load1.c.obj 2025-07-24T04:51:22.7262458Z [4288/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8-minmax-sse-dup.c.obj 2025-07-24T04:51:22.8151183Z [4289/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8s4-minmax-sse.c.obj 2025-07-24T04:51:22.8373966Z [4290/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-sse-dup.c.obj 2025-07-24T04:51:22.8819617Z [4291/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8s4-minmax-sse.c.obj 2025-07-24T04:51:22.9157873Z [4292/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-sse-dup.c.obj 2025-07-24T04:51:22.9231028Z [4293/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8s4-minmax-sse.c.obj 2025-07-24T04:51:22.9344624Z [4294/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-sse-load1.c.obj 2025-07-24T04:51:23.0246589Z [4295/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-sse-dup.c.obj 2025-07-24T04:51:23.0307882Z [4296/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x2c4-minmax-sse.c.obj 2025-07-24T04:51:23.0504516Z [4297/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-sse-load1.c.obj 2025-07-24T04:51:23.0778078Z [4298/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c32.c.obj 2025-07-24T04:51:23.0936044Z [4299/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x8-minmax-sse.c.obj 2025-07-24T04:51:23.0944464Z [4300/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8s4-minmax-sse.c.obj 2025-07-24T04:51:23.1791371Z [4301/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u4.c.obj 2025-07-24T04:51:23.1848533Z [4302/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u8-acc2.c.obj 2025-07-24T04:51:23.2037401Z [4303/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c64.c.obj 2025-07-24T04:51:23.3043185Z [4304/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u12-acc3.c.obj 2025-07-24T04:51:23.3062682Z [4305/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u16-acc2.c.obj 2025-07-24T04:51:23.3077795Z [4306/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u4.c.obj 2025-07-24T04:51:23.3911934Z [4307/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u12-acc3.c.obj 2025-07-24T04:51:23.3928133Z [4308/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u8-acc2.c.obj 2025-07-24T04:51:23.4138078Z [4309/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u16-acc2.c.obj 2025-07-24T04:51:23.4536075Z [4310/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u16-acc4.c.obj 2025-07-24T04:51:23.4552918Z [4311/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u4.c.obj 2025-07-24T04:51:23.5169758Z [4312/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u8-acc2.c.obj 2025-07-24T04:51:23.5321142Z [4313/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u16-acc2.c.obj 2025-07-24T04:51:23.5936009Z [4314/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u4.c.obj 2025-07-24T04:51:23.6092793Z [4315/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u12-acc3.c.obj 2025-07-24T04:51:23.6153048Z [4316/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u8-acc2.c.obj 2025-07-24T04:51:23.6494842Z [4317/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u16-acc2.c.obj 2025-07-24T04:51:23.6648458Z [4318/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-sse.c.obj 2025-07-24T04:51:23.6877127Z [4319/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u12-acc3.c.obj 2025-07-24T04:51:23.7091895Z [4320/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-sse.c.obj 2025-07-24T04:51:23.7255209Z [4321/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-16x1-minmax-sse.c.obj 2025-07-24T04:51:23.7373485Z [4322/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-sse-u4.c.obj 2025-07-24T04:51:23.8149353Z [4323/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-sse-u4.c.obj 2025-07-24T04:51:23.8221294Z [4324/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-sse-u4.c.obj 2025-07-24T04:51:23.8293707Z [4325/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-sse-u4.c.obj 2025-07-24T04:51:23.8657644Z [4326/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-sse-u4.c.obj 2025-07-24T04:51:23.8741538Z [4327/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-sse-u4.c.obj 2025-07-24T04:51:23.8763992Z [4328/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-sse-u4.c.obj 2025-07-24T04:51:23.9716012Z [4329/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-sse-u4.c.obj 2025-07-24T04:51:24.0013028Z [4330/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-sse-u4.c.obj 2025-07-24T04:51:24.0071840Z [4331/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-sse-u4.c.obj 2025-07-24T04:51:24.0300614Z [4332/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-sse-u4.c.obj 2025-07-24T04:51:24.0375958Z [4333/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-sse-u4.c.obj 2025-07-24T04:51:24.0720443Z [4334/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-sse-u4.c.obj 2025-07-24T04:51:24.1300947Z [4335/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-sse-u4.c.obj 2025-07-24T04:51:24.1882117Z [4336/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-sse-u4.c.obj 2025-07-24T04:51:24.1899004Z [4337/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-sse-u4.c.obj 2025-07-24T04:51:24.2227319Z [4338/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u4.c.obj 2025-07-24T04:51:24.2325037Z [4339/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-sse-u4.c.obj 2025-07-24T04:51:24.4142676Z [4340/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u12.c.obj 2025-07-24T04:51:24.4161767Z [4341/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u16.c.obj 2025-07-24T04:51:24.4178884Z [4342/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c8-minmax-sse-2x.c.obj 2025-07-24T04:51:24.4192848Z [4343/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-sse-u4.c.obj 2025-07-24T04:51:24.4936792Z [4344/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse-u4.c.obj 2025-07-24T04:51:24.5908257Z [4345/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-sse-u4.c.obj 2025-07-24T04:51:24.6068294Z [4346/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-sse-u8.c.obj 2025-07-24T04:51:24.6154029Z [4347/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u4.c.obj 2025-07-24T04:51:24.6165732Z [4348/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u16.c.obj 2025-07-24T04:51:24.6181024Z [4349/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u4.c.obj 2025-07-24T04:51:24.7127078Z [4350/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u8.c.obj 2025-07-24T04:51:24.7377550Z [4351/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-4x-sse.c.obj 2025-07-24T04:51:24.7929127Z [4352/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u8.c.obj 2025-07-24T04:51:24.8002872Z [4353/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u4.c.obj 2025-07-24T04:51:24.8020001Z [4354/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u8.c.obj 2025-07-24T04:51:24.8301239Z [4355/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u16.c.obj 2025-07-24T04:51:24.8775373Z [4356/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u24.c.obj 2025-07-24T04:51:24.8794171Z [4357/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u16.c.obj 2025-07-24T04:51:24.9890970Z [4358/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u16.c.obj 2025-07-24T04:51:24.9947239Z [4359/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u8.c.obj 2025-07-24T04:51:25.0007754Z [4360/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u24.c.obj 2025-07-24T04:51:25.0067406Z [4361/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u32.c.obj 2025-07-24T04:51:25.1458386Z [4362/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vneg-sse2-u8.c.obj 2025-07-24T04:51:25.2031050Z [4363/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vabs-sse2-u8.c.obj 2025-07-24T04:51:25.2042466Z [4364/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u8.c.obj 2025-07-24T04:51:25.2056490Z [4365/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u32.c.obj 2025-07-24T04:51:25.2207341Z [4366/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u24.c.obj 2025-07-24T04:51:25.2833907Z [4367/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u8.c.obj 2025-07-24T04:51:25.3905755Z [4368/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u24.c.obj 2025-07-24T04:51:25.3924062Z [4369/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u8.c.obj 2025-07-24T04:51:25.4111306Z [4370/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u16.c.obj 2025-07-24T04:51:25.4232560Z [4371/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u16.c.obj 2025-07-24T04:51:25.4247139Z [4372/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u24.c.obj 2025-07-24T04:51:25.4539973Z [4373/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u4.c.obj 2025-07-24T04:51:25.6033840Z [4374/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse2-u4.c.obj 2025-07-24T04:51:25.6057934Z [4375/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc4.c.obj 2025-07-24T04:51:25.6108301Z [4376/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse2-u4.c.obj 2025-07-24T04:51:25.6210826Z [4377/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u4.c.obj 2025-07-24T04:51:25.6289590Z [4378/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u8-acc2.c.obj 2025-07-24T04:51:25.6449897Z [4379/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse2-u4.c.obj 2025-07-24T04:51:25.7360389Z [4380/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u8.c.obj 2025-07-24T04:51:25.7421646Z [4381/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u16.c.obj 2025-07-24T04:51:25.7518712Z [4382/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u4.c.obj 2025-07-24T04:51:25.7608494Z [4383/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u8.c.obj 2025-07-24T04:51:25.9785097Z [4384/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse2-u4.c.obj 2025-07-24T04:51:26.3835198Z [4385/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-sse2-u4.c.obj 2025-07-24T04:51:26.3851880Z [4386/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-sse2-u4.c.obj 2025-07-24T04:51:26.3866625Z [4387/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse2-u8.c.obj 2025-07-24T04:51:26.3882097Z [4388/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u12.c.obj 2025-07-24T04:51:26.3896809Z [4389/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u16.c.obj 2025-07-24T04:51:26.8978187Z [4390/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-lut64-p2-div-u4.c.obj 2025-07-24T04:51:26.9065605Z [4391/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u4.c.obj 2025-07-24T04:51:26.9121334Z [4392/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-sse2-u4.c.obj 2025-07-24T04:51:26.9133160Z [4393/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-sse2-u4.c.obj 2025-07-24T04:51:26.9190265Z [4394/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-lut64-p2-div-u12.c.obj 2025-07-24T04:51:26.9202827Z [4395/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-lut64-p2-div-u16.c.obj 2025-07-24T04:51:27.0355981Z [4396/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u8.c.obj 2025-07-24T04:51:27.0448073Z [4397/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-sse2-rational-9-8-nr.c.obj 2025-07-24T04:51:27.0509658Z [4398/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x4c8-minmax-sse2-ld64.c.obj 2025-07-24T04:51:27.0670544Z [4399/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u16.c.obj 2025-07-24T04:51:27.0924563Z [4400/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x4c8-minmax-sse2-ld64.c.obj 2025-07-24T04:51:27.0938901Z [4401/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u12.c.obj 2025-07-24T04:51:27.1765865Z [4402/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-3x4c8-minmax-sse2-ld128.c.obj 2025-07-24T04:51:27.1782001Z [4403/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x4c8-minmax-sse2-ld128.c.obj 2025-07-24T04:51:27.2023899Z [4404/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-3x4c8-minmax-sse2-ld64.c.obj 2025-07-24T04:51:27.3256637Z [4405/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-sse2-ld64.c.obj 2025-07-24T04:51:27.3309759Z [4406/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-sse2-ld64.c.obj 2025-07-24T04:51:27.3326562Z [4407/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x4c8-minmax-sse2-ld64.c.obj 2025-07-24T04:51:27.4039712Z [4408/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-sse2-ld64.c.obj 2025-07-24T04:51:27.4255256Z [4409/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-sse2-ld128.c.obj 2025-07-24T04:51:27.4680231Z [4410/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-sse2-ld128.c.obj 2025-07-24T04:51:27.6281621Z [4411/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-sse2-ld64.c.obj 2025-07-24T04:51:27.6396802Z [4412/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x4c8-minmax-sse2-ld64.c.obj 2025-07-24T04:51:27.6409829Z [4413/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x4c8-minmax-sse2-ld128.c.obj 2025-07-24T04:51:27.6466844Z [4414/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x4c8-minmax-sse2-ld128.c.obj 2025-07-24T04:51:27.7047977Z [4415/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-3x4c8-minmax-sse2-ld128.c.obj 2025-07-24T04:51:27.7655745Z [4416/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-3x4c8-minmax-sse2-ld64.c.obj 2025-07-24T04:51:27.8956331Z [4417/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x4c8-minmax-sse2-ld128.c.obj 2025-07-24T04:51:27.9000706Z [4418/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x4c8-minmax-sse2-ld64.c.obj 2025-07-24T04:51:27.9057461Z [4419/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x4c8-minmax-sse2-ld128.c.obj 2025-07-24T04:51:27.9154514Z [4420/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x4c8-minmax-sse2-ld128.c.obj 2025-07-24T04:51:27.9935312Z [4421/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-3x4c8-minmax-sse2-ld128.c.obj 2025-07-24T04:51:28.0140939Z [4422/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-3x4c8-minmax-sse2-ld64.c.obj 2025-07-24T04:51:28.0781988Z [4423/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x4c8-minmax-sse2-ld128.c.obj 2025-07-24T04:51:28.1567620Z [4424/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T04:51:28.1682121Z [4425/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:28.1768199Z [4426/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T04:51:28.1838691Z [4427/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:28.1938849Z [4428/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T04:51:28.2231008Z [4429/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:28.3283491Z [4430/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T04:51:28.3295945Z [4431/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:28.3350506Z [4432/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T04:51:28.3361895Z [4433/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:28.3799955Z [4434/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T04:51:28.4595627Z [4435/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:28.6320118Z [4436/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:28.6333520Z [4437/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T04:51:28.6439087Z [4438/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:28.6567587Z [4439/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:28.7166951Z [4440/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:28.7184400Z [4441/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T04:51:28.7580141Z [4442/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u16.c.obj 2025-07-24T04:51:28.8409002Z [4443/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u24.c.obj 2025-07-24T04:51:28.8420524Z [4444/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T04:51:28.8433084Z [4445/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u8.c.obj 2025-07-24T04:51:28.8445052Z [4446/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:29.0426604Z [4447/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T04:51:29.0438975Z [4448/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T04:51:29.0625014Z [4449/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:29.0883597Z [4450/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:29.1003785Z [4451/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T04:51:29.1064203Z [4452/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:29.2783797Z [4453/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T04:51:29.2844393Z [4454/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:29.3425547Z [4455/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T04:51:29.3474587Z [4456/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T04:51:29.3602384Z [4457/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T04:51:29.3799101Z [4458/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:29.4734415Z [4459/7174] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\distributed\c10d\init.cpp.obj 2025-07-24T04:51:29.4801567Z [4460/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:29.5587065Z [4461/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T04:51:29.5683911Z [4462/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T04:51:29.5746608Z [4463/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:29.5876091Z [4464/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:29.6159150Z [4465/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:29.6421012Z [4466/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:29.6606705Z [4467/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:29.6893853Z [4468/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:29.7227058Z [4469/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:29.7495360Z [4470/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:29.7829226Z [4471/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:29.8185820Z [4472/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:29.8202055Z [4473/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:29.8473272Z [4474/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:29.8672675Z [4475/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:29.8989013Z [4476/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:29.9174334Z [4477/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:29.9957996Z [4478/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:29.9969982Z [4479/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:30.0136916Z [4480/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:30.0327851Z [4481/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:30.0694220Z [4482/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:30.0900227Z [4483/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:30.1081991Z [4484/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:30.1248450Z [4485/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:30.1437364Z [4486/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:30.1644983Z [4487/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:30.4439226Z [4488/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:30.4727092Z [4489/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:30.5903603Z [4490/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:30.5915800Z [4491/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:30.5970476Z [4492/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:30.5983432Z [4493/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:30.5994899Z [4494/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:30.7009881Z [4495/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:30.7365155Z [4496/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:30.7470301Z [4497/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:30.7626376Z [4498/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:30.7637558Z [4499/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:30.7648423Z [4500/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:30.7755326Z [4501/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:30.8529799Z [4502/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:30.8647893Z [4503/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u16.c.obj 2025-07-24T04:51:30.8691967Z [4504/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:30.8743777Z [4505/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u24.c.obj 2025-07-24T04:51:30.8803753Z [4506/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u32.c.obj 2025-07-24T04:51:30.8857207Z [4507/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u16.c.obj 2025-07-24T04:51:30.8915762Z [4508/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u24.c.obj 2025-07-24T04:51:30.9716608Z [4509/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u32.c.obj 2025-07-24T04:51:30.9729147Z [4510/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse2-u16.c.obj 2025-07-24T04:51:30.9791547Z [4511/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse2-u16.c.obj 2025-07-24T04:51:31.0236695Z [4512/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-sse2-mul16-ld64-u16.c.obj 2025-07-24T04:51:31.0250998Z [4513/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-sse2-mul16-ld64-u16.c.obj 2025-07-24T04:51:31.1244408Z [4514/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:31.1730265Z [4515/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:31.1742523Z [4516/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:31.1793467Z [4517/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:31.2452214Z [4518/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:31.2463672Z [4519/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:31.2632689Z [4520/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:31.3100245Z [4521/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u16.c.obj 2025-07-24T04:51:31.3157368Z [4522/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u8.c.obj 2025-07-24T04:51:31.3263890Z [4523/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T04:51:31.3277708Z [4524/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u24.c.obj 2025-07-24T04:51:31.3883967Z [4525/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:31.3933821Z [4526/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:31.4022206Z [4527/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:31.4439945Z [4528/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:31.4597926Z [4529/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:31.4646751Z [4530/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:31.4660444Z [4531/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:31.5171321Z [4532/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:31.5225435Z [4533/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:31.5426853Z [4534/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:31.5789020Z [4535/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:31.6069063Z [4536/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:31.6118366Z [4537/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:31.6364956Z [4538/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:31.6564639Z [4539/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:31.6615127Z [4540/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:31.6893922Z [4541/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:31.7123649Z [4542/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:31.7493444Z [4543/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:31.7548433Z [4544/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:31.7560132Z [4545/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:31.7968507Z [4546/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:31.8035782Z [4547/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:31.8089766Z [4548/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:31.8290907Z [4549/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:31.8978321Z [4550/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:31.9039161Z [4551/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:31.9294499Z [4552/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:31.9340675Z [4553/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:31.9424985Z [4554/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:31.9486112Z [4555/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:31.9637847Z [4556/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:32.0320332Z [4557/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:32.2256188Z [4558/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:32.2301692Z [4559/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:32.2345636Z [4560/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:32.2400122Z [4561/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:32.2483739Z [4562/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:32.2562800Z [4563/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T04:51:32.2634824Z [4564/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T04:51:32.3387505Z [4565/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u64-acc2.c.obj 2025-07-24T04:51:32.3447461Z [4566/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u64-acc4.c.obj 2025-07-24T04:51:32.3518290Z [4567/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse2-mul16-ld64-u16.c.obj 2025-07-24T04:51:32.3567511Z [4568/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u16.c.obj 2025-07-24T04:51:32.3630597Z [4569/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse2-u16.c.obj 2025-07-24T04:51:32.3682287Z [4570/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse2-mul16-ld64-u16.c.obj 2025-07-24T04:51:32.3829286Z [4571/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse2-u16.c.obj 2025-07-24T04:51:32.4509877Z [4572/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-sse2-c16.c.obj 2025-07-24T04:51:32.4692990Z [4573/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-16x16-reuse-switch-sse2.c.obj 2025-07-24T04:51:32.4705844Z [4574/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-sse2-mul16-ld64-u16.c.obj 2025-07-24T04:51:32.4751837Z [4575/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-sse2-mul16-ld64-u16.c.obj 2025-07-24T04:51:32.4829028Z [4576/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-sse2-c16.c.obj 2025-07-24T04:51:32.5013148Z [4577/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-multi-switch-sse2.c.obj 2025-07-24T04:51:32.5120810Z [4578/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-multi-mov-sse2.c.obj 2025-07-24T04:51:32.5479634Z [4579/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-mov-sse2.c.obj 2025-07-24T04:51:32.5657841Z [4580/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\x16-transposec-4x8-sse2.c.obj 2025-07-24T04:51:32.5714475Z [4581/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-switch-sse2.c.obj 2025-07-24T04:51:32.6094992Z [4582/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-sse2-u4-prfm.c.obj 2025-07-24T04:51:32.6149616Z [4583/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x2c4-gemm-goi-sse2-u4-prfm.c.obj 2025-07-24T04:51:32.6291784Z [4584/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-sse2-u8.c.obj 2025-07-24T04:51:32.6392426Z [4585/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-sse2-u8-prfm.c.obj 2025-07-24T04:51:32.6848188Z [4586/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-sse2-u8-prfm.c.obj 2025-07-24T04:51:32.6939832Z [4587/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-sse2-u4.c.obj 2025-07-24T04:51:32.6994166Z [4588/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-sse2-u4-prfm.c.obj 2025-07-24T04:51:32.7214607Z [4589/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-sse2-u8.c.obj 2025-07-24T04:51:32.7355520Z [4590/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-sse2-u4-prfm.c.obj 2025-07-24T04:51:32.7429241Z [4591/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-sse2-u8-prfm.c.obj 2025-07-24T04:51:32.7673914Z [4592/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-sse2-u4.c.obj 2025-07-24T04:51:32.7977702Z [4593/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-sse2-u8.c.obj 2025-07-24T04:51:32.8057100Z [4594/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-sse2-u4-prfm.c.obj 2025-07-24T04:51:32.8101003Z [4595/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-sse2-u4.c.obj 2025-07-24T04:51:32.8312532Z [4596/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-sse2-u8-prfm.c.obj 2025-07-24T04:51:32.8437027Z [4597/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-mov-sse2.c.obj 2025-07-24T04:51:32.8614903Z [4598/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-sse2-u8.c.obj 2025-07-24T04:51:32.8836956Z [4599/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-multi-sse2.c.obj 2025-07-24T04:51:32.9003440Z [4600/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-switch-sse2.c.obj 2025-07-24T04:51:32.9362870Z [4601/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-mov-sse2.c.obj 2025-07-24T04:51:32.9377043Z [4602/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-multi-sse2.c.obj 2025-07-24T04:51:32.9983220Z [4603/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-switch-sse2.c.obj 2025-07-24T04:51:33.0062827Z [4604/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-mov-sse2.c.obj 2025-07-24T04:51:33.0533093Z [4605/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-switch-sse2.c.obj 2025-07-24T04:51:33.0544409Z [4606/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-multi-sse2.c.obj 2025-07-24T04:51:33.1107586Z [4607/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-multi-sse2.c.obj 2025-07-24T04:51:33.1171912Z [4608/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-switch-sse2.c.obj 2025-07-24T04:51:33.1318791Z [4609/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4-acc3.c.obj 2025-07-24T04:51:33.1739524Z [4610/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4-acc2.c.obj 2025-07-24T04:51:33.2390217Z [4611/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4.c.obj 2025-07-24T04:51:33.2432742Z [4612/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-4x4.c.obj 2025-07-24T04:51:33.2475643Z [4613/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4-acc4.c.obj 2025-07-24T04:51:33.2937667Z [4614/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-3x4.c.obj 2025-07-24T04:51:33.3693703Z [4615/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-2x4.c.obj 2025-07-24T04:51:33.3745458Z [4616/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-6x4.c.obj 2025-07-24T04:51:33.3756604Z [4617/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-5x4.c.obj 2025-07-24T04:51:33.5299561Z [4618/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-ssse3-madd-prfm.c.obj 2025-07-24T04:51:33.5314734Z [4619/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-ssse3-madd-prfm.c.obj 2025-07-24T04:51:33.6324027Z [4620/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-ssse3-madd-prfm.c.obj 2025-07-24T04:51:33.6335978Z [4621/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-ssse3-madd.c.obj 2025-07-24T04:51:33.6348530Z [4622/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-ssse3-madd.c.obj 2025-07-24T04:51:33.6822221Z [4623/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-ssse3-madd-prfm.c.obj 2025-07-24T04:51:33.7035317Z [4624/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u16.c.obj 2025-07-24T04:51:33.7047622Z [4625/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u64-acc2.c.obj 2025-07-24T04:51:33.8419076Z [4626/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u64-acc4.c.obj 2025-07-24T04:51:33.9396036Z [4627/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c16.c.obj 2025-07-24T04:51:33.9408973Z [4628/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-ssse3-u16.c.obj 2025-07-24T04:51:33.9426718Z [4629/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-ssse3-u16.c.obj 2025-07-24T04:51:33.9541972Z [4630/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c32.c.obj 2025-07-24T04:51:34.0160122Z [4631/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-ssse3-u16.c.obj 2025-07-24T04:51:34.0172753Z [4632/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-ssse3-u16.c.obj 2025-07-24T04:51:34.0480630Z [4633/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-ssse3-u16.c.obj 2025-07-24T04:51:34.0492298Z [4634/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-ssse3-u32.c.obj 2025-07-24T04:51:34.0840457Z [4635/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u24.c.obj 2025-07-24T04:51:34.0889513Z [4636/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u32.c.obj 2025-07-24T04:51:34.1175821Z [4637/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u8.c.obj 2025-07-24T04:51:34.1725551Z [4638/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u24.c.obj 2025-07-24T04:51:34.1781526Z [4639/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u32.c.obj 2025-07-24T04:51:34.1863014Z [4640/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u16.c.obj 2025-07-24T04:51:34.2327491Z [4641/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u24.c.obj 2025-07-24T04:51:34.2397474Z [4642/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u8.c.obj 2025-07-24T04:51:34.2448391Z [4643/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u16.c.obj 2025-07-24T04:51:34.2550685Z [4644/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u32.c.obj 2025-07-24T04:51:34.3880289Z [4645/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-5x8-minmax-sse41-dup.c.obj 2025-07-24T04:51:34.3901294Z [4646/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-6x8-minmax-sse41-dup.c.obj 2025-07-24T04:51:34.3913589Z [4647/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-3x8-minmax-sse41-dup.c.obj 2025-07-24T04:51:34.4697383Z [4648/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x8-minmax-sse41-load1.c.obj 2025-07-24T04:51:34.4746100Z [4649/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x8-minmax-sse41-dup.c.obj 2025-07-24T04:51:34.5072502Z [4650/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x8-minmax-sse41-load1.c.obj 2025-07-24T04:51:34.5359311Z [4651/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x8s4-minmax-sse41.c.obj 2025-07-24T04:51:34.5468456Z [4652/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x8s4-minmax-sse41.c.obj 2025-07-24T04:51:34.6063564Z [4653/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x8-minmax-sse41-load1.c.obj 2025-07-24T04:51:34.6076186Z [4654/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2c4-minmax-sse41.c.obj 2025-07-24T04:51:34.6795505Z [4655/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x8s4-minmax-sse41.c.obj 2025-07-24T04:51:34.6910608Z [4656/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x8-minmax-sse41-dup.c.obj 2025-07-24T04:51:34.7083606Z [4657/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x8-minmax-sse41-load1.c.obj 2025-07-24T04:51:34.7146811Z [4658/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x8s4-minmax-sse41.c.obj 2025-07-24T04:51:34.7302760Z [4659/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x2c4-minmax-sse41.c.obj 2025-07-24T04:51:34.8809542Z [4660/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u8.c.obj 2025-07-24T04:51:34.8853473Z [4661/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u16.c.obj 2025-07-24T04:51:34.9003005Z [4662/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x8s4-minmax-sse41.c.obj 2025-07-24T04:51:34.9014641Z [4663/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x8-minmax-sse41-load1.c.obj 2025-07-24T04:51:34.9025452Z [4664/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x8-minmax-sse41-dup.c.obj 2025-07-24T04:51:34.9073079Z [4665/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u24.c.obj 2025-07-24T04:51:34.9153097Z [4666/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse41-u4.c.obj 2025-07-24T04:51:35.0500768Z [4667/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse41-u8.c.obj 2025-07-24T04:51:35.0514208Z [4668/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse41-u8.c.obj 2025-07-24T04:51:35.0768788Z [4669/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u8.c.obj 2025-07-24T04:51:35.0781099Z [4670/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse41-u4.c.obj 2025-07-24T04:51:35.0793691Z [4671/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse41-u4.c.obj 2025-07-24T04:51:35.0806221Z [4672/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse41-u8.c.obj 2025-07-24T04:51:35.0818811Z [4673/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u4.c.obj 2025-07-24T04:51:35.2056545Z [4674/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u12.c.obj 2025-07-24T04:51:35.3271490Z [4675/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u12.c.obj 2025-07-24T04:51:35.3352774Z [4676/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u16.c.obj 2025-07-24T04:51:35.3506456Z [4677/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u8.c.obj 2025-07-24T04:51:35.3599511Z [4678/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse41-u4.c.obj 2025-07-24T04:51:35.3652440Z [4679/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u4.c.obj 2025-07-24T04:51:35.3667851Z [4680/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u16.c.obj 2025-07-24T04:51:35.4283680Z [4681/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-sse41-u4.c.obj 2025-07-24T04:51:35.4338585Z [4682/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-sse41-u4.c.obj 2025-07-24T04:51:35.5426843Z [4683/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-sse41-u4.c.obj 2025-07-24T04:51:35.5440640Z [4684/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-sse41-u4.c.obj 2025-07-24T04:51:35.5493092Z [4685/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-lut64-p2-div-u12.c.obj 2025-07-24T04:51:35.5506818Z [4686/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-lut64-p2-div-u4.c.obj 2025-07-24T04:51:35.5562900Z [4687/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-lut64-p2-div-u16.c.obj 2025-07-24T04:51:35.6128252Z [4688/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u4.c.obj 2025-07-24T04:51:35.6258943Z [4689/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u8.c.obj 2025-07-24T04:51:35.7423712Z [4690/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u16.c.obj 2025-07-24T04:51:35.7482432Z [4691/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u12.c.obj 2025-07-24T04:51:35.7729696Z [4692/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-3x4c8-minmax-sse41-ld64.c.obj 2025-07-24T04:51:35.7795232Z [4693/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x4c8-minmax-sse41-ld64.c.obj 2025-07-24T04:51:35.8105974Z [4694/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x4c8-minmax-sse41-ld64.c.obj 2025-07-24T04:51:35.8154835Z [4695/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x4c8-minmax-sse41-ld128.c.obj 2025-07-24T04:51:35.8513961Z [4696/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x4c8-minmax-sse41-ld64.c.obj 2025-07-24T04:51:35.9058292Z [4697/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x4c8-minmax-sse41-ld128.c.obj 2025-07-24T04:51:35.9113837Z [4698/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-sse41-ld64.c.obj 2025-07-24T04:51:35.9167901Z [4699/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-sse41-ld128.c.obj 2025-07-24T04:51:35.9885355Z [4700/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-sse41-ld128.c.obj 2025-07-24T04:51:35.9930750Z [4701/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-sse41-madd-prfm.c.obj 2025-07-24T04:51:36.0180387Z [4702/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-sse41-madd.c.obj 2025-07-24T04:51:36.0940470Z [4703/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-sse41-ld64.c.obj 2025-07-24T04:51:36.1409572Z [4704/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-sse41-ld128.c.obj 2025-07-24T04:51:36.1463815Z [4705/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-sse41-ld64.c.obj 2025-07-24T04:51:36.1516308Z [4706/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-sse41-madd-prfm.c.obj 2025-07-24T04:51:36.1923690Z [4707/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-sse41-madd-prfm.c.obj 2025-07-24T04:51:36.1936210Z [4708/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-sse41-madd.c.obj 2025-07-24T04:51:36.2516481Z [4709/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-sse41-ld64.c.obj 2025-07-24T04:51:36.2529979Z [4710/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-sse41-madd.c.obj 2025-07-24T04:51:36.2793613Z [4711/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-sse41-madd-prfm.c.obj 2025-07-24T04:51:36.2805555Z [4712/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-sse41-madd.c.obj 2025-07-24T04:51:36.2862173Z [4713/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-sse41-ld128.c.obj 2025-07-24T04:51:36.3332434Z [4714/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x4c8-minmax-sse41-ld128.c.obj 2025-07-24T04:51:36.3467647Z [4715/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x4c8-minmax-sse41-ld64.c.obj 2025-07-24T04:51:36.4142498Z [4716/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x4c8-minmax-sse41-ld128.c.obj 2025-07-24T04:51:36.4229905Z [4717/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-3x4c8-minmax-sse41-ld128.c.obj 2025-07-24T04:51:36.4295584Z [4718/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-3x4c8-minmax-sse41-ld64.c.obj 2025-07-24T04:51:36.4345002Z [4719/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x4c8-minmax-sse41-ld128.c.obj 2025-07-24T04:51:36.4388800Z [4720/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x4c8-minmax-sse41-ld128.c.obj 2025-07-24T04:51:36.5055299Z [4721/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x4c8-minmax-sse41-ld64.c.obj 2025-07-24T04:51:36.5099445Z [4722/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x4c8-minmax-sse41-ld128.c.obj 2025-07-24T04:51:36.6362637Z [4723/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T04:51:36.6419094Z [4724/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-3x4c8-minmax-sse41-ld128.c.obj 2025-07-24T04:51:36.6832129Z [4725/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:36.6885920Z [4726/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-3x4c8-minmax-sse41-ld64.c.obj 2025-07-24T04:51:36.6897266Z [4727/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x4c8-minmax-sse41-ld128.c.obj 2025-07-24T04:51:36.6908405Z [4728/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:36.7096533Z [4729/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:36.8446440Z [4730/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T04:51:36.8524917Z [4731/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T04:51:36.8686267Z [4732/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:36.8742275Z [4733/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:36.8952053Z [4734/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:36.9029153Z [4735/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T04:51:36.9093775Z [4736/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:36.9855823Z [4737/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:37.0601708Z [4738/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:37.0613559Z [4739/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:37.1077949Z [4740/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T04:51:37.1093225Z [4741/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:37.1108435Z [4742/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:37.1124009Z [4743/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T04:51:37.2234158Z [4744/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:37.2307711Z [4745/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:37.2758483Z [4746/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T04:51:37.3173790Z [4747/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:37.3186532Z [4748/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:37.3418411Z [4749/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:37.3432294Z [4750/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:37.4904118Z [4751/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:37.5311824Z [4752/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T04:51:37.5359257Z [4753/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u8.c.obj 2025-07-24T04:51:37.5453874Z [4754/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:37.5465637Z [4755/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u32.c.obj 2025-07-24T04:51:37.5537641Z [4756/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:37.5592642Z [4757/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u24.c.obj 2025-07-24T04:51:37.6058193Z [4758/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T04:51:37.6904254Z [4759/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:37.7104213Z [4760/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T04:51:37.7706780Z [4761/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T04:51:37.7756771Z [4762/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:37.7813299Z [4763/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:37.8024282Z [4764/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:37.8284209Z [4765/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:37.8926858Z [4766/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T04:51:37.8978941Z [4767/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:38.0743599Z [4768/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:38.0756858Z [4769/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:38.0768638Z [4770/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T04:51:38.0779827Z [4771/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:38.0792350Z [4772/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T04:51:38.0805809Z [4773/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:38.1001118Z [4774/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:38.2616777Z [4775/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:38.2667021Z [4776/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:38.2679162Z [4777/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T04:51:38.2739528Z [4778/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:38.2751096Z [4779/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:38.2803222Z [4780/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T04:51:38.2986610Z [4781/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T04:51:38.4348218Z [4782/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:38.4360217Z [4783/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:38.4371125Z [4784/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:38.4511085Z [4785/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:38.4697946Z [4786/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T04:51:38.4740878Z [4787/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:38.5253444Z [4788/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:38.5832974Z [4789/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:38.6447850Z [4790/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:38.6458837Z [4791/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:38.6469872Z [4792/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:38.6626247Z [4793/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:38.6720929Z [4794/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:38.6781828Z [4795/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:38.7729141Z [4796/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:38.7743416Z [4797/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:38.7755129Z [4798/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:38.7809758Z [4799/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:38.9646647Z [4800/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:38.9648883Z [4801/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:38.9650430Z [4802/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:38.9651822Z [4803/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:38.9653338Z [4804/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:38.9655267Z [4805/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:38.9687498Z [4806/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:39.0485425Z [4807/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:39.1254244Z [4808/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:39.1266958Z [4809/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:39.1317661Z [4810/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:39.1332165Z [4811/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:39.1401522Z [4812/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:39.1662351Z [4813/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:39.1963655Z [4814/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:39.2472056Z [4815/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:39.2597029Z [4816/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:39.2775581Z [4817/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:39.2786802Z [4818/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:39.2797796Z [4819/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:39.3026559Z [4820/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:39.3592648Z [4821/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:39.3766600Z [4822/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:39.4464554Z [4823/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c32.c.obj 2025-07-24T04:51:39.4633103Z [4824/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:39.4744181Z [4825/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:39.4757142Z [4826/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u16.c.obj 2025-07-24T04:51:39.4903804Z [4827/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u24.c.obj 2025-07-24T04:51:39.5105451Z [4828/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u32.c.obj 2025-07-24T04:51:39.5168627Z [4829/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c16.c.obj 2025-07-24T04:51:39.5565487Z [4830/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u8.c.obj 2025-07-24T04:51:39.6032150Z [4831/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u16.c.obj 2025-07-24T04:51:39.6044804Z [4832/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u24.c.obj 2025-07-24T04:51:39.6101066Z [4833/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u32.c.obj 2025-07-24T04:51:39.6118254Z [4834/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u16.c.obj 2025-07-24T04:51:39.6379746Z [4835/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u32.c.obj 2025-07-24T04:51:39.6441998Z [4836/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u24.c.obj 2025-07-24T04:51:39.6664330Z [4837/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u8.c.obj 2025-07-24T04:51:39.7553321Z [4838/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u16.c.obj 2025-07-24T04:51:39.7603332Z [4839/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u32.c.obj 2025-07-24T04:51:39.7614869Z [4840/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u8.c.obj 2025-07-24T04:51:39.7626807Z [4841/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u8.c.obj 2025-07-24T04:51:39.7739734Z [4842/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u24.c.obj 2025-07-24T04:51:39.7968686Z [4843/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u16.c.obj 2025-07-24T04:51:39.8348006Z [4844/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u16.c.obj 2025-07-24T04:51:39.8737759Z [4845/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-sse41-mul16-ld64-u8.c.obj 2025-07-24T04:51:39.8750614Z [4846/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-sse41-mul16-ld64-u8.c.obj 2025-07-24T04:51:39.8881406Z [4847/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:39.8933784Z [4848/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:39.9013017Z [4849/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:39.9272699Z [4850/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:39.9588900Z [4851/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:39.9981737Z [4852/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:40.0165040Z [4853/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:40.0224100Z [4854/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:40.0240006Z [4855/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:40.0290085Z [4856/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:40.0608333Z [4857/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:40.0782421Z [4858/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:40.1147243Z [4859/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:40.1368552Z [4860/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:40.1580263Z [4861/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:40.1691641Z [4862/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T04:51:40.1704819Z [4863/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:40.1865429Z [4864/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T04:51:40.1919242Z [4865/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u8.c.obj 2025-07-24T04:51:40.2263654Z [4866/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u24.c.obj 2025-07-24T04:51:40.2356158Z [4867/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u32.c.obj 2025-07-24T04:51:40.2922577Z [4868/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:40.3001032Z [4869/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:40.3058304Z [4870/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:40.3702450Z [4871/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:40.3714259Z [4872/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:40.3742944Z [4873/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:40.3795244Z [4874/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:40.4741229Z [4875/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:40.4902031Z [4876/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:40.5018796Z [4877/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:40.5066427Z [4878/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:40.5182449Z [4879/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:40.5427587Z [4880/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:40.5576502Z [4881/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:40.6718265Z [4882/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:40.8485804Z [4883/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:40.8513161Z [4884/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:40.8525615Z [4885/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:40.8536759Z [4886/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:40.8548114Z [4887/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:40.8560505Z [4888/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:41.0082731Z [4889/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:41.0141691Z [4890/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:41.0153388Z [4891/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:41.0196692Z [4892/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:41.0249395Z [4893/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:41.0984843Z [4894/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:41.1000254Z [4895/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:41.1763708Z [4896/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:41.1807577Z [4897/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:41.1899230Z [4898/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:41.1988973Z [4899/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:41.2723388Z [4900/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:41.3778425Z [4901/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:41.3789941Z [4902/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:41.3842052Z [4903/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:41.3853239Z [4904/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:41.3864389Z [4905/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:41.4393457Z [4906/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T04:51:41.5507907Z [4907/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T04:51:41.5915247Z [4908/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul32-ld32-u16.c.obj 2025-07-24T04:51:41.5929519Z [4909/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul32-ld32-u8.c.obj 2025-07-24T04:51:41.5942599Z [4910/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul32-ld32-u16.c.obj 2025-07-24T04:51:41.5955525Z [4911/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul16-ld64-u16.c.obj 2025-07-24T04:51:41.5974092Z [4912/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul32-ld32-u8.c.obj 2025-07-24T04:51:41.5989038Z [4913/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul16-ld64-u16.c.obj 2025-07-24T04:51:41.6552864Z [4914/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u8.c.obj 2025-07-24T04:51:41.7358896Z [4915/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-sse41-c8.c.obj 2025-07-24T04:51:41.7375535Z [4916/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u8.c.obj 2025-07-24T04:51:41.7434177Z [4917/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u16.c.obj 2025-07-24T04:51:41.7448248Z [4918/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u16.c.obj 2025-07-24T04:51:41.7510461Z [4919/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-sse41-mul16-ld64-u8.c.obj 2025-07-24T04:51:41.7523016Z [4920/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-sse41-mul16-ld64-u8.c.obj 2025-07-24T04:51:41.8333190Z [4921/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-sse41-c8.c.obj 2025-07-24T04:51:41.9171713Z [4922/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u24.c.obj 2025-07-24T04:51:41.9238448Z [4923/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u16.c.obj 2025-07-24T04:51:41.9589523Z [4924/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u8.c.obj 2025-07-24T04:51:41.9601756Z [4925/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u8.c.obj 2025-07-24T04:51:41.9613149Z [4926/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-gio-sse41-u2.c.obj 2025-07-24T04:51:41.9725144Z [4927/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u32.c.obj 2025-07-24T04:51:41.9795623Z [4928/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u24.c.obj 2025-07-24T04:51:42.0502307Z [4929/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u32.c.obj 2025-07-24T04:51:42.0549065Z [4930/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-avx-acc2.c.obj 2025-07-24T04:51:42.0654303Z [4931/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx-acc2.c.obj 2025-07-24T04:51:42.0703910Z [4932/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-avx.c.obj 2025-07-24T04:51:42.1457274Z [4933/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-avx.c.obj 2025-07-24T04:51:42.1469523Z [4934/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-avx-acc2.c.obj 2025-07-24T04:51:42.1933962Z [4935/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx-acc2.c.obj 2025-07-24T04:51:42.2759894Z [4936/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c8s4r-minmax-avx-acc2.c.obj 2025-07-24T04:51:42.3214906Z [4937/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-avx.c.obj 2025-07-24T04:51:42.3225872Z [4938/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-avx-acc2.c.obj 2025-07-24T04:51:42.3288522Z [4939/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-avx-acc2.c.obj 2025-07-24T04:51:42.3890012Z [4940/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c8s4r-minmax-avx-acc2.c.obj 2025-07-24T04:51:42.3901139Z [4941/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c8s4r-minmax-avx.c.obj 2025-07-24T04:51:42.3913694Z [4942/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-avx.c.obj 2025-07-24T04:51:42.4655354Z [4943/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c8s4r-minmax-avx.c.obj 2025-07-24T04:51:42.4799436Z [4944/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c8s4r-minmax-avx-acc2.c.obj 2025-07-24T04:51:42.4853519Z [4945/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c8s4r-minmax-avx-acc2.c.obj 2025-07-24T04:51:42.5893781Z [4946/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-avx.c.obj 2025-07-24T04:51:42.5906489Z [4947/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-avx-acc2.c.obj 2025-07-24T04:51:42.6661123Z [4948/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-avx-acc2.c.obj 2025-07-24T04:51:42.6726492Z [4949/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx-acc2.c.obj 2025-07-24T04:51:42.7121502Z [4950/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c8s4r-minmax-avx.c.obj 2025-07-24T04:51:42.7318842Z [4951/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx-acc2.c.obj 2025-07-24T04:51:42.7335816Z [4952/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx.c.obj 2025-07-24T04:51:42.7757519Z [4953/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u8.c.obj 2025-07-24T04:51:42.7806013Z [4954/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u32.c.obj 2025-07-24T04:51:42.7817297Z [4955/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u16.c.obj 2025-07-24T04:51:42.8199499Z [4956/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-avx-broadcast.c.obj 2025-07-24T04:51:42.8499806Z [4957/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:42.9104979Z [4958/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-avx-broadcast.c.obj 2025-07-24T04:51:42.9172650Z [4959/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-avx-broadcast.c.obj 2025-07-24T04:51:42.9226048Z [4960/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-avx-broadcast.c.obj 2025-07-24T04:51:42.9238149Z [4961/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:42.9287997Z [4962/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:42.9981976Z [4963/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.0516326Z [4964/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x8-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.0887981Z [4965/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.0939102Z [4966/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.0948813Z [4967/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.1003359Z [4968/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.1047518Z [4969/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.2141825Z [4970/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.2981227Z [4971/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.2993042Z [4972/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x8-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.3004694Z [4973/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.3062920Z [4974/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.3073607Z [4975/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.3085259Z [4976/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.4097544Z [4977/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.4752526Z [4978/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x8-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.4799521Z [4979/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-2x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.4882885Z [4980/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-prelu\gen\f32-prelu-avx-2x16.c.obj 2025-07-24T04:51:43.4895072Z [4981/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.4944211Z [4982/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.4955556Z [4983/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.5623676Z [4984/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.6321404Z [4985/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-6x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.6378300Z [4986/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-8x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.6424025Z [4987/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-5x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.6470225Z [4988/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-7x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.6529998Z [4989/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.6580206Z [4990/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.7947064Z [4991/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.8337814Z [4992/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-8x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.8351635Z [4993/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.8362676Z [4994/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u16.c.obj 2025-07-24T04:51:43.8375116Z [4995/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u8.c.obj 2025-07-24T04:51:43.8387423Z [4996/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-7x16-minmax-avx-broadcast.c.obj 2025-07-24T04:51:43.8399777Z [4997/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u24.c.obj 2025-07-24T04:51:43.9527328Z [4998/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u8.c.obj 2025-07-24T04:51:43.9581420Z [4999/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u24.c.obj 2025-07-24T04:51:43.9771112Z [5000/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u16.c.obj 2025-07-24T04:51:43.9822117Z [5001/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c64.c.obj 2025-07-24T04:51:43.9833651Z [5002/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u8.c.obj 2025-07-24T04:51:44.0401006Z [5003/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u16-acc2.c.obj 2025-07-24T04:51:44.0973676Z [5004/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c16.c.obj 2025-07-24T04:51:44.1251306Z [5005/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u8.c.obj 2025-07-24T04:51:44.1400566Z [5006/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u32-acc2.c.obj 2025-07-24T04:51:44.1412112Z [5007/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u24-acc3.c.obj 2025-07-24T04:51:44.1469756Z [5008/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u24-acc3.c.obj 2025-07-24T04:51:44.2556541Z [5009/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u16-acc2.c.obj 2025-07-24T04:51:44.2629041Z [5010/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u32-acc4.c.obj 2025-07-24T04:51:44.2642917Z [5011/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u32-acc2.c.obj 2025-07-24T04:51:44.3257670Z [5012/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u24-acc3.c.obj 2025-07-24T04:51:44.3316302Z [5013/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u16-acc2.c.obj 2025-07-24T04:51:44.3690480Z [5014/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u8.c.obj 2025-07-24T04:51:44.4085614Z [5015/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u8.c.obj 2025-07-24T04:51:44.4144793Z [5016/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u24-acc3.c.obj 2025-07-24T04:51:44.4234729Z [5017/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u16-acc2.c.obj 2025-07-24T04:51:44.4600519Z [5018/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u32-acc2.c.obj 2025-07-24T04:51:44.5014049Z [5019/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u32-acc2.c.obj 2025-07-24T04:51:44.5028707Z [5020/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-avx-u8.c.obj 2025-07-24T04:51:44.5236037Z [5021/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-avx-u8.c.obj 2025-07-24T04:51:44.5850541Z [5022/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-avx-u8.c.obj 2025-07-24T04:51:44.5916297Z [5023/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-avx-u8.c.obj 2025-07-24T04:51:44.5974836Z [5024/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-avx-u8.c.obj 2025-07-24T04:51:44.6277049Z [5025/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-avx-u8.c.obj 2025-07-24T04:51:44.6425640Z [5026/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-avx-u8.c.obj 2025-07-24T04:51:44.6484920Z [5027/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-avx-u8.c.obj 2025-07-24T04:51:44.6561345Z [5028/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-avx-u8.c.obj 2025-07-24T04:51:44.7374400Z [5029/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-avx-u8.c.obj 2025-07-24T04:51:44.7424065Z [5030/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-avx-u8.c.obj 2025-07-24T04:51:44.7981018Z [5031/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-avx-u8.c.obj 2025-07-24T04:51:44.8643345Z [5032/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-avx-u8.c.obj 2025-07-24T04:51:44.8692676Z [5033/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-avx-u8.c.obj 2025-07-24T04:51:44.8707308Z [5034/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx-u8.c.obj 2025-07-24T04:51:44.8769396Z [5035/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx-u8.c.obj 2025-07-24T04:51:44.9114049Z [5036/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-avx-u8.c.obj 2025-07-24T04:51:44.9359103Z [5037/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-avx-u8.c.obj 2025-07-24T04:51:44.9414544Z [5038/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-avx-u8.c.obj 2025-07-24T04:51:44.9971255Z [5039/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-avx-u8.c.obj 2025-07-24T04:51:45.0110451Z [5040/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut4-p4-perm-u24.c.obj 2025-07-24T04:51:45.0162293Z [5041/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut4-p4-perm-u8.c.obj 2025-07-24T04:51:45.0174960Z [5042/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut4-p4-perm-u16.c.obj 2025-07-24T04:51:45.0693482Z [5043/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u8.c.obj 2025-07-24T04:51:45.0805156Z [5044/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u16.c.obj 2025-07-24T04:51:45.1538551Z [5045/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u24.c.obj 2025-07-24T04:51:45.1592614Z [5046/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u24.c.obj 2025-07-24T04:51:45.1663803Z [5047/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u16.c.obj 2025-07-24T04:51:45.1781832Z [5048/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u32.c.obj 2025-07-24T04:51:45.1798936Z [5049/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u8.c.obj 2025-07-24T04:51:45.2238005Z [5050/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u32.c.obj 2025-07-24T04:51:45.2306368Z [5051/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-avx-u8.c.obj 2025-07-24T04:51:45.2958096Z [5052/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-avx-u8.c.obj 2025-07-24T04:51:45.3008781Z [5053/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx-u8.c.obj 2025-07-24T04:51:45.3090222Z [5054/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx-u16.c.obj 2025-07-24T04:51:45.3193251Z [5055/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-avx-u8.c.obj 2025-07-24T04:51:45.3248822Z [5056/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-avx-u8.c.obj 2025-07-24T04:51:45.4027007Z [5057/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-avx-u8.c.obj 2025-07-24T04:51:45.4133199Z [5058/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u32.c.obj 2025-07-24T04:51:45.4556969Z [5059/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-avx-u8.c.obj 2025-07-24T04:51:45.4867084Z [5060/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u8.c.obj 2025-07-24T04:51:45.6129099Z [5061/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u8.c.obj 2025-07-24T04:51:45.6153344Z [5062/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u16.c.obj 2025-07-24T04:51:45.6169462Z [5063/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u24.c.obj 2025-07-24T04:51:45.6977606Z [5064/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u32.c.obj 2025-07-24T04:51:45.6990356Z [5065/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u8.c.obj 2025-07-24T04:51:45.7043767Z [5066/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u24.c.obj 2025-07-24T04:51:45.7055706Z [5067/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u32.c.obj 2025-07-24T04:51:45.7715847Z [5068/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u8.c.obj 2025-07-24T04:51:45.7763951Z [5069/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u32.c.obj 2025-07-24T04:51:45.9015719Z [5070/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u32.c.obj 2025-07-24T04:51:45.9060698Z [5071/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u16.c.obj 2025-07-24T04:51:45.9210556Z [5072/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u8.c.obj 2025-07-24T04:51:45.9221910Z [5073/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x4c8-minmax-avx-ld64.c.obj 2025-07-24T04:51:45.9267991Z [5074/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x4c8-minmax-avx-ld64.c.obj 2025-07-24T04:51:45.9372065Z [5075/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x4c8-minmax-avx-ld128.c.obj 2025-07-24T04:51:45.9715685Z [5076/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-avx-rational-9-8-nr.c.obj 2025-07-24T04:51:46.0574871Z [5077/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-avx-ld128.c.obj 2025-07-24T04:51:46.0641135Z [5078/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-3x4c8-minmax-avx-ld64.c.obj 2025-07-24T04:51:46.0687120Z [5079/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-avx-ld64.c.obj 2025-07-24T04:51:46.0809044Z [5080/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x4c8-minmax-avx-ld64.c.obj 2025-07-24T04:51:46.0823537Z [5081/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-avx-ld64.c.obj 2025-07-24T04:51:46.0879416Z [5082/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-3x4c8-minmax-avx-ld128.c.obj 2025-07-24T04:51:46.1497882Z [5083/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-avx-ld128.c.obj 2025-07-24T04:51:46.2357123Z [5084/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-avx-ld64.c.obj 2025-07-24T04:51:46.2401524Z [5085/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-avx-ld128.c.obj 2025-07-24T04:51:46.2451815Z [5086/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x4c8-minmax-avx-ld64.c.obj 2025-07-24T04:51:46.2510479Z [5087/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x4c8-minmax-avx-ld128.c.obj 2025-07-24T04:51:46.2522876Z [5088/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-avx-ld64.c.obj 2025-07-24T04:51:46.2535815Z [5089/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-avx-ld128.c.obj 2025-07-24T04:51:46.2929530Z [5090/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x4c8-minmax-avx-ld64.c.obj 2025-07-24T04:51:46.3933176Z [5091/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-3x4c8-minmax-avx-ld128.c.obj 2025-07-24T04:51:46.3979998Z [5092/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x4c8-minmax-avx-ld64.c.obj 2025-07-24T04:51:46.4646382Z [5093/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x4c8-minmax-avx-ld128.c.obj 2025-07-24T04:51:46.4659680Z [5094/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-3x4c8-minmax-avx-ld64.c.obj 2025-07-24T04:51:46.4676093Z [5095/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x4c8-minmax-avx-ld128.c.obj 2025-07-24T04:51:46.4691871Z [5096/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x4c8-minmax-avx-ld64.c.obj 2025-07-24T04:51:46.4705553Z [5097/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x4c8-minmax-avx-ld128.c.obj 2025-07-24T04:51:46.5395316Z [5098/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x4c8-minmax-avx-ld64.c.obj 2025-07-24T04:51:46.6050573Z [5099/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:46.6062489Z [5100/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-3x4c8-minmax-avx-ld128.c.obj 2025-07-24T04:51:46.6103690Z [5101/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-3x4c8-minmax-avx-ld64.c.obj 2025-07-24T04:51:46.6183741Z [5102/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x4c8-minmax-avx-ld128.c.obj 2025-07-24T04:51:46.6565925Z [5103/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x4c8-minmax-avx-ld128.c.obj 2025-07-24T04:51:46.6576769Z [5104/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x4c8-minmax-avx-ld64.c.obj 2025-07-24T04:51:46.7373610Z [5105/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:46.7553973Z [5106/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:46.9430059Z [5107/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:46.9442158Z [5108/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx-mul16.c.obj 2025-07-24T04:51:46.9453306Z [5109/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:46.9464387Z [5110/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:46.9475985Z [5111/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx-mul16-add16.c.obj 2025-07-24T04:51:46.9489116Z [5112/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:47.1223335Z [5113/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:47.1269761Z [5114/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx-mul16.c.obj 2025-07-24T04:51:47.1766709Z [5115/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx-mul16-add16.c.obj 2025-07-24T04:51:47.1779415Z [5116/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx-mul16.c.obj 2025-07-24T04:51:47.1791874Z [5117/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx-mul16.c.obj 2025-07-24T04:51:47.1848117Z [5118/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:47.1860058Z [5119/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:47.3052407Z [5120/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u8.c.obj 2025-07-24T04:51:47.3102649Z [5121/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u16.c.obj 2025-07-24T04:51:47.3885228Z [5122/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u24.c.obj 2025-07-24T04:51:47.3897240Z [5123/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:47.3908464Z [5124/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:47.3939764Z [5125/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:47.4138284Z [5126/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:47.5264780Z [5127/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:47.5778729Z [5128/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx-mul16.c.obj 2025-07-24T04:51:47.5825570Z [5129/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-avx-mul16.c.obj 2025-07-24T04:51:47.6307791Z [5130/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:47.6353933Z [5131/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:47.6409265Z [5132/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:47.6492642Z [5133/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-avx-mul16-add16.c.obj 2025-07-24T04:51:47.7046188Z [5134/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-avx-mul16-add16.c.obj 2025-07-24T04:51:47.8397751Z [5135/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:47.9266105Z [5136/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:47.9313401Z [5137/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:47.9437396Z [5138/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:47.9450626Z [5139/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:48.0413984Z [5140/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-avx-mul16.c.obj 2025-07-24T04:51:48.1801451Z [5141/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx-mul16.c.obj 2025-07-24T04:51:48.1865190Z [5142/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:48.2531065Z [5143/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:48.2541774Z [5144/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:48.2552958Z [5145/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:48.2865649Z [5146/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:48.3723962Z [5147/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:48.3835491Z [5148/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:48.3942673Z [5149/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:48.3953835Z [5150/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:48.4004650Z [5151/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:48.4017977Z [5152/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:48.4824327Z [5153/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:48.5496164Z [5154/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:48.6582570Z [5155/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:48.7256057Z [5156/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:48.7318710Z [5157/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:48.7329594Z [5158/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:48.7340270Z [5159/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:48.7352295Z [5160/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:48.8072498Z [5161/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:48.8614558Z [5162/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:48.8657728Z [5163/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:48.8669039Z [5164/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:48.8714358Z [5165/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:48.9258451Z [5166/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:48.9269774Z [5167/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:48.9280507Z [5168/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:49.0083587Z [5169/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:49.0267300Z [5170/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:49.0846233Z [5171/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:49.0857362Z [5172/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:49.0939121Z [5173/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:49.1150231Z [5174/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:49.1227977Z [5175/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:49.1959292Z [5176/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:49.1974033Z [5177/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u8.c.obj 2025-07-24T04:51:49.2020977Z [5178/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:49.2043635Z [5179/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:49.2362409Z [5180/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u16.c.obj 2025-07-24T04:51:49.2433465Z [5181/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u32.c.obj 2025-07-24T04:51:49.2611857Z [5182/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u24.c.obj 2025-07-24T04:51:49.3268994Z [5183/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u24.c.obj 2025-07-24T04:51:49.3282245Z [5184/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u8.c.obj 2025-07-24T04:51:49.3332376Z [5185/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u16.c.obj 2025-07-24T04:51:49.3628871Z [5186/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u32.c.obj 2025-07-24T04:51:49.4072110Z [5187/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u16.c.obj 2025-07-24T04:51:49.4137426Z [5188/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u32.c.obj 2025-07-24T04:51:49.4951141Z [5189/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u24.c.obj 2025-07-24T04:51:49.4967660Z [5190/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u16.c.obj 2025-07-24T04:51:49.4983597Z [5191/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u24.c.obj 2025-07-24T04:51:49.4999694Z [5192/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u32.c.obj 2025-07-24T04:51:49.5059257Z [5193/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u8.c.obj 2025-07-24T04:51:49.5621094Z [5194/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u16.c.obj 2025-07-24T04:51:49.6964542Z [5195/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u8.c.obj 2025-07-24T04:51:49.6979171Z [5196/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-avx-mul16-ld64-u8.c.obj 2025-07-24T04:51:49.7020893Z [5197/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u16.c.obj 2025-07-24T04:51:49.7073407Z [5198/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-avx-mul16-ld64-u8.c.obj 2025-07-24T04:51:49.7171447Z [5199/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:49.7334399Z [5200/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:49.7584627Z [5201/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:49.8493445Z [5202/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx-mul16.c.obj 2025-07-24T04:51:49.8761153Z [5203/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:49.8772760Z [5204/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:49.8877464Z [5205/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:49.8926577Z [5206/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:49.8937724Z [5207/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:49.9530462Z [5208/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx-mul16.c.obj 2025-07-24T04:51:50.0009750Z [5209/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u24.c.obj 2025-07-24T04:51:50.0241350Z [5210/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u8.c.obj 2025-07-24T04:51:50.0287097Z [5211/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:50.0334687Z [5212/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u16.c.obj 2025-07-24T04:51:50.0417110Z [5213/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:50.0431846Z [5214/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx-mul32.c.obj 2025-07-24T04:51:50.1029070Z [5215/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:50.2360606Z [5216/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:50.2372966Z [5217/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:50.2384448Z [5218/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:50.2926028Z [5219/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:50.2937359Z [5220/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:50.2948438Z [5221/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:50.3103955Z [5222/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:50.4251678Z [5223/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:50.4268266Z [5224/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:50.4698141Z [5225/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:50.4739907Z [5226/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:50.4792514Z [5227/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:50.5672294Z [5228/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:50.6344856Z [5229/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:50.6578401Z [5230/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:50.6591350Z [5231/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:50.6711556Z [5232/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:50.6806033Z [5233/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:50.7395805Z [5234/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:50.7561532Z [5235/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:50.8028058Z [5236/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:50.8109073Z [5237/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:50.8743878Z [5238/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:50.8757710Z [5239/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:50.8770011Z [5240/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:50.9580242Z [5241/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:50.9593385Z [5242/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:50.9865863Z [5243/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:51.0081540Z [5244/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:51.0156648Z [5245/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:51.0294349Z [5246/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:51.0342649Z [5247/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:51.0905796Z [5248/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:51.0949056Z [5249/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:51.1069369Z [5250/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:51.1464075Z [5251/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:51.1478462Z [5252/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul16-ld64-u8.c.obj 2025-07-24T04:51:51.1532222Z [5253/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T04:51:51.1547603Z [5254/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T04:51:51.2247682Z [5255/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul16-ld64-u8.c.obj 2025-07-24T04:51:51.2668059Z [5256/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul16-ld64-u16.c.obj 2025-07-24T04:51:51.2693429Z [5257/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul32-ld32-u16.c.obj 2025-07-24T04:51:51.2714568Z [5258/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul16-ld64-u16.c.obj 2025-07-24T04:51:51.2760357Z [5259/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u8.c.obj 2025-07-24T04:51:51.2839548Z [5260/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul32-ld32-u16.c.obj 2025-07-24T04:51:51.2852050Z [5261/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u16.c.obj 2025-07-24T04:51:51.3850802Z [5262/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u48.c.obj 2025-07-24T04:51:51.4853088Z [5263/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u16.c.obj 2025-07-24T04:51:51.4864554Z [5264/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u32.c.obj 2025-07-24T04:51:51.4878059Z [5265/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-avx-mul16-ld64-u8.c.obj 2025-07-24T04:51:51.4890583Z [5266/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-avx-mul16-ld64-u8.c.obj 2025-07-24T04:51:51.4903527Z [5267/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u8.c.obj 2025-07-24T04:51:51.4917423Z [5268/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u16.c.obj 2025-07-24T04:51:51.6100838Z [5269/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-avx-u1.c.obj 2025-07-24T04:51:51.6747184Z [5270/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-avx-u8-prfm.c.obj 2025-07-24T04:51:51.6767796Z [5271/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-avx-u8.c.obj 2025-07-24T04:51:51.6780086Z [5272/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-avx-u4-prfm.c.obj 2025-07-24T04:51:51.6791639Z [5273/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-avx-u4.c.obj 2025-07-24T04:51:51.6802520Z [5274/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-avx-u1-prfm.c.obj 2025-07-24T04:51:51.6815115Z [5275/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-avx-u4-prfm.c.obj 2025-07-24T04:51:51.8368661Z [5276/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx-u1.c.obj 2025-07-24T04:51:51.8415358Z [5277/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx-u1-prfm.c.obj 2025-07-24T04:51:51.8460655Z [5278/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-avx-u4.c.obj 2025-07-24T04:51:51.8505840Z [5279/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx-u1-prfm.c.obj 2025-07-24T04:51:51.8656069Z [5280/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-avx-u4-prfm.c.obj 2025-07-24T04:51:51.8729002Z [5281/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-avx-u4-prfm.c.obj 2025-07-24T04:51:51.8886925Z [5282/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx-u8-prfm.c.obj 2025-07-24T04:51:51.9738314Z [5283/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx-u8.c.obj 2025-07-24T04:51:51.9788818Z [5284/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-multi-switch-avx.c.obj 2025-07-24T04:51:51.9800426Z [5285/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx-u1.c.obj 2025-07-24T04:51:51.9854793Z [5286/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-mov-avx.c.obj 2025-07-24T04:51:51.9867982Z [5287/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx-u8-prfm.c.obj 2025-07-24T04:51:51.9917777Z [5288/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-multi-mov-avx.c.obj 2025-07-24T04:51:52.2099295Z [5289/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-switch-avx.c.obj 2025-07-24T04:51:52.2111579Z [5290/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-f16c-u8.c.obj 2025-07-24T04:51:52.2170411Z [5291/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-multi-avx.c.obj 2025-07-24T04:51:52.2181554Z [5292/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-switch-avx.c.obj 2025-07-24T04:51:52.2937132Z [5293/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-mov-avx.c.obj 2025-07-24T04:51:52.2947480Z [5294/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-switch-avx.c.obj 2025-07-24T04:51:52.2958834Z [5295/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-mov-avx.c.obj 2025-07-24T04:51:52.4256691Z [5296/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c128.c.obj 2025-07-24T04:51:52.4303876Z [5297/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c16.c.obj 2025-07-24T04:51:52.4941881Z [5298/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c64.c.obj 2025-07-24T04:51:52.5564248Z [5299/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u16-acc2.c.obj 2025-07-24T04:51:52.5668977Z [5300/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u8.c.obj 2025-07-24T04:51:52.5718298Z [5301/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u32-acc2.c.obj 2025-07-24T04:51:52.5729299Z [5302/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u24-acc3.c.obj 2025-07-24T04:51:52.6155351Z [5303/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vadd-f16c-u8.c.obj 2025-07-24T04:51:52.6222340Z [5304/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vaddc-f16c-u8.c.obj 2025-07-24T04:51:52.7057081Z [5305/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmax-f16c-u8.c.obj 2025-07-24T04:51:52.7075447Z [5306/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vdivc-f16c-u16.c.obj 2025-07-24T04:51:52.7978780Z [5307/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmaxc-f16c-u8.c.obj 2025-07-24T04:51:52.7991167Z [5308/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vdiv-f16c-u16.c.obj 2025-07-24T04:51:52.8891406Z [5309/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vminc-f16c-u8.c.obj 2025-07-24T04:51:52.9475861Z [5310/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmin-f16c-u8.c.obj 2025-07-24T04:51:52.9487950Z [5311/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmulc-f16c-u8.c.obj 2025-07-24T04:51:52.9500323Z [5312/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmul-f16c-u8.c.obj 2025-07-24T04:51:52.9555385Z [5313/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vpreluc-f16c-u8.c.obj 2025-07-24T04:51:52.9614244Z [5314/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vprelu-f16c-u8.c.obj 2025-07-24T04:51:53.0565155Z [5315/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrdivc-f16c-u16.c.obj 2025-07-24T04:51:53.0987133Z [5316/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrsubc-f16c-u8.c.obj 2025-07-24T04:51:53.1776809Z [5317/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsqrdiff-f16c-u8.c.obj 2025-07-24T04:51:53.1823392Z [5318/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrpreluc-f16c-u8.c.obj 2025-07-24T04:51:53.2281201Z [5319/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vclamp\gen\f16-vclamp-f16c-u8.c.obj 2025-07-24T04:51:53.2293774Z [5320/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsubc-f16c-u8.c.obj 2025-07-24T04:51:53.2306623Z [5321/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsub-f16c-u8.c.obj 2025-07-24T04:51:53.2319546Z [5322/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsqrdiffc-f16c-u8.c.obj 2025-07-24T04:51:53.2975788Z [5323/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vlrelu\gen\f16-vlrelu-f16c-u8.c.obj 2025-07-24T04:51:53.3104409Z [5324/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vhswish\gen\f16-vhswish-f16c-u8.c.obj 2025-07-24T04:51:53.3778054Z [5325/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u8.c.obj 2025-07-24T04:51:53.3791030Z [5326/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndu-f16c-u8.c.obj 2025-07-24T04:51:53.3934151Z [5327/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndne-f16c-u8.c.obj 2025-07-24T04:51:53.3948879Z [5328/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndz-f16c-u8.c.obj 2025-07-24T04:51:53.3962970Z [5329/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndd-f16c-u8.c.obj 2025-07-24T04:51:53.4408698Z [5330/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u8.c.obj 2025-07-24T04:51:53.5225297Z [5331/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u16.c.obj 2025-07-24T04:51:53.5238111Z [5332/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-div-u8.c.obj 2025-07-24T04:51:53.5380234Z [5333/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u16.c.obj 2025-07-24T04:51:53.5392247Z [5334/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u8.c.obj 2025-07-24T04:51:53.5647331Z [5335/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u16.c.obj 2025-07-24T04:51:53.5687028Z [5336/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u32.c.obj 2025-07-24T04:51:53.6142754Z [5337/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-div-u16.c.obj 2025-07-24T04:51:53.7379804Z [5338/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-div-u32.c.obj 2025-07-24T04:51:53.7392376Z [5339/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-div-u24.c.obj 2025-07-24T04:51:53.7404165Z [5340/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-rcp-u32.c.obj 2025-07-24T04:51:53.7415390Z [5341/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u8.c.obj 2025-07-24T04:51:53.7428669Z [5342/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-rcp-u16.c.obj 2025-07-24T04:51:53.7441642Z [5343/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-rcp-u8.c.obj 2025-07-24T04:51:53.7457392Z [5344/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u16.c.obj 2025-07-24T04:51:53.8748586Z [5345/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u24.c.obj 2025-07-24T04:51:53.8928341Z [5346/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u32.c.obj 2025-07-24T04:51:53.8995056Z [5347/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vsqr-f16c-u8.c.obj 2025-07-24T04:51:53.9017074Z [5348/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-f16c-u8.c.obj 2025-07-24T04:51:53.9218729Z [5349/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p16c-minmax-fma3-acc2.c.obj 2025-07-24T04:51:53.9230532Z [5350/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p8c-minmax-fma3-acc2.c.obj 2025-07-24T04:51:53.9371722Z [5351/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p8c-minmax-fma3.c.obj 2025-07-24T04:51:54.0337810Z [5352/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p8c-minmax-fma3-acc2.c.obj 2025-07-24T04:51:54.0349933Z [5353/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p32c-minmax-fma3.c.obj 2025-07-24T04:51:54.0498778Z [5354/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p8c-minmax-fma3.c.obj 2025-07-24T04:51:54.0546161Z [5355/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p16c-minmax-fma3-acc2.c.obj 2025-07-24T04:51:54.0723741Z [5356/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p32c-minmax-fma3.c.obj 2025-07-24T04:51:54.0772076Z [5357/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p32c-minmax-fma3-acc2.c.obj 2025-07-24T04:51:54.0977050Z [5358/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p32c-minmax-fma3-acc2.c.obj 2025-07-24T04:51:54.2265360Z [5359/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l8c8s4r-minmax-fma3.c.obj 2025-07-24T04:51:54.2313803Z [5360/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l8c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T04:51:54.2430089Z [5361/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l32c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T04:51:54.2441968Z [5362/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l16c8s4r-minmax-fma3.c.obj 2025-07-24T04:51:54.3135195Z [5363/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l16c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T04:51:54.3147467Z [5364/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l32c8s4r-minmax-fma3.c.obj 2025-07-24T04:51:54.3159997Z [5365/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l8c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T04:51:54.3946823Z [5366/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l8c8s4r-minmax-fma3.c.obj 2025-07-24T04:51:54.4311777Z [5367/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l16c8s4r-minmax-fma3.c.obj 2025-07-24T04:51:54.4503937Z [5368/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l16c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T04:51:54.4559940Z [5369/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l32c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T04:51:54.4785526Z [5370/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l8c8s4r-minmax-fma3.c.obj 2025-07-24T04:51:54.5217609Z [5371/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l8c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T04:51:54.5535859Z [5372/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l32c8s4r-minmax-fma3.c.obj 2025-07-24T04:51:54.6010608Z [5373/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p8c-minmax-fma3-acc2.c.obj 2025-07-24T04:51:54.6630222Z [5374/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l16c8s4r-minmax-fma3.c.obj 2025-07-24T04:51:54.6678402Z [5375/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l32c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T04:51:54.6725839Z [5376/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l32c8s4r-minmax-fma3.c.obj 2025-07-24T04:51:54.6880953Z [5377/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l16c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T04:51:54.7178642Z [5378/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p32c-minmax-fma3-acc2.c.obj 2025-07-24T04:51:54.7244067Z [5379/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p8c-minmax-fma3.c.obj 2025-07-24T04:51:54.7255613Z [5380/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p16c-minmax-fma3-acc2.c.obj 2025-07-24T04:51:54.7919153Z [5381/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p32c-minmax-fma3.c.obj 2025-07-24T04:51:54.8060978Z [5382/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p8c-minmax-fma3.c.obj 2025-07-24T04:51:54.9044034Z [5383/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p16c-minmax-fma3-acc2.c.obj 2025-07-24T04:51:54.9094458Z [5384/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p16c-minmax-fma3.c.obj 2025-07-24T04:51:54.9481218Z [5385/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p32c-minmax-fma3.c.obj 2025-07-24T04:51:54.9530043Z [5386/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-ibilinear\gen\f16-ibilinear-fma3-c16.c.obj 2025-07-24T04:51:54.9541781Z [5387/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p32c-minmax-fma3-acc2.c.obj 2025-07-24T04:51:54.9596503Z [5388/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-div-u8.c.obj 2025-07-24T04:51:54.9978837Z [5389/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vmulcaddc\gen\f16-vmulcaddc-c16-minmax-fma3-2x.c.obj 2025-07-24T04:51:55.0231307Z [5390/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-div-u16.c.obj 2025-07-24T04:51:55.1211147Z [5391/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-rcp-u24.c.obj 2025-07-24T04:51:55.1285113Z [5392/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-rcp-u16.c.obj 2025-07-24T04:51:55.1340892Z [5393/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-div-u32.c.obj 2025-07-24T04:51:55.2234968Z [5394/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-rcp-u32.c.obj 2025-07-24T04:51:55.2295187Z [5395/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-rcp-u8.c.obj 2025-07-24T04:51:55.2311574Z [5396/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-div-u24.c.obj 2025-07-24T04:51:55.2327662Z [5397/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u8.c.obj 2025-07-24T04:51:55.3039735Z [5398/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u16.c.obj 2025-07-24T04:51:55.3395750Z [5399/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u24.c.obj 2025-07-24T04:51:55.4154562Z [5400/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-fma3-acc2.c.obj 2025-07-24T04:51:55.4168118Z [5401/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-fma3.c.obj 2025-07-24T04:51:55.5323598Z [5402/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-fma3-acc2.c.obj 2025-07-24T04:51:55.5335316Z [5403/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-fma3-acc2.c.obj 2025-07-24T04:51:55.5348647Z [5404/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T04:51:55.5361797Z [5405/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-fma3-acc2.c.obj 2025-07-24T04:51:55.5374585Z [5406/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-fma3.c.obj 2025-07-24T04:51:55.6213344Z [5407/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T04:51:55.6805597Z [5408/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l8c8s4r-minmax-fma3.c.obj 2025-07-24T04:51:55.6886069Z [5409/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-fma3.c.obj 2025-07-24T04:51:55.6899027Z [5410/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T04:51:55.6910716Z [5411/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l8c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T04:51:55.6963613Z [5412/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c8s4r-minmax-fma3.c.obj 2025-07-24T04:51:55.7548754Z [5413/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l16c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T04:51:55.7655350Z [5414/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l16c8s4r-minmax-fma3.c.obj 2025-07-24T04:51:55.8336860Z [5415/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-fma3-acc2.c.obj 2025-07-24T04:51:55.8348861Z [5416/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-fma3-acc2.c.obj 2025-07-24T04:51:55.8394719Z [5417/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-fma3.c.obj 2025-07-24T04:51:55.8725954Z [5418/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l32c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T04:51:55.8740137Z [5419/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l32c8s4r-minmax-fma3.c.obj 2025-07-24T04:51:55.9345819Z [5420/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-fma3-acc2.c.obj 2025-07-24T04:51:55.9746535Z [5421/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:55.9925756Z [5422/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.0007026Z [5423/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-fma3.c.obj 2025-07-24T04:51:56.0057011Z [5424/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-fma3-acc2.c.obj 2025-07-24T04:51:56.0605258Z [5425/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.0760839Z [5426/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.1051773Z [5427/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.1119364Z [5428/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.2957317Z [5429/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.3096564Z [5430/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.3109282Z [5431/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.3119331Z [5432/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.3130509Z [5433/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x8-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.3142783Z [5434/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.3154880Z [5435/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x8-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.4735784Z [5436/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.4783774Z [5437/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.4795752Z [5438/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.4846403Z [5439/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.4892497Z [5440/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.5426719Z [5441/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.5438432Z [5442/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.6303217Z [5443/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.6379857Z [5444/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.6438339Z [5445/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.6523181Z [5446/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.6538076Z [5447/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.6928264Z [5448/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.7099596Z [5449/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x8-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.8041367Z [5450/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.8089585Z [5451/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.8137970Z [5452/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-8x8-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.8260757Z [5453/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.8273997Z [5454/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.8811277Z [5455/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:56.9557265Z [5456/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:57.0319026Z [5457/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:57.0386034Z [5458/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:57.0434496Z [5459/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:57.1060080Z [5460/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-fma3-broadcast-prfm.c.obj 2025-07-24T04:51:57.1072359Z [5461/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:57.1122103Z [5462/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:57.1568290Z [5463/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x8-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:57.1891187Z [5464/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x8-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:57.1975722Z [5465/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-2x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:57.2498857Z [5466/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-6x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:57.2632574Z [5467/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:57.3066832Z [5468/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-5x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:57.3079174Z [5469/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-7x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:57.3166529Z [5470/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-8x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:57.3322532Z [5471/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:57.3432487Z [5472/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:57.4052964Z [5473/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:57.4735306Z [5474/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u32.c.obj 2025-07-24T04:51:57.4748601Z [5475/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u64.c.obj 2025-07-24T04:51:57.4867128Z [5476/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-8x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:57.4881371Z [5477/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u8.c.obj 2025-07-24T04:51:57.4893764Z [5478/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:57.4952443Z [5479/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-7x16-minmax-fma3-broadcast.c.obj 2025-07-24T04:51:57.5733491Z [5480/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-fma3-u8.c.obj 2025-07-24T04:51:57.6383332Z [5481/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u8.c.obj 2025-07-24T04:51:57.6397529Z [5482/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u32.c.obj 2025-07-24T04:51:57.6410249Z [5483/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u8.c.obj 2025-07-24T04:51:57.7112139Z [5484/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-1x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:57.7125698Z [5485/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u32.c.obj 2025-07-24T04:51:57.7138970Z [5486/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-fma3-rational-9-8-nr.c.obj 2025-07-24T04:51:57.7366165Z [5487/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-fma3-rational-3-3-nr.c.obj 2025-07-24T04:51:57.8026026Z [5488/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-3x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:57.8740654Z [5489/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-1x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:57.8967966Z [5490/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-4x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:57.8979481Z [5491/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-7x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:57.8991055Z [5492/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-5x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:57.9002370Z [5493/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-6x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:57.9015268Z [5494/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-5x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:57.9834889Z [5495/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-3x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.1550217Z [5496/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-5x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.1563712Z [5497/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-6x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.1575100Z [5498/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-4x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.1586354Z [5499/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-7x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.1599001Z [5500/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-5x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.2519051Z [5501/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-1x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.2531975Z [5502/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-1x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.3598275Z [5503/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-5x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.3610340Z [5504/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-5x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.3621735Z [5505/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-4x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.3632923Z [5506/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-4x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.3646747Z [5507/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-3x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.4383775Z [5508/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-6x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.4601186Z [5509/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-7x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.5419162Z [5510/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-4x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.5535599Z [5511/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-1x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.5547475Z [5512/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-4x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.5559108Z [5513/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-1x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.5570379Z [5514/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-3x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.5868316Z [5515/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-5x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.6419340Z [5516/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-5x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.7088856Z [5517/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u16-acc2.c.obj 2025-07-24T04:51:58.7907206Z [5518/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-7x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.7918722Z [5519/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-6x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:58.7943189Z [5520/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32-acc2.c.obj 2025-07-24T04:51:58.7954283Z [5521/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u16.c.obj 2025-07-24T04:51:58.8503993Z [5522/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40-acc2.c.obj 2025-07-24T04:51:58.8593281Z [5523/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32-acc4.c.obj 2025-07-24T04:51:58.9260261Z [5524/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40-acc5.c.obj 2025-07-24T04:51:58.9308928Z [5525/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48-acc3.c.obj 2025-07-24T04:51:58.9352797Z [5526/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48-acc2.c.obj 2025-07-24T04:51:58.9418799Z [5527/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40.c.obj 2025-07-24T04:51:58.9697188Z [5528/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48.c.obj 2025-07-24T04:51:59.0087235Z [5529/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64-acc2.c.obj 2025-07-24T04:51:59.0101365Z [5530/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64-acc4.c.obj 2025-07-24T04:51:59.1418184Z [5531/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80.c.obj 2025-07-24T04:51:59.2098348Z [5532/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc2.c.obj 2025-07-24T04:51:59.2109192Z [5533/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80-acc5.c.obj 2025-07-24T04:51:59.2166900Z [5534/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u72.c.obj 2025-07-24T04:51:59.2179090Z [5535/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80-acc2.c.obj 2025-07-24T04:51:59.2191761Z [5536/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u72-acc3.c.obj 2025-07-24T04:51:59.2207351Z [5537/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64.c.obj 2025-07-24T04:51:59.3389826Z [5538/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc3.c.obj 2025-07-24T04:51:59.3487745Z [5539/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96.c.obj 2025-07-24T04:51:59.3504154Z [5540/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u24.c.obj 2025-07-24T04:51:59.3518919Z [5541/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-velu\gen\f16-velu-avx2-rr1-p3-u8.c.obj 2025-07-24T04:51:59.3572917Z [5542/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc6.c.obj 2025-07-24T04:51:59.3625239Z [5543/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u8.c.obj 2025-07-24T04:51:59.4232741Z [5544/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u16.c.obj 2025-07-24T04:51:59.5038040Z [5545/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-div-u16.c.obj 2025-07-24T04:51:59.5055051Z [5546/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-div-u8.c.obj 2025-07-24T04:51:59.5069506Z [5547/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u16.c.obj 2025-07-24T04:51:59.5128402Z [5548/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u32.c.obj 2025-07-24T04:51:59.5142731Z [5549/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u8.c.obj 2025-07-24T04:51:59.6361313Z [5550/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u24.c.obj 2025-07-24T04:51:59.6422005Z [5551/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-div-u24.c.obj 2025-07-24T04:51:59.7140185Z [5552/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-div-u32.c.obj 2025-07-24T04:51:59.7153445Z [5553/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-rcp-u16.c.obj 2025-07-24T04:51:59.7260228Z [5554/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-rcp-u8.c.obj 2025-07-24T04:51:59.7312615Z [5555/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-rcp-u24.c.obj 2025-07-24T04:51:59.7860840Z [5556/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-rcp-u32.c.obj 2025-07-24T04:51:59.8130234Z [5557/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:59.8144982Z [5558/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-2x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:59.8739713Z [5559/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-8x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:59.8750793Z [5560/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-6x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:59.8802819Z [5561/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-5x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:59.8848460Z [5562/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-7x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:59.9204251Z [5563/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:59.9759126Z [5564/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:51:59.9771381Z [5565/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x16s4-minmax-avx2-broadcast.c.obj 2025-07-24T04:52:00.0288111Z [5566/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:52:00.0449016Z [5567/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x16s4-minmax-avx2-broadcast.c.obj 2025-07-24T04:52:00.0921096Z [5568/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x16s4-minmax-avx2-broadcast.c.obj 2025-07-24T04:52:00.0945641Z [5569/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:52:00.1046653Z [5570/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x16s4-minmax-avx2-broadcast.c.obj 2025-07-24T04:52:00.1113922Z [5571/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:52:00.1801124Z [5572/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x16s4-minmax-avx2-broadcast.c.obj 2025-07-24T04:52:00.2724795Z [5573/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:52:00.2796230Z [5574/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:52:00.3588592Z [5575/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x16s4-minmax-avx2-broadcast.c.obj 2025-07-24T04:52:00.3599841Z [5576/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:52:00.3611975Z [5577/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-7x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:52:00.3671533Z [5578/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-7x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:52:00.4648779Z [5579/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-8x16-minmax-avx2-broadcast.c.obj 2025-07-24T04:52:00.4701564Z [5580/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-8x8-minmax-avx2-broadcast.c.obj 2025-07-24T04:52:00.4798991Z [5581/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u32.c.obj 2025-07-24T04:52:00.4814208Z [5582/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u48.c.obj 2025-07-24T04:52:00.4960489Z [5583/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u16.c.obj 2025-07-24T04:52:00.5065455Z [5584/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u32.c.obj 2025-07-24T04:52:00.5077072Z [5585/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u16.c.obj 2025-07-24T04:52:00.5910854Z [5586/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u48.c.obj 2025-07-24T04:52:00.6131764Z [5587/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32-acc4.c.obj 2025-07-24T04:52:00.6171716Z [5588/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32-acc2.c.obj 2025-07-24T04:52:00.6590163Z [5589/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64-acc2.c.obj 2025-07-24T04:52:00.6601845Z [5590/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32.c.obj 2025-07-24T04:52:00.6612643Z [5591/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64.c.obj 2025-07-24T04:52:00.6623693Z [5592/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64-acc4.c.obj 2025-07-24T04:52:00.7050290Z [5593/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u72-acc3.c.obj 2025-07-24T04:52:00.7092525Z [5594/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u72.c.obj 2025-07-24T04:52:00.7103833Z [5595/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80-acc2.c.obj 2025-07-24T04:52:00.7664456Z [5596/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc2.c.obj 2025-07-24T04:52:00.7711256Z [5597/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc3.c.obj 2025-07-24T04:52:00.7722048Z [5598/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80.c.obj 2025-07-24T04:52:00.8532914Z [5599/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80-acc5.c.obj 2025-07-24T04:52:00.9028988Z [5600/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96.c.obj 2025-07-24T04:52:00.9387801Z [5601/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc6.c.obj 2025-07-24T04:52:01.1316087Z [5602/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64-acc4.c.obj 2025-07-24T04:52:01.1381346Z [5603/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u72-acc3.c.obj 2025-07-24T04:52:01.1392215Z [5604/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64.c.obj 2025-07-24T04:52:01.1402745Z [5605/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32-acc4.c.obj 2025-07-24T04:52:01.1413666Z [5606/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32-acc2.c.obj 2025-07-24T04:52:01.2011999Z [5607/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32.c.obj 2025-07-24T04:52:01.2023238Z [5608/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64-acc2.c.obj 2025-07-24T04:52:01.2576009Z [5609/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80-acc2.c.obj 2025-07-24T04:52:01.2587339Z [5610/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80-acc5.c.obj 2025-07-24T04:52:01.2629026Z [5611/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80.c.obj 2025-07-24T04:52:01.2749956Z [5612/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u72.c.obj 2025-07-24T04:52:01.3294876Z [5613/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc2.c.obj 2025-07-24T04:52:01.3382135Z [5614/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc3.c.obj 2025-07-24T04:52:01.4351666Z [5615/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc6.c.obj 2025-07-24T04:52:01.4515849Z [5616/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u16-acc2.c.obj 2025-07-24T04:52:01.4561773Z [5617/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u32-acc2.c.obj 2025-07-24T04:52:01.5041364Z [5618/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u8.c.obj 2025-07-24T04:52:01.5093118Z [5619/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96.c.obj 2025-07-24T04:52:01.5105865Z [5620/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u8.c.obj 2025-07-24T04:52:01.5117604Z [5621/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u32-acc4.c.obj 2025-07-24T04:52:01.5811070Z [5622/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u16-acc2.c.obj 2025-07-24T04:52:01.5822766Z [5623/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc4.c.obj 2025-07-24T04:52:01.7660007Z [5624/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut4-p4-perm-u16.c.obj 2025-07-24T04:52:01.7673333Z [5625/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut8-p4-perm-u24.c.obj 2025-07-24T04:52:01.7685414Z [5626/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut4-p4-perm-u24.c.obj 2025-07-24T04:52:01.7696725Z [5627/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut8-p4-perm-u16.c.obj 2025-07-24T04:52:01.7710809Z [5628/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut8-p4-perm-u8.c.obj 2025-07-24T04:52:01.7724300Z [5629/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut4-p4-perm-u8.c.obj 2025-07-24T04:52:01.7738062Z [5630/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut8-p4-perm-u32.c.obj 2025-07-24T04:52:01.9024744Z [5631/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u8.c.obj 2025-07-24T04:52:01.9252542Z [5632/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut16-p3-gather-u24.c.obj 2025-07-24T04:52:01.9526457Z [5633/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut16-p3-gather-u16.c.obj 2025-07-24T04:52:01.9576244Z [5634/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u24.c.obj 2025-07-24T04:52:01.9589880Z [5635/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut16-p3-gather-u8.c.obj 2025-07-24T04:52:01.9601524Z [5636/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u16.c.obj 2025-07-24T04:52:01.9613508Z [5637/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut16-p3-gather-u32.c.obj 2025-07-24T04:52:02.0502709Z [5638/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u32.c.obj 2025-07-24T04:52:02.1129818Z [5639/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u16.c.obj 2025-07-24T04:52:02.1170993Z [5640/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u8.c.obj 2025-07-24T04:52:02.1398325Z [5641/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u24.c.obj 2025-07-24T04:52:02.1409605Z [5642/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u8.c.obj 2025-07-24T04:52:02.1420842Z [5643/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u32.c.obj 2025-07-24T04:52:02.1463191Z [5644/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u24.c.obj 2025-07-24T04:52:02.1582720Z [5645/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u16.c.obj 2025-07-24T04:52:02.2431139Z [5646/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u32.c.obj 2025-07-24T04:52:02.2763696Z [5647/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u32.c.obj 2025-07-24T04:52:02.2809576Z [5648/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u16.c.obj 2025-07-24T04:52:02.2882821Z [5649/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u8.c.obj 2025-07-24T04:52:02.2942544Z [5650/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u24.c.obj 2025-07-24T04:52:02.2955200Z [5651/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u8.c.obj 2025-07-24T04:52:02.2967827Z [5652/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u24.c.obj 2025-07-24T04:52:02.3890118Z [5653/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u32.c.obj 2025-07-24T04:52:02.4774987Z [5654/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u16.c.obj 2025-07-24T04:52:02.4866813Z [5655/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u24.c.obj 2025-07-24T04:52:02.4919814Z [5656/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u32.c.obj 2025-07-24T04:52:02.4992183Z [5657/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u8.c.obj 2025-07-24T04:52:02.5500707Z [5658/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-2x8c8-minmax-avx2.c.obj 2025-07-24T04:52:02.5512924Z [5659/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-4x8c8-minmax-avx2.c.obj 2025-07-24T04:52:02.5630723Z [5660/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx2-madd.c.obj 2025-07-24T04:52:02.6422434Z [5661/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-2x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T04:52:02.6872631Z [5662/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx2.c.obj 2025-07-24T04:52:02.7121579Z [5663/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-2x8c8-minmax-avx2-madd.c.obj 2025-07-24T04:52:02.7357925Z [5664/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-2x8c8-minmax-avx2.c.obj 2025-07-24T04:52:02.7767253Z [5665/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-4x8c8-minmax-avx2-madd.c.obj 2025-07-24T04:52:02.7813228Z [5666/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-3x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T04:52:02.8000572Z [5667/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-3x8c8-minmax-avx2.c.obj 2025-07-24T04:52:02.8241853Z [5668/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-3x8c8-minmax-avx2-madd.c.obj 2025-07-24T04:52:02.8833310Z [5669/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-4x8c8-minmax-avx2.c.obj 2025-07-24T04:52:02.8929661Z [5670/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx2.c.obj 2025-07-24T04:52:02.8940481Z [5671/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx2-madd.c.obj 2025-07-24T04:52:02.8986802Z [5672/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T04:52:03.0587182Z [5673/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-6x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T04:52:03.0588583Z [5674/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-6x8c8-minmax-avx2-madd.c.obj 2025-07-24T04:52:03.1203447Z [5675/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-6x8c8-minmax-avx2.c.obj 2025-07-24T04:52:03.1348213Z [5676/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx2-madd.c.obj 2025-07-24T04:52:03.1398419Z [5677/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T04:52:03.1409181Z [5678/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T04:52:03.1481151Z [5679/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx2.c.obj 2025-07-24T04:52:03.2448346Z [5680/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx2-madd.c.obj 2025-07-24T04:52:03.3807349Z [5681/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-2x8c8-minmax-avx2.c.obj 2025-07-24T04:52:03.3823003Z [5682/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-4x8c8-minmax-avx2.c.obj 2025-07-24T04:52:03.4046188Z [5683/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-4x8c8-minmax-avx2.c.obj 2025-07-24T04:52:03.4135734Z [5684/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-2x8c8-minmax-avx2.c.obj 2025-07-24T04:52:03.4147723Z [5685/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x8c8-minmax-avx2.c.obj 2025-07-24T04:52:03.4270386Z [5686/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x8c8-minmax-avx2.c.obj 2025-07-24T04:52:03.4497190Z [5687/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx2.c.obj 2025-07-24T04:52:03.5115570Z [5688/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx2.c.obj 2025-07-24T04:52:03.5129556Z [5689/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx2-madd.c.obj 2025-07-24T04:52:03.5835402Z [5690/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x8c8-minmax-avx2-madd.c.obj 2025-07-24T04:52:03.5846877Z [5691/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x8c8-minmax-avx2-madd.c.obj 2025-07-24T04:52:03.7597790Z [5692/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x8c8-minmax-avx2.c.obj 2025-07-24T04:52:03.7610122Z [5693/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T04:52:03.7621398Z [5694/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T04:52:03.7632317Z [5695/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x8c8-minmax-avx2.c.obj 2025-07-24T04:52:03.7642777Z [5696/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x8c8-minmax-avx2-madd.c.obj 2025-07-24T04:52:03.7730400Z [5697/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x8c8-minmax-avx2.c.obj 2025-07-24T04:52:03.7821829Z [5698/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T04:52:03.8959222Z [5699/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx2.c.obj 2025-07-24T04:52:03.9329333Z [5700/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx2-madd.c.obj 2025-07-24T04:52:03.9341926Z [5701/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-6x8c8-minmax-avx2-madd.c.obj 2025-07-24T04:52:03.9682529Z [5702/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-6x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T04:52:03.9693736Z [5703/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-6x8c8-minmax-avx2.c.obj 2025-07-24T04:52:03.9814845Z [5704/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx2-madd.c.obj 2025-07-24T04:52:04.0167696Z [5705/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T04:52:04.0696440Z [5706/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx2.c.obj 2025-07-24T04:52:04.1823820Z [5707/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x8c8-minmax-avx2.c.obj 2025-07-24T04:52:04.2470102Z [5708/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T04:52:04.2484037Z [5709/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x8c8-minmax-avx2.c.obj 2025-07-24T04:52:04.2499142Z [5710/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-3x8c8-minmax-avx2.c.obj 2025-07-24T04:52:04.2512872Z [5711/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-3x8c8-minmax-avx2.c.obj 2025-07-24T04:52:04.2526232Z [5712/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx2-madd.c.obj 2025-07-24T04:52:04.2541562Z [5713/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx2.c.obj 2025-07-24T04:52:04.4130818Z [5714/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T04:52:04.4190116Z [5715/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T04:52:04.5452707Z [5716/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:04.5465243Z [5717/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:04.5477331Z [5718/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:04.5488984Z [5719/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T04:52:04.5502051Z [5720/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T04:52:04.6667064Z [5721/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T04:52:04.7261392Z [5722/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:04.7318511Z [5723/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T04:52:04.7365786Z [5724/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T04:52:04.7378569Z [5725/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:04.7391653Z [5726/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T04:52:04.7491117Z [5727/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T04:52:04.8022048Z [5728/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:04.8570801Z [5729/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T04:52:04.8641932Z [5730/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T04:52:04.8693185Z [5731/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T04:52:04.8796319Z [5732/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:04.8846084Z [5733/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:04.9875542Z [5734/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T04:52:04.9962077Z [5735/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T04:52:05.0698796Z [5736/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T04:52:05.0755565Z [5737/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T04:52:05.0767267Z [5738/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T04:52:05.0819911Z [5739/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:05.1447057Z [5740/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T04:52:05.1462954Z [5741/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:05.2245379Z [5742/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T04:52:05.2258645Z [5743/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T04:52:05.2628505Z [5744/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T04:52:05.2694245Z [5745/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T04:52:05.2797549Z [5746/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T04:52:05.2894443Z [5747/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:05.2906027Z [5748/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T04:52:05.3439733Z [5749/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:05.4528279Z [5750/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T04:52:05.5065454Z [5751/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T04:52:05.5081281Z [5752/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T04:52:05.5286777Z [5753/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T04:52:05.5383346Z [5754/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T04:52:05.5893261Z [5755/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T04:52:05.6607503Z [5756/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u8.c.obj 2025-07-24T04:52:05.6619600Z [5757/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u24.c.obj 2025-07-24T04:52:05.6630576Z [5758/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:05.7231909Z [5759/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u64.c.obj 2025-07-24T04:52:05.7243999Z [5760/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u24.c.obj 2025-07-24T04:52:05.7295948Z [5761/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u32.c.obj 2025-07-24T04:52:05.7921397Z [5762/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx2-madd.c.obj 2025-07-24T04:52:05.7980203Z [5763/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u32.c.obj 2025-07-24T04:52:05.8124728Z [5764/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:05.8787866Z [5765/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:05.8851680Z [5766/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T04:52:05.8863003Z [5767/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T04:52:05.9263036Z [5768/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T04:52:06.0074808Z [5769/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:06.0533008Z [5770/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:06.0552355Z [5771/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l32c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T04:52:06.0600655Z [5772/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l32c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T04:52:06.0649276Z [5773/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:06.0700674Z [5774/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l32c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T04:52:06.1076298Z [5775/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T04:52:06.2276547Z [5776/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:06.2726894Z [5777/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:06.2739703Z [5778/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T04:52:06.2792978Z [5779/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l32c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T04:52:06.2804468Z [5780/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l32c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T04:52:06.2852997Z [5781/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l32c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T04:52:06.2866031Z [5782/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T04:52:06.4737909Z [5783/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:06.5641784Z [5784/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T04:52:06.5733637Z [5785/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:06.5746515Z [5786/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l32c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T04:52:06.5758812Z [5787/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l32c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T04:52:06.5780423Z [5788/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T04:52:06.5792835Z [5789/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T04:52:06.7925809Z [5790/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:06.7980837Z [5791/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T04:52:06.7992624Z [5792/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T04:52:06.8231262Z [5793/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T04:52:06.8278737Z [5794/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l32c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T04:52:06.8442384Z [5795/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p32c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T04:52:06.8668718Z [5796/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T04:52:06.9980205Z [5797/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p32c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:06.9992982Z [5798/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:07.0197122Z [5799/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T04:52:07.0244915Z [5800/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p32c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T04:52:07.0363704Z [5801/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T04:52:07.0412412Z [5802/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T04:52:07.2844551Z [5803/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x8c8-minmax-fp32-avx2.c.obj 2025-07-24T04:52:07.3452536Z [5804/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p32c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:07.3465070Z [5805/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T04:52:07.4105428Z [5806/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x8c8-minmax-fp32-avx2.c.obj 2025-07-24T04:52:07.4483869Z [5807/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x8c8-minmax-fp32-avx2.c.obj 2025-07-24T04:52:07.4731829Z [5808/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p32c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T04:52:07.4754572Z [5809/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p32c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T04:52:07.5152438Z [5810/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u32.c.obj 2025-07-24T04:52:07.5251976Z [5811/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx2-c32.c.obj 2025-07-24T04:52:07.5264430Z [5812/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u128-acc2.c.obj 2025-07-24T04:52:07.5277050Z [5813/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x8c8-minmax-fp32-avx2.c.obj 2025-07-24T04:52:07.5878209Z [5814/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u8.c.obj 2025-07-24T04:52:07.5928234Z [5815/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u128-acc4.c.obj 2025-07-24T04:52:07.5985925Z [5816/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u24.c.obj 2025-07-24T04:52:07.6339269Z [5817/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u32.c.obj 2025-07-24T04:52:07.6411073Z [5818/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u8.c.obj 2025-07-24T04:52:07.6611314Z [5819/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u24.c.obj 2025-07-24T04:52:07.6785542Z [5820/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u32.c.obj 2025-07-24T04:52:07.7572060Z [5821/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u16.c.obj 2025-07-24T04:52:07.7585742Z [5822/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u64.c.obj 2025-07-24T04:52:07.7597654Z [5823/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u16.c.obj 2025-07-24T04:52:07.7654709Z [5824/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:07.7705218Z [5825/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u64.c.obj 2025-07-24T04:52:07.8763242Z [5826/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:07.8866029Z [5827/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:07.9253607Z [5828/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:08.0108550Z [5829/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:08.0162620Z [5830/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:08.0174009Z [5831/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:08.0189147Z [5832/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:08.0960265Z [5833/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:08.1161928Z [5834/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:08.1683387Z [5835/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u24.c.obj 2025-07-24T04:52:08.1699957Z [5836/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u8.c.obj 2025-07-24T04:52:08.1714340Z [5837/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:08.2020189Z [5838/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:08.2220054Z [5839/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T04:52:08.2305094Z [5840/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u32.c.obj 2025-07-24T04:52:08.2517160Z [5841/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x8c8-minmax-fp32-avx2.c.obj 2025-07-24T04:52:08.3437325Z [5842/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x8c8-minmax-fp32-avx2.c.obj 2025-07-24T04:52:08.3449707Z [5843/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u32.c.obj 2025-07-24T04:52:08.3491488Z [5844/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u128-acc4.c.obj 2025-07-24T04:52:08.3557500Z [5845/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u128-acc2.c.obj 2025-07-24T04:52:08.3672890Z [5846/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x8c8-minmax-fp32-avx2.c.obj 2025-07-24T04:52:08.3811562Z [5847/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x8c8-minmax-fp32-avx2.c.obj 2025-07-24T04:52:08.4372854Z [5848/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx2-mul32-ld64-u8.c.obj 2025-07-24T04:52:08.4949415Z [5849/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u32.c.obj 2025-07-24T04:52:08.5097763Z [5850/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u16.c.obj 2025-07-24T04:52:08.5142479Z [5851/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u64.c.obj 2025-07-24T04:52:08.5194897Z [5852/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx2-mul32-ld64-u8.c.obj 2025-07-24T04:52:08.5252015Z [5853/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u16.c.obj 2025-07-24T04:52:08.5387602Z [5854/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u64.c.obj 2025-07-24T04:52:08.5604333Z [5855/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u64.c.obj 2025-07-24T04:52:08.6113234Z [5856/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx2-prfm.c.obj 2025-07-24T04:52:08.6153857Z [5857/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u96.c.obj 2025-07-24T04:52:08.6295378Z [5858/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx2.c.obj 2025-07-24T04:52:08.7336804Z [5859/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx2.c.obj 2025-07-24T04:52:08.7741297Z [5860/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx2-prfm.c.obj 2025-07-24T04:52:08.7753174Z [5861/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x8-gemm-goi-avx2-u16.c.obj 2025-07-24T04:52:08.7826714Z [5862/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x8-gemm-goi-avx2-u16-prfm.c.obj 2025-07-24T04:52:08.8335443Z [5863/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-16x16-reuse-mov-avx2.c.obj 2025-07-24T04:52:08.8351384Z [5864/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x16-gemm-goi-avx2-u16.c.obj 2025-07-24T04:52:08.8366575Z [5865/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-32x32-reuse-mov-avx2.c.obj 2025-07-24T04:52:08.8807069Z [5866/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u8.c.obj 2025-07-24T04:52:08.8943839Z [5867/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u16-acc2.c.obj 2025-07-24T04:52:08.8986533Z [5868/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u32-acc4.c.obj 2025-07-24T04:52:08.9404759Z [5869/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T04:52:09.0728544Z [5870/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T04:52:09.0743945Z [5871/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T04:52:09.0757494Z [5872/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-3x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:09.0770837Z [5873/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-2x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:09.0782536Z [5874/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-4x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:09.0795140Z [5875/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:09.1156240Z [5876/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:09.2464402Z [5877/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T04:52:09.2511399Z [5878/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T04:52:09.2525257Z [5879/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-6x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:09.2605497Z [5880/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-9x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T04:52:09.2616605Z [5881/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T04:52:09.2894378Z [5882/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:09.3939626Z [5883/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:09.3952509Z [5884/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-9x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T04:52:09.4382433Z [5885/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-10x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T04:52:09.4755574Z [5886/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-10x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T04:52:09.5302666Z [5887/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-12x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T04:52:09.5318745Z [5888/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-12x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T04:52:09.6400014Z [5889/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-14x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T04:52:09.6591313Z [5890/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-7x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:09.6607785Z [5891/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-8x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:09.6812984Z [5892/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-14x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T04:52:09.7374146Z [5893/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-7x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:09.7838313Z [5894/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-8x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:09.8723562Z [5895/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:09.8734741Z [5896/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:09.8746052Z [5897/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T04:52:09.8756363Z [5898/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:09.8769437Z [5899/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:09.9544696Z [5900/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T04:52:10.0714357Z [5901/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-6x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:10.0727012Z [5902/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T04:52:10.0775476Z [5903/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T04:52:10.0786420Z [5904/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:10.0797176Z [5905/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:10.0843323Z [5906/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T04:52:10.0897507Z [5907/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T04:52:10.2222150Z [5908/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T04:52:10.2293098Z [5909/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T04:52:10.2350123Z [5910/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:10.2746231Z [5911/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T04:52:10.2790910Z [5912/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T04:52:10.3927080Z [5913/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T04:52:10.4066032Z [5914/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T04:52:10.4856467Z [5915/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:10.4991926Z [5916/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T04:52:10.5062524Z [5917/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T04:52:10.5271853Z [5918/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:10.5503743Z [5919/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:10.5848075Z [5920/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x8c8-minmax-fp32-avx256skx.c.obj 2025-07-24T04:52:10.5908047Z [5921/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x8c8-minmax-avx256skx.c.obj 2025-07-24T04:52:10.6214814Z [5922/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x8c8-minmax-fp32-avx256skx.c.obj 2025-07-24T04:52:10.6317724Z [5923/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x8c8-minmax-fp32-avx256skx.c.obj 2025-07-24T04:52:10.6721505Z [5924/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x8c8-minmax-fp32-avx256skx.c.obj 2025-07-24T04:52:10.6774778Z [5925/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u32.c.obj 2025-07-24T04:52:10.7028261Z [5926/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u128-acc2.c.obj 2025-07-24T04:52:10.7082876Z [5927/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u128-acc4.c.obj 2025-07-24T04:52:10.7198258Z [5928/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x8c8-minmax-fp32-avx256skx.c.obj 2025-07-24T04:52:10.7387594Z [5929/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx256skx-prfm.c.obj 2025-07-24T04:52:10.7639522Z [5930/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x8c8-minmax-fp32-avx256skx.c.obj 2025-07-24T04:52:10.7951500Z [5931/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx256skx.c.obj 2025-07-24T04:52:10.8320083Z [5932/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx256skx.c.obj 2025-07-24T04:52:10.8488229Z [5933/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx256skx-prfm.c.obj 2025-07-24T04:52:10.8911114Z [5934/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:10.8922668Z [5935/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:10.9249812Z [5936/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:10.9261446Z [5937/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:10.9675630Z [5938/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:10.9867320Z [5939/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:10.9992661Z [5940/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-9x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:11.0361947Z [5941/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-9x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:11.0934245Z [5942/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-10x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:11.0945792Z [5943/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-10x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:11.1217305Z [5944/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-12x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:11.1651996Z [5945/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-12x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:11.1902513Z [5946/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-1x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:11.2170392Z [5947/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-14x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:11.2234847Z [5948/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-14x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:11.2822292Z [5949/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-5x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:11.2910466Z [5950/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-7x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:11.2989594Z [5951/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-5x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:11.3624320Z [5952/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-9x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:11.3635754Z [5953/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-9x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:11.3684233Z [5954/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-7x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:11.3745115Z [5955/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-8x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:11.4428836Z [5956/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-10x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:11.4858036Z [5957/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-10x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:11.5086779Z [5958/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-12x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:11.5152377Z [5959/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-14x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:11.5202089Z [5960/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-12x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:11.5216450Z [5961/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-14x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:11.5690733Z [5962/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-5x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:11.5744183Z [5963/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-1x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:11.6553746Z [5964/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-8x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:11.6610604Z [5965/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-7x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:11.6623704Z [5966/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-7x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:11.6848602Z [5967/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-5x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:11.6861864Z [5968/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-9x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:11.7216527Z [5969/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-9x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:11.7278443Z [5970/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-10x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:11.7842668Z [5971/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-10x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:11.7928709Z [5972/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-12x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:11.7946579Z [5973/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-12x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:11.8369506Z [5974/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-14x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:11.8689530Z [5975/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:11.8739596Z [5976/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:11.8855378Z [5977/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-14x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:11.9533409Z [5978/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:11.9610463Z [5979/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:11.9687528Z [5980/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:11.9737285Z [5981/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:12.0543351Z [5982/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:12.0588180Z [5983/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:12.0803697Z [5984/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:12.2041297Z [5985/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:12.2092045Z [5986/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:12.2293585Z [5987/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:12.2687814Z [5988/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:12.2700159Z [5989/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:12.2747680Z [5990/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:12.2870864Z [5991/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:12.3533869Z [5992/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:12.3776102Z [5993/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:12.3806608Z [5994/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:12.4309039Z [5995/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:12.4425368Z [5996/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:12.4493619Z [5997/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:12.5105382Z [5998/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:12.5165345Z [5999/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:12.5360391Z [6000/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-9x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:12.5936978Z [6001/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-10x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:12.6484226Z [6002/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-10x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:12.6540316Z [6003/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-9x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:12.7262996Z [6004/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-12x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:12.7473309Z [6005/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-12x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:12.7524140Z [6006/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-14x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:12.7694477Z [6007/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-14x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:12.8219643Z [6008/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:12.8235611Z [6009/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:14.3858567Z [6010/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:14.3948735Z [6011/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:14.4342363Z [6012/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:14.4510679Z [6013/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:14.4826086Z [6014/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:14.5024985Z [6015/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:14.5590280Z [6016/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-9x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:14.5602377Z [6017/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-10x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:14.5829490Z [6018/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-9x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:14.6341993Z [6019/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-10x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:14.6582214Z [6020/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-12x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:14.6970575Z [6021/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-12x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:14.6982407Z [6022/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx256vnni.c.obj 2025-07-24T04:52:14.7307510Z [6023/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-avx256vnni.c.obj 2025-07-24T04:52:14.7486756Z [6024/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-14x8c8-minmax-avx256vnni.c.obj 2025-07-24T04:52:14.8026622Z [6025/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-14x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T04:52:14.8038905Z [6026/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x8c8-gemm-goi-avx256vnni.c.obj 2025-07-24T04:52:14.8828177Z [6027/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T04:52:14.9222063Z [6028/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T04:52:14.9485533Z [6029/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T04:52:14.9692904Z [6030/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T04:52:15.0232099Z [6031/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T04:52:15.0244078Z [6032/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T04:52:15.0293205Z [6033/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T04:52:15.0448597Z [6034/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T04:52:15.1249978Z [6035/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-10x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T04:52:15.1471302Z [6036/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-12x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T04:52:15.1535383Z [6037/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-9x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T04:52:15.1578531Z [6038/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-9x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T04:52:15.2057964Z [6039/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-12x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T04:52:15.2154984Z [6040/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-10x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T04:52:15.3016001Z [6041/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T04:52:15.3145079Z [6042/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T04:52:15.3364628Z [6043/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-14x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T04:52:15.3411053Z [6044/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-14x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T04:52:15.3926357Z [6045/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T04:52:15.3993750Z [6046/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T04:52:15.4138980Z [6047/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T04:52:15.6060747Z [6048/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T04:52:15.6119760Z [6049/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T04:52:15.6131954Z [6050/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T04:52:15.6258010Z [6051/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T04:52:15.6637540Z [6052/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T04:52:15.6745221Z [6053/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T04:52:15.6756695Z [6054/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T04:52:15.8874714Z [6055/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T04:52:15.9582674Z [6056/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x8c8-gemm-goi-avx256vnni.c.obj 2025-07-24T04:52:15.9766639Z [6057/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x16c8-gemm-goi-avx256vnni-prfm.c.obj 2025-07-24T04:52:15.9795746Z [6058/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x8c8-gemm-goi-avx256vnni-prfm.c.obj 2025-07-24T04:52:15.9855148Z [6059/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T04:52:15.9993517Z [6060/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T04:52:16.0116430Z [6061/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T04:52:16.0525661Z [6062/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u32.c.obj 2025-07-24T04:52:16.1444655Z [6063/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u128-acc2.c.obj 2025-07-24T04:52:16.1497896Z [6064/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u128-acc4.c.obj 2025-07-24T04:52:16.1509423Z [6065/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T04:52:16.1554893Z [6066/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u64-acc2.c.obj 2025-07-24T04:52:16.1796074Z [6067/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T04:52:16.2133744Z [6068/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T04:52:16.2624273Z [6069/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T04:52:16.2743180Z [6070/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T04:52:16.3130195Z [6071/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T04:52:16.3632797Z [6072/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-9x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T04:52:16.3797873Z [6073/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T04:52:16.3858960Z [6074/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T04:52:16.5086615Z [6075/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-10x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T04:52:16.5098573Z [6076/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-12x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T04:52:16.5891358Z [6077/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-10x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T04:52:16.5903045Z [6078/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-9x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T04:52:16.5959022Z [6079/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-12x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T04:52:16.5972370Z [6080/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-14x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T04:52:16.6799612Z [6081/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T04:52:16.6978788Z [6082/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-14x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T04:52:16.7693334Z [6083/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T04:52:16.7741010Z [6084/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T04:52:16.7802364Z [6085/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T04:52:16.7853821Z [6086/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T04:52:16.7923998Z [6087/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T04:52:16.8707694Z [6088/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T04:52:16.9397141Z [6089/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T04:52:17.0300912Z [6090/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T04:52:17.0313090Z [6091/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T04:52:17.0359761Z [6092/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T04:52:17.0408717Z [6093/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T04:52:17.0503661Z [6094/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T04:52:17.1188321Z [6095/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T04:52:17.1473246Z [6096/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T04:52:17.1903059Z [6097/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx512f-acc2.c.obj 2025-07-24T04:52:17.1970035Z [6098/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p32c-minmax-avx512f-acc2.c.obj 2025-07-24T04:52:17.1982862Z [6099/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p32c-minmax-avx512f.c.obj 2025-07-24T04:52:17.2740734Z [6100/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx512f-acc2.c.obj 2025-07-24T04:52:17.2797090Z [6101/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p32c-minmax-avx512f-acc2.c.obj 2025-07-24T04:52:17.2811449Z [6102/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T04:52:17.2867360Z [6103/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p32c-minmax-avx512f.c.obj 2025-07-24T04:52:17.3604064Z [6104/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c16s1r-minmax-avx512f.c.obj 2025-07-24T04:52:17.3621000Z [6105/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c16s1r-minmax-avx512f-acc2.c.obj 2025-07-24T04:52:17.4259512Z [6106/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx512f-acc2.c.obj 2025-07-24T04:52:17.4838892Z [6107/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx512f-acc2.c.obj 2025-07-24T04:52:17.4850729Z [6108/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c16s1r-minmax-avx512f-acc2.c.obj 2025-07-24T04:52:17.4862546Z [6109/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p32c-minmax-avx512f.c.obj 2025-07-24T04:52:17.5211681Z [6110/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p32c-minmax-avx512f-acc2.c.obj 2025-07-24T04:52:17.5257664Z [6111/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p32c-minmax-avx512f.c.obj 2025-07-24T04:52:17.5368991Z [6112/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p32c-minmax-avx512f-acc2.c.obj 2025-07-24T04:52:17.7451388Z [6113/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x32-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:17.7465910Z [6114/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:17.7553796Z [6115/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x64-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:17.7565359Z [6116/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:17.7616171Z [6117/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x64-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:17.8543383Z [6118/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x32-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:17.8668750Z [6119/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:17.9326554Z [6120/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x64-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:17.9338620Z [6121/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:17.9887108Z [6122/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:17.9898635Z [6123/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x32-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.0054084Z [6124/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x64-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.0742213Z [6125/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x32-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.0848038Z [6126/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.1228677Z [6127/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x64-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.1697326Z [6128/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x32-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.1709158Z [6129/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x64-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.1776363Z [6130/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x64-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.1933574Z [6131/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.2047252Z [6132/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.2214379Z [6133/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x32-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.2558279Z [6134/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x64-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.3357225Z [6135/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x64-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.3407083Z [6136/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.3452266Z [6137/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.3607820Z [6138/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x32-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.3689284Z [6139/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x32-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.5268699Z [6140/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x64-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.5281209Z [6141/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x32-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.5293366Z [6142/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.5304545Z [6143/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x64-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.5315848Z [6144/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x64-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.5326669Z [6145/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.5378060Z [6146/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x32-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.6781510Z [6147/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.6793438Z [6148/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.6850684Z [6149/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x64-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.7349259Z [6150/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x32-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.7368960Z [6151/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x64-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.7379755Z [6152/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x32-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.7431750Z [6153/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.8363927Z [6154/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.8414119Z [6155/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.8636162Z [6156/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.8779344Z [6157/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.9039067Z [6158/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-8x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.9094067Z [6159/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.9252106Z [6160/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.9614754Z [6161/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.9776513Z [6162/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x32-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.9925654Z [6163/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:18.9946613Z [6164/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x32-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:19.0362121Z [6165/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x32-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:19.0374913Z [6166/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:19.0423589Z [6167/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x16-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:19.0764567Z [6168/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64-acc4.c.obj 2025-07-24T04:52:19.1295753Z [6169/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64.c.obj 2025-07-24T04:52:19.1345975Z [6170/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x32-minmax-avx512f-broadcast.c.obj 2025-07-24T04:52:19.1395769Z [6171/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128-acc2.c.obj 2025-07-24T04:52:19.1768212Z [6172/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128-acc4.c.obj 2025-07-24T04:52:19.1833434Z [6173/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64-acc2.c.obj 2025-07-24T04:52:19.1995534Z [6174/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128.c.obj 2025-07-24T04:52:19.2138543Z [6175/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u144-acc3.c.obj 2025-07-24T04:52:19.2151350Z [6176/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u144.c.obj 2025-07-24T04:52:19.2212097Z [6177/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160-acc2.c.obj 2025-07-24T04:52:19.2314292Z [6178/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160-acc5.c.obj 2025-07-24T04:52:19.2637524Z [6179/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160.c.obj 2025-07-24T04:52:19.2960105Z [6180/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc3.c.obj 2025-07-24T04:52:19.2974601Z [6181/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc6.c.obj 2025-07-24T04:52:19.3020715Z [6182/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc2.c.obj 2025-07-24T04:52:19.3094582Z [6183/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64-acc2.c.obj 2025-07-24T04:52:19.3167101Z [6184/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192.c.obj 2025-07-24T04:52:19.3211565Z [6185/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64-acc4.c.obj 2025-07-24T04:52:19.3483212Z [6186/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64.c.obj 2025-07-24T04:52:19.3875971Z [6187/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128-acc2.c.obj 2025-07-24T04:52:19.3923235Z [6188/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128-acc4.c.obj 2025-07-24T04:52:19.3935019Z [6189/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128.c.obj 2025-07-24T04:52:19.4006545Z [6190/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u144-acc3.c.obj 2025-07-24T04:52:19.4068267Z [6191/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u144.c.obj 2025-07-24T04:52:19.4140547Z [6192/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160-acc2.c.obj 2025-07-24T04:52:19.4342653Z [6193/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160-acc5.c.obj 2025-07-24T04:52:19.4790964Z [6194/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc3.c.obj 2025-07-24T04:52:19.4806089Z [6195/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc2.c.obj 2025-07-24T04:52:19.5034865Z [6196/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160.c.obj 2025-07-24T04:52:19.5817429Z [6197/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-u32-acc2.c.obj 2025-07-24T04:52:19.5869167Z [6198/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-u64-acc2.c.obj 2025-07-24T04:52:19.5915460Z [6199/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192.c.obj 2025-07-24T04:52:19.5928249Z [6200/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-u64-acc4.c.obj 2025-07-24T04:52:19.6010882Z [6201/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc6.c.obj 2025-07-24T04:52:19.6112436Z [6202/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-u16.c.obj 2025-07-24T04:52:19.7426494Z [6203/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c16.c.obj 2025-07-24T04:52:19.7921285Z [6204/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c128.c.obj 2025-07-24T04:52:19.9463187Z [6205/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u32-acc2.c.obj 2025-07-24T04:52:19.9488963Z [6206/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u16.c.obj 2025-07-24T04:52:19.9501061Z [6207/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u16.c.obj 2025-07-24T04:52:19.9514061Z [6208/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc4.c.obj 2025-07-24T04:52:19.9565321Z [6209/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c32.c.obj 2025-07-24T04:52:20.0361008Z [6210/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u32-acc2.c.obj 2025-07-24T04:52:20.0637887Z [6211/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u16.c.obj 2025-07-24T04:52:20.0778761Z [6212/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u64-acc2.c.obj 2025-07-24T04:52:20.0881565Z [6213/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u32-acc2.c.obj 2025-07-24T04:52:20.0938811Z [6214/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u48-acc3.c.obj 2025-07-24T04:52:20.1063886Z [6215/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u64-acc2.c.obj 2025-07-24T04:52:20.1236939Z [6216/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u48-acc3.c.obj 2025-07-24T04:52:20.1288185Z [6217/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u64-acc4.c.obj 2025-07-24T04:52:20.1624661Z [6218/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u16.c.obj 2025-07-24T04:52:20.1744259Z [6219/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u32-acc2.c.obj 2025-07-24T04:52:20.2846251Z [6220/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u48-acc3.c.obj 2025-07-24T04:52:20.2909341Z [6221/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u16.c.obj 2025-07-24T04:52:20.2920920Z [6222/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u64-acc2.c.obj 2025-07-24T04:52:20.2931679Z [6223/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u32-acc2.c.obj 2025-07-24T04:52:20.2942528Z [6224/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u48-acc3.c.obj 2025-07-24T04:52:20.3217819Z [6225/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u64-acc2.c.obj 2025-07-24T04:52:20.3230260Z [6226/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-avx512f-u16.c.obj 2025-07-24T04:52:20.3929449Z [6227/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-avx512f-u16.c.obj 2025-07-24T04:52:20.5286503Z [6228/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-avx512f-u16.c.obj 2025-07-24T04:52:20.5300139Z [6229/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-avx512f-u16.c.obj 2025-07-24T04:52:20.5362294Z [6230/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-avx512f-u16.c.obj 2025-07-24T04:52:20.5384098Z [6231/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-avx512f-u16.c.obj 2025-07-24T04:52:20.5395650Z [6232/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-avx512f-u16.c.obj 2025-07-24T04:52:20.5461108Z [6233/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-avx512f-u16.c.obj 2025-07-24T04:52:20.5478072Z [6234/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-avx512f-u16.c.obj 2025-07-24T04:52:20.6596626Z [6235/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-avx512f-u16.c.obj 2025-07-24T04:52:20.7162196Z [6236/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-avx512f-u16.c.obj 2025-07-24T04:52:20.7230321Z [6237/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-avx512f-u16.c.obj 2025-07-24T04:52:20.7242648Z [6238/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx512f-u16.c.obj 2025-07-24T04:52:20.7254577Z [6239/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-avx512f-u16.c.obj 2025-07-24T04:52:20.7266336Z [6240/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-avx512f-u16.c.obj 2025-07-24T04:52:20.7281466Z [6241/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-avx512f-u16.c.obj 2025-07-24T04:52:20.9060749Z [6242/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u16.c.obj 2025-07-24T04:52:20.9112750Z [6243/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u64.c.obj 2025-07-24T04:52:20.9170488Z [6244/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-avx512f-u32.c.obj 2025-07-24T04:52:20.9183805Z [6245/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-avx512f-u16.c.obj 2025-07-24T04:52:20.9197633Z [6246/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u128.c.obj 2025-07-24T04:52:20.9973173Z [6247/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-avx512f-u16.c.obj 2025-07-24T04:52:21.0033829Z [6248/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx512f-u16.c.obj 2025-07-24T04:52:21.0758376Z [6249/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-lut16-p3-perm-u48.c.obj 2025-07-24T04:52:21.0771147Z [6250/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-lut16-p3-perm-u64.c.obj 2025-07-24T04:52:21.0910284Z [6251/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-lut16-p3-perm-u32.c.obj 2025-07-24T04:52:21.0923124Z [6252/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-lut16-p3-perm-u16.c.obj 2025-07-24T04:52:21.1315553Z [6253/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u16.c.obj 2025-07-24T04:52:21.1468803Z [6254/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u32.c.obj 2025-07-24T04:52:21.1668123Z [6255/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u48.c.obj 2025-07-24T04:52:21.2326436Z [6256/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-avx512f-u32.c.obj 2025-07-24T04:52:21.2432401Z [6257/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-avx512f-u32.c.obj 2025-07-24T04:52:21.2496452Z [6258/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vgelu\gen\f32-vgelu-avx512f-rational-12-10-div.c.obj 2025-07-24T04:52:21.2547609Z [6259/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx512f-u16.c.obj 2025-07-24T04:52:21.3051722Z [6260/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-avx512f-u32.c.obj 2025-07-24T04:52:21.3151998Z [6261/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx512f-u32.c.obj 2025-07-24T04:52:21.3362905Z [6262/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-avx512f-rational-3-3-nr.c.obj 2025-07-24T04:52:21.3797094Z [6263/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-avx512f-u32.c.obj 2025-07-24T04:52:21.3849799Z [6264/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-avx512f-u32.c.obj 2025-07-24T04:52:21.3862261Z [6265/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-avx512f-u32.c.obj 2025-07-24T04:52:21.4022202Z [6266/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u16.c.obj 2025-07-24T04:52:21.4334680Z [6267/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u64.c.obj 2025-07-24T04:52:21.4494653Z [6268/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u32.c.obj 2025-07-24T04:52:21.4575399Z [6269/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u48.c.obj 2025-07-24T04:52:21.4637790Z [6270/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u64.c.obj 2025-07-24T04:52:21.4784064Z [6271/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u32.c.obj 2025-07-24T04:52:21.4795945Z [6272/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u16.c.obj 2025-07-24T04:52:21.4806681Z [6273/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u16.c.obj 2025-07-24T04:52:21.5334951Z [6274/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u64.c.obj 2025-07-24T04:52:21.5412060Z [6275/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u48.c.obj 2025-07-24T04:52:21.5717901Z [6276/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-u16.c.obj 2025-07-24T04:52:21.5920791Z [6277/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-u16.c.obj 2025-07-24T04:52:21.5973719Z [6278/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-u32.c.obj 2025-07-24T04:52:21.6210247Z [6279/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-u48.c.obj 2025-07-24T04:52:21.6445857Z [6280/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-u32.c.obj 2025-07-24T04:52:21.6637870Z [6281/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-u64.c.obj 2025-07-24T04:52:21.6704431Z [6282/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-u48.c.obj 2025-07-24T04:52:21.6793234Z [6283/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-u64.c.obj 2025-07-24T04:52:21.7032803Z [6284/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-div-u16.c.obj 2025-07-24T04:52:21.7085069Z [6285/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-div-u32.c.obj 2025-07-24T04:52:21.7386024Z [6286/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-div-u48.c.obj 2025-07-24T04:52:21.7802327Z [6287/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-div-u64.c.obj 2025-07-24T04:52:21.8176453Z [6288/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-u16.c.obj 2025-07-24T04:52:21.8835383Z [6289/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-u48.c.obj 2025-07-24T04:52:21.8888152Z [6290/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-u32.c.obj 2025-07-24T04:52:21.8957757Z [6291/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-u16.c.obj 2025-07-24T04:52:21.8971049Z [6292/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-u64.c.obj 2025-07-24T04:52:21.9593166Z [6293/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-u48.c.obj 2025-07-24T04:52:21.9608583Z [6294/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-u32.c.obj 2025-07-24T04:52:21.9622100Z [6295/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-u16.c.obj 2025-07-24T04:52:22.0347872Z [6296/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-u32.c.obj 2025-07-24T04:52:22.0399469Z [6297/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-u64.c.obj 2025-07-24T04:52:22.0513547Z [6298/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u32.c.obj 2025-07-24T04:52:22.0624096Z [6299/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-u48.c.obj 2025-07-24T04:52:22.2647900Z [6300/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx512f-u1-prfm.c.obj 2025-07-24T04:52:22.2660716Z [6301/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx512f-u1.c.obj 2025-07-24T04:52:22.2677418Z [6302/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u48.c.obj 2025-07-24T04:52:22.2688158Z [6303/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-avx512f-rational-9-8-div.c.obj 2025-07-24T04:52:22.2739511Z [6304/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx512f-u8-prfm.c.obj 2025-07-24T04:52:22.2751342Z [6305/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx512f-u8.c.obj 2025-07-24T04:52:22.4195768Z [6306/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx512f-u1.c.obj 2025-07-24T04:52:22.4244224Z [6307/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-avx512f-u4.c.obj 2025-07-24T04:52:22.4257436Z [6308/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx512f-u8-prfm.c.obj 2025-07-24T04:52:22.4306036Z [6309/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-avx512f-u4-prfm.c.obj 2025-07-24T04:52:22.5243993Z [6310/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx512f-u1-prfm.c.obj 2025-07-24T04:52:22.5256252Z [6311/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx512skx-u32.c.obj 2025-07-24T04:52:22.5268872Z [6312/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-goi-avx512f-u4.c.obj 2025-07-24T04:52:22.5864452Z [6313/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c32.c.obj 2025-07-24T04:52:22.5909098Z [6314/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c16.c.obj 2025-07-24T04:52:22.6706095Z [6315/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c128.c.obj 2025-07-24T04:52:22.7393415Z [6316/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u32-acc2.c.obj 2025-07-24T04:52:22.7950832Z [6317/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u16.c.obj 2025-07-24T04:52:22.7962543Z [6318/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u128-acc4.c.obj 2025-07-24T04:52:22.7976000Z [6319/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u48-acc3.c.obj 2025-07-24T04:52:22.7988312Z [6320/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u64-acc2.c.obj 2025-07-24T04:52:22.8588342Z [6321/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u32-acc2.c.obj 2025-07-24T04:52:22.9006352Z [6322/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u16.c.obj 2025-07-24T04:52:22.9597953Z [6323/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u64-acc2.c.obj 2025-07-24T04:52:22.9609845Z [6324/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u48-acc3.c.obj 2025-07-24T04:52:22.9620883Z [6325/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u32-acc2.c.obj 2025-07-24T04:52:23.0745962Z [6326/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u16.c.obj 2025-07-24T04:52:23.0801101Z [6327/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u64-acc2.c.obj 2025-07-24T04:52:23.0958944Z [6328/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u48-acc3.c.obj 2025-07-24T04:52:23.1433678Z [6329/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u16.c.obj 2025-07-24T04:52:23.1476809Z [6330/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u64-acc4.c.obj 2025-07-24T04:52:23.1585460Z [6331/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u32-acc2.c.obj 2025-07-24T04:52:23.2210794Z [6332/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u48-acc3.c.obj 2025-07-24T04:52:23.2277299Z [6333/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u64-acc2.c.obj 2025-07-24T04:52:23.2404740Z [6334/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u32.c.obj 2025-07-24T04:52:23.2725183Z [6335/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u16.c.obj 2025-07-24T04:52:23.3023359Z [6336/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u64.c.obj 2025-07-24T04:52:23.3133302Z [6337/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-2x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T04:52:23.3211251Z [6338/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx512skx-u32.c.obj 2025-07-24T04:52:23.4399318Z [6339/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-5x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T04:52:23.4448764Z [6340/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x16-minmax-avx512skx-broadcast.c.obj 2025-07-24T04:52:23.4460635Z [6341/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-8x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T04:52:23.4471846Z [6342/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-4x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T04:52:23.4542025Z [6343/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-3x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T04:52:23.4597962Z [6344/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-6x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T04:52:23.4671583Z [6345/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x16-minmax-avx512skx-broadcast.c.obj 2025-07-24T04:52:23.6970885Z [6346/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T04:52:23.6988248Z [6347/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T04:52:23.7031685Z [6348/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x16-minmax-avx512skx-broadcast.c.obj 2025-07-24T04:52:23.7084285Z [6349/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x16-minmax-avx512skx-broadcast.c.obj 2025-07-24T04:52:23.7095722Z [6350/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T04:52:23.7149369Z [6351/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x16-minmax-avx512skx-broadcast.c.obj 2025-07-24T04:52:23.7658731Z [6352/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T04:52:23.8817189Z [6353/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-7x16-minmax-avx512skx-broadcast.c.obj 2025-07-24T04:52:23.8829875Z [6354/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-8x16-minmax-avx512skx-broadcast.c.obj 2025-07-24T04:52:23.8840803Z [6355/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u32.c.obj 2025-07-24T04:52:23.8961631Z [6356/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x16-minmax-avx512skx-broadcast.c.obj 2025-07-24T04:52:23.9155562Z [6357/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-8x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T04:52:23.9207694Z [6358/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T04:52:24.0295841Z [6359/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u64.c.obj 2025-07-24T04:52:24.0377933Z [6360/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u96.c.obj 2025-07-24T04:52:24.0597003Z [6361/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u64.c.obj 2025-07-24T04:52:24.0610655Z [6362/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c4-minmax-avx512skx-madd.c.obj 2025-07-24T04:52:24.0621806Z [6363/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u96.c.obj 2025-07-24T04:52:24.0671937Z [6364/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u32.c.obj 2025-07-24T04:52:24.0682541Z [6365/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T04:52:24.1744987Z [6366/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512skx-madd.c.obj 2025-07-24T04:52:24.1806403Z [6367/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T04:52:24.2430887Z [6368/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T04:52:24.2484408Z [6369/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T04:52:24.2496800Z [6370/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512skx.c.obj 2025-07-24T04:52:24.3285396Z [6371/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x16c4-minmax-avx512skx-madd.c.obj 2025-07-24T04:52:24.3345699Z [6372/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512skx-madd.c.obj 2025-07-24T04:52:24.3359390Z [6373/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T04:52:24.3370217Z [6374/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c4-minmax-avx512skx-madd.c.obj 2025-07-24T04:52:24.4201654Z [6375/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512skx.c.obj 2025-07-24T04:52:24.4214609Z [6376/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T04:52:24.5433000Z [6377/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512skx-madd.c.obj 2025-07-24T04:52:24.5491815Z [6378/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c4-minmax-avx512skx-madd.c.obj 2025-07-24T04:52:24.5505086Z [6379/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512skx.c.obj 2025-07-24T04:52:24.5584773Z [6380/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T04:52:24.5748518Z [6381/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T04:52:24.5797177Z [6382/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T04:52:24.5845428Z [6383/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T04:52:24.7328069Z [6384/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512skx-madd.c.obj 2025-07-24T04:52:24.7398360Z [6385/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T04:52:24.7413748Z [6386/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c4-minmax-avx512skx-madd.c.obj 2025-07-24T04:52:24.8166287Z [6387/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512skx.c.obj 2025-07-24T04:52:24.9581819Z [6388/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T04:52:24.9610073Z [6389/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c4-minmax-avx512skx-madd.c.obj 2025-07-24T04:52:24.9630447Z [6390/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T04:52:24.9683263Z [6391/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c8-minmax-avx512skx-madd.c.obj 2025-07-24T04:52:25.0600606Z [6392/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T04:52:25.0670795Z [6393/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c4-minmax-avx512skx-madd.c.obj 2025-07-24T04:52:25.1681780Z [6394/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c4-minmax-avx512skx-madd.c.obj 2025-07-24T04:52:25.1726577Z [6395/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T04:52:25.1899534Z [6396/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T04:52:25.1912941Z [6397/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T04:52:25.1926238Z [6398/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c8-minmax-avx512skx-madd.c.obj 2025-07-24T04:52:25.3961386Z [6399/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T04:52:25.4013051Z [6400/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c8-minmax-avx512skx-madd.c.obj 2025-07-24T04:52:25.4025546Z [6401/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c4-minmax-avx512skx-madd.c.obj 2025-07-24T04:52:25.4036768Z [6402/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T04:52:25.4118706Z [6403/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x16c8-minmax-avx512skx.c.obj 2025-07-24T04:52:25.4704619Z [6404/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c8-minmax-avx512skx-madd.c.obj 2025-07-24T04:52:25.5205285Z [6405/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T04:52:25.5273486Z [6406/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x16c8-minmax-avx512skx.c.obj 2025-07-24T04:52:25.5322465Z [6407/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T04:52:25.5336955Z [6408/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x16c8-minmax-avx512skx.c.obj 2025-07-24T04:52:25.5467745Z [6409/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x16c8-minmax-avx512skx.c.obj 2025-07-24T04:52:25.6024606Z [6410/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x16c8-minmax-avx512skx.c.obj 2025-07-24T04:52:25.6758706Z [6411/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x16c8-minmax-avx512skx.c.obj 2025-07-24T04:52:25.6807404Z [6412/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x16c8-minmax-avx512skx.c.obj 2025-07-24T04:52:25.6819710Z [6413/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T04:52:25.6886040Z [6414/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:25.6944182Z [6415/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T04:52:25.7358256Z [6416/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x16c8-minmax-avx512skx.c.obj 2025-07-24T04:52:25.8415209Z [6417/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:25.8771519Z [6418/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:25.8873111Z [6419/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:25.9206662Z [6420/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:25.9218583Z [6421/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:25.9264079Z [6422/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:25.9575708Z [6423/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u16.c.obj 2025-07-24T04:52:25.9622187Z [6424/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:26.0464885Z [6425/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:26.0561683Z [6426/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:26.0636610Z [6427/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:26.1476554Z [6428/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u48.c.obj 2025-07-24T04:52:26.1488823Z [6429/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u64.c.obj 2025-07-24T04:52:26.2669599Z [6430/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:26.2681516Z [6431/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:26.2693323Z [6432/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:26.2903987Z [6433/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:26.2916150Z [6434/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:26.3789655Z [6435/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T04:52:26.4309812Z [6436/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T04:52:26.4386040Z [6437/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T04:52:26.4449698Z [6438/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T04:52:26.4462449Z [6439/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T04:52:26.4608525Z [6440/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T04:52:26.4658219Z [6441/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T04:52:26.5339110Z [6442/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T04:52:26.6336889Z [6443/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx512skx-c128.c.obj 2025-07-24T04:52:26.6661841Z [6444/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T04:52:26.6674803Z [6445/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T04:52:26.6687467Z [6446/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u64.c.obj 2025-07-24T04:52:26.6748297Z [6447/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T04:52:26.6760136Z [6448/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T04:52:26.7431717Z [6449/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u256-acc2.c.obj 2025-07-24T04:52:26.8097672Z [6450/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u256-acc4.c.obj 2025-07-24T04:52:26.8149900Z [6451/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-07-24T04:52:26.8193698Z [6452/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:26.8246572Z [6453/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-07-24T04:52:26.8427109Z [6454/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:26.8725683Z [6455/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:26.9544523Z [6456/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:27.0546784Z [6457/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:27.0559699Z [6458/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:27.0571322Z [6459/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u48.c.obj 2025-07-24T04:52:27.0582759Z [6460/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:27.0594692Z [6461/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T04:52:27.0607022Z [6462/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u16.c.obj 2025-07-24T04:52:27.2039746Z [6463/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u64.c.obj 2025-07-24T04:52:27.2240750Z [6464/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T04:52:27.2358034Z [6465/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-7x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T04:52:27.3051962Z [6466/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-5x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T04:52:27.3063856Z [6467/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-8x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T04:52:27.3075700Z [6468/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-8x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T04:52:27.3088835Z [6469/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-5x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T04:52:27.3822490Z [6470/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-5x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T04:52:27.3834159Z [6471/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T04:52:27.5114248Z [6472/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u128.c.obj 2025-07-24T04:52:27.5336108Z [6473/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-07-24T04:52:27.5347782Z [6474/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-8x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T04:52:27.5393314Z [6475/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-5x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T04:52:27.5461974Z [6476/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-07-24T04:52:27.5510542Z [6477/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-8x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T04:52:27.5562311Z [6478/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-7x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T04:52:27.5976055Z [6479/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u192.c.obj 2025-07-24T04:52:27.6873588Z [6480/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u192.c.obj 2025-07-24T04:52:27.6921363Z [6481/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u64.c.obj 2025-07-24T04:52:27.7398527Z [6482/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u256.c.obj 2025-07-24T04:52:27.7410684Z [6483/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-5x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:27.7421037Z [6484/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u256.c.obj 2025-07-24T04:52:27.7432030Z [6485/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:27.7938507Z [6486/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-5x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:27.8872981Z [6487/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-9x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:27.9007038Z [6488/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-8x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:27.9018608Z [6489/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-7x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:27.9253162Z [6490/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-10x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:27.9298319Z [6491/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-9x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:27.9960663Z [6492/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-7x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:28.0257692Z [6493/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-10x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:28.0774373Z [6494/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:28.1042955Z [6495/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-12x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:28.1107136Z [6496/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-14x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:28.1119289Z [6497/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-14x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:28.1167747Z [6498/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-12x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:28.1658596Z [6499/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:28.1747040Z [6500/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:28.2821454Z [6501/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:28.2881651Z [6502/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:28.2893012Z [6503/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:28.3540383Z [6504/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:28.3586925Z [6505/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:28.3632658Z [6506/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:28.3714208Z [6507/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:28.4452509Z [6508/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:28.4465942Z [6509/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:28.5413586Z [6510/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:28.5427197Z [6511/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:28.5439873Z [6512/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:28.5491367Z [6513/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:28.6223550Z [6514/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:28.6244821Z [6515/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:28.6293967Z [6516/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:28.7144765Z [6517/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:28.7200747Z [6518/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:28.7215297Z [6519/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:28.7877572Z [6520/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:28.7902803Z [6521/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:28.8132704Z [6522/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:28.8188043Z [6523/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:28.9392501Z [6524/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:28.9509229Z [6525/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:29.0069124Z [6526/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:29.1078896Z [6527/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:29.1094286Z [6528/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:29.1107604Z [6529/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:29.1117530Z [6530/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:29.1708889Z [6531/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:29.2614880Z [6532/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:29.2628679Z [6533/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:29.3265024Z [6534/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:29.3270734Z [6535/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:29.3320537Z [6536/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:29.3333567Z [6537/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:29.4454394Z [6538/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:29.5002155Z [6539/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:29.6449620Z [6540/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:29.6532538Z [6541/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:29.6587081Z [6542/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:29.6600102Z [6543/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:29.6611331Z [6544/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:29.6658988Z [6545/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:29.6835223Z [6546/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:29.8410459Z [6547/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-9x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:29.8427884Z [6548/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-10x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:29.8439368Z [6549/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-9x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:29.8484293Z [6550/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-10x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:29.8574934Z [6551/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-9x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:29.9664825Z [6552/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-9x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:29.9677940Z [6553/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-10x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:30.0599334Z [6554/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-12x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:30.0651184Z [6555/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-14x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:30.0663019Z [6556/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-12x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:30.0828157Z [6557/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-12x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:30.0841641Z [6558/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-12x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:30.1784042Z [6559/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-14x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:30.1797683Z [6560/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-14x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:30.2519542Z [6561/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:30.3385473Z [6562/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:30.3396865Z [6563/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:30.3408412Z [6564/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:30.3419801Z [6565/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:30.3430921Z [6566/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:30.3892195Z [6567/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-14x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:30.5297895Z [6568/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:30.5399871Z [6569/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:30.5450281Z [6570/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:30.6309784Z [6571/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:30.6389808Z [6572/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:30.6404475Z [6573/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:30.6421438Z [6574/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:30.7241065Z [6575/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:30.7320633Z [6576/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:30.7872923Z [6577/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-9x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:30.7969459Z [6578/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-9x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:30.7983172Z [6579/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-9x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:30.8043627Z [6580/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:30.8599822Z [6581/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:30.8612058Z [6582/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-10x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:30.8679497Z [6583/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-9x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:30.9442792Z [6584/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-10x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:30.9912561Z [6585/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-12x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:31.0021304Z [6586/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-12x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:31.0034201Z [6587/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-10x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:31.1396778Z [6588/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-14x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:31.1447191Z [6589/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-12x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:31.1669348Z [6590/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-12x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:31.2074512Z [6591/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-14x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:31.2086799Z [6592/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T04:52:31.2350428Z [6593/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-14x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:31.2465260Z [6594/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-14x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:31.2912818Z [6595/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512vnni.c.obj 2025-07-24T04:52:31.3096164Z [6596/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x16c4-minmax-fp32-avx512vnni.c.obj 2025-07-24T04:52:31.3977520Z [6597/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T04:52:31.3990550Z [6598/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T04:52:31.4001393Z [6599/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x16c4-minmax-fp32-avx512vnni.c.obj 2025-07-24T04:52:31.4055726Z [6600/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T04:52:31.4925823Z [6601/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x16c4-minmax-fp32-avx512vnni.c.obj 2025-07-24T04:52:31.4987215Z [6602/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x16c8-minmax-fp32-avx512vnni.c.obj 2025-07-24T04:52:31.5002088Z [6603/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T04:52:31.5800207Z [6604/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x16c4-minmax-fp32-avx512vnni.c.obj 2025-07-24T04:52:31.5858501Z [6605/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T04:52:31.5960844Z [6606/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512vnni.c.obj 2025-07-24T04:52:31.6800368Z [6607/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-9x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T04:52:31.6815575Z [6608/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x16c8-minmax-fp32-avx512vnni.c.obj 2025-07-24T04:52:31.6864910Z [6609/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x16c4-minmax-fp32-avx512vnni.c.obj 2025-07-24T04:52:31.6912607Z [6610/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T04:52:31.7613920Z [6611/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-9x16c4-minmax-fp32-avx512vnni.c.obj 2025-07-24T04:52:31.7719090Z [6612/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-9x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T04:52:31.8106560Z [6613/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-9x16c8-minmax-fp32-avx512vnni.c.obj 2025-07-24T04:52:31.8197890Z [6614/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-10x16c8-minmax-fp32-avx512vnni.c.obj 2025-07-24T04:52:31.8244324Z [6615/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-10x16c4-minmax-fp32-avx512vnni.c.obj 2025-07-24T04:52:31.8288838Z [6616/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-10x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T04:52:31.8301590Z [6617/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-10x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T04:52:31.9247099Z [6618/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-12x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T04:52:31.9259018Z [6619/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-12x16c4-minmax-fp32-avx512vnni.c.obj 2025-07-24T04:52:32.0335464Z [6620/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-14x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T04:52:32.0348549Z [6621/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-14x16c4-minmax-fp32-avx512vnni.c.obj 2025-07-24T04:52:32.0496090Z [6622/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-12x16c8-minmax-fp32-avx512vnni.c.obj 2025-07-24T04:52:32.0672363Z [6623/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-12x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T04:52:32.1003259Z [6624/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:32.1832072Z [6625/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-14x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T04:52:32.1893781Z [6626/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-14x16c8-minmax-fp32-avx512vnni.c.obj 2025-07-24T04:52:32.2304618Z [6627/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:32.2579322Z [6628/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:32.2995929Z [6629/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:32.3040952Z [6630/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:32.3183319Z [6631/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:32.3282295Z [6632/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:32.3940845Z [6633/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:32.4007583Z [6634/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:32.4170240Z [6635/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:32.4794795Z [6636/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:32.4894712Z [6637/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:32.4950935Z [6638/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:32.5195105Z [6639/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:32.5874793Z [6640/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:32.5887755Z [6641/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:32.5934526Z [6642/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:32.6745909Z [6643/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:32.6759199Z [6644/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:32.6817912Z [6645/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:32.6973960Z [6646/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:32.7631838Z [6647/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:32.7782437Z [6648/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:32.7796787Z [6649/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:32.8890852Z [6650/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:32.8939325Z [6651/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:33.0238409Z [6652/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x16c4-minmax-avx512vnni.c.obj 2025-07-24T04:52:33.0295146Z [6653/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:33.0307703Z [6654/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:33.0892692Z [6655/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:33.0945687Z [6656/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T04:52:33.0959784Z [6657/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u64.c.obj 2025-07-24T04:52:33.1180817Z [6658/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x16c8-minmax-avx512vnni.c.obj 2025-07-24T04:52:33.1621631Z [6659/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u256-acc4.c.obj 2025-07-24T04:52:33.1949586Z [6660/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u256-acc2.c.obj 2025-07-24T04:52:33.2624220Z [6661/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-5x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:33.2637634Z [6662/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-5x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T04:52:33.2649799Z [6663/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-7x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:33.2703537Z [6664/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:33.2716801Z [6665/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-7x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T04:52:33.3476347Z [6666/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-8x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:33.4366699Z [6667/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-9x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:33.4428848Z [6668/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-8x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T04:52:33.4673708Z [6669/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-9x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T04:52:33.4724423Z [6670/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-12x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T04:52:33.4735744Z [6671/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-10x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T04:52:33.4964110Z [6672/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-10x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:33.6143765Z [6673/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-12x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:33.6851013Z [6674/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T04:52:33.7349345Z [6675/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-14x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:33.7361593Z [6676/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c4-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:33.7372780Z [6677/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:33.7420924Z [6678/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x16c4-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:33.7432434Z [6679/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T04:52:33.7536817Z [6680/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T04:52:33.8190865Z [6681/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c4-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:33.9175394Z [6682/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T04:52:33.9240931Z [6683/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c4-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:33.9307314Z [6684/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:33.9363101Z [6685/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:33.9421029Z [6686/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T04:52:33.9469411Z [6687/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T04:52:34.0489355Z [6688/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T04:52:34.1382439Z [6689/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:34.1402752Z [6690/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T04:52:34.1454610Z [6691/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c4-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:34.1465810Z [6692/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T04:52:34.2394553Z [6693/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:34.2412271Z [6694/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T04:52:34.2423813Z [6695/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c4-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:34.3339403Z [6696/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T04:52:34.3394263Z [6697/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T04:52:34.3756767Z [6698/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c4-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:34.4053539Z [6699/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T04:52:34.5415492Z [6700/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:34.7333739Z [6701/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c4-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:34.7743039Z [6702/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c4-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:34.7755087Z [6703/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:34.7766455Z [6704/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T04:52:34.7809029Z [6705/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T04:52:35.8163114Z [6706/7174] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T04:52:36.7255656Z [6707/7174] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark_main.dir\benchmark_main.cc.obj 2025-07-24T04:52:37.4168088Z [6708/7174] Linking CXX static library lib\gtest_main.lib 2025-07-24T04:52:38.8984362Z [6709/7174] Building CXX object third_party\fmt\CMakeFiles\fmt.dir\src\format.cc.obj 2025-07-24T04:52:39.4545619Z [6710/7174] Building CXX object third_party\fmt\CMakeFiles\fmt.dir\src\os.cc.obj 2025-07-24T04:52:39.6220965Z [6711/7174] Linking CXX static library lib\gmock.lib 2025-07-24T04:52:39.8634183Z [6712/7174] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\src\gmock_main.cc.obj 2025-07-24T04:52:40.0023998Z [6713/7174] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\src\gmock-all.cc.obj 2025-07-24T04:52:40.1158888Z [6714/7174] Building C object third_party\ittapi\CMakeFiles\jitprofiling.dir\src\ittnotify\jitprofiling.c.obj 2025-07-24T04:52:40.1253637Z [6715/7174] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\__\googletest\src\gtest-all.cc.obj 2025-07-24T04:52:41.1855069Z [6716/7174] Building CXX object c10\test\CMakeFiles\c10_StreamGuard_test.dir\core\StreamGuard_test.cpp.obj 2025-07-24T04:52:41.7554697Z [6717/7174] Building CXX object c10\test\CMakeFiles\c10_CompileTimeFunctionPointer_test.dir\core\CompileTimeFunctionPointer_test.cpp.obj 2025-07-24T04:52:41.8662575Z [6718/7174] Building CXX object c10\test\CMakeFiles\c10_DeviceGuard_test.dir\core\DeviceGuard_test.cpp.obj 2025-07-24T04:52:42.0159927Z [6719/7174] Building CXX object c10\test\CMakeFiles\c10_Device_test.dir\core\Device_test.cpp.obj 2025-07-24T04:52:42.6663302Z [6720/7174] Building CXX object c10\test\CMakeFiles\c10_DispatchKeySet_test.dir\core\DispatchKeySet_test.cpp.obj 2025-07-24T04:52:42.6704086Z [6721/7174] Building CXX object c10\test\CMakeFiles\c10_Scalar_test.dir\core\Scalar_test.cpp.obj 2025-07-24T04:52:42.9653038Z [6722/7174] Linking CXX static library lib\benchmark.lib 2025-07-24T04:52:43.1381716Z [6723/7174] Building CXX object c10\test\CMakeFiles\c10_SymInt_test.dir\core\SymInt_test.cpp.obj 2025-07-24T04:52:43.5905144Z [6724/7174] Building CXX object c10\test\CMakeFiles\c10_ConstexprCrc_test.dir\util\ConstexprCrc_test.cpp.obj 2025-07-24T04:52:44.1491531Z [6725/7174] Building CXX object c10\test\CMakeFiles\c10_InlineDeviceGuard_test.dir\core\impl\InlineDeviceGuard_test.cpp.obj 2025-07-24T04:52:44.4068832Z [6726/7174] Building CXX object c10\test\CMakeFiles\c10_InlineStreamGuard_test.dir\core\impl\InlineStreamGuard_test.cpp.obj 2025-07-24T04:52:44.6088326Z [6727/7174] Building CXX object c10\test\CMakeFiles\c10_SizesAndStrides_test.dir\core\impl\SizesAndStrides_test.cpp.obj 2025-07-24T04:52:44.9819509Z [6728/7174] Building CXX object c10\test\CMakeFiles\c10_Bitset_test.dir\util\Bitset_test.cpp.obj 2025-07-24T04:52:45.0872688Z [6729/7174] Building CXX object c10\test\CMakeFiles\c10_ArrayRef_test.dir\util\ArrayRef_test.cpp.obj 2025-07-24T04:52:45.4110472Z [6730/7174] Building CXX object c10\test\CMakeFiles\c10_DeadlockDetection_test.dir\util\DeadlockDetection_test.cpp.obj 2025-07-24T04:52:45.8454359Z [6731/7174] Building CXX object c10\test\CMakeFiles\c10_cow_test.dir\core\impl\cow_test.cpp.obj 2025-07-24T04:52:46.4323540Z [6732/7174] Building CXX object c10\test\CMakeFiles\c10_Half_test.dir\util\Half_test.cpp.obj 2025-07-24T04:52:46.6470056Z [6733/7174] Building CXX object c10\test\CMakeFiles\c10_Enumerate_test.dir\util\Enumerate_test.cpp.obj 2025-07-24T04:52:46.8766448Z [6734/7174] Building CXX object c10\test\CMakeFiles\c10_IntrusiveList_test.dir\util\IntrusiveList_test.cpp.obj 2025-07-24T04:52:47.4586536Z [6735/7174] Building CXX object c10\test\CMakeFiles\c10_LeftRight_test.dir\util\LeftRight_test.cpp.obj 2025-07-24T04:52:47.6754301Z [6736/7174] Building CXX object c10\test\CMakeFiles\c10_NetworkFlow_test.dir\util\NetworkFlow_test.cpp.obj 2025-07-24T04:52:47.8863338Z [6737/7174] Building CXX object c10\test\CMakeFiles\c10_Metaprogramming_test.dir\util\Metaprogramming_test.cpp.obj 2025-07-24T04:52:48.2113870Z [6738/7174] Building CXX object c10\test\CMakeFiles\c10_Semaphore_test.dir\util\Semaphore_test.cpp.obj 2025-07-24T04:52:48.4634916Z [6739/7174] Building CXX object c10\test\CMakeFiles\c10_Synchronized_test.dir\util\Synchronized_test.cpp.obj 2025-07-24T04:52:49.0603445Z [6740/7174] Building CXX object c10\test\CMakeFiles\c10_TypeIndex_test.dir\util\TypeIndex_test.cpp.obj 2025-07-24T04:52:49.0813371Z [6741/7174] Building CXX object c10\test\CMakeFiles\c10_ThreadLocal_test.dir\util\ThreadLocal_test.cpp.obj 2025-07-24T04:52:49.3037201Z [6742/7174] Building CXX object c10\test\CMakeFiles\c10_TypeTraits_test.dir\util\TypeTraits_test.cpp.obj 2025-07-24T04:52:49.4226036Z [6743/7174] Building CXX object c10\test\CMakeFiles\c10_TypeList_test.dir\util\TypeList_test.cpp.obj 2025-07-24T04:52:50.2107616Z [6744/7174] Building CXX object c10\test\CMakeFiles\c10_accumulate_test.dir\util\accumulate_test.cpp.obj 2025-07-24T04:52:50.5464942Z [6745/7174] Building CXX object c10\test\CMakeFiles\c10_bit_cast_test.dir\util\bit_cast_test.cpp.obj 2025-07-24T04:52:50.7831697Z [6746/7174] Building CXX object c10\test\CMakeFiles\c10_bfloat16_test.dir\util\bfloat16_test.cpp.obj 2025-07-24T04:52:51.2086642Z [6747/7174] Building CXX object c10\test\CMakeFiles\c10_error_test.dir\util\error_test.cpp.obj 2025-07-24T04:52:51.2923606Z [6748/7174] Building CXX object c10\test\CMakeFiles\c10_exception_test.dir\util\exception_test.cpp.obj 2025-07-24T04:52:51.6827701Z [6749/7174] Building CXX object c10\test\CMakeFiles\c10_complex_test.dir\util\complex_test.cpp.obj 2025-07-24T04:52:51.7226057Z [6750/7174] Building CXX object c10\test\CMakeFiles\c10_complex_math_test.dir\util\complex_math_test.cpp.obj 2025-07-24T04:52:52.3829767Z [6751/7174] Building CXX object c10\test\CMakeFiles\c10_flags_test.dir\util\flags_test.cpp.obj 2025-07-24T04:52:52.6558801Z [6752/7174] Building CXX object c10\test\CMakeFiles\c10_generic_math_test.dir\util\generic_math_test.cpp.obj 2025-07-24T04:52:53.1668260Z [6753/7174] Building CXX object c10\test\CMakeFiles\c10_irange_test.dir\util\irange_test.cpp.obj 2025-07-24T04:52:53.4139165Z [6754/7174] Building CXX object c10\test\CMakeFiles\c10_lazy_test.dir\util\lazy_test.cpp.obj 2025-07-24T04:52:53.8876996Z [6755/7174] Building CXX object c10\test\CMakeFiles\c10_logging_test.dir\util\logging_test.cpp.obj 2025-07-24T04:52:55.7503716Z [6756/7174] Building CXX object c10\test\CMakeFiles\c10_registry_test.dir\util\registry_test.cpp.obj 2025-07-24T04:52:55.9965168Z [6757/7174] Building CXX object c10\test\CMakeFiles\c10_ordered_preserving_dict_test.dir\util\ordered_preserving_dict_test.cpp.obj 2025-07-24T04:52:56.9582935Z [6758/7174] Building CXX object c10\test\CMakeFiles\c10_ssize_test.dir\util\ssize_test.cpp.obj 2025-07-24T04:52:57.8018404Z [6759/7174] Building CXX object c10\test\CMakeFiles\c10_string_util_test.dir\util\string_util_test.cpp.obj 2025-07-24T04:52:58.1288110Z [6760/7174] Building CXX object c10\test\CMakeFiles\c10_optional_test.dir\util\optional_test.cpp.obj 2025-07-24T04:52:58.1290206Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(70): warning C4834: discarding return value of function with [[nodiscard]] attribute 2025-07-24T04:52:58.1292519Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(70): note: the template instantiation context (the oldest one first) is 2025-07-24T04:52:58.1299566Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(63): note: see reference to class template instantiation 'testing::internal::TypeParameterizedTest<`anonymous-namespace'::OptionalTest,testing::internal::TemplateSel<`anonymous-namespace'::OptionalTest_Empty_Test>,`anonymous-namespace'::gtest_type_params_OptionalTest_>' being compiled 2025-07-24T04:52:58.1306772Z C:\actions-runner\_work\pytorch\pytorch\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(694): note: while compiling class template member function 'bool testing::internal::TypeParameterizedTest<`anonymous-namespace'::OptionalTest,testing::internal::TemplateSel<`anonymous-namespace'::OptionalTest_Empty_Test>,`anonymous-namespace'::gtest_type_params_OptionalTest_>::Register(const char *,testing::internal::CodeLocation,const char *,const char *,int,const std::vector> &)' 2025-07-24T04:52:58.1314037Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(63): note: see the first reference to 'testing::internal::TypeParameterizedTest<`anonymous-namespace'::OptionalTest,testing::internal::TemplateSel<`anonymous-namespace'::OptionalTest_Empty_Test>,`anonymous-namespace'::gtest_type_params_OptionalTest_>::Register' in 'void __cdecl `anonymous namespace'::`dynamic initializer for 'gtest_OptionalTest_Empty_registered_''(void)' 2025-07-24T04:52:58.1318936Z C:\actions-runner\_work\pytorch\pytorch\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(705): note: see reference to class template instantiation 'testing::internal::SuiteApiResolver' being compiled 2025-07-24T04:52:59.2469774Z C:\actions-runner\_work\pytorch\pytorch\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(491): note: see reference to class template instantiation '`anonymous-namespace'::OptionalTest_Empty_Test' being compiled 2025-07-24T04:52:59.2471790Z with 2025-07-24T04:52:59.2472093Z [ 2025-07-24T04:52:59.2472377Z T=Type 2025-07-24T04:52:59.2472714Z ] 2025-07-24T04:52:59.2474503Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(63): note: while compiling class template member function 'void `anonymous-namespace'::OptionalTest_Empty_Test::TestBody(void)' 2025-07-24T04:52:59.2476116Z with 2025-07-24T04:52:59.2476451Z [ 2025-07-24T04:52:59.2476755Z T=Type 2025-07-24T04:52:59.2477091Z ] 2025-07-24T04:52:59.2477788Z [6761/7174] Building CXX object c10\test\CMakeFiles\c10_tempfile_test.dir\util\tempfile_test.cpp.obj 2025-07-24T04:52:59.4077646Z [6762/7174] Building CXX object c10\test\CMakeFiles\c10_string_view_test.dir\util\string_view_test.cpp.obj 2025-07-24T04:52:59.7823363Z [6763/7174] Building CXX object c10\benchmark\CMakeFiles\c10_intrusive_ptr_benchmark.dir\intrusive_ptr_benchmark.cpp.obj 2025-07-24T04:53:00.7543627Z [6764/7174] Building CXX object c10\test\CMakeFiles\c10_intrusive_ptr_test.dir\util\intrusive_ptr_test.cpp.obj 2025-07-24T04:53:01.0742612Z [6765/7174] Building CXX object c10\test\CMakeFiles\c10_typeid_test.dir\util\typeid_test.cpp.obj 2025-07-24T04:53:01.1644794Z [6766/7174] Building CXX object c10\test\CMakeFiles\c10_small_vector_test.dir\util\small_vector_test.cpp.obj 2025-07-24T04:53:03.1923196Z [6767/7174] Building CXX object caffe2\CMakeFiles\Dimname_test.dir\__\aten\src\ATen\test\Dimname_test.cpp.obj 2025-07-24T04:53:03.2858814Z [6768/7174] Building C object caffe2\CMakeFiles\torch_global_deps.dir\__\torch\csrc\empty.c.obj 2025-07-24T04:53:14.4258182Z [6769/7174] Building CXX object caffe2\CMakeFiles\MaybeOwned_test.dir\__\aten\src\ATen\test\MaybeOwned_test.cpp.obj 2025-07-24T04:53:14.9705407Z [6770/7174] Building CXX object caffe2\CMakeFiles\Dict_test.dir\__\aten\src\ATen\test\Dict_test.cpp.obj 2025-07-24T04:53:43.8306735Z [6771/7174] Building CXX object caffe2\CMakeFiles\NamedTensor_test.dir\__\aten\src\ATen\test\NamedTensor_test.cpp.obj 2025-07-24T04:53:43.9977219Z [6772/7174] Building CXX object caffe2\CMakeFiles\apply_utils_test.dir\__\aten\src\ATen\test\apply_utils_test.cpp.obj 2025-07-24T04:53:49.6471261Z [6773/7174] Building CXX object caffe2\CMakeFiles\basic.dir\__\aten\src\ATen\test\basic.cpp.obj 2025-07-24T04:53:50.3788115Z [6774/7174] Building CXX object caffe2\CMakeFiles\atest.dir\__\aten\src\ATen\test\atest.cpp.obj 2025-07-24T04:53:53.3662145Z [6775/7174] Building CXX object caffe2\CMakeFiles\vec_test_all_types_AVX2.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-07-24T04:53:53.3663651Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:53:53.3665321Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:53:54.7931049Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:53:54.7933491Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:53:54.7935566Z [6776/7174] Building CXX object caffe2\CMakeFiles\cpu_allocator_test.dir\__\aten\src\ATen\test\cpu_allocator_test.cpp.obj 2025-07-24T04:53:54.8759728Z [6777/7174] Building CXX object caffe2\CMakeFiles\broadcast_test.dir\__\aten\src\ATen\test\broadcast_test.cpp.obj 2025-07-24T04:53:55.2873918Z [6778/7174] Building CXX object caffe2\CMakeFiles\vec_test_all_types_DEFAULT.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-07-24T04:54:01.5384388Z [6779/7174] Building CXX object caffe2\CMakeFiles\cpu_generator_test.dir\__\aten\src\ATen\test\cpu_generator_test.cpp.obj 2025-07-24T04:54:01.9485258Z [6780/7174] Building CXX object caffe2\CMakeFiles\cpu_profiling_allocator_test.dir\__\aten\src\ATen\test\cpu_profiling_allocator_test.cpp.obj 2025-07-24T04:54:06.0835929Z [6781/7174] Building CXX object caffe2\CMakeFiles\dlconvertor_test.dir\__\aten\src\ATen\test\dlconvertor_test.cpp.obj 2025-07-24T04:54:06.4027932Z [6782/7174] Building CXX object caffe2\CMakeFiles\half_test.dir\__\aten\src\ATen\test\half_test.cpp.obj 2025-07-24T04:54:08.4701580Z [6783/7174] Building CXX object caffe2\CMakeFiles\extension_backend_test.dir\__\aten\src\ATen\test\extension_backend_test.cpp.obj 2025-07-24T04:54:13.1352163Z [6784/7174] Building CXX object caffe2\CMakeFiles\lazy_tensor_test.dir\__\aten\src\ATen\test\lazy_tensor_test.cpp.obj 2025-07-24T04:54:16.4166451Z [6785/7174] Building CXX object caffe2\CMakeFiles\memory_format_test.dir\__\aten\src\ATen\test\memory_format_test.cpp.obj 2025-07-24T04:54:18.4122556Z [6786/7174] Building CXX object caffe2\CMakeFiles\memory_overlapping_test.dir\__\aten\src\ATen\test\memory_overlapping_test.cpp.obj 2025-07-24T04:54:21.0994379Z [6787/7174] Building CXX object caffe2\CMakeFiles\operator_name_test.dir\__\aten\src\ATen\test\operator_name_test.cpp.obj 2025-07-24T04:54:21.6284443Z [6788/7174] Building CXX object caffe2\CMakeFiles\cpu_rng_test.dir\__\aten\src\ATen\test\cpu_rng_test.cpp.obj 2025-07-24T04:54:26.0420953Z [6789/7174] Building CXX object caffe2\CMakeFiles\ivalue_test.dir\__\aten\src\ATen\test\ivalue_test.cpp.obj 2025-07-24T04:54:26.3874960Z [6790/7174] Building CXX object caffe2\CMakeFiles\math_kernel_test.dir\__\aten\src\ATen\test\math_kernel_test.cpp.obj 2025-07-24T04:54:28.2829499Z [6791/7174] Building CXX object caffe2\CMakeFiles\native_test.dir\__\aten\src\ATen\test\native_test.cpp.obj 2025-07-24T04:54:30.9558461Z [6792/7174] Building CXX object caffe2\CMakeFiles\operators_test.dir\__\aten\src\ATen\test\operators_test.cpp.obj 2025-07-24T04:54:31.7320576Z [6793/7174] Building CXX object caffe2\CMakeFiles\packedtensoraccessor_test.dir\__\aten\src\ATen\test\packedtensoraccessor_test.cpp.obj 2025-07-24T04:54:33.1328830Z [6794/7174] Building CXX object caffe2\CMakeFiles\mobile_memory_cleanup.dir\__\aten\src\ATen\test\mobile_memory_cleanup.cpp.obj 2025-07-24T04:54:36.4207609Z [6795/7174] Building CXX object caffe2\CMakeFiles\quantized_test.dir\__\aten\src\ATen\test\quantized_test.cpp.obj 2025-07-24T04:54:38.2716114Z [6796/7174] Building CXX object caffe2\CMakeFiles\pow_test.dir\__\aten\src\ATen\test\pow_test.cpp.obj 2025-07-24T04:54:39.2884748Z [6797/7174] Building CXX object caffe2\CMakeFiles\reduce_ops_test.dir\__\aten\src\ATen\test\reduce_ops_test.cpp.obj 2025-07-24T04:54:40.8217514Z [6798/7174] Building CXX object caffe2\CMakeFiles\reportMemoryUsage_test.dir\__\aten\src\ATen\test\reportMemoryUsage_test.cpp.obj 2025-07-24T04:54:43.6643286Z [6799/7174] Building CXX object caffe2\CMakeFiles\scalar_test.dir\__\aten\src\ATen\test\scalar_test.cpp.obj 2025-07-24T04:54:45.0428550Z [6800/7174] Building CXX object caffe2\CMakeFiles\scalar_tensor_test.dir\__\aten\src\ATen\test\scalar_tensor_test.cpp.obj 2025-07-24T04:54:45.2157567Z [6801/7174] Building CXX object caffe2\CMakeFiles\StorageUtils_test.dir\__\aten\src\ATen\test\StorageUtils_test.cpp.obj 2025-07-24T04:54:46.4481754Z [6802/7174] Building CXX object caffe2\CMakeFiles\vec_test_all_types_AVX512.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-07-24T04:54:48.0201859Z [6803/7174] Building CXX object caffe2\CMakeFiles\stride_properties_test.dir\__\aten\src\ATen\test\stride_properties_test.cpp.obj 2025-07-24T04:54:49.0501034Z [6804/7174] Building CXX object caffe2\CMakeFiles\type_ptr_test.dir\__\aten\src\ATen\test\type_ptr_test.cpp.obj 2025-07-24T04:54:52.2128716Z [6805/7174] Building CXX object caffe2\CMakeFiles\tensor_iterator_test.dir\__\aten\src\ATen\test\tensor_iterator_test.cpp.obj 2025-07-24T04:54:52.8126422Z [6806/7174] Building CXX object caffe2\CMakeFiles\thread_init_test.dir\__\aten\src\ATen\test\thread_init_test.cpp.obj 2025-07-24T04:54:56.0576556Z [6807/7174] Building CXX object caffe2\CMakeFiles\undefined_tensor_test.dir\__\aten\src\ATen\test\undefined_tensor_test.cpp.obj 2025-07-24T04:54:57.4012063Z [6808/7174] Building CXX object caffe2\CMakeFiles\verify_api_visibility.dir\__\aten\src\ATen\test\verify_api_visibility.cpp.obj 2025-07-24T04:54:57.7426010Z [6809/7174] Building CXX object caffe2\CMakeFiles\test_parallel.dir\__\aten\src\ATen\test\test_parallel.cpp.obj 2025-07-24T04:55:00.2732133Z [6810/7174] Building CXX object caffe2\CMakeFiles\legacy_vmap_test.dir\__\aten\src\ATen\test\legacy_vmap_test.cpp.obj 2025-07-24T04:55:02.0128704Z [6811/7174] Building CXX object caffe2\CMakeFiles\weakref_test.dir\__\aten\src\ATen\test\weakref_test.cpp.obj 2025-07-24T04:55:02.8109787Z [6812/7174] Building CXX object caffe2\CMakeFiles\wrapdim_test.dir\__\aten\src\ATen\test\wrapdim_test.cpp.obj 2025-07-24T04:55:06.1381404Z [6813/7174] Building CXX object caffe2\CMakeFiles\List_test.dir\__\aten\src\ATen\core\List_test.cpp.obj 2025-07-24T04:55:06.5234713Z [6814/7174] Building CXX object caffe2\CMakeFiles\type_test.dir\__\aten\src\ATen\test\type_test.cpp.obj 2025-07-24T04:55:06.8173403Z [6815/7174] Building CXX object caffe2\CMakeFiles\xla_tensor_test.dir\__\aten\src\ATen\test\xla_tensor_test.cpp.obj 2025-07-24T04:55:07.1797637Z [6816/7174] Building CXX object caffe2\CMakeFiles\IListRef_test.dir\__\aten\src\ATen\core\IListRef_test.cpp.obj 2025-07-24T04:55:13.1282159Z [6817/7174] Building CXX object caffe2\CMakeFiles\kernel_function_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_function_test.cpp.obj 2025-07-24T04:55:13.6901398Z [6818/7174] Building CXX object caffe2\CMakeFiles\KernelFunction_test.dir\__\aten\src\ATen\core\boxing\KernelFunction_test.cpp.obj 2025-07-24T04:55:14.1012679Z [6819/7174] Building CXX object caffe2\CMakeFiles\kernel_function_legacy_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_function_legacy_test.cpp.obj 2025-07-24T04:55:15.4825546Z [6820/7174] Building CXX object caffe2\CMakeFiles\CppSignature_test.dir\__\aten\src\ATen\core\dispatch\CppSignature_test.cpp.obj 2025-07-24T04:55:15.6803571Z [6821/7174] Building CXX object caffe2\CMakeFiles\kernel_stackbased_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_stackbased_test.cpp.obj 2025-07-24T04:55:17.4428172Z [6822/7174] Building CXX object caffe2\CMakeFiles\op_allowlist_test.dir\__\aten\src\ATen\core\op_registration\op_allowlist_test.cpp.obj 2025-07-24T04:55:17.8115874Z [6823/7174] Building CXX object caffe2\CMakeFiles\kernel_lambda_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_lambda_test.cpp.obj 2025-07-24T04:55:19.3800371Z [6824/7174] Building CXX object caffe2\CMakeFiles\make_boxed_from_unboxed_functor_test.dir\__\aten\src\ATen\core\boxing\impl\make_boxed_from_unboxed_functor_test.cpp.obj 2025-07-24T04:55:21.0999344Z [6825/7174] Building CXX object caffe2\CMakeFiles\inline_container_test.dir\serialize\inline_container_test.cc.obj 2025-07-24T04:55:21.4726040Z [6826/7174] Building CXX object caffe2\CMakeFiles\kernel_lambda_legacy_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_lambda_legacy_test.cpp.obj 2025-07-24T04:55:22.9678479Z [6827/7174] Building C object sleef\src\libm\CMakeFiles\mkrename_gnuabi.dir\mkrename_gnuabi.c.obj 2025-07-24T04:55:22.9769473Z [6828/7174] Building C object sleef\src\common\CMakeFiles\addSuffix.dir\addSuffix.c.obj 2025-07-24T04:55:22.9818396Z [6829/7174] Building C object sleef\src\libm\CMakeFiles\mkmasked_gnuabi.dir\mkmasked_gnuabi.c.obj 2025-07-24T04:55:23.0494357Z [6830/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\__\common\main.cpp.obj 2025-07-24T04:55:25.1491740Z [6831/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\source_range_test.cpp.obj 2025-07-24T04:55:25.7801871Z [6832/7174] Building CXX object caffe2\CMakeFiles\backend_fallback_test.dir\__\aten\src\ATen\core\dispatch\backend_fallback_test.cpp.obj 2025-07-24T04:55:30.0314430Z [6833/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_add_if_then_else.cpp.obj 2025-07-24T04:55:34.3203341Z [6834/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_load_upgraders.cpp.obj 2025-07-24T04:55:39.0288624Z [6835/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_argument_spec.cpp.obj 2025-07-24T04:55:40.8501984Z [6836/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_alias_analysis.cpp.obj 2025-07-24T04:55:41.1229319Z [6837/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_op_replacement.cpp.obj 2025-07-24T04:55:44.7277037Z [6838/7174] Building CXX object caffe2\CMakeFiles\op_registration_test.dir\__\aten\src\ATen\core\op_registration\op_registration_test.cpp.obj 2025-07-24T04:55:45.9103727Z [6839/7174] Building CXX object test_jit\CMakeFiles\torchbind_test.dir\test_custom_class_registrations.cpp.obj 2025-07-24T04:55:46.0462298Z [6840/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_upgrader_utils.cpp.obj 2025-07-24T04:55:49.5248185Z [6841/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_parser.cpp.obj 2025-07-24T04:55:51.5678989Z [6842/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_autodiff.cpp.obj 2025-07-24T04:55:53.2827313Z [6843/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_code_template.cpp.obj 2025-07-24T04:55:56.9864517Z [6844/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_constant_pooling.cpp.obj 2025-07-24T04:55:57.2859774Z [6845/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_concat_opt.cpp.obj 2025-07-24T04:55:59.9144950Z [6846/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_cleanup_passes.cpp.obj 2025-07-24T04:56:00.9381751Z [6847/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_create_autodiff_subgraphs.cpp.obj 2025-07-24T04:56:01.3685281Z [6848/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_backend.cpp.obj 2025-07-24T04:56:02.0681295Z [6849/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_import.cpp.obj 2025-07-24T04:56:04.6433192Z [6850/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_type.cpp.obj 2025-07-24T04:56:08.2626724Z [6851/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_dce.cpp.obj 2025-07-24T04:56:12.8181600Z [6852/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_class.cpp.obj 2025-07-24T04:56:15.7702772Z [6853/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_operators.cpp.obj 2025-07-24T04:56:17.1601793Z [6854/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_fuser.cpp.obj 2025-07-24T04:56:18.3016373Z [6855/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_class_registrations.cpp.obj 2025-07-24T04:56:22.2286110Z [6856/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_inliner.cpp.obj 2025-07-24T04:56:22.4418634Z [6857/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_graph_executor.cpp.obj 2025-07-24T04:56:25.7107045Z [6858/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_graph_iterator.cpp.obj 2025-07-24T04:56:26.3104069Z [6859/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_ir.cpp.obj 2025-07-24T04:56:28.3781937Z [6860/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lexer.cpp.obj 2025-07-24T04:56:30.1548438Z [6861/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_cs_debug_info_serialization.cpp.obj 2025-07-24T04:56:30.2720762Z [6862/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_irparser.cpp.obj 2025-07-24T04:56:30.4150936Z [6863/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_jit_type.cpp.obj 2025-07-24T04:56:37.2108961Z [6864/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_interface.cpp.obj 2025-07-24T04:56:37.6660407Z [6865/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_interpreter.cpp.obj 2025-07-24T04:56:37.7513069Z [6866/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_memory_dag.cpp.obj 2025-07-24T04:56:44.5856838Z [6867/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_mobile_type_parser.cpp.obj 2025-07-24T04:56:44.8967222Z [6868/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_peephole_optimize.cpp.obj 2025-07-24T04:56:46.6311920Z [6869/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_qualified_name.cpp.obj 2025-07-24T04:56:50.7999893Z [6870/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_interpreter_direct.cpp.obj 2025-07-24T04:56:51.8451934Z [6871/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_interpreter.cpp.obj 2025-07-24T04:56:52.1526085Z [6872/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_trainer.cpp.obj 2025-07-24T04:56:55.3855300Z [6873/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_misc.cpp.obj 2025-07-24T04:56:59.6538758Z [6874/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_schema_info.cpp.obj 2025-07-24T04:57:00.0191798Z [6875/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_schema_matching.cpp.obj 2025-07-24T04:57:00.8537479Z [6876/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_module_api.cpp.obj 2025-07-24T04:57:01.0019003Z [6877/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_matcher.cpp.obj 2025-07-24T04:57:04.2413867Z [6878/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_rewriter.cpp.obj 2025-07-24T04:57:04.2973877Z [6879/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_stack_opt.cpp.obj 2025-07-24T04:57:07.7196527Z [6880/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_utils.cpp.obj 2025-07-24T04:57:08.0450382Z [6881/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_union.cpp.obj 2025-07-24T04:57:09.1611750Z [6882/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_script_profile.cpp.obj 2025-07-24T04:57:10.1598267Z [6883/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_save_load.cpp.obj 2025-07-24T04:57:10.3505877Z [6884/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_file_format.cpp.obj 2025-07-24T04:57:10.9320081Z [6885/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\common\main.cpp.obj 2025-07-24T04:57:11.9514758Z [6886/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_jit_logging_levels.cpp.obj 2025-07-24T04:57:14.4395016Z [6887/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_utils.cpp.obj 2025-07-24T04:57:16.2495606Z [6888/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_file_util.cpp.obj 2025-07-24T04:57:18.2765283Z [6889/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_shape_analysis.cpp.obj 2025-07-24T04:57:22.1444232Z [6890/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_function_schema.cpp.obj 2025-07-24T04:57:24.2365650Z [6891/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_execution_planner.cpp.obj 2025-07-24T04:57:29.5394305Z [6892/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_execution_frame.cpp.obj 2025-07-24T04:57:30.6801361Z [6893/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_alias_analyzer.cpp.obj 2025-07-24T04:57:31.8737156Z [6894/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_layout_planner_algorithm.cpp.obj 2025-07-24T04:57:33.7541965Z [6895/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_graph_signature.cpp.obj 2025-07-24T04:57:34.2698673Z [6896/7174] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_flatbuffer.cpp.obj 2025-07-24T04:57:34.4957089Z [6897/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_mpmc_queue.cpp.obj 2025-07-24T04:57:34.6603360Z [6898/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_graph.cpp.obj 2025-07-24T04:57:35.9744432Z [6899/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_placement.cpp.obj 2025-07-24T04:57:39.0529856Z [6900/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_c10_kernel.cpp.obj 2025-07-24T04:57:40.2562129Z [6901/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_itree.cpp.obj 2025-07-24T04:57:43.4409021Z [6902/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_tensor_meta.cpp.obj 2025-07-24T04:57:44.4171962Z [6903/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\TensorMeta.cpp.obj 2025-07-24T04:57:47.6438255Z [6904/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_serialization.cpp.obj 2025-07-24T04:57:49.7260191Z [6905/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\PlacementUtils.cpp.obj 2025-07-24T04:57:50.2139910Z [6906/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\GraphSignature.cpp.obj 2025-07-24T04:57:51.8993013Z [6907/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_op_kernel.cpp.obj 2025-07-24T04:57:52.6621515Z [6908/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\common\FileUtil.cpp.obj 2025-07-24T04:57:56.4442347Z [6909/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\Graph.cpp.obj 2025-07-24T04:57:58.1566398Z [6910/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\FunctionSchema.cpp.obj 2025-07-24T04:57:59.9708549Z [6911/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\Serialization.cpp.obj 2025-07-24T04:58:04.6287525Z [6912/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_weights.cpp.obj 2025-07-24T04:58:04.8134545Z [6913/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\OpKernel.cpp.obj 2025-07-24T04:58:05.1508948Z [6914/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\Bump.cpp.obj 2025-07-24T04:58:06.0188613Z [6915/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\GreedyBySize.cpp.obj 2025-07-24T04:58:07.1041660Z [6916/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\DisjointStorageGroups.cpp.obj 2025-07-24T04:58:07.1309635Z [6917/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\ExecutionPlanner.cpp.obj 2025-07-24T04:58:11.4801908Z [6918/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\Weights.cpp.obj 2025-07-24T04:58:12.2336900Z [6919/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\detail\ITree.cpp.obj 2025-07-24T04:58:16.3902525Z [6920/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\ExecutionFrame.cpp.obj 2025-07-24T04:58:19.7542999Z [6921/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\LayoutPlanner.cpp.obj 2025-07-24T04:58:20.4187851Z [6922/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\AliasAnalyzer.cpp.obj 2025-07-24T04:58:20.4430890Z [6923/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\C10Kernel.cpp.obj 2025-07-24T04:58:24.6469028Z [6924/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\LayoutManager.cpp.obj 2025-07-24T04:58:29.5882353Z [6925/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\Executor.cpp.obj 2025-07-24T04:58:33.3483699Z [6926/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\KernelFactory.cpp.obj 2025-07-24T04:58:34.4879902Z [6927/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\ConstantFolder.cpp.obj 2025-07-24T04:58:37.1414172Z [6928/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\GraphExecutorBase.cpp.obj 2025-07-24T04:58:37.6295737Z [6929/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\SerialGraphExecutor.cpp.obj 2025-07-24T04:58:38.1818983Z [6930/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\ParallelGraphExecutor.cpp.obj 2025-07-24T04:58:38.2398261Z [6931/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_approx.cpp.obj 2025-07-24T04:58:39.0536225Z [6932/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\__\common\main.cpp.obj 2025-07-24T04:58:43.6897319Z [6933/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\AutoFunctionalizeKernel.cpp.obj 2025-07-24T04:58:46.7850005Z [6934/7174] Building CXX object test_inductor\CMakeFiles\aoti_custom_ops.dir\custom_ops.cpp.obj 2025-07-24T04:58:47.8783907Z [6935/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\CallTorchBindKernel.cpp.obj 2025-07-24T04:58:48.9540786Z [6936/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\padded_buffer.cpp.obj 2025-07-24T04:58:52.2475763Z [6937/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_aten.cpp.obj 2025-07-24T04:58:52.5357293Z [6938/7174] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\HigherOrderKernel.cpp.obj 2025-07-24T04:58:54.5888241Z [6939/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_boundsinference.cpp.obj 2025-07-24T04:59:00.2435355Z [6940/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_cpp_codegen.cpp.obj 2025-07-24T04:59:01.1489014Z [6941/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_ir_printer.cpp.obj 2025-07-24T04:59:05.0799399Z [6942/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_expr.cpp.obj 2025-07-24T04:59:07.7559792Z [6943/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_conv.cpp.obj 2025-07-24T04:59:07.8789147Z [6944/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_ir_verifier.cpp.obj 2025-07-24T04:59:10.7757210Z [6945/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_dynamic_shapes.cpp.obj 2025-07-24T04:59:11.6467786Z [6946/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_external_calls.cpp.obj 2025-07-24T04:59:14.3396887Z [6947/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_graph_opt.cpp.obj 2025-07-24T04:59:28.8313620Z [6948/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_memplanning.cpp.obj 2025-07-24T04:59:29.2589815Z [6949/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_memdependency.cpp.obj 2025-07-24T04:59:31.4216201Z [6950/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_kernel.cpp.obj 2025-07-24T04:59:31.5381951Z [6951/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_loopnest.cpp.obj 2025-07-24T04:59:33.9693929Z [6952/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_ops.cpp.obj 2025-07-24T04:59:37.6388338Z [6953/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_reductions.cpp.obj 2025-07-24T04:59:40.4888137Z [6954/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_quantization.cpp.obj 2025-07-24T04:59:45.9537332Z [6955/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_te_fuser_pass.cpp.obj 2025-07-24T04:59:46.0278150Z [6956/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_registerizer.cpp.obj 2025-07-24T04:59:46.5638647Z [6957/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_type.cpp.obj 2025-07-24T04:59:48.9615170Z [6958/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_type_specializations.cpp.obj 2025-07-24T04:59:50.3418742Z [6959/7174] Building CXX object test_cpp_c10d\CMakeFiles\BackoffTest.dir\BackoffTest.cpp.obj 2025-07-24T04:59:51.6314772Z [6960/7174] Building CXX object test_api\CMakeFiles\test_api.dir\__\common\main.cpp.obj 2025-07-24T04:59:55.0741212Z [6961/7174] Building CXX object test_cpp_c10d\CMakeFiles\FileStoreTest.dir\FileStoreTest.cpp.obj 2025-07-24T04:59:55.7769318Z [6962/7174] Building CXX object test_cpp_c10d\CMakeFiles\TCPStoreTest.dir\TCPStoreTest.cpp.obj 2025-07-24T04:59:58.4029253Z [6963/7174] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_simplify.cpp.obj 2025-07-24T05:00:03.0922267Z [6964/7174] Building CXX object test_cpp_c10d\CMakeFiles\ProcessGroupGlooTest.dir\ProcessGroupGlooTest.cpp.obj 2025-07-24T05:00:05.6793588Z [6965/7174] Building CXX object test_tensorexpr\CMakeFiles\tutorial_tensorexpr.dir\tutorial.cpp.obj 2025-07-24T05:00:13.5007227Z [6966/7174] Building CXX object test_api\CMakeFiles\test_api.dir\any.cpp.obj 2025-07-24T05:00:17.4495793Z [6967/7174] Building CXX object test_api\CMakeFiles\test_api.dir\enum.cpp.obj 2025-07-24T05:00:18.7667351Z [6968/7174] Building CXX object test_api\CMakeFiles\test_api.dir\expanding-array.cpp.obj 2025-07-24T05:00:18.8273068Z [6969/7174] Building CXX object test_api\CMakeFiles\test_api.dir\autograd.cpp.obj 2025-07-24T05:00:25.3852788Z [6970/7174] Building CXX object test_api\CMakeFiles\test_api.dir\fft.cpp.obj 2025-07-24T05:00:26.9673036Z [6971/7174] Building CXX object test_api\CMakeFiles\test_api.dir\memory.cpp.obj 2025-07-24T05:00:27.1859578Z [6972/7174] Building CXX object test_api\CMakeFiles\test_api.dir\dataloader.cpp.obj 2025-07-24T05:00:36.0372779Z [6973/7174] Building CXX object test_api\CMakeFiles\test_api.dir\functional.cpp.obj 2025-07-24T05:00:36.9611628Z [6974/7174] Building CXX object test_api\CMakeFiles\test_api.dir\jit.cpp.obj 2025-07-24T05:00:38.8823625Z [6975/7174] Building CXX object test_api\CMakeFiles\test_api.dir\init.cpp.obj 2025-07-24T05:00:40.7890099Z [6976/7174] Building CXX object test_api\CMakeFiles\test_api.dir\integration.cpp.obj 2025-07-24T05:00:40.9717578Z [6977/7174] Building CXX object test_api\CMakeFiles\test_api.dir\ivalue.cpp.obj 2025-07-24T05:00:47.2560345Z [6978/7174] Building CXX object test_api\CMakeFiles\test_api.dir\misc.cpp.obj 2025-07-24T05:00:47.6131829Z [6979/7174] Building CXX object test_api\CMakeFiles\test_api.dir\meta_tensor.cpp.obj 2025-07-24T05:00:56.9703895Z [6980/7174] Building CXX object test_api\CMakeFiles\test_api.dir\moduledict.cpp.obj 2025-07-24T05:00:57.9409839Z [6981/7174] Building CXX object test_api\CMakeFiles\test_api.dir\module.cpp.obj 2025-07-24T05:01:00.0534097Z [6982/7174] Building CXX object test_api\CMakeFiles\test_api.dir\nested.cpp.obj 2025-07-24T05:01:00.0845679Z [6983/7174] Building CXX object test_api\CMakeFiles\test_api.dir\modulelist.cpp.obj 2025-07-24T05:01:09.5670604Z [6984/7174] Building CXX object test_api\CMakeFiles\test_api.dir\parameterdict.cpp.obj 2025-07-24T05:01:10.6044278Z [6985/7174] Building CXX object test_api\CMakeFiles\test_api.dir\parameterlist.cpp.obj 2025-07-24T05:01:14.9511115Z [6986/7174] Building CXX object test_api\CMakeFiles\test_api.dir\modules.cpp.obj 2025-07-24T05:01:17.9521862Z [6987/7174] Building CXX object test_api\CMakeFiles\test_api.dir\namespace.cpp.obj 2025-07-24T05:01:21.9534002Z [6988/7174] Building CXX object test_api\CMakeFiles\test_api.dir\nn_utils.cpp.obj 2025-07-24T05:01:23.5456933Z [6989/7174] Building CXX object test_api\CMakeFiles\test_api.dir\ordered_dict.cpp.obj 2025-07-24T05:01:29.4375917Z [6990/7174] Building CXX object test_api\CMakeFiles\test_api.dir\optim.cpp.obj 2025-07-24T05:01:31.5421596Z [6991/7174] Building CXX object test_api\CMakeFiles\test_api.dir\rnn.cpp.obj 2025-07-24T05:01:36.8752423Z [6992/7174] Building CXX object test_api\CMakeFiles\test_api.dir\sequential.cpp.obj 2025-07-24T05:01:41.7517672Z [6993/7174] Building CXX object test_api\CMakeFiles\test_api.dir\transformer.cpp.obj 2025-07-24T05:01:42.8175932Z [6994/7174] Building CXX object test_api\CMakeFiles\test_api.dir\serialize.cpp.obj 2025-07-24T05:01:43.4788177Z [6995/7174] Building CXX object test_api\CMakeFiles\test_api.dir\special.cpp.obj 2025-07-24T05:01:43.7362194Z [6996/7174] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_cuda.cpp.obj 2025-07-24T05:01:43.8175865Z [6997/7174] Building CXX object test_api\CMakeFiles\test_api.dir\support.cpp.obj 2025-07-24T05:01:44.9806266Z [6998/7174] Building CXX object test_api\CMakeFiles\test_api.dir\static.cpp.obj 2025-07-24T05:01:58.4066023Z [6999/7174] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_indexing.cpp.obj 2025-07-24T05:02:00.6121446Z [7000/7174] Building CXX object test_api\CMakeFiles\test_api.dir\grad_mode.cpp.obj 2025-07-24T05:02:01.1805621Z [7001/7174] Building CXX object test_api\CMakeFiles\test_api.dir\inference_mode.cpp.obj 2025-07-24T05:02:01.4845058Z [7002/7174] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_options_cuda.cpp.obj 2025-07-24T05:02:02.8467160Z [7003/7174] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_options.cpp.obj 2025-07-24T05:02:02.9992626Z [7004/7174] Building CXX object test_api\CMakeFiles\test_api.dir\torch_include.cpp.obj 2025-07-24T05:02:03.6365820Z [7005/7174] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\__\common\main.cpp.obj 2025-07-24T05:02:06.6151523Z [7006/7174] Building CXX object test_api\CMakeFiles\test_api.dir\tensor.cpp.obj 2025-07-24T05:02:11.1579742Z [7007/7174] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_cache.cpp.obj 2025-07-24T05:02:12.9733714Z [7008/7174] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_ir.cpp.obj 2025-07-24T05:02:13.8480673Z [7009/7174] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_ir_util.cpp.obj 2025-07-24T05:02:14.9984770Z [7010/7174] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_permutation_util.cpp.obj 2025-07-24T05:02:15.0067368Z [7011/7174] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_misc.cpp.obj 2025-07-24T05:02:16.8398056Z [7012/7174] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_util.cpp.obj 2025-07-24T05:02:19.5209270Z [7013/7174] Building CXX object test_api\CMakeFiles\test_api.dir\operations.cpp.obj 2025-07-24T05:02:19.8059624Z [7014/7174] Building CXX object test_api\CMakeFiles\parallel_benchmark.dir\parallel_benchmark.cpp.obj 2025-07-24T05:02:21.0892288Z [7015/7174] Building CXX object test_api\CMakeFiles\test_api.dir\nested_int.cpp.obj 2025-07-24T05:02:21.2055878Z [7016/7174] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_shape.cpp.obj 2025-07-24T05:02:22.4051137Z [7017/7174] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_backend_device.cpp.obj 2025-07-24T05:02:22.7609008Z [7018/7174] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_trie_cache.cpp.obj 2025-07-24T05:02:27.9660394Z [7019/7174] Building C object functorch\CMakeFiles\functorch.dir\csrc\dim\dim_opcode.c.obj 2025-07-24T05:02:33.2553098Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(41): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-07-24T05:02:33.2554032Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-07-24T05:02:33.2554857Z [7020/7174] Building CXX object caffe2\torch\CMakeFiles\nnapi_backend.dir\csrc\jit\backends\nnapi\nnapi_backend_lib.cpp.obj 2025-07-24T05:02:34.5361036Z [7021/7174] Building CXX object functorch\CMakeFiles\functorch.dir\csrc\dim\dim.cpp.obj 2025-07-24T05:02:35.3175310Z [7022/7174] Linking C static library lib\cpuinfo_internals.lib 2025-07-24T05:02:35.4309643Z [7023/7174] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_graph_executor.cpp.obj 2025-07-24T05:02:36.1197790Z [7024/7174] Linking CXX static library lib\gmock_main.lib 2025-07-24T05:02:36.1806365Z [7025/7174] Linking CXX static library lib\benchmark_main.lib 2025-07-24T05:02:36.2165929Z [7026/7174] Linking C static library lib\libjitprofiling.lib 2025-07-24T05:02:36.5408343Z [7027/7174] Linking CXX static library lib\fmt.lib 2025-07-24T05:02:37.2360900Z [7028/7174] Linking CXX static library lib\libprotobuf-lite.lib 2025-07-24T05:02:37.7848184Z [7029/7174] Linking CXX executable bin\c10_CompileTimeFunctionPointer_test.exe 2025-07-24T05:02:37.7864455Z [7030/7174] Linking CXX executable bin\c10_DeviceGuard_test.exe 2025-07-24T05:02:38.0640529Z [7031/7174] Linking CXX executable bin\c10_Device_test.exe 2025-07-24T05:02:38.1323337Z [7032/7174] Linking CXX executable bin\c10_DispatchKeySet_test.exe 2025-07-24T05:02:38.2872111Z [7033/7174] Linking CXX executable bin\c10_StreamGuard_test.exe 2025-07-24T05:02:38.2884207Z [7034/7174] Linking CXX executable bin\c10_Scalar_test.exe 2025-07-24T05:02:38.4826252Z [7035/7174] Linking CXX executable bin\c10_SymInt_test.exe 2025-07-24T05:02:38.4839072Z [7036/7174] Linking CXX executable bin\c10_InlineDeviceGuard_test.exe 2025-07-24T05:02:38.5211159Z [7037/7174] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_ops_util.cpp.obj 2025-07-24T05:02:38.7143816Z [7038/7174] Linking CXX executable bin\c10_InlineStreamGuard_test.exe 2025-07-24T05:02:38.7155559Z [7039/7174] Linking CXX executable bin\c10_SizesAndStrides_test.exe 2025-07-24T05:02:38.9165111Z [7040/7174] Building CXX object caffe2\torch\CMakeFiles\nnapi_backend.dir\csrc\jit\backends\nnapi\nnapi_backend_preprocess.cpp.obj 2025-07-24T05:02:38.9179459Z [7041/7174] Linking CXX executable bin\c10_ArrayRef_test.exe 2025-07-24T05:02:38.9189250Z [7042/7174] Linking CXX executable bin\c10_cow_test.exe 2025-07-24T05:02:38.9343533Z [7043/7174] Linking CXX executable bin\c10_Bitset_test.exe 2025-07-24T05:02:39.1235658Z [7044/7174] Linking CXX executable bin\c10_DeadlockDetection_test.exe 2025-07-24T05:02:39.1371301Z [7045/7174] Linking CXX executable bin\c10_ConstexprCrc_test.exe 2025-07-24T05:02:39.1777789Z [7046/7174] Linking CXX executable bin\c10_Half_test.exe 2025-07-24T05:02:39.3052077Z [7047/7174] Linking CXX executable bin\c10_Enumerate_test.exe 2025-07-24T05:02:39.3844150Z [7048/7174] Linking CXX executable bin\c10_IntrusiveList_test.exe 2025-07-24T05:02:39.5604055Z [7049/7174] Linking CXX executable bin\c10_LeftRight_test.exe 2025-07-24T05:02:39.5615544Z [7050/7174] Linking CXX executable bin\c10_NetworkFlow_test.exe 2025-07-24T05:02:39.5626637Z [7051/7174] Linking CXX executable bin\c10_Metaprogramming_test.exe 2025-07-24T05:02:39.5856947Z [7052/7174] Linking CXX executable bin\c10_Semaphore_test.exe 2025-07-24T05:02:39.7592325Z [7053/7174] Linking CXX executable bin\c10_Synchronized_test.exe 2025-07-24T05:02:39.7684911Z [7054/7174] Linking CXX executable bin\c10_TypeList_test.exe 2025-07-24T05:02:39.7969183Z [7055/7174] Linking CXX executable bin\c10_TypeIndex_test.exe 2025-07-24T05:02:39.9107854Z [7056/7174] Linking CXX executable bin\c10_ThreadLocal_test.exe 2025-07-24T05:02:39.9140268Z [7057/7174] Linking CXX executable bin\c10_TypeTraits_test.exe 2025-07-24T05:02:40.0191526Z [7058/7174] Linking CXX executable bin\c10_accumulate_test.exe 2025-07-24T05:02:40.1279036Z [7059/7174] Linking CXX executable bin\c10_bit_cast_test.exe 2025-07-24T05:02:40.1290021Z [7060/7174] Linking CXX executable bin\c10_bfloat16_test.exe 2025-07-24T05:02:40.1762787Z [7061/7174] Linking CXX executable bin\c10_complex_math_test.exe 2025-07-24T05:02:40.3305343Z [7062/7174] Linking CXX executable bin\c10_error_test.exe 2025-07-24T05:02:40.3407384Z [7063/7174] Linking CXX executable bin\c10_complex_test.exe 2025-07-24T05:02:40.3776843Z [7064/7174] Linking CXX executable bin\c10_exception_test.exe 2025-07-24T05:02:40.4519865Z [7065/7174] Linking CXX executable bin\c10_flags_test.exe 2025-07-24T05:02:40.5119854Z [7066/7174] Linking CXX executable bin\c10_generic_math_test.exe 2025-07-24T05:02:40.5808926Z [7067/7174] Linking CXX executable bin\c10_irange_test.exe 2025-07-24T05:02:40.6905538Z [7068/7174] Linking CXX executable bin\c10_lazy_test.exe 2025-07-24T05:02:41.0882108Z [7069/7174] Linking CXX executable bin\c10_logging_test.exe 2025-07-24T05:02:42.6387044Z [7070/7174] Linking CXX executable bin\c10_registry_test.exe 2025-07-24T05:02:42.8082291Z [7071/7174] Linking CXX executable bin\c10_ordered_preserving_dict_test.exe 2025-07-24T05:02:43.1037949Z [7072/7174] Linking CXX executable bin\c10_optional_test.exe 2025-07-24T05:02:43.2453900Z [7073/7174] Linking CXX executable bin\c10_ssize_test.exe 2025-07-24T05:02:43.4386114Z [7074/7174] Linking CXX executable bin\c10_string_view_test.exe 2025-07-24T05:02:43.4425406Z [7075/7174] Linking CXX executable bin\c10_string_util_test.exe 2025-07-24T05:02:43.6378911Z [7076/7174] Linking CXX executable bin\c10_tempfile_test.exe 2025-07-24T05:02:43.7850269Z [7077/7174] Linking CXX executable bin\c10_typeid_test.exe 2025-07-24T05:02:43.8080757Z [7078/7174] Linking CXX executable bin\c10_intrusive_ptr_test.exe 2025-07-24T05:02:43.9377394Z [7079/7174] Linking C executable sleef\bin\mkrename_gnuabi.exe 2025-07-24T05:02:43.9576842Z [7080/7174] Linking C shared library bin\torch_global_deps.dll 2025-07-24T05:02:44.0612911Z [7081/7174] Linking C executable sleef\bin\mkmasked_gnuabi.exe 2025-07-24T05:02:44.1925460Z [7082/7174] Linking C executable sleef\bin\addSuffix.exe 2025-07-24T05:02:44.6693664Z [7083/7174] Linking CXX executable bin\c10_small_vector_test.exe 2025-07-24T05:02:44.8294508Z [7084/7174] Linking CXX executable bin\c10_intrusive_ptr_benchmark.exe 2025-07-24T05:02:49.2377310Z [7085/7174] Building CXX object functorch\CMakeFiles\functorch.dir\csrc\init_dim_only.cpp.obj 2025-07-24T05:02:49.3057764Z [7086/7174] Building C object sleef\src\common\CMakeFiles\arraymap.dir\arraymap.c.obj 2025-07-24T05:02:50.0093929Z [7087/7174] Linking C static library lib\microkernels-all.lib 2025-07-24T05:02:53.3140067Z [7088/7174] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_ops.cpp.obj 2025-07-24T05:11:49.9195016Z [7089/7174] Linking CXX shared library bin\torch_cpu.dll 2025-07-24T05:11:50.6454643Z [7090/7174] Linking CXX shared library bin\torch.dll 2025-07-24T05:11:50.9168605Z [7091/7174] Linking CXX shared library bin\shm.dll 2025-07-24T05:11:51.1404310Z [7092/7174] Linking CXX executable bin\FileStoreTest.exe 2025-07-24T05:11:51.1606379Z [7093/7174] Linking CXX executable bin\TCPStoreTest.exe 2025-07-24T05:11:51.1647624Z [7094/7174] Linking CXX executable bin\ProcessGroupGlooTest.exe 2025-07-24T05:11:51.1725659Z [7095/7174] Linking CXX executable bin\BackoffTest.exe 2025-07-24T05:11:51.3649331Z [7096/7174] Linking CXX shared library bin\jitbackend_test.dll 2025-07-24T05:11:51.6135791Z [7097/7174] Linking CXX executable bin\Dimname_test.exe 2025-07-24T05:11:51.9636681Z [7098/7174] Linking CXX shared library bin\backend_with_compiler.dll 2025-07-24T05:11:52.0187287Z [7099/7174] Linking CXX executable bin\Dict_test.exe 2025-07-24T05:11:52.2568730Z [7100/7174] Linking CXX executable bin\NamedTensor_test.exe 2025-07-24T05:11:52.2581322Z [7101/7174] Linking CXX executable bin\MaybeOwned_test.exe 2025-07-24T05:11:52.6119666Z [7102/7174] Linking CXX executable bin\apply_utils_test.exe 2025-07-24T05:11:52.7315126Z [7103/7174] Linking CXX executable bin\atest.exe 2025-07-24T05:11:52.7786810Z [7104/7174] Linking CXX executable bin\broadcast_test.exe 2025-07-24T05:11:52.9486621Z [7105/7174] Linking CXX executable bin\basic.exe 2025-07-24T05:11:53.2067008Z [7106/7174] Linking CXX executable bin\cpu_allocator_test.exe 2025-07-24T05:11:53.3046211Z [7107/7174] Linking CXX executable bin\cpu_profiling_allocator_test.exe 2025-07-24T05:11:53.3545350Z [7108/7174] Linking CXX executable bin\cpu_generator_test.exe 2025-07-24T05:11:53.6668520Z [7109/7174] Linking CXX executable bin\dlconvertor_test.exe 2025-07-24T05:11:53.9096026Z [7110/7174] Linking CXX executable bin\half_test.exe 2025-07-24T05:11:53.9609939Z [7111/7174] Linking CXX executable bin\extension_backend_test.exe 2025-07-24T05:11:54.3658725Z [7112/7174] Linking CXX executable bin\lazy_tensor_test.exe 2025-07-24T05:11:54.4029696Z [7113/7174] Linking CXX executable bin\math_kernel_test.exe 2025-07-24T05:11:54.8723714Z [7114/7174] Linking CXX executable bin\memory_format_test.exe 2025-07-24T05:11:54.8987588Z [7115/7174] Linking CXX executable bin\ivalue_test.exe 2025-07-24T05:11:54.9420531Z [7116/7174] Linking CXX executable bin\memory_overlapping_test.exe 2025-07-24T05:11:55.3202783Z [7117/7174] Linking CXX executable bin\operator_name_test.exe 2025-07-24T05:11:55.4049342Z [7118/7174] Linking CXX executable bin\mobile_memory_cleanup.exe 2025-07-24T05:11:55.4691170Z [7119/7174] Linking CXX executable bin\native_test.exe 2025-07-24T05:11:55.5212744Z [7120/7174] Linking CXX executable bin\cpu_rng_test.exe 2025-07-24T05:11:55.7536941Z [7121/7174] Linking CXX executable bin\operators_test.exe 2025-07-24T05:11:55.8991921Z [7122/7174] Linking CXX executable bin\packedtensoraccessor_test.exe 2025-07-24T05:11:56.0750151Z [7123/7174] Linking CXX executable bin\quantized_test.exe 2025-07-24T05:11:56.1814233Z [7124/7174] Linking CXX executable bin\reduce_ops_test.exe 2025-07-24T05:11:56.2690386Z [7125/7174] Linking CXX executable bin\pow_test.exe 2025-07-24T05:11:56.3779549Z [7126/7174] Linking CXX executable bin\reportMemoryUsage_test.exe 2025-07-24T05:11:56.6111928Z [7127/7174] Linking CXX executable bin\scalar_tensor_test.exe 2025-07-24T05:11:56.7986733Z [7128/7174] Linking CXX executable bin\StorageUtils_test.exe 2025-07-24T05:11:56.8458006Z [7129/7174] Linking CXX executable bin\scalar_test.exe 2025-07-24T05:11:56.9056167Z [7130/7174] Linking CXX executable bin\stride_properties_test.exe 2025-07-24T05:11:57.2456965Z [7131/7174] Linking CXX executable bin\thread_init_test.exe 2025-07-24T05:11:57.3162375Z [7132/7174] Linking CXX executable bin\type_ptr_test.exe 2025-07-24T05:11:57.3202918Z [7133/7174] Linking CXX executable bin\test_parallel.exe 2025-07-24T05:11:57.7040255Z [7134/7174] Linking CXX executable bin\vec_test_all_types_DEFAULT.exe 2025-07-24T05:11:57.7388360Z [7135/7174] Linking CXX executable bin\verify_api_visibility.exe 2025-07-24T05:11:57.7820914Z [7136/7174] Linking CXX executable bin\tensor_iterator_test.exe 2025-07-24T05:11:57.7926615Z [7137/7174] Linking CXX executable bin\undefined_tensor_test.exe 2025-07-24T05:11:57.8518948Z [7138/7174] Linking CXX executable bin\type_test.exe 2025-07-24T05:11:58.2375810Z [7139/7174] Linking CXX executable bin\weakref_test.exe 2025-07-24T05:11:58.2910650Z [7140/7174] Linking CXX executable bin\wrapdim_test.exe 2025-07-24T05:11:58.2942589Z [7141/7174] Linking CXX executable bin\xla_tensor_test.exe 2025-07-24T05:11:58.5343596Z [7142/7174] Linking CXX executable bin\vec_test_all_types_AVX2.exe 2025-07-24T05:11:58.5579710Z [7143/7174] Linking CXX executable bin\IListRef_test.exe 2025-07-24T05:11:58.5746190Z [7144/7174] Linking CXX executable bin\legacy_vmap_test.exe 2025-07-24T05:11:59.1317301Z [7145/7174] Linking CXX executable bin\KernelFunction_test.exe 2025-07-24T05:11:59.1437538Z [7146/7174] Linking CXX executable bin\vec_test_all_types_AVX512.exe 2025-07-24T05:11:59.6631393Z [7147/7174] Linking CXX executable bin\List_test.exe 2025-07-24T05:11:59.7914181Z [7148/7174] Linking CXX executable bin\kernel_stackbased_test.exe 2025-07-24T05:12:00.0198125Z [7149/7174] Linking CXX executable bin\CppSignature_test.exe 2025-07-24T05:12:00.3004620Z [7150/7174] Linking CXX executable bin\op_allowlist_test.exe 2025-07-24T05:12:00.3696887Z [7151/7174] Linking CXX executable bin\backend_fallback_test.exe 2025-07-24T05:12:00.4053392Z [7152/7174] Linking CXX executable bin\kernel_function_test.exe 2025-07-24T05:12:00.8016409Z [7153/7174] Linking CXX executable bin\make_boxed_from_unboxed_functor_test.exe 2025-07-24T05:12:00.8389220Z [7154/7174] Linking CXX executable bin\kernel_lambda_test.exe 2025-07-24T05:12:01.3093408Z [7155/7174] Linking CXX executable bin\kernel_function_legacy_test.exe 2025-07-24T05:12:01.3456928Z [7156/7174] Linking CXX executable bin\inline_container_test.exe 2025-07-24T05:12:02.1021041Z [7157/7174] Linking CXX executable bin\kernel_lambda_legacy_test.exe 2025-07-24T05:12:02.3150348Z [7158/7174] Linking CXX shared library bin\aoti_custom_ops.dll 2025-07-24T05:12:02.7178283Z [7159/7174] Linking CXX executable bin\tutorial_tensorexpr.exe 2025-07-24T05:12:03.1504710Z [7160/7174] Linking CXX executable bin\parallel_benchmark.exe 2025-07-24T05:12:04.2771174Z [7161/7174] Linking CXX shared library bin\torchbind_test.dll 2025-07-24T05:12:10.5359574Z [7162/7174] Linking CXX executable bin\test_lazy.exe 2025-07-24T05:12:12.2683426Z [7163/7174] Linking CXX executable bin\op_registration_test.exe 2025-07-24T05:12:17.7377920Z [7164/7174] Linking CXX executable bin\test_tensorexpr.exe 2025-07-24T05:12:17.9717778Z [7165/7174] Linking CXX executable bin\test_nativert.exe 2025-07-24T05:12:24.9041717Z [7166/7174] Linking CXX executable bin\test_jit.exe 2025-07-24T05:12:24.9086391Z [7167/7174] Linking CXX executable bin\test_api.exe 2025-07-24T05:12:44.3905911Z [7168/7174] Linking CXX shared library bin\torch_python.dll 2025-07-24T05:12:44.8250096Z [7169/7174] Linking CXX shared module functorch\functorch.pyd 2025-07-24T05:12:44.8641848Z [7170/7174] Linking CXX shared library bin\nnapi_backend.dll 2025-07-24T05:12:44.8642846Z [7170/7174] Install the project... 2025-07-24T05:12:44.8866189Z -- Install configuration: "Release" 2025-07-24T05:18:13.0848948Z Could not find an up-to-date installation of `packaging`. License expressions might not be validated. To enforce validation, please install `packaging>=24.2`. 2025-07-24T05:18:13.1393382Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\config\_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated 2025-07-24T05:18:13.1394380Z !! 2025-07-24T05:18:13.1394491Z 2025-07-24T05:18:13.1394630Z ******************************************************************************** 2025-07-24T05:18:13.1401931Z Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0). 2025-07-24T05:18:13.1403019Z 2025-07-24T05:18:13.1403262Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-07-24T05:18:13.1412419Z or your builds will no longer be supported. 2025-07-24T05:18:13.1412659Z 2025-07-24T05:18:13.1413014Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-07-24T05:18:13.1417645Z ******************************************************************************** 2025-07-24T05:18:13.1417865Z 2025-07-24T05:18:13.1417932Z !! 2025-07-24T05:18:13.1418129Z corresp(dist, value, root_dir) 2025-07-24T05:18:13.5953217Z running bdist_wheel 2025-07-24T05:18:21.3352998Z running build 2025-07-24T05:18:21.3353251Z running build_py 2025-07-24T05:18:21.3442322Z creating build\lib.win-amd64-cpython-39\functorch 2025-07-24T05:18:21.3446654Z copying functorch\__init__.py -> build\lib.win-amd64-cpython-39\functorch 2025-07-24T05:18:21.3467234Z creating build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:21.3470686Z copying torch\functional.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:21.5127183Z copying torch\hub.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:21.5148137Z copying torch\library.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:21.5178551Z copying torch\overrides.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:21.7266312Z copying torch\quasirandom.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:21.7283818Z copying torch\random.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:21.7299753Z copying torch\return_types.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:21.7309844Z copying torch\serialization.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:21.8064519Z copying torch\storage.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:21.9076277Z copying torch\torch_version.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.0694382Z copying torch\types.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.0723349Z copying torch\version.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.0729264Z copying torch\_appdirs.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.0745257Z copying torch\_classes.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.0754988Z copying torch\_compile.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.0765820Z copying torch\_custom_ops.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.0776329Z copying torch\_deploy.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.0787389Z copying torch\_environment.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.0793248Z copying torch\_guards.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.0821989Z copying torch\_jit_internal.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.1674538Z copying torch\_linalg_utils.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.1689000Z copying torch\_lobpcg.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.1710645Z copying torch\_lowrank.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.1721769Z copying torch\_meta_registrations.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.2708601Z copying torch\_namedtensor_internals.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.2719915Z copying torch\_ops.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.3409464Z copying torch\_python_dispatcher.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.3420343Z copying torch\_size_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.4689657Z copying torch\_sources.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.4718926Z copying torch\_storage_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.4733959Z copying torch\_streambase.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.4740092Z copying torch\_tensor.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.5927360Z copying torch\_tensor_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.6017168Z copying torch\_tensor_str.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.6017790Z copying torch\_thread_safe_fork.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.6018297Z copying torch\_torch_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.6354277Z copying torch\_utils.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.6376159Z copying torch\_utils_internal.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.6382146Z copying torch\_VF.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.6388184Z copying torch\_vmap_internals.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.6399621Z copying torch\_weights_only_unpickler.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.6415830Z copying torch\__config__.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.6421494Z copying torch\__future__.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.6431453Z copying torch\__init__.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:22.6831115Z creating build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:18:22.6833544Z copying torchgen\code_template.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:18:22.7587600Z copying torchgen\context.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:18:22.7600530Z copying torchgen\gen.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:18:22.7652120Z copying torchgen\gen_aoti_c_shim.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:18:22.7669597Z copying torchgen\gen_backend_stubs.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:18:22.7699883Z copying torchgen\gen_functionalization_type.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:18:22.7718809Z copying torchgen\gen_lazy_tensor.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:18:22.7733701Z copying torchgen\gen_schema_utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:18:22.7752160Z copying torchgen\gen_vmap_plumbing.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:18:22.7761181Z copying torchgen\local.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:18:22.7771122Z copying torchgen\model.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:18:22.9033061Z copying torchgen\native_function_generation.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:18:22.9084181Z copying torchgen\utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:18:22.9084747Z copying torchgen\yaml_utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:18:22.9096901Z copying torchgen\__init__.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:18:22.9097459Z creating build\lib.win-amd64-cpython-39\functorch\compile 2025-07-24T05:18:22.9099247Z copying functorch\compile\__init__.py -> build\lib.win-amd64-cpython-39\functorch\compile 2025-07-24T05:18:22.9128592Z creating build\lib.win-amd64-cpython-39\functorch\dim 2025-07-24T05:18:22.9129307Z copying functorch\dim\batch_tensor.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-24T05:18:22.9129962Z copying functorch\dim\delayed_mul_tensor.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-24T05:18:22.9140772Z copying functorch\dim\dim.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-24T05:18:22.9150548Z copying functorch\dim\magic_trace.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-24T05:18:22.9163707Z copying functorch\dim\op_properties.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-24T05:18:22.9180747Z copying functorch\dim\reference.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-24T05:18:22.9195381Z copying functorch\dim\tree_map.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-24T05:18:22.9200756Z copying functorch\dim\wrap_type.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-24T05:18:22.9216660Z copying functorch\dim\__init__.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-24T05:18:22.9228048Z creating build\lib.win-amd64-cpython-39\functorch\einops 2025-07-24T05:18:22.9230968Z copying functorch\einops\rearrange.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-07-24T05:18:22.9255562Z copying functorch\einops\_parsing.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-07-24T05:18:22.9265372Z copying functorch\einops\__init__.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-07-24T05:18:22.9272644Z creating build\lib.win-amd64-cpython-39\functorch\experimental 2025-07-24T05:18:22.9285918Z copying functorch\experimental\control_flow.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-07-24T05:18:22.9287388Z copying functorch\experimental\ops.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-07-24T05:18:22.9292761Z copying functorch\experimental\__init__.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-07-24T05:18:22.9299666Z creating build\lib.win-amd64-cpython-39\functorch\_src 2025-07-24T05:18:22.9301834Z copying functorch\_src\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src 2025-07-24T05:18:22.9307596Z creating build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd 2025-07-24T05:18:22.9316348Z copying functorch\_src\aot_autograd\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd 2025-07-24T05:18:22.9317075Z creating build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms 2025-07-24T05:18:22.9319936Z copying functorch\_src\eager_transforms\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms 2025-07-24T05:18:22.9327726Z creating build\lib.win-amd64-cpython-39\functorch\_src\make_functional 2025-07-24T05:18:22.9334629Z copying functorch\_src\make_functional\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\make_functional 2025-07-24T05:18:22.9340935Z creating build\lib.win-amd64-cpython-39\functorch\_src\vmap 2025-07-24T05:18:22.9351392Z copying functorch\_src\vmap\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\vmap 2025-07-24T05:18:22.9351965Z creating build\lib.win-amd64-cpython-39\torch\accelerator 2025-07-24T05:18:22.9353577Z copying torch\accelerator\_utils.py -> build\lib.win-amd64-cpython-39\torch\accelerator 2025-07-24T05:18:22.9368786Z copying torch\accelerator\__init__.py -> build\lib.win-amd64-cpython-39\torch\accelerator 2025-07-24T05:18:22.9380079Z creating build\lib.win-amd64-cpython-39\torch\amp 2025-07-24T05:18:22.9382603Z copying torch\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-07-24T05:18:22.9532580Z copying torch\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-07-24T05:18:22.9552711Z copying torch\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-07-24T05:18:22.9559838Z creating build\lib.win-amd64-cpython-39\torch\ao 2025-07-24T05:18:22.9566492Z copying torch\ao\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao 2025-07-24T05:18:22.9570601Z creating build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:18:22.9579976Z copying torch\autograd\anomaly_mode.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:18:23.0555159Z copying torch\autograd\forward_ad.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:18:23.0555886Z copying torch\autograd\function.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:18:23.0574582Z copying torch\autograd\functional.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:18:23.0603471Z copying torch\autograd\gradcheck.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:18:23.0653571Z copying torch\autograd\grad_mode.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:18:23.0675545Z copying torch\autograd\graph.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:18:23.0690166Z copying torch\autograd\profiler.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:18:23.0715042Z copying torch\autograd\profiler_legacy.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:18:23.0732348Z copying torch\autograd\profiler_util.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:18:23.0753662Z copying torch\autograd\variable.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:18:23.0764072Z copying torch\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:18:23.0779066Z creating build\lib.win-amd64-cpython-39\torch\backends 2025-07-24T05:18:23.0789242Z copying torch\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends 2025-07-24T05:18:23.0799537Z creating build\lib.win-amd64-cpython-39\torch\compiler 2025-07-24T05:18:23.0802267Z copying torch\compiler\config.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-07-24T05:18:23.0830619Z copying torch\compiler\_cache.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-07-24T05:18:23.0839741Z copying torch\compiler\__init__.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-07-24T05:18:23.0857330Z creating build\lib.win-amd64-cpython-39\torch\contrib 2025-07-24T05:18:23.0872997Z copying torch\contrib\_tensorboard_vis.py -> build\lib.win-amd64-cpython-39\torch\contrib 2025-07-24T05:18:23.0881692Z copying torch\contrib\__init__.py -> build\lib.win-amd64-cpython-39\torch\contrib 2025-07-24T05:18:23.0887562Z creating build\lib.win-amd64-cpython-39\torch\cpu 2025-07-24T05:18:23.0898620Z copying torch\cpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\cpu 2025-07-24T05:18:23.0910737Z creating build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:18:23.0913647Z copying torch\cuda\comm.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:18:23.0925580Z copying torch\cuda\error.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:18:23.0926293Z copying torch\cuda\gds.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:18:23.0935764Z copying torch\cuda\graphs.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:18:23.0959947Z copying torch\cuda\jiterator.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:18:23.0971761Z copying torch\cuda\memory.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:18:23.0997158Z copying torch\cuda\nccl.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:18:23.1013159Z copying torch\cuda\nvtx.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:18:23.1021840Z copying torch\cuda\profiler.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:18:23.1044582Z copying torch\cuda\random.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:18:23.1050286Z copying torch\cuda\sparse.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:18:23.1056301Z copying torch\cuda\streams.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:18:23.1075678Z copying torch\cuda\tunable.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:18:23.1125457Z copying torch\cuda\_gpu_trace.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:18:23.1133705Z copying torch\cuda\_memory_viz.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:18:23.1134331Z copying torch\cuda\_pin_memory_utils.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:18:23.1134920Z copying torch\cuda\_sanitizer.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:18:23.1214519Z copying torch\cuda\_utils.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:18:23.1375781Z copying torch\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:18:23.1381955Z creating build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:18:23.1385478Z copying torch\distributed\argparse_util.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:18:23.1395522Z copying torch\distributed\c10d_logger.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:18:23.1405969Z copying torch\distributed\collective_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:18:23.2230383Z copying torch\distributed\constants.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:18:23.2240961Z copying torch\distributed\device_mesh.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:18:23.2270434Z copying torch\distributed\distributed_c10d.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:18:23.3242024Z copying torch\distributed\launch.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:18:23.4088793Z copying torch\distributed\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:18:23.4094824Z copying torch\distributed\remote_device.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:18:23.5341570Z copying torch\distributed\rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:18:23.5371891Z copying torch\distributed\run.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:18:23.6318369Z copying torch\distributed\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:18:23.7257875Z copying torch\distributed\_checkpointable.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:18:23.7270494Z copying torch\distributed\_composable_state.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:18:23.7281223Z copying torch\distributed\_dist2.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:18:23.7292983Z copying torch\distributed\_functional_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:18:23.7312572Z copying torch\distributed\_functional_collectives_impl.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:18:23.7322350Z copying torch\distributed\_serialization.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:18:23.7333643Z copying torch\distributed\_state_dict_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:18:23.8418723Z copying torch\distributed\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:18:23.8437414Z creating build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.8440826Z copying torch\distributions\bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.8451745Z copying torch\distributions\beta.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.8462130Z copying torch\distributions\binomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.8472563Z copying torch\distributions\categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.8486912Z copying torch\distributions\cauchy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.8956498Z copying torch\distributions\chi2.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.8966976Z copying torch\distributions\constraints.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.8982369Z copying torch\distributions\constraint_registry.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.8993379Z copying torch\distributions\continuous_bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9003755Z copying torch\distributions\dirichlet.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9014028Z copying torch\distributions\distribution.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9024872Z copying torch\distributions\exponential.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9035169Z copying torch\distributions\exp_family.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9044962Z copying torch\distributions\fishersnedecor.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9055233Z copying torch\distributions\gamma.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9070612Z copying torch\distributions\generalized_pareto.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9087819Z copying torch\distributions\geometric.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9100029Z copying torch\distributions\gumbel.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9109943Z copying torch\distributions\half_cauchy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9120186Z copying torch\distributions\half_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9131148Z copying torch\distributions\independent.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9141505Z copying torch\distributions\inverse_gamma.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9167406Z copying torch\distributions\kl.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9188676Z copying torch\distributions\kumaraswamy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9198412Z copying torch\distributions\laplace.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9208551Z copying torch\distributions\lkj_cholesky.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9219584Z copying torch\distributions\logistic_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9229939Z copying torch\distributions\log_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9240316Z copying torch\distributions\lowrank_multivariate_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9251655Z copying torch\distributions\mixture_same_family.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9262536Z copying torch\distributions\multinomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9273115Z copying torch\distributions\multivariate_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9288159Z copying torch\distributions\negative_binomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9298528Z copying torch\distributions\normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9308641Z copying torch\distributions\one_hot_categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9318755Z copying torch\distributions\pareto.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9328245Z copying torch\distributions\poisson.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9337960Z copying torch\distributions\relaxed_bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9348280Z copying torch\distributions\relaxed_categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9358417Z copying torch\distributions\studentT.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9368402Z copying torch\distributions\transformed_distribution.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9385190Z copying torch\distributions\transforms.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9401715Z copying torch\distributions\uniform.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9410933Z copying torch\distributions\utils.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9420503Z copying torch\distributions\von_mises.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9434443Z copying torch\distributions\weibull.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9443896Z copying torch\distributions\wishart.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9455258Z copying torch\distributions\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:18:23.9471342Z creating build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:18:23.9474351Z copying torch\export\custom_obj.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:18:23.9480601Z copying torch\export\custom_ops.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:18:23.9492968Z copying torch\export\decomp_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:18:24.0389986Z copying torch\export\dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:18:24.0424913Z copying torch\export\exported_program.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:18:24.0463833Z copying torch\export\graph_signature.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:18:24.0480287Z copying torch\export\unflatten.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:18:24.0514599Z copying torch\export\_draft_export.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:18:24.0530368Z copying torch\export\_remove_auto_functionalized_pass.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:18:24.0540414Z copying torch\export\_remove_effect_tokens_pass.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:18:24.0550572Z copying torch\export\_safeguard.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:18:24.0560231Z copying torch\export\_swap.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:18:24.0574456Z copying torch\export\_trace.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:18:24.0614243Z copying torch\export\_tree_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:18:24.0624483Z copying torch\export\_unlift.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:18:24.0639664Z copying torch\export\_wrapper_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:18:24.0645045Z copying torch\export\__init__.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:18:24.0661548Z creating build\lib.win-amd64-cpython-39\torch\fft 2025-07-24T05:18:24.0664586Z copying torch\fft\__init__.py -> build\lib.win-amd64-cpython-39\torch\fft 2025-07-24T05:18:24.0694059Z creating build\lib.win-amd64-cpython-39\torch\func 2025-07-24T05:18:24.0696864Z copying torch\func\__init__.py -> build\lib.win-amd64-cpython-39\torch\func 2025-07-24T05:18:24.0703407Z creating build\lib.win-amd64-cpython-39\torch\futures 2025-07-24T05:18:24.0706332Z copying torch\futures\__init__.py -> build\lib.win-amd64-cpython-39\torch\futures 2025-07-24T05:18:24.0725076Z creating build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:18:24.0728366Z copying torch\fx\annotate.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:18:24.0737988Z copying torch\fx\config.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:18:24.0743363Z copying torch\fx\graph.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:18:24.1842629Z copying torch\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:18:24.1862497Z copying torch\fx\immutable_collections.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:18:24.1882653Z copying torch\fx\interpreter.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:18:24.1899686Z copying torch\fx\node.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:18:24.1920567Z copying torch\fx\operator_schemas.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:18:24.1938120Z copying torch\fx\proxy.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:18:24.1956129Z copying torch\fx\subgraph_rewriter.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:18:24.1974826Z copying torch\fx\tensor_type.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:18:24.1985031Z copying torch\fx\traceback.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:18:24.1998625Z copying torch\fx\_compatibility.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:18:24.2008740Z copying torch\fx\_graph_pickler.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:18:24.2025138Z copying torch\fx\_lazy_graph_module.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:18:24.2035904Z copying torch\fx\_pytree.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:18:24.2047568Z copying torch\fx\_symbolic_trace.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:18:24.2084395Z copying torch\fx\_utils.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:18:24.2095091Z copying torch\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:18:24.2125160Z creating build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2125631Z copying torch\jit\annotations.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2142722Z copying torch\jit\frontend.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2156301Z copying torch\jit\generate_bytecode.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2167620Z copying torch\jit\quantized.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2189731Z copying torch\jit\supported_ops.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2201759Z copying torch\jit\unsupported_tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2212142Z copying torch\jit\_async.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2221678Z copying torch\jit\_await.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2231446Z copying torch\jit\_builtins.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2241331Z copying torch\jit\_check.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2252426Z copying torch\jit\_dataclass_impls.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2263361Z copying torch\jit\_decompositions.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2273233Z copying torch\jit\_decomposition_utils.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2278917Z copying torch\jit\_freeze.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2293489Z copying torch\jit\_fuser.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2306128Z copying torch\jit\_ir_utils.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2315299Z copying torch\jit\_logging.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2320947Z copying torch\jit\_monkeytype_config.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2331255Z copying torch\jit\_pickle.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2340770Z copying torch\jit\_recursive.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2359280Z copying torch\jit\_script.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2387944Z copying torch\jit\_serialization.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2399671Z copying torch\jit\_shape_functions.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2437146Z copying torch\jit\_state.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2446738Z copying torch\jit\_trace.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2471169Z copying torch\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:24.2482216Z creating build\lib.win-amd64-cpython-39\torch\linalg 2025-07-24T05:18:24.2485427Z copying torch\linalg\__init__.py -> build\lib.win-amd64-cpython-39\torch\linalg 2025-07-24T05:18:24.2544077Z creating build\lib.win-amd64-cpython-39\torch\masked 2025-07-24T05:18:24.2557000Z copying torch\masked\_docs.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-07-24T05:18:24.2579300Z copying torch\masked\_ops.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-07-24T05:18:24.2612346Z copying torch\masked\__init__.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-07-24T05:18:24.2623213Z creating build\lib.win-amd64-cpython-39\torch\monitor 2025-07-24T05:18:24.2626118Z copying torch\monitor\__init__.py -> build\lib.win-amd64-cpython-39\torch\monitor 2025-07-24T05:18:24.2637241Z creating build\lib.win-amd64-cpython-39\torch\mps 2025-07-24T05:18:24.2640028Z copying torch\mps\event.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-07-24T05:18:24.2649654Z copying torch\mps\profiler.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-07-24T05:18:24.2658951Z copying torch\mps\__init__.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-07-24T05:18:24.2669794Z creating build\lib.win-amd64-cpython-39\torch\mtia 2025-07-24T05:18:24.2673004Z copying torch\mtia\memory.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-07-24T05:18:24.2682485Z copying torch\mtia\_utils.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-07-24T05:18:24.2693464Z copying torch\mtia\__init__.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-07-24T05:18:24.2721694Z creating build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-07-24T05:18:24.2724668Z copying torch\multiprocessing\pool.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-07-24T05:18:24.2734257Z copying torch\multiprocessing\queue.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-07-24T05:18:24.2743979Z copying torch\multiprocessing\reductions.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-07-24T05:18:24.2758617Z copying torch\multiprocessing\spawn.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-07-24T05:18:24.2768628Z copying torch\multiprocessing\_atfork.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-07-24T05:18:24.2788220Z copying torch\multiprocessing\__init__.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-07-24T05:18:24.2798471Z creating build\lib.win-amd64-cpython-39\torch\nested 2025-07-24T05:18:24.2801398Z copying torch\nested\__init__.py -> build\lib.win-amd64-cpython-39\torch\nested 2025-07-24T05:18:24.2818735Z creating build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:18:24.2821676Z copying torch\nn\common_types.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:18:24.2831551Z copying torch\nn\cpp.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:18:24.2841170Z copying torch\nn\functional.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:18:24.3734470Z copying torch\nn\grad.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:18:24.3744808Z copying torch\nn\init.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:18:24.3770559Z copying torch\nn\parameter.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:18:24.4846176Z copying torch\nn\_reduction.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:18:24.4875178Z copying torch\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:18:24.4890254Z creating build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.4893225Z copying torch\onnx\errors.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.5632677Z copying torch\onnx\operators.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.5643017Z copying torch\onnx\symbolic_helper.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.5677900Z copying torch\onnx\symbolic_opset10.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.5712522Z copying torch\onnx\symbolic_opset11.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.5743971Z copying torch\onnx\symbolic_opset12.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.5753576Z copying torch\onnx\symbolic_opset13.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.6389868Z copying torch\onnx\symbolic_opset14.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.6401111Z copying torch\onnx\symbolic_opset15.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.6411066Z copying torch\onnx\symbolic_opset16.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.6421735Z copying torch\onnx\symbolic_opset17.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.6432844Z copying torch\onnx\symbolic_opset18.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.6443656Z copying torch\onnx\symbolic_opset19.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.6449567Z copying torch\onnx\symbolic_opset20.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.6459519Z copying torch\onnx\symbolic_opset7.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.6469656Z copying torch\onnx\symbolic_opset8.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.6481073Z copying torch\onnx\symbolic_opset9.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.6570715Z copying torch\onnx\utils.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.6608386Z copying torch\onnx\verification.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.6637449Z copying torch\onnx\_constants.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.6653054Z copying torch\onnx\_experimental.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.7323440Z copying torch\onnx\_flags.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.7359038Z copying torch\onnx\_globals.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.7369021Z copying torch\onnx\_onnx_supported_ops.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.7379849Z copying torch\onnx\_type_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.7394851Z copying torch\onnx\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:18:24.7414041Z creating build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:18:24.7417321Z copying torch\optim\adadelta.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:18:24.7431683Z copying torch\optim\adagrad.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:18:24.7449461Z copying torch\optim\adam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:18:24.7488072Z copying torch\optim\adamax.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:18:24.7503479Z copying torch\optim\adamw.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:18:24.7513833Z copying torch\optim\asgd.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:18:24.7527991Z copying torch\optim\lbfgs.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:18:24.7551481Z copying torch\optim\lr_scheduler.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:18:24.7586851Z copying torch\optim\nadam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:18:24.7602544Z copying torch\optim\optimizer.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:18:24.7636378Z copying torch\optim\radam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:18:24.7650452Z copying torch\optim\rmsprop.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:18:24.7667768Z copying torch\optim\rprop.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:18:24.7681639Z copying torch\optim\sgd.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:18:24.7696217Z copying torch\optim\sparse_adam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:18:24.7708363Z copying torch\optim\swa_utils.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:18:24.7729471Z copying torch\optim\_adafactor.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:18:24.7745465Z copying torch\optim\_functional.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:18:24.7755574Z copying torch\optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:18:24.7768257Z creating build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:18:24.7772455Z copying torch\package\file_structure_representation.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:18:24.7783596Z copying torch\package\find_file_dependencies.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:18:24.7793738Z copying torch\package\glob_group.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:18:24.7813599Z copying torch\package\importer.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:18:24.7832716Z copying torch\package\package_exporter.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:18:24.7873312Z copying torch\package\package_importer.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:18:24.7888541Z copying torch\package\_digraph.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:18:24.7898346Z copying torch\package\_directory_reader.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:18:24.7907858Z copying torch\package\_importlib.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:18:24.7917403Z copying torch\package\_mangling.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:18:24.7926765Z copying torch\package\_mock.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:18:24.7936274Z copying torch\package\_package_pickler.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:18:24.7946603Z copying torch\package\_package_unpickler.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:18:24.7959660Z copying torch\package\_stdlib.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:18:24.7969776Z copying torch\package\__init__.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:18:24.7977042Z creating build\lib.win-amd64-cpython-39\torch\profiler 2025-07-24T05:18:24.7980198Z copying torch\profiler\itt.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-07-24T05:18:24.7989848Z copying torch\profiler\profiler.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-07-24T05:18:24.8015228Z copying torch\profiler\python_tracer.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-07-24T05:18:24.8020701Z copying torch\profiler\_memory_profiler.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-07-24T05:18:24.8223563Z copying torch\profiler\_pattern_matcher.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-07-24T05:18:24.8257961Z copying torch\profiler\_utils.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-07-24T05:18:24.8269399Z copying torch\profiler\__init__.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-07-24T05:18:24.8282508Z creating build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:18:24.8285280Z copying torch\quantization\fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:18:24.8299679Z copying torch\quantization\fuser_method_mappings.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:18:24.8305380Z copying torch\quantization\fuse_modules.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:18:24.8325521Z copying torch\quantization\observer.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:18:24.8334645Z copying torch\quantization\qconfig.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:18:24.8344551Z copying torch\quantization\quantization_mappings.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:18:24.8354594Z copying torch\quantization\quantize.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:18:24.8364302Z copying torch\quantization\quantize_fx.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:18:24.8375202Z copying torch\quantization\quantize_jit.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:18:24.8385338Z copying torch\quantization\quant_type.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:18:24.8390857Z copying torch\quantization\stubs.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:18:24.8396294Z copying torch\quantization\utils.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:18:24.8405968Z copying torch\quantization\_numeric_suite.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:18:24.8416495Z copying torch\quantization\_numeric_suite_fx.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:18:24.8427489Z copying torch\quantization\_quantized_conversions.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:18:24.8443280Z copying torch\quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:18:24.8454040Z creating build\lib.win-amd64-cpython-39\torch\signal 2025-07-24T05:18:24.8490735Z copying torch\signal\__init__.py -> build\lib.win-amd64-cpython-39\torch\signal 2025-07-24T05:18:24.8497961Z creating build\lib.win-amd64-cpython-39\torch\sparse 2025-07-24T05:18:24.8500899Z copying torch\sparse\semi_structured.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-07-24T05:18:24.8516514Z copying torch\sparse\_semi_structured_conversions.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-07-24T05:18:24.8527433Z copying torch\sparse\_semi_structured_ops.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-07-24T05:18:24.8543014Z copying torch\sparse\_triton_ops.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-07-24T05:18:24.8589007Z copying torch\sparse\_triton_ops_meta.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-07-24T05:18:24.8792503Z copying torch\sparse\__init__.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-07-24T05:18:24.8817047Z creating build\lib.win-amd64-cpython-39\torch\special 2025-07-24T05:18:24.8817720Z copying torch\special\__init__.py -> build\lib.win-amd64-cpython-39\torch\special 2025-07-24T05:18:24.8833238Z creating build\lib.win-amd64-cpython-39\torch\testing 2025-07-24T05:18:24.8843627Z copying torch\testing\_comparison.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-07-24T05:18:24.8867376Z copying torch\testing\_creation.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-07-24T05:18:24.8878962Z copying torch\testing\_utils.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-07-24T05:18:24.8894719Z copying torch\testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-07-24T05:18:24.8907944Z creating build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:24.8911020Z copying torch\utils\backend_registration.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:24.9751697Z copying torch\utils\bundled_inputs.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:24.9764902Z copying torch\utils\checkpoint.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.0615502Z copying torch\utils\collect_env.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.0647334Z copying torch\utils\cpp_backtrace.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.0648119Z copying torch\utils\cpp_extension.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.0709177Z copying torch\utils\deterministic.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.1678598Z copying torch\utils\dlpack.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.1679330Z copying torch\utils\file_baton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.1690400Z copying torch\utils\flop_counter.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.1709455Z copying torch\utils\hooks.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.2985019Z copying torch\utils\mkldnn.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.2996877Z copying torch\utils\mobile_optimizer.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.3016226Z copying torch\utils\model_zoo.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.3017370Z copying torch\utils\module_tracker.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.3030181Z copying torch\utils\show_pickle.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.3048614Z copying torch\utils\throughput_benchmark.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.3058210Z copying torch\utils\weak.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.3786424Z copying torch\utils\_appending_byte_serializer.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.3804814Z copying torch\utils\_backport_slots.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.3814993Z copying torch\utils\_config_module.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.3839320Z copying torch\utils\_content_store.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.3849528Z copying torch\utils\_contextlib.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.3870841Z copying torch\utils\_cpp_embed_headers.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.3879414Z copying torch\utils\_cpp_extension_versioner.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.3889042Z copying torch\utils\_cxx_pytree.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.3935994Z copying torch\utils\_device.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.3945912Z copying torch\utils\_dtype_abbrs.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.3957063Z copying torch\utils\_exposed_in.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.3979491Z copying torch\utils\_filelock.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.3989301Z copying torch\utils\_foreach_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.4009397Z copying torch\utils\_freeze.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.4021895Z copying torch\utils\_functools.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.4030810Z copying torch\utils\_get_clean_triton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.4048941Z copying torch\utils\_helion.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.4049592Z copying torch\utils\_import_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.4057424Z copying torch\utils\_mode_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.4069931Z copying torch\utils\_ordered_set.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.4079783Z copying torch\utils\_python_dispatch.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.4104409Z copying torch\utils\_pytree.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.4130788Z copying torch\utils\_stats.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.4140678Z copying torch\utils\_thunk.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.4170155Z copying torch\utils\_traceback.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.4170934Z copying torch\utils\_triton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.4191471Z copying torch\utils\_typing_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.4210611Z copying torch\utils\_zip.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.4211251Z copying torch\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:25.4226845Z creating build\lib.win-amd64-cpython-39\torch\xpu 2025-07-24T05:18:25.4229758Z copying torch\xpu\memory.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-07-24T05:18:25.4284444Z copying torch\xpu\random.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-07-24T05:18:25.4285031Z copying torch\xpu\streams.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-07-24T05:18:25.4285581Z copying torch\xpu\_gpu_trace.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-07-24T05:18:25.4303889Z copying torch\xpu\_utils.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-07-24T05:18:25.4304434Z copying torch\xpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-07-24T05:18:25.4326204Z creating build\lib.win-amd64-cpython-39\torch\_awaits 2025-07-24T05:18:25.4334866Z copying torch\_awaits\__init__.py -> build\lib.win-amd64-cpython-39\torch\_awaits 2025-07-24T05:18:25.4343964Z creating build\lib.win-amd64-cpython-39\torch\_custom_op 2025-07-24T05:18:25.4347186Z copying torch\_custom_op\autograd.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-07-24T05:18:25.4363750Z copying torch\_custom_op\impl.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-07-24T05:18:25.4378874Z copying torch\_custom_op\__init__.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-07-24T05:18:25.4384932Z creating build\lib.win-amd64-cpython-39\torch\_decomp 2025-07-24T05:18:25.4393606Z copying torch\_decomp\decompositions.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-07-24T05:18:25.4481657Z copying torch\_decomp\decompositions_for_jvp.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-07-24T05:18:25.4490704Z copying torch\_decomp\decompositions_for_rng.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-07-24T05:18:25.4505094Z copying torch\_decomp\__init__.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-07-24T05:18:25.4540111Z creating build\lib.win-amd64-cpython-39\torch\_dispatch 2025-07-24T05:18:25.4540787Z copying torch\_dispatch\python.py -> build\lib.win-amd64-cpython-39\torch\_dispatch 2025-07-24T05:18:25.4548708Z copying torch\_dispatch\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dispatch 2025-07-24T05:18:25.4569854Z creating build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.4570451Z copying torch\_dynamo\bytecode_analysis.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.4580291Z copying torch\_dynamo\bytecode_transformation.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.4611796Z copying torch\_dynamo\cache_size.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.4629503Z copying torch\_dynamo\callback.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.4640794Z copying torch\_dynamo\codegen.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.4669370Z copying torch\_dynamo\code_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.4678930Z copying torch\_dynamo\compiled_autograd.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.4704919Z copying torch\_dynamo\comptime.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.4731589Z copying torch\_dynamo\config.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.4745687Z copying torch\_dynamo\convert_frame.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5158890Z copying torch\_dynamo\create_parameter_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5181830Z copying torch\_dynamo\current_scope_id.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5203661Z copying torch\_dynamo\debug_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5225376Z copying torch\_dynamo\decorators.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5252379Z copying torch\_dynamo\device_interface.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5279713Z copying torch\_dynamo\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5288318Z copying torch\_dynamo\eval_frame.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5334660Z copying torch\_dynamo\exc.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5356934Z copying torch\_dynamo\external_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5367274Z copying torch\_dynamo\funcname_cache.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5377021Z copying torch\_dynamo\graph_break_hints.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5390556Z copying torch\_dynamo\graph_deduplication.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5404157Z copying torch\_dynamo\graph_region_tracker.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5418219Z copying torch\_dynamo\graph_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5427680Z copying torch\_dynamo\guards.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5486028Z copying torch\_dynamo\hooks.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5496052Z copying torch\_dynamo\logging.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5505587Z copying torch\_dynamo\metrics_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5519736Z copying torch\_dynamo\mutation_guard.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5529708Z copying torch\_dynamo\output_graph.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5587271Z copying torch\_dynamo\package.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5624121Z copying torch\_dynamo\pgo.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5637318Z copying torch\_dynamo\precompile_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5651927Z copying torch\_dynamo\profiler.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.5663351Z copying torch\_dynamo\replay_record.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.6045812Z copying torch\_dynamo\resume_execution.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.6060343Z copying torch\_dynamo\side_effects.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.6569094Z copying torch\_dynamo\source.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.6588382Z copying torch\_dynamo\symbolic_convert.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.7035772Z copying torch\_dynamo\tensor_version_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.7051283Z copying torch\_dynamo\testing.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.7066163Z copying torch\_dynamo\test_case.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.7076739Z copying torch\_dynamo\test_dont_skip_tracing_functions.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.7100249Z copying torch\_dynamo\test_minifier_common.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.7115895Z copying torch\_dynamo\trace_rules.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.7179303Z copying torch\_dynamo\types.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.7200159Z copying torch\_dynamo\utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.7261769Z copying torch\_dynamo\_trace_wrapped_higher_order_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.7272272Z copying torch\_dynamo\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:25.7284755Z creating build\lib.win-amd64-cpython-39\torch\_export 2025-07-24T05:18:25.7287748Z copying torch\_export\converter.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-24T05:18:25.7628427Z copying torch\_export\error.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-24T05:18:25.8978215Z copying torch\_export\non_strict_utils.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-24T05:18:25.9026518Z copying torch\_export\pass_base.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-24T05:18:25.9052928Z copying torch\_export\tools.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-24T05:18:25.9064011Z copying torch\_export\utils.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-24T05:18:26.0144628Z copying torch\_export\verifier.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-24T05:18:26.0160804Z copying torch\_export\wrappers.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-24T05:18:26.0171481Z copying torch\_export\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-24T05:18:26.2355174Z creating build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:18:26.2358111Z copying torch\_functorch\aot_autograd.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:18:26.2799592Z copying torch\_functorch\apis.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:18:26.2816475Z copying torch\_functorch\autograd_function.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:18:26.2831445Z copying torch\_functorch\batch_norm_replacement.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:18:26.2880179Z copying torch\_functorch\benchmark_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:18:26.2890572Z copying torch\_functorch\compilers.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:18:26.2906226Z copying torch\_functorch\compile_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:18:26.2916813Z copying torch\_functorch\config.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:18:26.2927281Z copying torch\_functorch\deprecated.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:18:26.2937827Z copying torch\_functorch\eager_transforms.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:18:26.2968992Z copying torch\_functorch\functional_call.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:18:26.2979850Z copying torch\_functorch\fx_minifier.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:18:26.3000436Z copying torch\_functorch\make_functional.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:18:26.3016611Z copying torch\_functorch\partitioners.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:18:26.3076319Z copying torch\_functorch\pyfunctorch.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:18:26.3088793Z copying torch\_functorch\python_key.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:18:26.3094528Z copying torch\_functorch\pytree_hacks.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:18:26.3104682Z copying torch\_functorch\top_operators_github_usage.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:18:26.3119944Z copying torch\_functorch\utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:18:26.3129847Z copying torch\_functorch\vmap.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:18:26.3148443Z copying torch\_functorch\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:18:26.3169676Z creating build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.3171884Z copying torch\_higher_order_ops\aoti_call_delegate.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.3184792Z copying torch\_higher_order_ops\associative_scan.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.3201700Z copying torch\_higher_order_ops\auto_functionalize.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.3235121Z copying torch\_higher_order_ops\base_hop.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.3245468Z copying torch\_higher_order_ops\cond.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.3267612Z copying torch\_higher_order_ops\effects.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.3282164Z copying torch\_higher_order_ops\executorch_call_delegate.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.3292087Z copying torch\_higher_order_ops\flat_apply.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.3302490Z copying torch\_higher_order_ops\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.3323048Z copying torch\_higher_order_ops\foreach_map.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.3333049Z copying torch\_higher_order_ops\hints_wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.3345667Z copying torch\_higher_order_ops\invoke_subgraph.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.3364765Z copying torch\_higher_order_ops\map.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.3987765Z copying torch\_higher_order_ops\out_dtype.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.3998425Z copying torch\_higher_order_ops\run_const_graph.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.4008977Z copying torch\_higher_order_ops\scan.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.4028235Z copying torch\_higher_order_ops\schema.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.4050319Z copying torch\_higher_order_ops\strict_mode.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.4059787Z copying torch\_higher_order_ops\torchbind.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.4070359Z copying torch\_higher_order_ops\triton_kernel_wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.4540469Z copying torch\_higher_order_ops\utils.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.4567272Z copying torch\_higher_order_ops\while_loop.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.4591963Z copying torch\_higher_order_ops\wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.4602986Z copying torch\_higher_order_ops\_invoke_quant.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.4612801Z copying torch\_higher_order_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:18:26.4634975Z creating build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.4638402Z copying torch\_inductor\analyze_preserves_zero_mask.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.4652958Z copying torch\_inductor\aoti_eager.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.4663772Z copying torch\_inductor\async_compile.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.4690758Z copying torch\_inductor\autotune_process.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.4705592Z copying torch\_inductor\bounds.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.4715961Z copying torch\_inductor\choices.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.4729962Z copying torch\_inductor\codecache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.4921621Z copying torch\_inductor\comms.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.5253446Z copying torch\_inductor\comm_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.5789011Z copying torch\_inductor\comm_lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.5801585Z copying torch\_inductor\compiler_bisector.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.5820394Z copying torch\_inductor\compile_fx.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.5871943Z copying torch\_inductor\compile_fx_async.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.5882814Z copying torch\_inductor\compile_fx_ext.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.5899147Z copying torch\_inductor\compile_fx_subproc.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.5917408Z copying torch\_inductor\config.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.5942169Z copying torch\_inductor\constant_folding.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.5952142Z copying torch\_inductor\cpp_builder.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.5999944Z copying torch\_inductor\cpu_vec_isa.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.6002707Z copying torch\_inductor\cudagraph_trees.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.6040836Z copying torch\_inductor\cudagraph_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.6056196Z copying torch\_inductor\custom_graph_pass.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.6065993Z copying torch\_inductor\debug.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.6489325Z copying torch\_inductor\decomposition.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.6510377Z copying torch\_inductor\dependencies.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.6537020Z copying torch\_inductor\dtype_propagation.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.6563273Z copying torch\_inductor\exc.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.6574000Z copying torch\_inductor\extern_node_serializer.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.6584949Z copying torch\_inductor\freezing.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.6596467Z copying torch\_inductor\freezing_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.6607249Z copying torch\_inductor\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.6640141Z copying torch\_inductor\fx_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.7192072Z copying torch\_inductor\graph.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.7245513Z copying torch\_inductor\hooks.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.7251280Z copying torch\_inductor\index_propagation.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.8144583Z copying torch\_inductor\inductor_prims.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.8156307Z copying torch\_inductor\ir.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.8276566Z copying torch\_inductor\jagged_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.8287996Z copying torch\_inductor\loop_body.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.9552721Z copying torch\_inductor\lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.9644918Z copying torch\_inductor\memory.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.9664925Z copying torch\_inductor\metrics.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.9676122Z copying torch\_inductor\mkldnn_ir.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.9701057Z copying torch\_inductor\mkldnn_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:26.9721621Z copying torch\_inductor\mock_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:27.0275119Z copying torch\_inductor\ops_handler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:27.0299032Z copying torch\_inductor\optimize_indexing.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:27.0319246Z copying torch\_inductor\output_code.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:27.0338970Z copying torch\_inductor\pattern_matcher.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:27.0380451Z copying torch\_inductor\quantized_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:27.0393478Z copying torch\_inductor\remote_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:27.0405896Z copying torch\_inductor\scheduler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:27.0977792Z copying torch\_inductor\select_algorithm.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:27.1029659Z copying torch\_inductor\sizevars.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:27.1052395Z copying torch\_inductor\standalone_compile.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:27.1070608Z copying torch\_inductor\subgraph_lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:27.1081288Z copying torch\_inductor\template_heuristics.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:27.1102812Z copying torch\_inductor\test_case.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:27.1113110Z copying torch\_inductor\test_operators.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:27.1123438Z copying torch\_inductor\tiling_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:27.1153341Z copying torch\_inductor\triton_bundler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:27.1176463Z copying torch\_inductor\utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:27.1218267Z copying torch\_inductor\virtualized.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:27.1258280Z copying torch\_inductor\wrapper_benchmark.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:27.1282205Z copying torch\_inductor\__autotune_main__.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:27.1297352Z copying torch\_inductor\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:27.1313348Z creating build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:18:27.1317648Z copying torch\_lazy\closure.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:18:27.1333623Z copying torch\_lazy\computation.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:18:27.1342644Z copying torch\_lazy\config.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:18:27.1348638Z copying torch\_lazy\debug.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:18:27.1359437Z copying torch\_lazy\device_context.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:18:27.1374111Z copying torch\_lazy\extract_compiled_graph.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:18:27.1396100Z copying torch\_lazy\ir_cache.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:18:27.1401465Z copying torch\_lazy\metrics.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:18:27.1407022Z copying torch\_lazy\tensor_factory_functions.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:18:27.1419925Z copying torch\_lazy\ts_backend.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:18:27.1425204Z copying torch\_lazy\__init__.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:18:27.1437789Z creating build\lib.win-amd64-cpython-39\torch\_library 2025-07-24T05:18:27.1440978Z copying torch\_library\autograd.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-24T05:18:27.1452148Z copying torch\_library\custom_ops.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-24T05:18:27.1475759Z copying torch\_library\fake_class_registry.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-24T05:18:27.1488626Z copying torch\_library\fake_impl.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-24T05:18:27.1503682Z copying torch\_library\fake_profile.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-24T05:18:27.1514599Z copying torch\_library\infer_schema.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-24T05:18:27.1525980Z copying torch\_library\simple_registry.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-24T05:18:27.1536338Z copying torch\_library\triton.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-24T05:18:27.1548197Z copying torch\_library\utils.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-24T05:18:27.1564190Z copying torch\_library\__init__.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-24T05:18:27.1571701Z creating build\lib.win-amd64-cpython-39\torch\_logging 2025-07-24T05:18:27.1574554Z copying torch\_logging\scribe.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-07-24T05:18:27.1585405Z copying torch\_logging\structured.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-07-24T05:18:27.1596309Z copying torch\_logging\_internal.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-07-24T05:18:27.1624441Z copying torch\_logging\_registrations.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-07-24T05:18:27.1639463Z copying torch\_logging\__init__.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-07-24T05:18:27.1653601Z creating build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:18:27.1656546Z copying torch\_numpy\fft.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:18:27.1676827Z copying torch\_numpy\linalg.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:18:27.1686763Z copying torch\_numpy\random.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:18:27.1696461Z copying torch\_numpy\_binary_ufuncs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:18:27.1706992Z copying torch\_numpy\_casting_dicts.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:18:27.1735161Z copying torch\_numpy\_dtypes.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:18:27.1750602Z copying torch\_numpy\_dtypes_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:18:27.1764867Z copying torch\_numpy\_funcs.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:18:27.1792762Z copying torch\_numpy\_funcs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:18:27.1811512Z copying torch\_numpy\_getlimits.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:18:27.1817333Z copying torch\_numpy\_ndarray.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:18:27.1835613Z copying torch\_numpy\_normalizations.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:18:27.1846152Z copying torch\_numpy\_reductions_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:18:27.1860683Z copying torch\_numpy\_ufuncs.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:18:27.1871943Z copying torch\_numpy\_unary_ufuncs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:18:27.1887159Z copying torch\_numpy\_util.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:18:27.1899408Z copying torch\_numpy\__init__.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:18:27.1906740Z creating build\lib.win-amd64-cpython-39\torch\_prims 2025-07-24T05:18:27.1909615Z copying torch\_prims\context.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-07-24T05:18:27.1920557Z copying torch\_prims\debug_prims.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-07-24T05:18:27.1934723Z copying torch\_prims\executor.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-07-24T05:18:27.1944430Z copying torch\_prims\rng_prims.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-07-24T05:18:27.1955302Z copying torch\_prims\__init__.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-07-24T05:18:27.2004295Z creating build\lib.win-amd64-cpython-39\torch\_prims_common 2025-07-24T05:18:27.2007127Z copying torch\_prims_common\wrappers.py -> build\lib.win-amd64-cpython-39\torch\_prims_common 2025-07-24T05:18:27.2030923Z copying torch\_prims_common\__init__.py -> build\lib.win-amd64-cpython-39\torch\_prims_common 2025-07-24T05:18:27.2067854Z creating build\lib.win-amd64-cpython-39\torch\_refs 2025-07-24T05:18:27.2070591Z copying torch\_refs\fft.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-07-24T05:18:27.2085211Z copying torch\_refs\_conversions.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-07-24T05:18:27.2094416Z copying torch\_refs\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-07-24T05:18:27.2184969Z creating build\lib.win-amd64-cpython-39\torch\_strobelight 2025-07-24T05:18:27.2193030Z copying torch\_strobelight\cli_function_profiler.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-07-24T05:18:27.2205578Z copying torch\_strobelight\compile_time_profiler.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-07-24T05:18:27.2216583Z copying torch\_strobelight\__init__.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-07-24T05:18:27.2227939Z creating build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-24T05:18:27.2230803Z copying torch\_subclasses\fake_impls.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-24T05:18:27.2251664Z copying torch\_subclasses\fake_tensor.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-24T05:18:27.2338940Z copying torch\_subclasses\fake_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-24T05:18:27.2358952Z copying torch\_subclasses\functional_tensor.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-24T05:18:27.2375859Z copying torch\_subclasses\meta_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-24T05:18:27.2413581Z copying torch\_subclasses\schema_check_mode.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-24T05:18:27.2430981Z copying torch\_subclasses\_fake_tensor_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-24T05:18:27.2454932Z copying torch\_subclasses\__init__.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-24T05:18:27.2461441Z creating build\lib.win-amd64-cpython-39\torch\_vendor 2025-07-24T05:18:27.2464246Z copying torch\_vendor\__init__.py -> build\lib.win-amd64-cpython-39\torch\_vendor 2025-07-24T05:18:27.2469975Z creating build\lib.win-amd64-cpython-39\torch\ao\nn 2025-07-24T05:18:27.2472931Z copying torch\ao\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn 2025-07-24T05:18:27.2483994Z creating build\lib.win-amd64-cpython-39\torch\ao\ns 2025-07-24T05:18:27.2487028Z copying torch\ao\ns\_numeric_suite.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-07-24T05:18:27.3285299Z copying torch\ao\ns\_numeric_suite_fx.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-07-24T05:18:27.3313786Z copying torch\ao\ns\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-07-24T05:18:27.3319825Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-07-24T05:18:27.3322757Z copying torch\ao\pruning\_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-07-24T05:18:27.4076254Z copying torch\ao\pruning\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-07-24T05:18:27.4085323Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:18:27.4088448Z copying torch\ao\quantization\fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:18:27.4922579Z copying torch\ao\quantization\fuser_method_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:18:27.4933989Z copying torch\ao\quantization\fuse_modules.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:18:27.4948790Z copying torch\ao\quantization\observer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:18:27.6763166Z copying torch\ao\quantization\qconfig.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:18:27.6779220Z copying torch\ao\quantization\qconfig_mapping.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:18:27.6796339Z copying torch\ao\quantization\quantization_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:18:27.6825570Z copying torch\ao\quantization\quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:18:27.6831705Z copying torch\ao\quantization\quantize_fx.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:18:27.6854249Z copying torch\ao\quantization\quantize_jit.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:18:27.6865529Z copying torch\ao\quantization\quantize_pt2e.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:18:27.6876524Z copying torch\ao\quantization\quant_type.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:18:27.6886575Z copying torch\ao\quantization\stubs.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:18:27.6896419Z copying torch\ao\quantization\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:18:27.6920665Z copying torch\ao\quantization\_correct_bias.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:18:27.6932129Z copying torch\ao\quantization\_equalize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:18:27.6943269Z copying torch\ao\quantization\_learnable_fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:18:27.6954666Z copying torch\ao\quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:18:27.6968553Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic 2025-07-24T05:18:27.6971433Z copying torch\ao\nn\intrinsic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic 2025-07-24T05:18:27.6982520Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat 2025-07-24T05:18:27.6985079Z copying torch\ao\nn\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat 2025-07-24T05:18:27.6991666Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable 2025-07-24T05:18:27.6994546Z copying torch\ao\nn\quantizable\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable 2025-07-24T05:18:27.7001599Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-07-24T05:18:27.7009368Z copying torch\ao\nn\quantized\functional.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-07-24T05:18:27.7025025Z copying torch\ao\nn\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-07-24T05:18:27.7031693Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse 2025-07-24T05:18:27.7034554Z copying torch\ao\nn\sparse\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse 2025-07-24T05:18:27.7041471Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-07-24T05:18:27.7044469Z copying torch\ao\nn\intrinsic\modules\fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-07-24T05:18:27.7057399Z copying torch\ao\nn\intrinsic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-07-24T05:18:27.7063904Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat 2025-07-24T05:18:27.7066872Z copying torch\ao\nn\intrinsic\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat 2025-07-24T05:18:27.7073530Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized 2025-07-24T05:18:27.7076451Z copying torch\ao\nn\intrinsic\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized 2025-07-24T05:18:27.7091679Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-07-24T05:18:27.7094782Z copying torch\ao\nn\intrinsic\qat\modules\conv_fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-07-24T05:18:27.7121344Z copying torch\ao\nn\intrinsic\qat\modules\linear_fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-07-24T05:18:27.7131216Z copying torch\ao\nn\intrinsic\qat\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-07-24T05:18:27.7154119Z copying torch\ao\nn\intrinsic\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-07-24T05:18:27.7165011Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic 2025-07-24T05:18:27.7167929Z copying torch\ao\nn\intrinsic\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic 2025-07-24T05:18:27.7175065Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:18:27.7182757Z copying torch\ao\nn\intrinsic\quantized\modules\bn_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:18:27.7192458Z copying torch\ao\nn\intrinsic\quantized\modules\conv_add.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:18:27.7202779Z copying torch\ao\nn\intrinsic\quantized\modules\conv_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:18:27.7214191Z copying torch\ao\nn\intrinsic\quantized\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:18:27.7227463Z copying torch\ao\nn\intrinsic\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:18:27.7239036Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:18:27.7242108Z copying torch\ao\nn\intrinsic\quantized\dynamic\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:18:27.7256691Z copying torch\ao\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:18:27.7263168Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic 2025-07-24T05:18:27.7266580Z copying torch\ao\nn\qat\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic 2025-07-24T05:18:27.7273287Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-07-24T05:18:27.7276158Z copying torch\ao\nn\qat\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-07-24T05:18:27.7287602Z copying torch\ao\nn\qat\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-07-24T05:18:27.7298190Z copying torch\ao\nn\qat\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-07-24T05:18:27.7328463Z copying torch\ao\nn\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-07-24T05:18:27.7329091Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-07-24T05:18:27.7329749Z copying torch\ao\nn\qat\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-07-24T05:18:27.7339935Z copying torch\ao\nn\qat\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-07-24T05:18:27.7343426Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-07-24T05:18:27.7346744Z copying torch\ao\nn\quantizable\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-07-24T05:18:27.7365870Z copying torch\ao\nn\quantizable\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-07-24T05:18:27.7382991Z copying torch\ao\nn\quantizable\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-07-24T05:18:27.7390749Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic 2025-07-24T05:18:27.7392545Z copying torch\ao\nn\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic 2025-07-24T05:18:27.7400685Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:18:27.7403707Z copying torch\ao\nn\quantized\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:18:27.7414612Z copying torch\ao\nn\quantized\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:18:27.7424527Z copying torch\ao\nn\quantized\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:18:27.7443397Z copying torch\ao\nn\quantized\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:18:27.7452924Z copying torch\ao\nn\quantized\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:18:27.7473480Z copying torch\ao\nn\quantized\modules\functional_modules.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:18:27.7485396Z copying torch\ao\nn\quantized\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:18:27.7501088Z copying torch\ao\nn\quantized\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:18:27.7512314Z copying torch\ao\nn\quantized\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:18:27.7522351Z copying torch\ao\nn\quantized\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:18:27.7532990Z copying torch\ao\nn\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:18:27.7549611Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference 2025-07-24T05:18:27.7557309Z copying torch\ao\nn\quantized\reference\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference 2025-07-24T05:18:27.7565135Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-07-24T05:18:27.7567981Z copying torch\ao\nn\quantized\dynamic\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-07-24T05:18:27.7584779Z copying torch\ao\nn\quantized\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-07-24T05:18:27.7596272Z copying torch\ao\nn\quantized\dynamic\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-07-24T05:18:27.7633572Z copying torch\ao\nn\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-07-24T05:18:27.7641231Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-07-24T05:18:27.7644226Z copying torch\ao\nn\quantized\reference\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-07-24T05:18:27.7655564Z copying torch\ao\nn\quantized\reference\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-07-24T05:18:27.7667326Z copying torch\ao\nn\quantized\reference\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-07-24T05:18:27.7683134Z copying torch\ao\nn\quantized\reference\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-07-24T05:18:27.7693531Z copying torch\ao\nn\quantized\reference\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-07-24T05:18:27.7704904Z copying torch\ao\nn\quantized\reference\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-07-24T05:18:27.7718263Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-07-24T05:18:27.7721725Z copying torch\ao\nn\sparse\quantized\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-07-24T05:18:27.7733509Z copying torch\ao\nn\sparse\quantized\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-07-24T05:18:27.7743281Z copying torch\ao\nn\sparse\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-07-24T05:18:27.7750312Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-07-24T05:18:27.7753332Z copying torch\ao\nn\sparse\quantized\dynamic\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-07-24T05:18:27.7763484Z copying torch\ao\nn\sparse\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-07-24T05:18:27.7771321Z creating build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-24T05:18:27.7774444Z copying torch\ao\ns\fx\graph_matcher.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-24T05:18:27.7793580Z copying torch\ao\ns\fx\graph_passes.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-24T05:18:27.8646010Z copying torch\ao\ns\fx\mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-24T05:18:27.8661332Z copying torch\ao\ns\fx\ns_types.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-24T05:18:27.8675346Z copying torch\ao\ns\fx\n_shadows_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-24T05:18:27.8703642Z copying torch\ao\ns\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-24T05:18:27.8714569Z copying torch\ao\ns\fx\qconfig_multi_mapping.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-24T05:18:27.8727746Z copying torch\ao\ns\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-24T05:18:27.8747558Z copying torch\ao\ns\fx\weight_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-24T05:18:27.8759633Z copying torch\ao\ns\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-24T05:18:27.8765907Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-07-24T05:18:27.8770470Z copying torch\ao\pruning\scheduler\base_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-07-24T05:18:27.8780614Z copying torch\ao\pruning\scheduler\cubic_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-07-24T05:18:27.8791291Z copying torch\ao\pruning\scheduler\lambda_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-07-24T05:18:27.8804991Z copying torch\ao\pruning\scheduler\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-07-24T05:18:27.8811483Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-07-24T05:18:27.8818953Z copying torch\ao\pruning\sparsifier\base_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-07-24T05:18:27.8830056Z copying torch\ao\pruning\sparsifier\nearly_diagonal_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-07-24T05:18:27.8840024Z copying torch\ao\pruning\sparsifier\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-07-24T05:18:27.8857778Z copying torch\ao\pruning\sparsifier\weight_norm_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-07-24T05:18:27.8868023Z copying torch\ao\pruning\sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-07-24T05:18:27.8874148Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental 2025-07-24T05:18:27.8877080Z copying torch\ao\pruning\_experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental 2025-07-24T05:18:27.8894962Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-07-24T05:18:27.8898186Z copying torch\ao\pruning\_experimental\activation_sparsifier\activation_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-07-24T05:18:27.8912950Z copying torch\ao\pruning\_experimental\activation_sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-07-24T05:18:27.8918936Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-07-24T05:18:27.8922160Z copying torch\ao\pruning\_experimental\data_scheduler\base_data_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-07-24T05:18:27.8932473Z copying torch\ao\pruning\_experimental\data_scheduler\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-07-24T05:18:27.8939457Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-07-24T05:18:27.8947143Z copying torch\ao\pruning\_experimental\data_sparsifier\base_data_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-07-24T05:18:27.8958355Z copying torch\ao\pruning\_experimental\data_sparsifier\data_norm_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-07-24T05:18:27.9368121Z copying torch\ao\pruning\_experimental\data_sparsifier\quantization_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-07-24T05:18:27.9384973Z copying torch\ao\pruning\_experimental\data_sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-07-24T05:18:27.9392766Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-24T05:18:27.9395978Z copying torch\ao\pruning\_experimental\pruner\base_structured_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-24T05:18:27.9407839Z copying torch\ao\pruning\_experimental\pruner\FPGM_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-24T05:18:27.9421399Z copying torch\ao\pruning\_experimental\pruner\lstm_saliency_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-24T05:18:27.9435083Z copying torch\ao\pruning\_experimental\pruner\match_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-24T05:18:27.9445444Z copying torch\ao\pruning\_experimental\pruner\parametrization.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-24T05:18:27.9455411Z copying torch\ao\pruning\_experimental\pruner\prune_functions.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-24T05:18:27.9473021Z copying torch\ao\pruning\_experimental\pruner\saliency_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-24T05:18:27.9483345Z copying torch\ao\pruning\_experimental\pruner\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-24T05:18:27.9489939Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-07-24T05:18:27.9493030Z copying torch\ao\pruning\_experimental\data_sparsifier\lightning\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-07-24T05:18:27.9499286Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-07-24T05:18:27.9507279Z copying torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\data_sparsity.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-07-24T05:18:27.9518378Z copying torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\_data_sparstity_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-07-24T05:18:27.9528275Z copying torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-07-24T05:18:27.9540688Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:18:27.9544021Z copying torch\ao\quantization\backend_config\backend_config.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:18:27.9573921Z copying torch\ao\quantization\backend_config\executorch.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:18:27.9594897Z copying torch\ao\quantization\backend_config\fbgemm.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:18:27.9605464Z copying torch\ao\quantization\backend_config\native.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:18:27.9619727Z copying torch\ao\quantization\backend_config\observation_type.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:18:27.9624265Z copying torch\ao\quantization\backend_config\onednn.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:18:27.9642552Z copying torch\ao\quantization\backend_config\qnnpack.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:18:27.9656392Z copying torch\ao\quantization\backend_config\tensorrt.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:18:27.9670012Z copying torch\ao\quantization\backend_config\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:18:27.9689245Z copying torch\ao\quantization\backend_config\x86.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:18:27.9700030Z copying torch\ao\quantization\backend_config\_common_operator_config_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:18:27.9721516Z copying torch\ao\quantization\backend_config\_qnnpack_pt2e.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:18:27.9734406Z copying torch\ao\quantization\backend_config\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:18:27.9748693Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:18:27.9751749Z copying torch\ao\quantization\fx\convert.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:18:27.9789080Z copying torch\ao\quantization\fx\custom_config.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:18:27.9824043Z copying torch\ao\quantization\fx\fuse.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:18:27.9835318Z copying torch\ao\quantization\fx\fuse_handler.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:18:27.9849864Z copying torch\ao\quantization\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:18:27.9863975Z copying torch\ao\quantization\fx\lower_to_fbgemm.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:18:27.9873756Z copying torch\ao\quantization\fx\lower_to_qnnpack.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:18:27.9879426Z copying torch\ao\quantization\fx\lstm_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:18:27.9892316Z copying torch\ao\quantization\fx\match_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:18:27.9903213Z copying torch\ao\quantization\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:18:27.9916327Z copying torch\ao\quantization\fx\prepare.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:18:27.9964457Z copying torch\ao\quantization\fx\qconfig_mapping_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:18:27.9976319Z copying torch\ao\quantization\fx\quantize_handler.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:18:27.9986375Z copying torch\ao\quantization\fx\tracer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:18:27.9996377Z copying torch\ao\quantization\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:18:28.0019111Z copying torch\ao\quantization\fx\_decomposed.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:18:28.0050603Z copying torch\ao\quantization\fx\_equalize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:18:28.0073708Z copying torch\ao\quantization\fx\_lower_to_native_backend.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:18:28.0111312Z copying torch\ao\quantization\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:18:28.0119611Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:18:28.0122904Z copying torch\ao\quantization\pt2e\duplicate_dq_pass.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:18:28.0133821Z copying torch\ao\quantization\pt2e\export_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:18:28.0144300Z copying torch\ao\quantization\pt2e\graph_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:18:28.0159468Z copying torch\ao\quantization\pt2e\lowering.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:18:28.0181319Z copying torch\ao\quantization\pt2e\port_metadata_pass.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:18:28.0197618Z copying torch\ao\quantization\pt2e\prepare.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:18:28.0218046Z copying torch\ao\quantization\pt2e\qat_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:18:28.0239394Z copying torch\ao\quantization\pt2e\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:18:28.0255032Z copying torch\ao\quantization\pt2e\_affine_quantization.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:18:28.0274003Z copying torch\ao\quantization\pt2e\_numeric_debugger.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:18:28.0288327Z copying torch\ao\quantization\pt2e\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:18:28.0295057Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-24T05:18:28.0298426Z copying torch\ao\quantization\quantizer\composable_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-24T05:18:28.0311338Z copying torch\ao\quantization\quantizer\embedding_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-24T05:18:28.0331290Z copying torch\ao\quantization\quantizer\quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-24T05:18:28.0355392Z copying torch\ao\quantization\quantizer\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-24T05:18:28.0364906Z copying torch\ao\quantization\quantizer\x86_inductor_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-24T05:18:28.0410688Z copying torch\ao\quantization\quantizer\xnnpack_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-24T05:18:28.0428212Z copying torch\ao\quantization\quantizer\xnnpack_quantizer_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-24T05:18:28.0449357Z copying torch\ao\quantization\quantizer\xpu_inductor_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-24T05:18:28.0463097Z copying torch\ao\quantization\quantizer\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-24T05:18:28.0470576Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-07-24T05:18:28.0473784Z copying torch\ao\quantization\fx\_model_report\detector.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-07-24T05:18:28.0521732Z copying torch\ao\quantization\fx\_model_report\model_report.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-07-24T05:18:28.0539185Z copying torch\ao\quantization\fx\_model_report\model_report_observer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-07-24T05:18:28.0556596Z copying torch\ao\quantization\fx\_model_report\model_report_visualizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-07-24T05:18:28.0575192Z copying torch\ao\quantization\fx\_model_report\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-07-24T05:18:28.0581070Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-07-24T05:18:28.0584188Z copying torch\ao\quantization\pt2e\representation\rewrite.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-07-24T05:18:28.0600909Z copying torch\ao\quantization\pt2e\representation\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-07-24T05:18:28.0626986Z creating build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-07-24T05:18:28.0629983Z copying torch\autograd\_functions\tensor.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-07-24T05:18:28.0645358Z copying torch\autograd\_functions\utils.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-07-24T05:18:28.0655031Z copying torch\autograd\_functions\__init__.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-07-24T05:18:28.0661561Z creating build\lib.win-amd64-cpython-39\torch\backends\cpu 2025-07-24T05:18:28.0664848Z copying torch\backends\cpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cpu 2025-07-24T05:18:28.0671144Z creating build\lib.win-amd64-cpython-39\torch\backends\cuda 2025-07-24T05:18:28.0674068Z copying torch\backends\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cuda 2025-07-24T05:18:28.0690317Z creating build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-07-24T05:18:28.0693424Z copying torch\backends\cudnn\rnn.py -> build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-07-24T05:18:28.0702578Z copying torch\backends\cudnn\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-07-24T05:18:28.0719251Z creating build\lib.win-amd64-cpython-39\torch\backends\cusparselt 2025-07-24T05:18:28.0722304Z copying torch\backends\cusparselt\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cusparselt 2025-07-24T05:18:28.0733752Z creating build\lib.win-amd64-cpython-39\torch\backends\kleidiai 2025-07-24T05:18:28.0740922Z copying torch\backends\kleidiai\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\kleidiai 2025-07-24T05:18:28.0747691Z creating build\lib.win-amd64-cpython-39\torch\backends\mha 2025-07-24T05:18:28.0750804Z copying torch\backends\mha\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mha 2025-07-24T05:18:28.0763965Z creating build\lib.win-amd64-cpython-39\torch\backends\mkl 2025-07-24T05:18:28.0766702Z copying torch\backends\mkl\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mkl 2025-07-24T05:18:28.0777228Z creating build\lib.win-amd64-cpython-39\torch\backends\mkldnn 2025-07-24T05:18:28.0780173Z copying torch\backends\mkldnn\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mkldnn 2025-07-24T05:18:28.0806226Z creating build\lib.win-amd64-cpython-39\torch\backends\mps 2025-07-24T05:18:28.0809384Z copying torch\backends\mps\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mps 2025-07-24T05:18:28.0820387Z creating build\lib.win-amd64-cpython-39\torch\backends\nnpack 2025-07-24T05:18:28.0823265Z copying torch\backends\nnpack\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\nnpack 2025-07-24T05:18:28.0855301Z creating build\lib.win-amd64-cpython-39\torch\backends\openmp 2025-07-24T05:18:28.0855964Z copying torch\backends\openmp\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\openmp 2025-07-24T05:18:28.0856547Z creating build\lib.win-amd64-cpython-39\torch\backends\opt_einsum 2025-07-24T05:18:28.0857132Z copying torch\backends\opt_einsum\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\opt_einsum 2025-07-24T05:18:28.0867584Z creating build\lib.win-amd64-cpython-39\torch\backends\quantized 2025-07-24T05:18:28.0869608Z copying torch\backends\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\quantized 2025-07-24T05:18:28.0880811Z creating build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-07-24T05:18:28.0883743Z copying torch\backends\xeon\run_cpu.py -> build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-07-24T05:18:28.0912263Z copying torch\backends\xeon\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-07-24T05:18:28.0917873Z creating build\lib.win-amd64-cpython-39\torch\backends\xnnpack 2025-07-24T05:18:28.0920682Z copying torch\backends\xnnpack\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\xnnpack 2025-07-24T05:18:28.0931756Z creating build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-07-24T05:18:28.0934760Z copying torch\backends\_coreml\preprocess.py -> build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-07-24T05:18:28.0944645Z copying torch\backends\_coreml\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-07-24T05:18:28.0950700Z creating build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-07-24T05:18:28.0953840Z copying torch\backends\_nnapi\prepare.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-07-24T05:18:28.0963962Z copying torch\backends\_nnapi\serializer.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-07-24T05:18:28.1165176Z copying torch\backends\_nnapi\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-07-24T05:18:28.1171160Z creating build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-07-24T05:18:28.1174036Z copying torch\cpu\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-07-24T05:18:28.1185679Z copying torch\cpu\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-07-24T05:18:28.1199947Z copying torch\cpu\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-07-24T05:18:28.1207221Z creating build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-07-24T05:18:28.1210262Z copying torch\cuda\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-07-24T05:18:28.1221147Z copying torch\cuda\amp\common.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-07-24T05:18:28.1226742Z copying torch\cuda\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-07-24T05:18:28.1236449Z copying torch\cuda\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-07-24T05:18:28.1243919Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-07-24T05:18:28.1251487Z copying torch\distributed\algorithms\join.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-07-24T05:18:28.1261728Z copying torch\distributed\algorithms\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-07-24T05:18:28.1268658Z creating build\lib.win-amd64-cpython-39\torch\distributed\autograd 2025-07-24T05:18:28.1271667Z copying torch\distributed\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\autograd 2025-07-24T05:18:28.1288482Z creating build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.1291968Z copying torch\distributed\checkpoint\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.1915772Z copying torch\distributed\checkpoint\default_planner.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.1938011Z copying torch\distributed\checkpoint\filesystem.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.1960271Z copying torch\distributed\checkpoint\format_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.1978073Z copying torch\distributed\checkpoint\hf_storage.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.1988401Z copying torch\distributed\checkpoint\logger.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.1997990Z copying torch\distributed\checkpoint\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2003469Z copying torch\distributed\checkpoint\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2012917Z copying torch\distributed\checkpoint\optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2027000Z copying torch\distributed\checkpoint\planner.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2043358Z copying torch\distributed\checkpoint\planner_helpers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2060040Z copying torch\distributed\checkpoint\resharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2068982Z copying torch\distributed\checkpoint\staging.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2077971Z copying torch\distributed\checkpoint\stateful.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2087568Z copying torch\distributed\checkpoint\state_dict.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2118396Z copying torch\distributed\checkpoint\state_dict_loader.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2129672Z copying torch\distributed\checkpoint\state_dict_saver.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2145481Z copying torch\distributed\checkpoint\storage.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2155428Z copying torch\distributed\checkpoint\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2170430Z copying torch\distributed\checkpoint\_async_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2180093Z copying torch\distributed\checkpoint\_async_process_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2190933Z copying torch\distributed\checkpoint\_async_thread_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2201372Z copying torch\distributed\checkpoint\_checkpointer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2215387Z copying torch\distributed\checkpoint\_consolidate_hf_safetensors.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2244015Z copying torch\distributed\checkpoint\_dedup_save_plans.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2254188Z copying torch\distributed\checkpoint\_dedup_tensors.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2266223Z copying torch\distributed\checkpoint\_extension.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2279268Z copying torch\distributed\checkpoint\_fsspec_filesystem.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2291520Z copying torch\distributed\checkpoint\_hf_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2302122Z copying torch\distributed\checkpoint\_nested_dict.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2311799Z copying torch\distributed\checkpoint\_pg_transport.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2322660Z copying torch\distributed\checkpoint\_sharded_tensor_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2344970Z copying torch\distributed\checkpoint\_state_dict_stager.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2353200Z copying torch\distributed\checkpoint\_storage_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2363309Z copying torch\distributed\checkpoint\_traverse.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2373926Z copying torch\distributed\checkpoint\_version.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2380063Z copying torch\distributed\checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:18:28.2386599Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-07-24T05:18:28.2389702Z copying torch\distributed\elastic\control_plane.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-07-24T05:18:28.2398837Z copying torch\distributed\elastic\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-07-24T05:18:28.2427585Z creating build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:18:28.2430570Z copying torch\distributed\fsdp\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:18:28.2445215Z copying torch\distributed\fsdp\fully_sharded_data_parallel.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:18:28.2482907Z copying torch\distributed\fsdp\sharded_grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:18:28.2501028Z copying torch\distributed\fsdp\wrap.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:18:28.2519316Z copying torch\distributed\fsdp\_common_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:18:28.3305716Z copying torch\distributed\fsdp\_debug_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:18:28.3316822Z copying torch\distributed\fsdp\_dynamo_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:18:28.3326845Z copying torch\distributed\fsdp\_exec_order_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:18:28.3341365Z copying torch\distributed\fsdp\_flat_param.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:18:28.3385599Z copying torch\distributed\fsdp\_fsdp_extensions.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:18:28.3396356Z copying torch\distributed\fsdp\_init_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:18:28.3415848Z copying torch\distributed\fsdp\_limiter_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:18:28.3425640Z copying torch\distributed\fsdp\_optim_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:18:28.3459096Z copying torch\distributed\fsdp\_runtime_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:18:28.3490382Z copying torch\distributed\fsdp\_shard_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:18:28.3501520Z copying torch\distributed\fsdp\_state_dict_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:18:28.3520195Z copying torch\distributed\fsdp\_trace_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:18:28.3530127Z copying torch\distributed\fsdp\_traversal_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:18:28.3540781Z copying torch\distributed\fsdp\_unshard_param_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:18:28.3552079Z copying torch\distributed\fsdp\_wrap_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:18:28.3567275Z copying torch\distributed\fsdp\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:18:28.3578723Z creating build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-07-24T05:18:28.3581686Z copying torch\distributed\launcher\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-07-24T05:18:28.3591865Z copying torch\distributed\launcher\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-07-24T05:18:28.3599202Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-07-24T05:18:28.3602158Z copying torch\distributed\nn\functional.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-07-24T05:18:28.3618042Z copying torch\distributed\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-07-24T05:18:28.3627385Z creating build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:18:28.3630497Z copying torch\distributed\optim\apply_optimizer_in_backward.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:18:28.3640672Z copying torch\distributed\optim\functional_adadelta.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:18:28.3651151Z copying torch\distributed\optim\functional_adagrad.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:18:28.3669027Z copying torch\distributed\optim\functional_adam.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:18:28.3679485Z copying torch\distributed\optim\functional_adamax.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:18:28.3694425Z copying torch\distributed\optim\functional_adamw.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:18:28.3705604Z copying torch\distributed\optim\functional_rmsprop.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:18:28.3717425Z copying torch\distributed\optim\functional_rprop.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:18:28.3728780Z copying torch\distributed\optim\functional_sgd.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:18:28.3743241Z copying torch\distributed\optim\named_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:18:28.3772667Z copying torch\distributed\optim\optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:18:28.3790342Z copying torch\distributed\optim\post_localSGD_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:18:28.3800648Z copying torch\distributed\optim\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:18:28.3811080Z copying torch\distributed\optim\zero_redundancy_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:18:28.3841688Z copying torch\distributed\optim\_deprecation_warning.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:18:28.3852514Z copying torch\distributed\optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:18:28.3865914Z creating build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-24T05:18:28.3869365Z copying torch\distributed\pipelining\microbatch.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-24T05:18:28.3886337Z copying torch\distributed\pipelining\schedules.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-24T05:18:28.3941922Z copying torch\distributed\pipelining\stage.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-24T05:18:28.3965275Z copying torch\distributed\pipelining\_backward.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-24T05:18:28.3987569Z copying torch\distributed\pipelining\_debug.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-24T05:18:28.3992962Z copying torch\distributed\pipelining\_IR.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-24T05:18:28.4019415Z copying torch\distributed\pipelining\_schedule_visualizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-24T05:18:28.4033825Z copying torch\distributed\pipelining\_unflatten.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-24T05:18:28.4043695Z copying torch\distributed\pipelining\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-24T05:18:28.4053207Z copying torch\distributed\pipelining\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-24T05:18:28.4061064Z creating build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-24T05:18:28.4063975Z copying torch\distributed\rpc\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-24T05:18:28.4083658Z copying torch\distributed\rpc\backend_registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-24T05:18:28.4099784Z copying torch\distributed\rpc\constants.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-24T05:18:28.4109910Z copying torch\distributed\rpc\functions.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-24T05:18:28.4126094Z copying torch\distributed\rpc\internal.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-24T05:18:28.4138547Z copying torch\distributed\rpc\options.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-24T05:18:28.4149699Z copying torch\distributed\rpc\rref_proxy.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-24T05:18:28.4159894Z copying torch\distributed\rpc\server_process_global_profiler.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-24T05:18:28.4175543Z copying torch\distributed\rpc\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-24T05:18:28.4185368Z copying torch\distributed\rpc\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-24T05:18:28.4199787Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:18:28.4202678Z copying torch\distributed\tensor\device_mesh.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:18:28.4212620Z copying torch\distributed\tensor\placement_types.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:18:28.4228722Z copying torch\distributed\tensor\_api.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:18:28.4253152Z copying torch\distributed\tensor\_collective_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:18:28.4268607Z copying torch\distributed\tensor\_dispatch.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:18:28.4295904Z copying torch\distributed\tensor\_dtensor_spec.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:18:28.4310558Z copying torch\distributed\tensor\_op_schema.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:18:28.4327519Z copying torch\distributed\tensor\_random.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:18:28.4342709Z copying torch\distributed\tensor\_redistribute.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:18:28.4369585Z copying torch\distributed\tensor\_sharding_prop.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:18:28.4397811Z copying torch\distributed\tensor\_shards_wrapper.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:18:28.4409125Z copying torch\distributed\tensor\_tp_conv.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:18:28.4423675Z copying torch\distributed\tensor\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:18:28.4437537Z copying torch\distributed\tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:18:28.4448629Z creating build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-07-24T05:18:28.4451783Z copying torch\distributed\_composable\checkpoint_activation.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-07-24T05:18:28.4461963Z copying torch\distributed\_composable\contract.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-07-24T05:18:28.4471892Z copying torch\distributed\_composable\replicate.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-07-24T05:18:28.4481475Z copying torch\distributed\_composable\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-07-24T05:18:28.4492628Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-24T05:18:28.4495549Z copying torch\distributed\_shard\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-24T05:18:28.4506609Z copying torch\distributed\_shard\common_op_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-24T05:18:28.4517144Z copying torch\distributed\_shard\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-24T05:18:28.4526755Z copying torch\distributed\_shard\op_registry_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-24T05:18:28.4536604Z copying torch\distributed\_shard\sharder.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-24T05:18:28.4551056Z copying torch\distributed\_shard\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-24T05:18:28.4560476Z copying torch\distributed\_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-24T05:18:28.4571146Z creating build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor 2025-07-24T05:18:28.4574068Z copying torch\distributed\_sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor 2025-07-24T05:18:28.4580493Z creating build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec 2025-07-24T05:18:28.4583615Z copying torch\distributed\_sharding_spec\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec 2025-07-24T05:18:28.4590357Z creating build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-07-24T05:18:28.4593443Z copying torch\distributed\_symmetric_memory\_nvshmem_triton.py -> build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-07-24T05:18:28.4604531Z copying torch\distributed\_symmetric_memory\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-07-24T05:18:28.4631054Z creating build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-07-24T05:18:28.4634009Z copying torch\distributed\_tensor\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-07-24T05:18:28.4639511Z copying torch\distributed\_tensor\placement_types.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-07-24T05:18:28.4650793Z copying torch\distributed\_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-07-24T05:18:28.4663019Z creating build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:18:28.4666847Z copying torch\distributed\_tools\common_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:18:28.4677326Z copying torch\distributed\_tools\fake_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:18:28.4690868Z copying torch\distributed\_tools\fsdp2_mem_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:18:28.4721230Z copying torch\distributed\_tools\ilp_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:18:28.4739439Z copying torch\distributed\_tools\memory_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:18:28.4750113Z copying torch\distributed\_tools\mem_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:18:28.4793354Z copying torch\distributed\_tools\mod_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:18:28.4803913Z copying torch\distributed\_tools\runtime_estimator.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:18:28.4845802Z copying torch\distributed\_tools\sac_estimator.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:18:28.4919899Z copying torch\distributed\_tools\sac_ilp.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:18:28.4939183Z copying torch\distributed\_tools\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:18:28.4947306Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:18:28.4977001Z copying torch\distributed\algorithms\ddp_comm_hooks\ddp_zero_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:18:28.4991824Z copying torch\distributed\algorithms\ddp_comm_hooks\debugging_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:18:28.5005535Z copying torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:18:28.5019620Z copying torch\distributed\algorithms\ddp_comm_hooks\mixed_precision_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:18:28.5033556Z copying torch\distributed\algorithms\ddp_comm_hooks\optimizer_overlap_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:18:28.5043660Z copying torch\distributed\algorithms\ddp_comm_hooks\post_localSGD_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:18:28.5053801Z copying torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:18:28.5077019Z copying torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:18:28.5087452Z copying torch\distributed\algorithms\ddp_comm_hooks\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:18:28.5098945Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-07-24T05:18:28.5106306Z copying torch\distributed\algorithms\model_averaging\averagers.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-07-24T05:18:28.5116632Z copying torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-07-24T05:18:28.5127535Z copying torch\distributed\algorithms\model_averaging\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-07-24T05:18:28.5140830Z copying torch\distributed\algorithms\model_averaging\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-07-24T05:18:28.5146578Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-07-24T05:18:28.5149832Z copying torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-07-24T05:18:28.5160786Z copying torch\distributed\algorithms\_checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-07-24T05:18:28.5166931Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-07-24T05:18:28.5170270Z copying torch\distributed\algorithms\_comm_hooks\default_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-07-24T05:18:28.5183815Z copying torch\distributed\algorithms\_comm_hooks\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-07-24T05:18:28.5190698Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-07-24T05:18:28.5194066Z copying torch\distributed\algorithms\_optimizer_overlap\optimizer_overlap.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-07-24T05:18:28.5205669Z copying torch\distributed\algorithms\_optimizer_overlap\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-07-24T05:18:28.5216384Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-07-24T05:18:28.5219548Z copying torch\distributed\algorithms\_quantization\quantization.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-07-24T05:18:28.5229972Z copying torch\distributed\algorithms\_quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-07-24T05:18:28.5237978Z creating build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:18:28.5241019Z copying torch\distributed\checkpoint\_experimental\barriers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:18:28.5252341Z copying torch\distributed\checkpoint\_experimental\builder.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:18:28.5267412Z copying torch\distributed\checkpoint\_experimental\checkpointer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:18:28.5282035Z copying torch\distributed\checkpoint\_experimental\checkpoint_process.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:18:28.5298712Z copying torch\distributed\checkpoint\_experimental\checkpoint_reader.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:18:28.5310491Z copying torch\distributed\checkpoint\_experimental\checkpoint_writer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:18:28.5320179Z copying torch\distributed\checkpoint\_experimental\config.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:18:28.5331276Z copying torch\distributed\checkpoint\_experimental\staging.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:18:28.5347387Z copying torch\distributed\checkpoint\_experimental\types.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:18:28.5370467Z copying torch\distributed\checkpoint\_experimental\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:18:28.5374857Z copying torch\distributed\checkpoint\_experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:18:28.5386410Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent 2025-07-24T05:18:28.5389535Z copying torch\distributed\elastic\agent\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent 2025-07-24T05:18:28.5395791Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-07-24T05:18:28.5398715Z copying torch\distributed\elastic\events\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-07-24T05:18:28.5408740Z copying torch\distributed\elastic\events\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-07-24T05:18:28.5414081Z copying torch\distributed\elastic\events\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-07-24T05:18:28.5425070Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-07-24T05:18:28.5428119Z copying torch\distributed\elastic\metrics\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-07-24T05:18:28.5438339Z copying torch\distributed\elastic\metrics\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-07-24T05:18:28.5450103Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-07-24T05:18:28.5469214Z copying torch\distributed\elastic\multiprocessing\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-07-24T05:18:28.5499401Z copying torch\distributed\elastic\multiprocessing\redirects.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-07-24T05:18:28.5509849Z copying torch\distributed\elastic\multiprocessing\tail_log.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-07-24T05:18:28.5519986Z copying torch\distributed\elastic\multiprocessing\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-07-24T05:18:28.5534635Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:18:28.5544790Z copying torch\distributed\elastic\rendezvous\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:18:28.5560009Z copying torch\distributed\elastic\rendezvous\c10d_rendezvous_backend.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:18:28.5570441Z copying torch\distributed\elastic\rendezvous\dynamic_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:18:28.5597615Z copying torch\distributed\elastic\rendezvous\etcd_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:18:28.5621461Z copying torch\distributed\elastic\rendezvous\etcd_rendezvous_backend.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:18:28.5631396Z copying torch\distributed\elastic\rendezvous\etcd_server.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:18:28.5644568Z copying torch\distributed\elastic\rendezvous\etcd_store.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:18:28.5654439Z copying torch\distributed\elastic\rendezvous\registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:18:28.5664402Z copying torch\distributed\elastic\rendezvous\static_tcp_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:18:28.5682018Z copying torch\distributed\elastic\rendezvous\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:18:28.5692914Z copying torch\distributed\elastic\rendezvous\_etcd_stub.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:18:28.5702782Z copying torch\distributed\elastic\rendezvous\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:18:28.5714474Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-07-24T05:18:28.5717291Z copying torch\distributed\elastic\timer\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-07-24T05:18:28.5728329Z copying torch\distributed\elastic\timer\debug_info_logging.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-07-24T05:18:28.5738872Z copying torch\distributed\elastic\timer\file_based_local_timer.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-07-24T05:18:28.5757306Z copying torch\distributed\elastic\timer\local_timer.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-07-24T05:18:28.5773132Z copying torch\distributed\elastic\timer\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-07-24T05:18:28.5794857Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-07-24T05:18:28.5797869Z copying torch\distributed\elastic\utils\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-07-24T05:18:28.5809387Z copying torch\distributed\elastic\utils\distributed.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-07-24T05:18:28.5820004Z copying torch\distributed\elastic\utils\logging.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-07-24T05:18:28.5830133Z copying torch\distributed\elastic\utils\log_level.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-07-24T05:18:28.5835651Z copying torch\distributed\elastic\utils\store.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-07-24T05:18:28.5859163Z copying torch\distributed\elastic\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-07-24T05:18:28.5866692Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-07-24T05:18:28.5870044Z copying torch\distributed\elastic\agent\server\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-07-24T05:18:28.5891365Z copying torch\distributed\elastic\agent\server\health_check_server.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-07-24T05:18:28.5905449Z copying torch\distributed\elastic\agent\server\local_elastic_agent.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-07-24T05:18:28.5920059Z copying torch\distributed\elastic\agent\server\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-07-24T05:18:28.5931350Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-07-24T05:18:28.5942565Z copying torch\distributed\elastic\multiprocessing\errors\error_handler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-07-24T05:18:28.5952421Z copying torch\distributed\elastic\multiprocessing\errors\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-07-24T05:18:28.5957881Z copying torch\distributed\elastic\multiprocessing\errors\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-07-24T05:18:28.5969716Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-07-24T05:18:28.5972790Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-07-24T05:18:28.5982513Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\subprocess_handler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-07-24T05:18:28.5992248Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-07-24T05:18:28.6019513Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-07-24T05:18:28.6022560Z copying torch\distributed\elastic\utils\data\cycling_iterator.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-07-24T05:18:28.6032704Z copying torch\distributed\elastic\utils\data\elastic_distributed_sampler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-07-24T05:18:28.6042271Z copying torch\distributed\elastic\utils\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-07-24T05:18:28.6050618Z creating build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-24T05:18:28.6053715Z copying torch\distributed\fsdp\_fully_shard\_fsdp_api.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-24T05:18:28.6063841Z copying torch\distributed\fsdp\_fully_shard\_fsdp_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-24T05:18:28.6083851Z copying torch\distributed\fsdp\_fully_shard\_fsdp_common.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-24T05:18:28.6097873Z copying torch\distributed\fsdp\_fully_shard\_fsdp_init.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-24T05:18:28.6109279Z copying torch\distributed\fsdp\_fully_shard\_fsdp_param.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-24T05:18:28.6128236Z copying torch\distributed\fsdp\_fully_shard\_fsdp_param_group.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-24T05:18:28.6169984Z copying torch\distributed\fsdp\_fully_shard\_fsdp_state.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-24T05:18:28.6177652Z copying torch\distributed\fsdp\_fully_shard\_fully_shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-24T05:18:28.6195070Z copying torch\distributed\fsdp\_fully_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-24T05:18:28.6201708Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-07-24T05:18:28.6204835Z copying torch\distributed\nn\api\remote_module.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-07-24T05:18:28.6221416Z copying torch\distributed\nn\api\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-07-24T05:18:28.6227075Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-07-24T05:18:28.6230061Z copying torch\distributed\nn\jit\instantiator.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-07-24T05:18:28.6242408Z copying torch\distributed\nn\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-07-24T05:18:28.6248661Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-07-24T05:18:28.6252014Z copying torch\distributed\nn\jit\templates\remote_module_template.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-07-24T05:18:28.6262663Z copying torch\distributed\nn\jit\templates\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-07-24T05:18:28.6268930Z creating build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-07-24T05:18:28.6271978Z copying torch\distributed\rpc\_testing\faulty_agent_backend_registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-07-24T05:18:28.6282336Z copying torch\distributed\rpc\_testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-07-24T05:18:28.6289840Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-07-24T05:18:28.6292617Z copying torch\distributed\tensor\debug\_comm_mode.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-07-24T05:18:28.6307843Z copying torch\distributed\tensor\debug\_op_coverage.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-07-24T05:18:28.6317734Z copying torch\distributed\tensor\debug\_visualize_sharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-07-24T05:18:28.6328258Z copying torch\distributed\tensor\debug\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-07-24T05:18:28.6344094Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-07-24T05:18:28.6347665Z copying torch\distributed\tensor\experimental\_attention.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-07-24T05:18:28.6376632Z copying torch\distributed\tensor\experimental\_func_map.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-07-24T05:18:28.6388418Z copying torch\distributed\tensor\experimental\_register_sharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-07-24T05:18:28.6402018Z copying torch\distributed\tensor\experimental\_tp_transform.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-07-24T05:18:28.6418095Z copying torch\distributed\tensor\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-07-24T05:18:28.6429737Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-24T05:18:28.6432733Z copying torch\distributed\tensor\parallel\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-24T05:18:28.6446546Z copying torch\distributed\tensor\parallel\ddp.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-24T05:18:28.6455882Z copying torch\distributed\tensor\parallel\fsdp.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-24T05:18:28.6469418Z copying torch\distributed\tensor\parallel\input_reshard.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-24T05:18:28.6513171Z copying torch\distributed\tensor\parallel\loss.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-24T05:18:28.6514013Z copying torch\distributed\tensor\parallel\style.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-24T05:18:28.6518280Z copying torch\distributed\tensor\parallel\_data_parallel_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-24T05:18:28.6529473Z copying torch\distributed\tensor\parallel\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-24T05:18:28.6537077Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:18:28.6548191Z copying torch\distributed\tensor\_ops\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:18:28.6563220Z copying torch\distributed\tensor\_ops\_common_rules.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:18:28.6574043Z copying torch\distributed\tensor\_ops\_conv_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:18:28.6584719Z copying torch\distributed\tensor\_ops\_einsum_strategy.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:18:28.6601805Z copying torch\distributed\tensor\_ops\_embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:18:28.6612165Z copying torch\distributed\tensor\_ops\_math_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:18:28.6631262Z copying torch\distributed\tensor\_ops\_matrix_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:18:28.6656146Z copying torch\distributed\tensor\_ops\_pointwise_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:18:28.6673374Z copying torch\distributed\tensor\_ops\_random_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:18:28.6682205Z copying torch\distributed\tensor\_ops\_tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:18:28.6709920Z copying torch\distributed\tensor\_ops\_view_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:18:28.6726142Z copying torch\distributed\tensor\_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:18:28.6732815Z creating build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-07-24T05:18:28.6735908Z copying torch\distributed\_composable\fsdp\fully_shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-07-24T05:18:28.6741574Z copying torch\distributed\_composable\fsdp\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-07-24T05:18:28.6747996Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint 2025-07-24T05:18:28.6750917Z copying torch\distributed\_shard\checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint 2025-07-24T05:18:28.6757706Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-07-24T05:18:28.6760753Z copying torch\distributed\_shard\sharded_optim\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-07-24T05:18:28.6770703Z copying torch\distributed\_shard\sharded_optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-07-24T05:18:28.6782489Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-24T05:18:28.6785641Z copying torch\distributed\_shard\sharded_tensor\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-24T05:18:28.6816631Z copying torch\distributed\_shard\sharded_tensor\logger.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-24T05:18:28.6825788Z copying torch\distributed\_shard\sharded_tensor\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-24T05:18:28.6831426Z copying torch\distributed\_shard\sharded_tensor\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-24T05:18:28.6841741Z copying torch\distributed\_shard\sharded_tensor\reshard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-24T05:18:28.6856052Z copying torch\distributed\_shard\sharded_tensor\shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-24T05:18:28.6865240Z copying torch\distributed\_shard\sharded_tensor\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-24T05:18:28.6874944Z copying torch\distributed\_shard\sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-24T05:18:28.6889937Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-07-24T05:18:28.6892975Z copying torch\distributed\_shard\sharding_plan\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-07-24T05:18:28.6904177Z copying torch\distributed\_shard\sharding_plan\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-07-24T05:18:28.6911183Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-07-24T05:18:28.6914349Z copying torch\distributed\_shard\sharding_spec\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-07-24T05:18:28.6926174Z copying torch\distributed\_shard\sharding_spec\chunk_sharding_spec.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-07-24T05:18:28.6941680Z copying torch\distributed\_shard\sharding_spec\_internals.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-07-24T05:18:28.6951973Z copying torch\distributed\_shard\sharding_spec\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-07-24T05:18:28.7003838Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:18:28.7004684Z copying torch\distributed\_shard\sharded_tensor\_ops\binary_cmp.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:18:28.7005700Z copying torch\distributed\_shard\sharded_tensor\_ops\init.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:18:28.7006696Z copying torch\distributed\_shard\sharded_tensor\_ops\misc_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:18:28.7010019Z copying torch\distributed\_shard\sharded_tensor\_ops\tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:18:28.7028080Z copying torch\distributed\_shard\sharded_tensor\_ops\_common.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:18:28.7045668Z copying torch\distributed\_shard\sharded_tensor\_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:18:28.7053820Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-07-24T05:18:28.7060588Z copying torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-07-24T05:18:28.7071011Z copying torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding_bag.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-07-24T05:18:28.7095330Z copying torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\_common.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-07-24T05:18:28.7109038Z copying torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-07-24T05:18:28.7114655Z creating build\lib.win-amd64-cpython-39\torch\export\experimental 2025-07-24T05:18:28.7118020Z copying torch\export\experimental\_utils.py -> build\lib.win-amd64-cpython-39\torch\export\experimental 2025-07-24T05:18:28.7132016Z copying torch\export\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\experimental 2025-07-24T05:18:28.7148680Z creating build\lib.win-amd64-cpython-39\torch\export\passes 2025-07-24T05:18:28.7151470Z copying torch\export\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\passes 2025-07-24T05:18:28.7162720Z creating build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-07-24T05:18:28.7165711Z copying torch\export\pt2_archive\constants.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-07-24T05:18:28.7175351Z copying torch\export\pt2_archive\_package.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-07-24T05:18:28.7190567Z copying torch\export\pt2_archive\_package_weights.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-07-24T05:18:28.7205976Z copying torch\export\pt2_archive\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-07-24T05:18:28.7220272Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.7223398Z copying torch\fx\experimental\accelerator_partitioner.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.7243033Z copying torch\fx\experimental\const_fold.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.7253726Z copying torch\fx\experimental\debug.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.7268541Z copying torch\fx\experimental\graph_gradual_typechecker.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.7296081Z copying torch\fx\experimental\merge_matmul.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.7306065Z copying torch\fx\experimental\meta_tracer.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.7317521Z copying torch\fx\experimental\normalize.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.7327690Z copying torch\fx\experimental\optimization.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.7350164Z copying torch\fx\experimental\partitioner_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.7367090Z copying torch\fx\experimental\proxy_tensor.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.8420278Z copying torch\fx\experimental\recording.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.8435757Z copying torch\fx\experimental\refinement_types.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.8441430Z copying torch\fx\experimental\rewriter.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.8451449Z copying torch\fx\experimental\schema_type_annotation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.8461654Z copying torch\fx\experimental\symbolic_shapes.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.8581409Z copying torch\fx\experimental\sym_node.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.8610909Z copying torch\fx\experimental\unify_refinements.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.8620903Z copying torch\fx\experimental\validator.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.8641254Z copying torch\fx\experimental\_backward_state.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.8651161Z copying torch\fx\experimental\_config.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.8661407Z copying torch\fx\experimental\_constant_symnode.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.8675330Z copying torch\fx\experimental\_dynamism.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.8689872Z copying torch\fx\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:18:28.8727047Z creating build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:18:28.8727629Z copying torch\fx\passes\annotate_getitem_nodes.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:18:28.8730060Z copying torch\fx\passes\fake_tensor_prop.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:18:28.8745231Z copying torch\fx\passes\graph_drawer.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:18:28.8760583Z copying torch\fx\passes\graph_manipulation.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:18:28.8776452Z copying torch\fx\passes\graph_transform_observer.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:18:28.8789388Z copying torch\fx\passes\net_min_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:18:28.8814003Z copying torch\fx\passes\operator_support.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:18:28.8824249Z copying torch\fx\passes\param_fetch.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:18:28.8833768Z copying torch\fx\passes\pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:18:28.8844292Z copying torch\fx\passes\reinplace.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:18:28.8862960Z copying torch\fx\passes\runtime_assert.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:18:28.8878822Z copying torch\fx\passes\shape_prop.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:18:28.8923216Z copying torch\fx\passes\splitter_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:18:28.8924395Z copying torch\fx\passes\split_module.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:18:28.8942198Z copying torch\fx\passes\split_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:18:28.8955608Z copying torch\fx\passes\tools_common.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:18:28.8966473Z copying torch\fx\passes\_tensorify_python_scalars.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:18:28.8981180Z copying torch\fx\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:18:28.8989126Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:18:28.8992225Z copying torch\fx\experimental\migrate_gradual_types\constraint.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:18:28.9006854Z copying torch\fx\experimental\migrate_gradual_types\constraint_generator.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:18:28.9032189Z copying torch\fx\experimental\migrate_gradual_types\constraint_transformation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:18:28.9054517Z copying torch\fx\experimental\migrate_gradual_types\operation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:18:28.9060363Z copying torch\fx\experimental\migrate_gradual_types\transform_to_z3.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:18:28.9073823Z copying torch\fx\experimental\migrate_gradual_types\util.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:18:28.9098819Z copying torch\fx\experimental\migrate_gradual_types\z3_types.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:18:28.9108714Z copying torch\fx\experimental\migrate_gradual_types\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:18:28.9115198Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-24T05:18:28.9118267Z copying torch\fx\experimental\unification\core.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-24T05:18:28.9131561Z copying torch\fx\experimental\unification\dispatch.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-24T05:18:28.9136971Z copying torch\fx\experimental\unification\match.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-24T05:18:28.9146442Z copying torch\fx\experimental\unification\more.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-24T05:18:28.9156554Z copying torch\fx\experimental\unification\unification_tools.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-24T05:18:28.9177311Z copying torch\fx\experimental\unification\utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-24T05:18:28.9187025Z copying torch\fx\experimental\unification\variable.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-24T05:18:28.9197039Z copying torch\fx\experimental\unification\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-24T05:18:28.9204314Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:18:28.9207555Z copying torch\fx\experimental\unification\multipledispatch\conflict.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:18:28.9218054Z copying torch\fx\experimental\unification\multipledispatch\core.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:18:28.9227651Z copying torch\fx\experimental\unification\multipledispatch\dispatcher.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:18:28.9247054Z copying torch\fx\experimental\unification\multipledispatch\utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:18:28.9256885Z copying torch\fx\experimental\unification\multipledispatch\variadic.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:18:28.9274753Z copying torch\fx\experimental\unification\multipledispatch\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:18:28.9281299Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-07-24T05:18:28.9284418Z copying torch\fx\passes\backends\cudagraphs.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-07-24T05:18:28.9294906Z copying torch\fx\passes\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-07-24T05:18:28.9300715Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\dialect 2025-07-24T05:18:28.9307459Z copying torch\fx\passes\dialect\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect 2025-07-24T05:18:28.9313930Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-07-24T05:18:28.9317124Z copying torch\fx\passes\infra\partitioner.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-07-24T05:18:28.9339991Z copying torch\fx\passes\infra\pass_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-07-24T05:18:28.9352365Z copying torch\fx\passes\infra\pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-07-24T05:18:28.9363405Z copying torch\fx\passes\infra\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-07-24T05:18:28.9378704Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-07-24T05:18:28.9381830Z copying torch\fx\passes\tests\test_pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-07-24T05:18:28.9412917Z copying torch\fx\passes\tests\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-07-24T05:18:28.9413485Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-07-24T05:18:28.9414025Z copying torch\fx\passes\utils\common.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-07-24T05:18:28.9414826Z copying torch\fx\passes\utils\fuser_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-07-24T05:18:28.9426944Z copying torch\fx\passes\utils\matcher_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-07-24T05:18:28.9441318Z copying torch\fx\passes\utils\matcher_with_name_node_map_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-07-24T05:18:28.9454915Z copying torch\fx\passes\utils\source_matcher_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-07-24T05:18:28.9464875Z copying torch\fx\passes\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-07-24T05:18:28.9472341Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-07-24T05:18:28.9475578Z copying torch\fx\passes\dialect\common\cse_pass.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-07-24T05:18:28.9486061Z copying torch\fx\passes\dialect\common\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-07-24T05:18:28.9491577Z creating build\lib.win-amd64-cpython-39\torch\jit\mobile 2025-07-24T05:18:28.9494438Z copying torch\jit\mobile\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit\mobile 2025-07-24T05:18:28.9505711Z creating build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-07-24T05:18:28.9508851Z copying torch\jit\_passes\_property_propagation.py -> build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-07-24T05:18:28.9519069Z copying torch\jit\_passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-07-24T05:18:28.9525692Z creating build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-24T05:18:28.9528691Z copying torch\masked\maskedtensor\binary.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-24T05:18:28.9538685Z copying torch\masked\maskedtensor\core.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-24T05:18:28.9550740Z copying torch\masked\maskedtensor\creation.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-24T05:18:28.9556153Z copying torch\masked\maskedtensor\passthrough.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-24T05:18:28.9566143Z copying torch\masked\maskedtensor\reductions.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-24T05:18:28.9584766Z copying torch\masked\maskedtensor\unary.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-24T05:18:28.9599654Z copying torch\masked\maskedtensor\_ops_refs.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-24T05:18:28.9614986Z copying torch\masked\maskedtensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-24T05:18:28.9626349Z creating build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-07-24T05:18:28.9629473Z copying torch\nested\_internal\nested_int.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-07-24T05:18:28.9639219Z copying torch\nested\_internal\nested_tensor.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-07-24T05:18:28.9654755Z copying torch\nested\_internal\ops.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-07-24T05:18:28.9705259Z copying torch\nested\_internal\sdpa.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-07-24T05:18:28.9739793Z copying torch\nested\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-07-24T05:18:28.9745866Z creating build\lib.win-amd64-cpython-39\torch\nn\attention 2025-07-24T05:18:28.9748907Z copying torch\nn\attention\bias.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-07-24T05:18:28.9760640Z copying torch\nn\attention\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-07-24T05:18:28.9788043Z copying torch\nn\attention\_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-07-24T05:18:28.9797707Z copying torch\nn\attention\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-07-24T05:18:28.9809051Z creating build\lib.win-amd64-cpython-39\torch\nn\backends 2025-07-24T05:18:28.9812332Z copying torch\nn\backends\thnn.py -> build\lib.win-amd64-cpython-39\torch\nn\backends 2025-07-24T05:18:28.9817784Z copying torch\nn\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\backends 2025-07-24T05:18:28.9823423Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic 2025-07-24T05:18:28.9826425Z copying torch\nn\intrinsic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic 2025-07-24T05:18:28.9841953Z creating build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:28.9844419Z copying torch\nn\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:28.9869378Z copying torch\nn\modules\adaptive.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:28.9880300Z copying torch\nn\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:28.9903359Z copying torch\nn\modules\channelshuffle.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:28.9921296Z copying torch\nn\modules\container.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:28.9942160Z copying torch\nn\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:29.0503747Z copying torch\nn\modules\distance.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:29.0513521Z copying torch\nn\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:29.0524043Z copying torch\nn\modules\flatten.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:29.0536374Z copying torch\nn\modules\fold.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:29.0549023Z copying torch\nn\modules\instancenorm.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:29.0563739Z copying torch\nn\modules\lazy.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:29.0577217Z copying torch\nn\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:29.0587107Z copying torch\nn\modules\loss.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:29.0618940Z copying torch\nn\modules\module.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:29.0670627Z copying torch\nn\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:29.0680871Z copying torch\nn\modules\padding.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:29.0694532Z copying torch\nn\modules\pixelshuffle.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:29.0703255Z copying torch\nn\modules\pooling.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:29.0723688Z copying torch\nn\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:29.0753464Z copying torch\nn\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:29.0773422Z copying torch\nn\modules\transformer.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:29.0796679Z copying torch\nn\modules\upsampling.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:29.0807102Z copying torch\nn\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:29.0820757Z copying torch\nn\modules\_functions.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:29.0831181Z copying torch\nn\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:18:29.0843238Z creating build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-24T05:18:29.0846331Z copying torch\nn\parallel\comm.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-24T05:18:29.0857173Z copying torch\nn\parallel\data_parallel.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-24T05:18:29.0867702Z copying torch\nn\parallel\distributed.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-24T05:18:29.0912202Z copying torch\nn\parallel\parallel_apply.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-24T05:18:29.0924222Z copying torch\nn\parallel\replicate.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-24T05:18:29.0934325Z copying torch\nn\parallel\scatter_gather.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-24T05:18:29.0948468Z copying torch\nn\parallel\_functions.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-24T05:18:29.0958420Z copying torch\nn\parallel\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-24T05:18:29.0969065Z creating build\lib.win-amd64-cpython-39\torch\nn\qat 2025-07-24T05:18:29.0971811Z copying torch\nn\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat 2025-07-24T05:18:29.0992415Z creating build\lib.win-amd64-cpython-39\torch\nn\quantizable 2025-07-24T05:18:29.0995612Z copying torch\nn\quantizable\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable 2025-07-24T05:18:29.1001998Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-07-24T05:18:29.1005029Z copying torch\nn\quantized\functional.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-07-24T05:18:29.1010370Z copying torch\nn\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-07-24T05:18:29.1023493Z creating build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:18:29.1026539Z copying torch\nn\utils\clip_grad.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:18:29.1038389Z copying torch\nn\utils\convert_parameters.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:18:29.1048580Z copying torch\nn\utils\fusion.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:18:29.1059705Z copying torch\nn\utils\init.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:18:29.1070399Z copying torch\nn\utils\memory_format.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:18:29.1091980Z copying torch\nn\utils\parametrizations.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:18:29.1109550Z copying torch\nn\utils\parametrize.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:18:29.1128435Z copying torch\nn\utils\prune.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:18:29.1151635Z copying torch\nn\utils\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:18:29.1172837Z copying torch\nn\utils\spectral_norm.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:18:29.1187741Z copying torch\nn\utils\stateless.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:18:29.1203277Z copying torch\nn\utils\weight_norm.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:18:29.1213523Z copying torch\nn\utils\_deprecation_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:18:29.1223524Z copying torch\nn\utils\_named_member_accessor.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:18:29.1240296Z copying torch\nn\utils\_per_sample_grad.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:18:29.1250421Z copying torch\nn\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:18:29.1261280Z creating build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-07-24T05:18:29.1269653Z copying torch\nn\attention\experimental\_paged_attention.py -> build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-07-24T05:18:29.1280120Z copying torch\nn\attention\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-07-24T05:18:29.1286731Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-07-24T05:18:29.1289785Z copying torch\nn\intrinsic\modules\fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-07-24T05:18:29.1295368Z copying torch\nn\intrinsic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-07-24T05:18:29.1301980Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat 2025-07-24T05:18:29.1305766Z copying torch\nn\intrinsic\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat 2025-07-24T05:18:29.1312675Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized 2025-07-24T05:18:29.1315545Z copying torch\nn\intrinsic\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized 2025-07-24T05:18:29.1322854Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-07-24T05:18:29.1325894Z copying torch\nn\intrinsic\qat\modules\conv_fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-07-24T05:18:29.1358934Z copying torch\nn\intrinsic\qat\modules\linear_fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-07-24T05:18:29.1364853Z copying torch\nn\intrinsic\qat\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-07-24T05:18:29.1377951Z copying torch\nn\intrinsic\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-07-24T05:18:29.1389167Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic 2025-07-24T05:18:29.1392353Z copying torch\nn\intrinsic\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic 2025-07-24T05:18:29.1412418Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-07-24T05:18:29.1413151Z copying torch\nn\intrinsic\quantized\modules\bn_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-07-24T05:18:29.1414873Z copying torch\nn\intrinsic\quantized\modules\conv_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-07-24T05:18:29.1420659Z copying torch\nn\intrinsic\quantized\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-07-24T05:18:29.1426626Z copying torch\nn\intrinsic\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-07-24T05:18:29.1433315Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:18:29.1436785Z copying torch\nn\intrinsic\quantized\dynamic\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:18:29.1441999Z copying torch\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:18:29.1454228Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic 2025-07-24T05:18:29.1456732Z copying torch\nn\qat\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic 2025-07-24T05:18:29.1464124Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-07-24T05:18:29.1467258Z copying torch\nn\qat\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-07-24T05:18:29.1472940Z copying torch\nn\qat\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-07-24T05:18:29.1478638Z copying torch\nn\qat\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-07-24T05:18:29.1483969Z copying torch\nn\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-07-24T05:18:29.1490625Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-07-24T05:18:29.1494757Z copying torch\nn\qat\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-07-24T05:18:29.1499160Z copying torch\nn\qat\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-07-24T05:18:29.1505804Z creating build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-07-24T05:18:29.1509294Z copying torch\nn\quantizable\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-07-24T05:18:29.1523090Z copying torch\nn\quantizable\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-07-24T05:18:29.1532336Z copying torch\nn\quantizable\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-07-24T05:18:29.1538670Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic 2025-07-24T05:18:29.1541436Z copying torch\nn\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic 2025-07-24T05:18:29.1550341Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:18:29.1552854Z copying torch\nn\quantized\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:18:29.1562866Z copying torch\nn\quantized\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:18:29.1568505Z copying torch\nn\quantized\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:18:29.1573868Z copying torch\nn\quantized\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:18:29.1583308Z copying torch\nn\quantized\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:18:29.1593995Z copying torch\nn\quantized\modules\functional_modules.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:18:29.1603791Z copying torch\nn\quantized\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:18:29.1609425Z copying torch\nn\quantized\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:18:29.1618864Z copying torch\nn\quantized\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:18:29.1624494Z copying torch\nn\quantized\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:18:29.1630165Z copying torch\nn\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:18:29.1640749Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference 2025-07-24T05:18:29.1648341Z copying torch\nn\quantized\_reference\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference 2025-07-24T05:18:29.1655153Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-07-24T05:18:29.1658115Z copying torch\nn\quantized\dynamic\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-07-24T05:18:29.1663688Z copying torch\nn\quantized\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-07-24T05:18:29.1673172Z copying torch\nn\quantized\dynamic\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-07-24T05:18:29.1682165Z copying torch\nn\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-07-24T05:18:29.1693392Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-07-24T05:18:29.1696427Z copying torch\nn\quantized\_reference\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-07-24T05:18:29.1702051Z copying torch\nn\quantized\_reference\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-07-24T05:18:29.1707780Z copying torch\nn\quantized\_reference\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-07-24T05:18:29.1713191Z copying torch\nn\quantized\_reference\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-07-24T05:18:29.1719022Z copying torch\nn\quantized\_reference\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-07-24T05:18:29.1724417Z copying torch\nn\quantized\_reference\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-07-24T05:18:29.1736888Z creating build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-24T05:18:29.1743543Z copying torch\nn\utils\_expanded_weights\conv_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-24T05:18:29.1757771Z copying torch\nn\utils\_expanded_weights\conv_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-24T05:18:29.1768266Z copying torch\nn\utils\_expanded_weights\embedding_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-24T05:18:29.1788000Z copying torch\nn\utils\_expanded_weights\expanded_weights_impl.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-24T05:18:29.1798437Z copying torch\nn\utils\_expanded_weights\expanded_weights_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-24T05:18:29.1809685Z copying torch\nn\utils\_expanded_weights\group_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-24T05:18:29.1831128Z copying torch\nn\utils\_expanded_weights\instance_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-24T05:18:29.1841518Z copying torch\nn\utils\_expanded_weights\layer_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-24T05:18:29.1856772Z copying torch\nn\utils\_expanded_weights\linear_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-24T05:18:29.1869394Z copying torch\nn\utils\_expanded_weights\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-24T05:18:29.1876477Z creating build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-07-24T05:18:29.1879745Z copying torch\onnx\ops\_dtype_mappings.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-07-24T05:18:29.1890591Z copying torch\onnx\ops\_impl.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-07-24T05:18:29.1905285Z copying torch\onnx\ops\_symbolic_impl.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-07-24T05:18:29.1922666Z copying torch\onnx\ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-07-24T05:18:29.1934799Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-07-24T05:18:29.1936443Z copying torch\onnx\_internal\jit_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-07-24T05:18:29.1948366Z copying torch\onnx\_internal\onnx_proto_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-07-24T05:18:29.1958914Z copying torch\onnx\_internal\registration.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-07-24T05:18:29.1973954Z copying torch\onnx\_internal\_exporter_legacy.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-07-24T05:18:29.1983560Z copying torch\onnx\_internal\_lazy_import.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-07-24T05:18:29.1993082Z copying torch\onnx\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-07-24T05:18:29.2001913Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2005067Z copying torch\onnx\_internal\exporter\_analysis.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2019086Z copying torch\onnx\_internal\exporter\_building.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2034561Z copying torch\onnx\_internal\exporter\_capture_strategies.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2044506Z copying torch\onnx\_internal\exporter\_compat.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2066195Z copying torch\onnx\_internal\exporter\_constants.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2071704Z copying torch\onnx\_internal\exporter\_core.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2237348Z copying torch\onnx\_internal\exporter\_decomp.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2247149Z copying torch\onnx\_internal\exporter\_dispatching.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2257780Z copying torch\onnx\_internal\exporter\_dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2273423Z copying torch\onnx\_internal\exporter\_errors.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2278890Z copying torch\onnx\_internal\exporter\_flags.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2284438Z copying torch\onnx\_internal\exporter\_fx_passes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2294703Z copying torch\onnx\_internal\exporter\_ir_passes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2304491Z copying torch\onnx\_internal\exporter\_isolated.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2314220Z copying torch\onnx\_internal\exporter\_onnx_program.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2328472Z copying torch\onnx\_internal\exporter\_registration.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2339145Z copying torch\onnx\_internal\exporter\_reporting.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2350128Z copying torch\onnx\_internal\exporter\_schemas.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2365376Z copying torch\onnx\_internal\exporter\_tensors.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2374953Z copying torch\onnx\_internal\exporter\_testing.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2383740Z copying torch\onnx\_internal\exporter\_type_casting.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2397331Z copying torch\onnx\_internal\exporter\_verification.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2408017Z copying torch\onnx\_internal\exporter\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:18:29.2414225Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-07-24T05:18:29.2417161Z copying torch\onnx\_internal\fx\patcher.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-07-24T05:18:29.2428687Z copying torch\onnx\_internal\fx\serialization.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-07-24T05:18:29.2566630Z copying torch\onnx\_internal\fx\type_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-07-24T05:18:29.2567465Z copying torch\onnx\_internal\fx\_pass.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-07-24T05:18:29.2578754Z copying torch\onnx\_internal\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-07-24T05:18:29.2593386Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-07-24T05:18:29.2601552Z copying torch\onnx\_internal\exporter\_torchlib\_tensor_typing.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-07-24T05:18:29.2611991Z copying torch\onnx\_internal\exporter\_torchlib\_torchlib_registry.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-07-24T05:18:29.2621474Z copying torch\onnx\_internal\exporter\_torchlib\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-07-24T05:18:29.2628004Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:18:29.2652414Z copying torch\onnx\_internal\exporter\_torchlib\ops\core.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:18:29.2662794Z copying torch\onnx\_internal\exporter\_torchlib\ops\hop.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:18:29.2676429Z copying torch\onnx\_internal\exporter\_torchlib\ops\nn.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:18:29.2686895Z copying torch\onnx\_internal\exporter\_torchlib\ops\symbolic.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:18:29.2697047Z copying torch\onnx\_internal\exporter\_torchlib\ops\symops.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:18:29.2707616Z copying torch\onnx\_internal\exporter\_torchlib\ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:18:29.2715559Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-07-24T05:18:29.2717535Z copying torch\onnx\_internal\fx\passes\type_promotion.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-07-24T05:18:29.2747722Z copying torch\onnx\_internal\fx\passes\_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-07-24T05:18:29.2760930Z copying torch\onnx\_internal\fx\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-07-24T05:18:29.2767384Z creating build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-07-24T05:18:29.2770750Z copying torch\optim\_multi_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-07-24T05:18:29.2781740Z creating build\lib.win-amd64-cpython-39\torch\package\analyze 2025-07-24T05:18:29.2784888Z copying torch\package\analyze\find_first_use_of_broken_modules.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-07-24T05:18:29.2795065Z copying torch\package\analyze\is_from_package.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-07-24T05:18:29.2801112Z copying torch\package\analyze\trace_dependencies.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-07-24T05:18:29.2819541Z copying torch\package\analyze\__init__.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-07-24T05:18:29.2827902Z creating build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:18:29.2830869Z copying torch\quantization\fx\convert.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:18:29.2836319Z copying torch\quantization\fx\fuse.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:18:29.2846177Z copying torch\quantization\fx\fusion_patterns.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:18:29.2851647Z copying torch\quantization\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:18:29.2857137Z copying torch\quantization\fx\match_utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:18:29.2868313Z copying torch\quantization\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:18:29.2878296Z copying torch\quantization\fx\prepare.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:18:29.2888720Z copying torch\quantization\fx\quantization_patterns.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:18:29.2898237Z copying torch\quantization\fx\quantization_types.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:18:29.2903800Z copying torch\quantization\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:18:29.2950603Z copying torch\quantization\fx\_equalize.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:18:29.2951340Z copying torch\quantization\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:18:29.2951889Z creating build\lib.win-amd64-cpython-39\torch\signal\windows 2025-07-24T05:18:29.2952438Z copying torch\signal\windows\windows.py -> build\lib.win-amd64-cpython-39\torch\signal\windows 2025-07-24T05:18:29.2956449Z copying torch\signal\windows\__init__.py -> build\lib.win-amd64-cpython-39\torch\signal\windows 2025-07-24T05:18:29.2969549Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.2978024Z copying torch\testing\_internal\autocast_test_lists.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.2993476Z copying torch\testing\_internal\autograd_function_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.3016305Z copying torch\testing\_internal\check_kernel_launches.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.3035302Z copying torch\testing\_internal\common_cuda.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.4015485Z copying torch\testing\_internal\common_device_type.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.4044850Z copying torch\testing\_internal\common_distributed.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.4079857Z copying torch\testing\_internal\common_dist_composable.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.4089760Z copying torch\testing\_internal\common_dtype.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.4099817Z copying torch\testing\_internal\common_fsdp.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.4127816Z copying torch\testing\_internal\common_jit.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.4143979Z copying torch\testing\_internal\common_methods_invocations.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.6163957Z copying torch\testing\_internal\common_mkldnn.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.6176826Z copying torch\testing\_internal\common_modules.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.7411971Z copying torch\testing\_internal\common_mps.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.7434019Z copying torch\testing\_internal\common_nn.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.7502969Z copying torch\testing\_internal\common_optimizers.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.7542120Z copying torch\testing\_internal\common_pruning.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.7557886Z copying torch\testing\_internal\common_quantization.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.8380990Z copying torch\testing\_internal\common_quantized.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.8402600Z copying torch\testing\_internal\common_subclass.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.8419632Z copying torch\testing\_internal\common_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.8527229Z copying torch\testing\_internal\composite_compliance.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.8554592Z copying torch\testing\_internal\custom_op_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.8567998Z copying torch\testing\_internal\custom_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.8579709Z copying torch\testing\_internal\dist_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.8590916Z copying torch\testing\_internal\dynamo_test_failures.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.9768337Z copying torch\testing\_internal\fake_config_module.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.9778810Z copying torch\testing\_internal\fake_config_module2.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.9784906Z copying torch\testing\_internal\fake_config_module3.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.9801712Z copying torch\testing\_internal\hop_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.9814814Z copying torch\testing\_internal\hypothesis_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.9834363Z copying torch\testing\_internal\inductor_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:29.9845001Z copying torch\testing\_internal\jit_metaprogramming_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:30.0686270Z copying torch\testing\_internal\jit_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:30.0705382Z copying torch\testing\_internal\logging_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:30.0720202Z copying torch\testing\_internal\logging_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:30.0731696Z copying torch\testing\_internal\quantization_torch_package_models.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:30.0742706Z copying torch\testing\_internal\static_module.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:30.0757749Z copying torch\testing\_internal\subclasses.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:30.0771311Z copying torch\testing\_internal\torchbind_impls.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:30.0781830Z copying torch\testing\_internal\triton_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:30.0811825Z copying torch\testing\_internal\two_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:30.0822432Z copying torch\testing\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:18:30.0829841Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen 2025-07-24T05:18:30.0832380Z copying torch\testing\_internal\codegen\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen 2025-07-24T05:18:30.0839608Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-07-24T05:18:30.0842781Z copying torch\testing\_internal\data\network1.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-07-24T05:18:30.0848477Z copying torch\testing\_internal\data\network2.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-07-24T05:18:30.0854111Z copying torch\testing\_internal\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-07-24T05:18:30.0862141Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-24T05:18:30.0865519Z copying torch\testing\_internal\distributed\checkpoint_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-24T05:18:30.0876434Z copying torch\testing\_internal\distributed\common_state_dict.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-24T05:18:30.0887873Z copying torch\testing\_internal\distributed\ddp_under_dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-24T05:18:30.0907094Z copying torch\testing\_internal\distributed\distributed_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-24T05:18:30.1792268Z copying torch\testing\_internal\distributed\distributed_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-24T05:18:30.1805494Z copying torch\testing\_internal\distributed\fake_pg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-24T05:18:30.1816020Z copying torch\testing\_internal\distributed\multi_threaded_pg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-24T05:18:30.1843068Z copying torch\testing\_internal\distributed\rpc_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-24T05:18:30.1853487Z copying torch\testing\_internal\distributed\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-24T05:18:30.1860189Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-07-24T05:18:30.1863521Z copying torch\testing\_internal\generated\annotated_fn_args.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-07-24T05:18:30.3114361Z copying torch\testing\_internal\generated\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-07-24T05:18:30.3120934Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-07-24T05:18:30.3123809Z copying torch\testing\_internal\opinfo\core.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-07-24T05:18:30.3175551Z copying torch\testing\_internal\opinfo\refs.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-07-24T05:18:30.3186145Z copying torch\testing\_internal\opinfo\utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-07-24T05:18:30.3196413Z copying torch\testing\_internal\opinfo\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-07-24T05:18:30.3203686Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-07-24T05:18:30.3206796Z copying torch\testing\_internal\optests\aot_autograd.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-07-24T05:18:30.3216715Z copying torch\testing\_internal\optests\autograd_registration.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-07-24T05:18:30.3233865Z copying torch\testing\_internal\optests\fake_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-07-24T05:18:30.3239513Z copying torch\testing\_internal\optests\generate_tests.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-07-24T05:18:30.3259674Z copying torch\testing\_internal\optests\make_fx.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-07-24T05:18:30.3269414Z copying torch\testing\_internal\optests\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-07-24T05:18:30.3276241Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-07-24T05:18:30.3279325Z copying torch\testing\_internal\test_module\future_div.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-07-24T05:18:30.3285409Z copying torch\testing\_internal\test_module\no_future_div.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-07-24T05:18:30.3290737Z copying torch\testing\_internal\test_module\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-07-24T05:18:30.3296421Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn 2025-07-24T05:18:30.3299337Z copying torch\testing\_internal\distributed\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn 2025-07-24T05:18:30.3306493Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-24T05:18:30.3309639Z copying torch\testing\_internal\distributed\rpc\dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-24T05:18:30.3358992Z copying torch\testing\_internal\distributed\rpc\dist_optimizer_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-24T05:18:30.3376986Z copying torch\testing\_internal\distributed\rpc\faulty_agent_rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-24T05:18:30.3395320Z copying torch\testing\_internal\distributed\rpc\faulty_rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-24T05:18:30.3406336Z copying torch\testing\_internal\distributed\rpc\rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-24T05:18:30.3415480Z copying torch\testing\_internal\distributed\rpc\rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-24T05:18:30.3498832Z copying torch\testing\_internal\distributed\rpc\tensorpipe_rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-24T05:18:30.3509171Z copying torch\testing\_internal\distributed\rpc\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-24T05:18:30.3515215Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-07-24T05:18:30.3518212Z copying torch\testing\_internal\distributed\_shard\test_common.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-07-24T05:18:30.3528158Z copying torch\testing\_internal\distributed\_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-07-24T05:18:30.3534856Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-07-24T05:18:30.3537931Z copying torch\testing\_internal\distributed\_tensor\common_dtensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-07-24T05:18:30.3558917Z copying torch\testing\_internal\distributed\_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-07-24T05:18:30.3565022Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-07-24T05:18:30.3568716Z copying torch\testing\_internal\distributed\nn\api\remote_module_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-07-24T05:18:30.3584509Z copying torch\testing\_internal\distributed\nn\api\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-07-24T05:18:30.3590966Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-07-24T05:18:30.3594172Z copying torch\testing\_internal\distributed\rpc\examples\parameter_server_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-07-24T05:18:30.3604633Z copying torch\testing\_internal\distributed\rpc\examples\reinforcement_learning_rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-07-24T05:18:30.3615182Z copying torch\testing\_internal\distributed\rpc\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-07-24T05:18:30.3621401Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-07-24T05:18:30.3624542Z copying torch\testing\_internal\distributed\rpc\jit\dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-07-24T05:18:30.3638225Z copying torch\testing\_internal\distributed\rpc\jit\rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-07-24T05:18:30.3658795Z copying torch\testing\_internal\distributed\rpc\jit\rpc_test_faulty.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-07-24T05:18:30.3669249Z copying torch\testing\_internal\distributed\rpc\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-07-24T05:18:30.3675527Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-07-24T05:18:30.3679065Z copying torch\testing\_internal\distributed\_shard\sharded_tensor\_test_ops_common.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-07-24T05:18:30.3689037Z copying torch\testing\_internal\distributed\_shard\sharded_tensor\_test_st_common.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-07-24T05:18:30.3698692Z copying torch\testing\_internal\distributed\_shard\sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-07-24T05:18:30.3710196Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-24T05:18:30.3713227Z copying torch\testing\_internal\opinfo\definitions\fft.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-24T05:18:30.3728267Z copying torch\testing\_internal\opinfo\definitions\linalg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-24T05:18:30.3759719Z copying torch\testing\_internal\opinfo\definitions\nested.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-24T05:18:30.3801844Z copying torch\testing\_internal\opinfo\definitions\signal.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-24T05:18:30.3817154Z copying torch\testing\_internal\opinfo\definitions\sparse.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-24T05:18:30.3847804Z copying torch\testing\_internal\opinfo\definitions\special.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-24T05:18:30.3874045Z copying torch\testing\_internal\opinfo\definitions\_masked.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-24T05:18:30.3896575Z copying torch\testing\_internal\opinfo\definitions\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-24T05:18:30.3902942Z creating build\lib.win-amd64-cpython-39\torch\utils\backcompat 2025-07-24T05:18:30.3905864Z copying torch\utils\backcompat\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\backcompat 2025-07-24T05:18:30.3912799Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark 2025-07-24T05:18:30.3915659Z copying torch\utils\benchmark\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark 2025-07-24T05:18:30.3922419Z creating build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-07-24T05:18:30.3925233Z copying torch\utils\bottleneck\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-07-24T05:18:30.3929796Z copying torch\utils\bottleneck\__main__.py -> build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-07-24T05:18:30.3946790Z creating build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-24T05:18:30.3949906Z copying torch\utils\data\backward_compatibility.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-24T05:18:30.3955443Z copying torch\utils\data\dataloader.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-24T05:18:30.3983748Z copying torch\utils\data\dataset.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-24T05:18:30.4003278Z copying torch\utils\data\distributed.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-24T05:18:30.4018158Z copying torch\utils\data\graph.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-24T05:18:30.4028421Z copying torch\utils\data\graph_settings.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-24T05:18:30.4038383Z copying torch\utils\data\sampler.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-24T05:18:30.4048609Z copying torch\utils\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-24T05:18:30.4099122Z creating build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-07-24T05:18:30.4099695Z copying torch\utils\hipify\constants.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-07-24T05:18:30.4100380Z copying torch\utils\hipify\cuda_to_hip_mappings.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-07-24T05:18:30.4371906Z copying torch\utils\hipify\hipify_python.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-07-24T05:18:30.4395880Z copying torch\utils\hipify\version.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-07-24T05:18:30.4406530Z copying torch\utils\hipify\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-07-24T05:18:30.4413217Z creating build\lib.win-amd64-cpython-39\torch\utils\jit 2025-07-24T05:18:30.4416910Z copying torch\utils\jit\log_extract.py -> build\lib.win-amd64-cpython-39\torch\utils\jit 2025-07-24T05:18:30.4436899Z copying torch\utils\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\jit 2025-07-24T05:18:30.4443023Z creating build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-07-24T05:18:30.4446012Z copying torch\utils\model_dump\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-07-24T05:18:30.4465838Z copying torch\utils\model_dump\__main__.py -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-07-24T05:18:30.4472594Z creating build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-07-24T05:18:30.4475670Z copying torch\utils\serialization\config.py -> build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-07-24T05:18:30.4500592Z copying torch\utils\serialization\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-07-24T05:18:30.4501184Z creating build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-24T05:18:30.4501767Z copying torch\utils\tensorboard\summary.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-24T05:18:30.4517061Z copying torch\utils\tensorboard\writer.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-24T05:18:30.4538650Z copying torch\utils\tensorboard\_convert_np.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-24T05:18:30.4548757Z copying torch\utils\tensorboard\_embedding.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-24T05:18:30.4563200Z copying torch\utils\tensorboard\_onnx_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-24T05:18:30.4573218Z copying torch\utils\tensorboard\_proto_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-24T05:18:30.4597235Z copying torch\utils\tensorboard\_pytorch_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-24T05:18:30.4609777Z copying torch\utils\tensorboard\_utils.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-24T05:18:30.4620056Z copying torch\utils\tensorboard\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-24T05:18:30.4631373Z creating build\lib.win-amd64-cpython-39\torch\utils\viz 2025-07-24T05:18:30.4634271Z copying torch\utils\viz\_cycles.py -> build\lib.win-amd64-cpython-39\torch\utils\viz 2025-07-24T05:18:30.4650710Z copying torch\utils\viz\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\viz 2025-07-24T05:18:30.4656539Z creating build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-07-24T05:18:30.4659638Z copying torch\utils\_strobelight\cli_function_profiler.py -> build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-07-24T05:18:30.4673029Z copying torch\utils\_strobelight\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-07-24T05:18:30.4680166Z creating build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-24T05:18:30.4683100Z copying torch\utils\_sympy\functions.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-24T05:18:30.4711351Z copying torch\utils\_sympy\interp.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-24T05:18:30.4722567Z copying torch\utils\_sympy\numbers.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-24T05:18:30.4733003Z copying torch\utils\_sympy\printers.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-24T05:18:30.4749213Z copying torch\utils\_sympy\reference.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-24T05:18:30.4763549Z copying torch\utils\_sympy\singleton_int.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-24T05:18:30.4774128Z copying torch\utils\_sympy\solve.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-24T05:18:30.4787952Z copying torch\utils\_sympy\symbol.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-24T05:18:30.4799221Z copying torch\utils\_sympy\value_ranges.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-24T05:18:30.4824811Z copying torch\utils\_sympy\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-24T05:18:30.4831495Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-07-24T05:18:30.4834632Z copying torch\utils\benchmark\examples\compare.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-07-24T05:18:30.4845020Z copying torch\utils\benchmark\examples\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-07-24T05:18:30.4854629Z copying torch\utils\benchmark\examples\op_benchmark.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-07-24T05:18:30.4869905Z copying torch\utils\benchmark\examples\simple_timeit.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-07-24T05:18:30.4875643Z copying torch\utils\benchmark\examples\spectral_ops_fuzz_test.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-07-24T05:18:30.4896471Z copying torch\utils\benchmark\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-07-24T05:18:30.4902839Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-07-24T05:18:30.4906489Z copying torch\utils\benchmark\op_fuzzers\binary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-07-24T05:18:30.4917494Z copying torch\utils\benchmark\op_fuzzers\sparse_binary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-07-24T05:18:30.4929029Z copying torch\utils\benchmark\op_fuzzers\sparse_unary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-07-24T05:18:30.4942234Z copying torch\utils\benchmark\op_fuzzers\spectral.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-07-24T05:18:30.4956699Z copying torch\utils\benchmark\op_fuzzers\unary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-07-24T05:18:30.4970652Z copying torch\utils\benchmark\op_fuzzers\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-07-24T05:18:30.4977320Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-24T05:18:30.4980234Z copying torch\utils\benchmark\utils\common.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-24T05:18:30.4996766Z copying torch\utils\benchmark\utils\compare.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-24T05:18:30.5008845Z copying torch\utils\benchmark\utils\compile.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-24T05:18:30.5024093Z copying torch\utils\benchmark\utils\cpp_jit.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-24T05:18:30.5037046Z copying torch\utils\benchmark\utils\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-24T05:18:30.5053017Z copying torch\utils\benchmark\utils\sparse_fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-24T05:18:30.5073413Z copying torch\utils\benchmark\utils\timer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-24T05:18:30.5088786Z copying torch\utils\benchmark\utils\_stubs.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-24T05:18:30.5102071Z copying torch\utils\benchmark\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-24T05:18:30.5108106Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:18:30.5111236Z copying torch\utils\benchmark\utils\valgrind_wrapper\timer_interface.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:18:30.5131692Z copying torch\utils\benchmark\utils\valgrind_wrapper\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:18:30.5187188Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-24T05:18:30.5190139Z copying torch\utils\data\datapipes\datapipe.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-24T05:18:30.5275883Z copying torch\utils\data\datapipes\gen_pyi.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-24T05:18:30.5290297Z copying torch\utils\data\datapipes\_decorator.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-24T05:18:30.5302768Z copying torch\utils\data\datapipes\_hook_iterator.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-24T05:18:30.5321794Z copying torch\utils\data\datapipes\_typing.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-24T05:18:30.5339806Z copying torch\utils\data\datapipes\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-24T05:18:30.5347880Z creating build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-07-24T05:18:30.5350929Z copying torch\utils\data\_utils\collate.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-07-24T05:18:30.5362350Z copying torch\utils\data\_utils\fetch.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-07-24T05:18:30.5372463Z copying torch\utils\data\_utils\pin_memory.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-07-24T05:18:30.5383260Z copying torch\utils\data\_utils\signal_handling.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-07-24T05:18:30.5397444Z copying torch\utils\data\_utils\worker.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-07-24T05:18:30.5412863Z copying torch\utils\data\_utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-07-24T05:18:30.5431175Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-07-24T05:18:30.5433897Z copying torch\utils\data\datapipes\dataframe\dataframes.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-07-24T05:18:30.5445618Z copying torch\utils\data\datapipes\dataframe\dataframe_wrapper.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-07-24T05:18:30.5478470Z copying torch\utils\data\datapipes\dataframe\datapipes.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-07-24T05:18:30.5497969Z copying torch\utils\data\datapipes\dataframe\structures.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-07-24T05:18:30.5507975Z copying torch\utils\data\datapipes\dataframe\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-07-24T05:18:30.5520456Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:18:30.5523422Z copying torch\utils\data\datapipes\iter\callable.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:18:30.5534905Z copying torch\utils\data\datapipes\iter\combinatorics.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:18:30.5544899Z copying torch\utils\data\datapipes\iter\combining.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:18:30.5570112Z copying torch\utils\data\datapipes\iter\filelister.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:18:30.5584745Z copying torch\utils\data\datapipes\iter\fileopener.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:18:30.5603329Z copying torch\utils\data\datapipes\iter\grouping.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:18:30.5614380Z copying torch\utils\data\datapipes\iter\routeddecoder.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:18:30.5624053Z copying torch\utils\data\datapipes\iter\selecting.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:18:30.5639948Z copying torch\utils\data\datapipes\iter\sharding.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:18:30.5649637Z copying torch\utils\data\datapipes\iter\streamreader.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:18:30.5663626Z copying torch\utils\data\datapipes\iter\utils.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:18:30.5676100Z copying torch\utils\data\datapipes\iter\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:18:30.5687765Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-07-24T05:18:30.5691005Z copying torch\utils\data\datapipes\map\callable.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-07-24T05:18:30.5700889Z copying torch\utils\data\datapipes\map\combinatorics.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-07-24T05:18:30.5716821Z copying torch\utils\data\datapipes\map\combining.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-07-24T05:18:30.5727676Z copying torch\utils\data\datapipes\map\grouping.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-07-24T05:18:30.5740250Z copying torch\utils\data\datapipes\map\utils.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-07-24T05:18:30.5759181Z copying torch\utils\data\datapipes\map\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-07-24T05:18:30.5766163Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-07-24T05:18:30.5769597Z copying torch\utils\data\datapipes\utils\common.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-07-24T05:18:30.5786859Z copying torch\utils\data\datapipes\utils\decoder.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-07-24T05:18:30.5797824Z copying torch\utils\data\datapipes\utils\snapshot.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-07-24T05:18:30.5808308Z copying torch\utils\data\datapipes\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-07-24T05:18:30.5815483Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:18:30.5818577Z copying torch\_dynamo\backends\common.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:18:30.5835710Z copying torch\_dynamo\backends\cudagraphs.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:18:30.5846549Z copying torch\_dynamo\backends\debugging.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:18:30.5868096Z copying torch\_dynamo\backends\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:18:30.5892531Z copying torch\_dynamo\backends\inductor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:18:30.5904509Z copying torch\_dynamo\backends\onnxrt.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:18:30.5915579Z copying torch\_dynamo\backends\registry.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:18:30.5930458Z copying torch\_dynamo\backends\tensorrt.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:18:30.5936024Z copying torch\_dynamo\backends\torchxla.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:18:30.5950081Z copying torch\_dynamo\backends\tvm.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:18:30.5961262Z copying torch\_dynamo\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:18:30.5968716Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:18:30.5971756Z copying torch\_dynamo\polyfills\builtins.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:18:30.5981759Z copying torch\_dynamo\polyfills\functools.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:18:30.5995096Z copying torch\_dynamo\polyfills\fx.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:18:30.6004841Z copying torch\_dynamo\polyfills\itertools.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:18:30.6070309Z copying torch\_dynamo\polyfills\loader.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:18:30.6080129Z copying torch\_dynamo\polyfills\operator.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:18:30.6090736Z copying torch\_dynamo\polyfills\os.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:18:30.6104922Z copying torch\_dynamo\polyfills\pytree.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:18:30.6117071Z copying torch\_dynamo\polyfills\struct.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:18:30.6122421Z copying torch\_dynamo\polyfills\sys.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:18:30.6136717Z copying torch\_dynamo\polyfills\tensor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:18:30.6146865Z copying torch\_dynamo\polyfills\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:18:30.6314478Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-07-24T05:18:30.6317122Z copying torch\_dynamo\repro\after_aot.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-07-24T05:18:30.6343232Z copying torch\_dynamo\repro\after_dynamo.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-07-24T05:18:30.6362021Z copying torch\_dynamo\repro\aoti.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-07-24T05:18:30.6377767Z copying torch\_dynamo\repro\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-07-24T05:18:30.6386487Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.6389931Z copying torch\_dynamo\variables\base.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.7097742Z copying torch\_dynamo\variables\builder.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.7559004Z copying torch\_dynamo\variables\builtin.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.7609577Z copying torch\_dynamo\variables\constant.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.7622676Z copying torch\_dynamo\variables\ctx_manager.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.7658320Z copying torch\_dynamo\variables\dicts.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.7686243Z copying torch\_dynamo\variables\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.7700674Z copying torch\_dynamo\variables\functions.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.7758413Z copying torch\_dynamo\variables\higher_order_ops.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.7808895Z copying torch\_dynamo\variables\iter.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.8549486Z copying torch\_dynamo\variables\lazy.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.8559832Z copying torch\_dynamo\variables\lists.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.9373162Z copying torch\_dynamo\variables\misc.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.9404570Z copying torch\_dynamo\variables\nn_module.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.9428313Z copying torch\_dynamo\variables\optimizer.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.9449094Z copying torch\_dynamo\variables\script_object.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.9460624Z copying torch\_dynamo\variables\sdpa.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.9473388Z copying torch\_dynamo\variables\tensor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.9503903Z copying torch\_dynamo\variables\torch.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.9540763Z copying torch\_dynamo\variables\torch_function.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.9568776Z copying torch\_dynamo\variables\user_defined.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.9603285Z copying torch\_dynamo\variables\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:18:30.9621777Z creating build\lib.win-amd64-cpython-39\torch\_export\db 2025-07-24T05:18:30.9624689Z copying torch\_export\db\case.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-07-24T05:18:30.9636495Z copying torch\_export\db\gen_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-07-24T05:18:30.9642020Z copying torch\_export\db\logging.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-07-24T05:18:30.9652481Z copying torch\_export\db\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-07-24T05:18:30.9661412Z creating build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:18:30.9665460Z copying torch\_export\passes\add_runtime_assertions_for_constraints_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:18:31.0346930Z copying torch\_export\passes\collect_tracepoints_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:18:31.0364480Z copying torch\_export\passes\constant_folding.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:18:31.1339550Z copying torch\_export\passes\functionalize_side_effectful_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:18:31.1353844Z copying torch\_export\passes\insert_custom_op_guards.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:18:31.1364611Z copying torch\_export\passes\lift_constants_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:18:31.1383753Z copying torch\_export\passes\remove_runtime_assertions.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:18:31.1403742Z copying torch\_export\passes\replace_autocast_with_hop_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:18:31.1416415Z copying torch\_export\passes\replace_quantized_ops_with_standard_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:18:31.1440913Z copying torch\_export\passes\replace_set_grad_with_hop_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:18:31.1453415Z copying torch\_export\passes\replace_view_ops_with_view_copy_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:18:31.1464523Z copying torch\_export\passes\replace_with_hop_pass_util.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:18:31.1476546Z copying torch\_export\passes\_node_metadata_hook.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:18:31.1487846Z copying torch\_export\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:18:31.1496155Z creating build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-07-24T05:18:31.1498828Z copying torch\_export\pass_infra\node_metadata.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-07-24T05:18:31.1508649Z copying torch\_export\pass_infra\proxy_value.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-07-24T05:18:31.1518277Z copying torch\_export\pass_infra\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-07-24T05:18:31.1524987Z creating build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-24T05:18:31.1527951Z copying torch\_export\serde\dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-24T05:18:31.1548882Z copying torch\_export\serde\schema.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-24T05:18:31.2089995Z copying torch\_export\serde\schema_check.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-24T05:18:31.2117157Z copying torch\_export\serde\serialize.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-24T05:18:31.2197162Z copying torch\_export\serde\union.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-24T05:18:31.2212168Z copying torch\_export\serde\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-24T05:18:31.2224025Z creating build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2227376Z copying torch\_export\db\examples\assume_constant_result.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2233209Z copying torch\_export\db\examples\autograd_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2243778Z copying torch\_export\db\examples\class_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2257707Z copying torch\_export\db\examples\cond_branch_class_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2268642Z copying torch\_export\db\examples\cond_branch_nested_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2278842Z copying torch\_export\db\examples\cond_branch_nonlocal_variables.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2289854Z copying torch\_export\db\examples\cond_closed_over_variable.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2295497Z copying torch\_export\db\examples\cond_operands.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2305527Z copying torch\_export\db\examples\cond_predicate.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2315833Z copying torch\_export\db\examples\constrain_as_size_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2326287Z copying torch\_export\db\examples\constrain_as_value_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2342039Z copying torch\_export\db\examples\decorator.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2348097Z copying torch\_export\db\examples\dictionary.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2353975Z copying torch\_export\db\examples\dynamic_shape_assert.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2360080Z copying torch\_export\db\examples\dynamic_shape_constructor.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2365987Z copying torch\_export\db\examples\dynamic_shape_if_guard.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2371913Z copying torch\_export\db\examples\dynamic_shape_map.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2377874Z copying torch\_export\db\examples\dynamic_shape_round.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2447961Z copying torch\_export\db\examples\dynamic_shape_slicing.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2453959Z copying torch\_export\db\examples\dynamic_shape_view.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2464709Z copying torch\_export\db\examples\fn_with_kwargs.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2475073Z copying torch\_export\db\examples\list_contains.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2480868Z copying torch\_export\db\examples\list_unpack.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2486870Z copying torch\_export\db\examples\model_attr_mutation.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2497521Z copying torch\_export\db\examples\nested_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2503441Z copying torch\_export\db\examples\null_context_manager.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2518834Z copying torch\_export\db\examples\optional_input.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2524246Z copying torch\_export\db\examples\pytree_flatten.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2529758Z copying torch\_export\db\examples\scalar_output.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2550235Z copying torch\_export\db\examples\specialized_attribute.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2551040Z copying torch\_export\db\examples\static_for_loop.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2553560Z copying torch\_export\db\examples\static_if.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2559497Z copying torch\_export\db\examples\tensor_setattr.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2565426Z copying torch\_export\db\examples\type_reflection_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2571721Z copying torch\_export\db\examples\unsupported_operator.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2586121Z copying torch\_export\db\examples\user_input_mutation.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2592012Z copying torch\_export\db\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:18:31.2603573Z creating build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-07-24T05:18:31.2606752Z copying torch\_functorch\_activation_checkpointing\ac_logging_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-07-24T05:18:31.2617831Z copying torch\_functorch\_activation_checkpointing\graph_info_provider.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-07-24T05:18:31.2637250Z copying torch\_functorch\_activation_checkpointing\knapsack.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-07-24T05:18:31.2656157Z copying torch\_functorch\_activation_checkpointing\knapsack_evaluator.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-07-24T05:18:31.2667382Z copying torch\_functorch\_activation_checkpointing\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-07-24T05:18:31.2675616Z creating build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:18:31.2683937Z copying torch\_functorch\_aot_autograd\autograd_cache.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:18:31.2710302Z copying torch\_functorch\_aot_autograd\collect_metadata_analysis.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:18:31.2732801Z copying torch\_functorch\_aot_autograd\frontend_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:18:31.2751702Z copying torch\_functorch\_aot_autograd\functional_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:18:31.2767359Z copying torch\_functorch\_aot_autograd\graph_capture.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:18:31.2783731Z copying torch\_functorch\_aot_autograd\graph_capture_wrappers.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:18:31.2815680Z copying torch\_functorch\_aot_autograd\graph_compile.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:18:31.2864148Z copying torch\_functorch\_aot_autograd\input_output_analysis.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:18:31.2879411Z copying torch\_functorch\_aot_autograd\logging_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:18:31.2890703Z copying torch\_functorch\_aot_autograd\runtime_wrappers.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:18:31.2932232Z copying torch\_functorch\_aot_autograd\schemas.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:18:31.2982049Z copying torch\_functorch\_aot_autograd\subclass_parametrization.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:18:31.2992490Z copying torch\_functorch\_aot_autograd\subclass_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:18:31.3008467Z copying torch\_functorch\_aot_autograd\utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:18:31.3028766Z copying torch\_functorch\_aot_autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:18:31.3035726Z creating build\lib.win-amd64-cpython-39\torch\_inductor\analysis 2025-07-24T05:18:31.3041986Z copying torch\_inductor\analysis\device_info.py -> build\lib.win-amd64-cpython-39\torch\_inductor\analysis 2025-07-24T05:18:31.3062857Z copying torch\_inductor\analysis\profile_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor\analysis 2025-07-24T05:18:31.3066482Z copying torch\_inductor\analysis\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\analysis 2025-07-24T05:18:31.3073200Z creating build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-07-24T05:18:31.3076510Z copying torch\_inductor\autoheuristic\autoheuristic.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-07-24T05:18:31.3091742Z copying torch\_inductor\autoheuristic\autoheuristic_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-07-24T05:18:31.3102898Z copying torch\_inductor\autoheuristic\learnedheuristic_interface.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-07-24T05:18:31.3118236Z copying torch\_inductor\autoheuristic\learned_heuristic_controller.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-07-24T05:18:31.3128087Z copying torch\_inductor\autoheuristic\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-07-24T05:18:31.3138604Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.3141697Z copying torch\_inductor\codegen\aoti_hipify_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.3151812Z copying torch\_inductor\codegen\block_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.3163659Z copying torch\_inductor\codegen\common.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.3213192Z copying torch\_inductor\codegen\cpp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.3707668Z copying torch\_inductor\codegen\cpp_bmm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.3731646Z copying torch\_inductor\codegen\cpp_flex_attention_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.3753935Z copying torch\_inductor\codegen\cpp_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.3797385Z copying torch\_inductor\codegen\cpp_grouped_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.3813512Z copying torch\_inductor\codegen\cpp_micro_gemm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.3856704Z copying torch\_inductor\codegen\cpp_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.3873930Z copying torch\_inductor\codegen\cpp_template_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.3891464Z copying torch\_inductor\codegen\cpp_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.3909133Z copying torch\_inductor\codegen\cpp_wrapper_cpu.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.3964994Z copying torch\_inductor\codegen\cpp_wrapper_cpu_array_ref.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.3991714Z copying torch\_inductor\codegen\cpp_wrapper_gpu.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.4009346Z copying torch\_inductor\codegen\cpp_wrapper_mps.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.4027172Z copying torch\_inductor\codegen\cpu_device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.4037561Z copying torch\_inductor\codegen\cuda_combined_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.4688338Z copying torch\_inductor\codegen\debug_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.4706066Z copying torch\_inductor\codegen\halide.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.4731276Z copying torch\_inductor\codegen\memory_planning.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.4746375Z copying torch\_inductor\codegen\mps.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.4783755Z copying torch\_inductor\codegen\mps_device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.4798770Z copying torch\_inductor\codegen\multi_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.4816038Z copying torch\_inductor\codegen\simd.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.4859054Z copying torch\_inductor\codegen\simd_kernel_features.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.4880171Z copying torch\_inductor\codegen\subgraph.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.4890680Z copying torch\_inductor\codegen\triton.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.5088831Z copying torch\_inductor\codegen\triton_combo_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.5119170Z copying torch\_inductor\codegen\triton_split_scan.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.5131206Z copying torch\_inductor\codegen\triton_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.5147260Z copying torch\_inductor\codegen\wrapper.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.5221857Z copying torch\_inductor\codegen\wrapper_fxir.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.5244265Z copying torch\_inductor\codegen\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:18:31.5250969Z creating build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-07-24T05:18:31.5258826Z copying torch\_inductor\compile_worker\subproc_pool.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-07-24T05:18:31.5269956Z copying torch\_inductor\compile_worker\tracked_process_pool.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-07-24T05:18:31.5280733Z copying torch\_inductor\compile_worker\utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-07-24T05:18:31.5290104Z copying torch\_inductor\compile_worker\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-07-24T05:18:31.5299601Z copying torch\_inductor\compile_worker\__main__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-07-24T05:18:31.5314528Z creating build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.5317567Z copying torch\_inductor\fx_passes\b2b_gemm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.5339816Z copying torch\_inductor\fx_passes\binary_folding.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.5364498Z copying torch\_inductor\fx_passes\bucketing.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.5399365Z copying torch\_inductor\fx_passes\ddp_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.5425191Z copying torch\_inductor\fx_passes\decompose_mem_bound_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.5438395Z copying torch\_inductor\fx_passes\dedupe_symint_uses.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.5452048Z copying torch\_inductor\fx_passes\efficient_conv_bn_eval.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.5461968Z copying torch\_inductor\fx_passes\freezing_patterns.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.5472864Z copying torch\_inductor\fx_passes\fsdp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.5483929Z copying torch\_inductor\fx_passes\fuse_attention.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.5504921Z copying torch\_inductor\fx_passes\group_batch_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.5530582Z copying torch\_inductor\fx_passes\joint_graph.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.5573598Z copying torch\_inductor\fx_passes\micro_pipeline_tp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.5576883Z copying torch\_inductor\fx_passes\misc_patterns.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.5589934Z copying torch\_inductor\fx_passes\mkldnn_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.5616648Z copying torch\_inductor\fx_passes\numeric_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.6545933Z copying torch\_inductor\fx_passes\pad_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.6592225Z copying torch\_inductor\fx_passes\post_grad.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.6600739Z copying torch\_inductor\fx_passes\pre_grad.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.6617767Z copying torch\_inductor\fx_passes\quantization.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.6684563Z copying torch\_inductor\fx_passes\reinplace.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.6704389Z copying torch\_inductor\fx_passes\replace_random.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.6714945Z copying torch\_inductor\fx_passes\split_cat.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.6765370Z copying torch\_inductor\fx_passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:18:31.6772509Z creating build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-24T05:18:31.6775505Z copying torch\_inductor\kernel\bmm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-24T05:18:31.6786149Z copying torch\_inductor\kernel\conv.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-24T05:18:31.6801810Z copying torch\_inductor\kernel\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-24T05:18:31.6857674Z copying torch\_inductor\kernel\flex_decoding.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-24T05:18:31.6874520Z copying torch\_inductor\kernel\mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-24T05:18:31.6903292Z copying torch\_inductor\kernel\mm_common.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-24T05:18:31.6931512Z copying torch\_inductor\kernel\mm_grouped.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-24T05:18:31.6947087Z copying torch\_inductor\kernel\mm_plus_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-24T05:18:31.6964513Z copying torch\_inductor\kernel\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-24T05:18:31.6971629Z creating build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-07-24T05:18:31.6974782Z copying torch\_inductor\package\build_package.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-07-24T05:18:31.6980525Z copying torch\_inductor\package\package.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-07-24T05:18:31.6990840Z copying torch\_inductor\package\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-07-24T05:18:31.6999347Z creating build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:18:31.7002905Z copying torch\_inductor\runtime\autotune_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:18:31.7025025Z copying torch\_inductor\runtime\benchmarking.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:18:31.7036260Z copying torch\_inductor\runtime\cache_dir_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:18:31.7047886Z copying torch\_inductor\runtime\compile_tasks.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:18:31.7075823Z copying torch\_inductor\runtime\coordinate_descent_tuner.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:18:31.7076623Z copying torch\_inductor\runtime\halide_helpers.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:18:31.7084680Z copying torch\_inductor\runtime\hints.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:18:31.7095398Z copying torch\_inductor\runtime\runtime_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:18:31.7105626Z copying torch\_inductor\runtime\static_cuda_launcher.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:18:31.7116151Z copying torch\_inductor\runtime\triton_compat.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:18:31.7127532Z copying torch\_inductor\runtime\triton_helpers.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:18:31.7142828Z copying torch\_inductor\runtime\triton_heuristics.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:18:31.7199993Z copying torch\_inductor\runtime\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:18:31.7206586Z creating build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:18:31.7209849Z copying torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:18:31.7221145Z copying torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:18:31.7231485Z copying torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:18:31.7261413Z copying torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:18:31.7277723Z copying torch\_inductor\autoheuristic\artifacts\_PadMMA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:18:31.7287670Z copying torch\_inductor\autoheuristic\artifacts\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:18:31.7295027Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:18:31.7298143Z copying torch\_inductor\codegen\cuda\cuda_cpp_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:18:31.7310320Z copying torch\_inductor\codegen\cuda\cuda_env.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:18:31.7320437Z copying torch\_inductor\codegen\cuda\cuda_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:18:31.7342686Z copying torch\_inductor\codegen\cuda\cuda_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:18:31.7359277Z copying torch\_inductor\codegen\cuda\cutlass_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:18:31.7371624Z copying torch\_inductor\codegen\cuda\cutlass_presets.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:18:31.7382872Z copying torch\_inductor\codegen\cuda\cutlass_python_evt.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:18:31.7394468Z copying torch\_inductor\codegen\cuda\cutlass_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:18:31.7419372Z copying torch\_inductor\codegen\cuda\device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:18:31.7430869Z copying torch\_inductor\codegen\cuda\gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:18:31.7464089Z copying torch\_inductor\codegen\cuda\serialization.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:18:31.7479388Z copying torch\_inductor\codegen\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:18:31.7487104Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:18:31.7490594Z copying torch\_inductor\codegen\rocm\ck_conv_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:18:31.7514589Z copying torch\_inductor\codegen\rocm\ck_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:18:31.7524809Z copying torch\_inductor\codegen\rocm\ck_tile_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:18:31.7536274Z copying torch\_inductor\codegen\rocm\ck_tile_universal_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:18:31.7581048Z copying torch\_inductor\codegen\rocm\ck_universal_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:18:31.7599085Z copying torch\_inductor\codegen\rocm\compile_command.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:18:31.7609396Z copying torch\_inductor\codegen\rocm\rocm_benchmark_request.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:18:31.7619694Z copying torch\_inductor\codegen\rocm\rocm_cpp_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:18:31.7630575Z copying torch\_inductor\codegen\rocm\rocm_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:18:31.7641582Z copying torch\_inductor\codegen\rocm\rocm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:18:31.7686045Z copying torch\_inductor\codegen\rocm\rocm_template_buffer.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:18:31.7696148Z copying torch\_inductor\codegen\rocm\rocm_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:18:31.7701772Z copying torch\_inductor\codegen\rocm\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:18:31.7708050Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-07-24T05:18:31.7711140Z copying torch\_inductor\codegen\xpu\device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-07-24T05:18:31.7723463Z copying torch\_inductor\codegen\xpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-07-24T05:18:31.7730163Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-07-24T05:18:31.7733544Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\evt_extensions.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-07-24T05:18:31.7750266Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\gemm_operation_extensions.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-07-24T05:18:31.7766858Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-07-24T05:18:31.7782918Z creating build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.7786196Z copying torch\_inductor\fx_passes\serialized_patterns\addmm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.7796789Z copying torch\_inductor\fx_passes\serialized_patterns\bmm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.7811453Z copying torch\_inductor\fx_passes\serialized_patterns\mm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.7830697Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_1.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.7843291Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_10.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.7856652Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_11.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.7867103Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_12.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.7892977Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_13.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.7894140Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_14.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.7905188Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_15.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.7921683Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_16.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.7944768Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_17.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.7958169Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_18.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.7977597Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_19.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.7992647Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_2.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.8009201Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_20.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.8026188Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_21.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.8043153Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_22.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.8051774Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_23.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.8072124Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_24.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.8081684Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_3.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.8104232Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_4.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.8117258Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_5.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.8128579Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_6.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.8145666Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_7.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.8187796Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_8.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.8188857Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_9.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.8189898Z copying torch\_inductor\fx_passes\serialized_patterns\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:18:31.8190870Z creating build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-07-24T05:18:31.8193768Z copying torch\_numpy\testing\utils.py -> build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-07-24T05:18:31.8228077Z copying torch\_numpy\testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-07-24T05:18:31.8233949Z creating build\lib.win-amd64-cpython-39\torch\_refs\linalg 2025-07-24T05:18:31.8236738Z copying torch\_refs\linalg\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\linalg 2025-07-24T05:18:31.8248466Z creating build\lib.win-amd64-cpython-39\torch\_refs\nn 2025-07-24T05:18:31.8251269Z copying torch\_refs\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\nn 2025-07-24T05:18:31.8257601Z creating build\lib.win-amd64-cpython-39\torch\_refs\special 2025-07-24T05:18:31.8265229Z copying torch\_refs\special\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\special 2025-07-24T05:18:31.8277679Z creating build\lib.win-amd64-cpython-39\torch\_refs\nn\functional 2025-07-24T05:18:31.8280512Z copying torch\_refs\nn\functional\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\nn\functional 2025-07-24T05:18:31.8306420Z creating build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-07-24T05:18:31.8309692Z copying torch\_vendor\packaging\version.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-07-24T05:18:31.8325928Z copying torch\_vendor\packaging\_structures.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-07-24T05:18:31.8335585Z copying torch\_vendor\packaging\__init__.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-07-24T05:18:31.8342190Z creating build\lib.win-amd64-cpython-39\torchgen\aoti 2025-07-24T05:18:31.8345150Z copying torchgen\aoti\fallback_ops.py -> build\lib.win-amd64-cpython-39\torchgen\aoti 2025-07-24T05:18:31.8355067Z copying torchgen\aoti\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\aoti 2025-07-24T05:18:31.8362197Z creating build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:18:31.8365100Z copying torchgen\api\autograd.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:18:31.8394840Z copying torchgen\api\cpp.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:18:31.8411826Z copying torchgen\api\dispatcher.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:18:31.8424686Z copying torchgen\api\functionalization.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:18:31.8436087Z copying torchgen\api\lazy.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:18:31.8457369Z copying torchgen\api\meta.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:18:31.8463363Z copying torchgen\api\native.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:18:31.8474521Z copying torchgen\api\python.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:18:31.8508606Z copying torchgen\api\structured.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:18:31.8519522Z copying torchgen\api\translate.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:18:31.8535139Z copying torchgen\api\ufunc.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:18:31.8546132Z copying torchgen\api\unboxing.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:18:31.8555899Z copying torchgen\api\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:18:31.8562403Z creating build\lib.win-amd64-cpython-39\torchgen\dest 2025-07-24T05:18:31.8565488Z copying torchgen\dest\lazy_ir.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-07-24T05:18:31.8594852Z copying torchgen\dest\lazy_ts_lowering.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-07-24T05:18:31.8605685Z copying torchgen\dest\native_functions.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-07-24T05:18:31.8616263Z copying torchgen\dest\register_dispatch_key.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-07-24T05:18:31.8643680Z copying torchgen\dest\ufunc.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-07-24T05:18:31.8661297Z copying torchgen\dest\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-07-24T05:18:31.8672239Z creating build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-07-24T05:18:31.8675402Z copying torchgen\operator_versions\gen_mobile_upgraders.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-07-24T05:18:31.8687948Z copying torchgen\operator_versions\gen_mobile_upgraders_constant.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-07-24T05:18:31.8693240Z copying torchgen\operator_versions\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-07-24T05:18:31.8704841Z creating build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-07-24T05:18:31.8707961Z copying torchgen\selective_build\operator.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-07-24T05:18:31.8718105Z copying torchgen\selective_build\selector.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-07-24T05:18:31.8732884Z copying torchgen\selective_build\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-07-24T05:18:31.8738773Z creating build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-07-24T05:18:31.8742268Z copying torchgen\static_runtime\config.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-07-24T05:18:31.8759095Z copying torchgen\static_runtime\generator.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-07-24T05:18:31.8780835Z copying torchgen\static_runtime\gen_static_runtime_ops.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-07-24T05:18:31.8799711Z copying torchgen\static_runtime\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-07-24T05:18:31.8805696Z creating build\lib.win-amd64-cpython-39\torchgen\api\types 2025-07-24T05:18:31.8808609Z copying torchgen\api\types\signatures.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-07-24T05:18:31.8819969Z copying torchgen\api\types\types.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-07-24T05:18:31.8830639Z copying torchgen\api\types\types_base.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-07-24T05:18:31.8840963Z copying torchgen\api\types\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-07-24T05:18:32.7362407Z copying torch\return_types.pyi -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:32.7396750Z copying torch\_VF.pyi -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:33.0389833Z copying torch\py.typed -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:18:33.0394696Z creating build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:18:33.0397627Z copying torch\bin\asmjit.dll -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:18:33.0413088Z copying torch\bin\fbgemm.dll -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:18:33.0465925Z copying torch\bin\FileStoreTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:18:33.0475890Z copying torch\bin\protoc.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:18:33.0505863Z copying torch\bin\TCPStoreTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:18:33.0557389Z copying torch\bin\test_api.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:18:33.0642511Z copying torch\bin\test_jit.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:18:33.0699229Z copying torch\bin\test_lazy.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:18:33.0730895Z copying torch\bin\test_nativert.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:18:33.0750942Z copying torch\bin\test_tensorexpr.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:18:33.0805148Z copying torch\bin\tutorial_tensorexpr.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:18:33.0812617Z creating build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.0815402Z copying torch\test\apply_utils_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.0830321Z copying torch\test\atest.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.0841070Z copying torch\test\backend_fallback_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.0850989Z copying torch\test\basic.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.0876520Z copying torch\test\broadcast_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.0886383Z copying torch\test\c10_accumulate_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.0896250Z copying torch\test\c10_ArrayRef_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.0905713Z copying torch\test\c10_bfloat16_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.0923637Z copying torch\test\c10_Bitset_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.0933436Z copying torch\test\c10_bit_cast_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.0943204Z copying torch\test\c10_CompileTimeFunctionPointer_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.0952670Z copying torch\test\c10_complex_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.0967526Z copying torch\test\c10_complex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.0977550Z copying torch\test\c10_ConstexprCrc_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.0986745Z copying torch\test\c10_cow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.0997177Z copying torch\test\c10_DeadlockDetection_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1015831Z copying torch\test\c10_DeviceGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1025285Z copying torch\test\c10_Device_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1043485Z copying torch\test\c10_DispatchKeySet_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1053588Z copying torch\test\c10_Enumerate_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1071391Z copying torch\test\c10_error_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1081649Z copying torch\test\c10_exception_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1091190Z copying torch\test\c10_flags_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1101173Z copying torch\test\c10_generic_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1110904Z copying torch\test\c10_Half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1120982Z copying torch\test\c10_InlineDeviceGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1131091Z copying torch\test\c10_InlineStreamGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1149570Z copying torch\test\c10_IntrusiveList_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1165041Z copying torch\test\c10_intrusive_ptr_benchmark.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1174702Z copying torch\test\c10_intrusive_ptr_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1191897Z copying torch\test\c10_irange_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1211413Z copying torch\test\c10_lazy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1220976Z copying torch\test\c10_LeftRight_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1230803Z copying torch\test\c10_logging_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1240697Z copying torch\test\c10_Metaprogramming_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1258851Z copying torch\test\c10_NetworkFlow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1268988Z copying torch\test\c10_optional_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1279856Z copying torch\test\c10_ordered_preserving_dict_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1290113Z copying torch\test\c10_registry_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1299674Z copying torch\test\c10_Scalar_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1309460Z copying torch\test\c10_Semaphore_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1318737Z copying torch\test\c10_SizesAndStrides_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1328351Z copying torch\test\c10_small_vector_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1343452Z copying torch\test\c10_ssize_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1365764Z copying torch\test\c10_StreamGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1375514Z copying torch\test\c10_string_util_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1385177Z copying torch\test\c10_string_view_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1394969Z copying torch\test\c10_SymInt_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1409119Z copying torch\test\c10_Synchronized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1418701Z copying torch\test\c10_tempfile_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1428241Z copying torch\test\c10_ThreadLocal_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1438177Z copying torch\test\c10_typeid_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1468993Z copying torch\test\c10_TypeIndex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1478915Z copying torch\test\c10_TypeList_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1488875Z copying torch\test\c10_TypeTraits_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1498884Z copying torch\test\CppSignature_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1513359Z copying torch\test\cpu_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1524099Z copying torch\test\cpu_generator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1535306Z copying torch\test\cpu_profiling_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1545479Z copying torch\test\cpu_rng_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1563965Z copying torch\test\Dict_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1584449Z copying torch\test\Dimname_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1594855Z copying torch\test\dlconvertor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1605016Z copying torch\test\extension_backend_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1615387Z copying torch\test\half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1625405Z copying torch\test\IListRef_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1636078Z copying torch\test\inline_container_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1646533Z copying torch\test\ivalue_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1663934Z copying torch\test\KernelFunction_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1675642Z copying torch\test\kernel_function_legacy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1698559Z copying torch\test\kernel_function_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1711016Z copying torch\test\kernel_lambda_legacy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1729014Z copying torch\test\kernel_lambda_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1741551Z copying torch\test\kernel_stackbased_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1751826Z copying torch\test\lazy_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1765536Z copying torch\test\legacy_vmap_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1777351Z copying torch\test\List_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1790223Z copying torch\test\make_boxed_from_unboxed_functor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1802478Z copying torch\test\math_kernel_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1812331Z copying torch\test\MaybeOwned_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1830106Z copying torch\test\memory_format_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1840139Z copying torch\test\memory_overlapping_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1851063Z copying torch\test\mobile_memory_cleanup.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1861096Z copying torch\test\NamedTensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1878274Z copying torch\test\native_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1888678Z copying torch\test\operators_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1907978Z copying torch\test\operator_name_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1917891Z copying torch\test\op_allowlist_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1931519Z copying torch\test\op_registration_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1960036Z copying torch\test\packedtensoraccessor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1970720Z copying torch\test\pow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1982179Z copying torch\test\quantized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.1993360Z copying torch\test\reduce_ops_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.2036403Z copying torch\test\reportMemoryUsage_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.2046378Z copying torch\test\scalar_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.2056782Z copying torch\test\scalar_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.2072278Z copying torch\test\StorageUtils_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.2082194Z copying torch\test\stride_properties_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.2092149Z copying torch\test\tensor_iterator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.2104232Z copying torch\test\test_parallel.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.2118733Z copying torch\test\thread_init_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.2127000Z copying torch\test\type_ptr_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.2136494Z copying torch\test\type_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.2147507Z copying torch\test\undefined_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.2167391Z copying torch\test\verify_api_visibility.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.2177885Z copying torch\test\weakref_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.2188947Z copying torch\test\wrapdim_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.2199233Z copying torch\test\xla_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:18:33.2219627Z copying torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:18:33.2231025Z copying torch\jit\_script.pyi -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:33.2243400Z copying torch\nn\functional.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:18:33.3255985Z copying torch\nn\parameter.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:18:33.3267651Z copying torch\optim\_multi_tensor\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-07-24T05:18:33.3274435Z copying torch\utils\_config_typing.pyi -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:33.3285599Z copying torch\utils\data\datapipes\datapipe.pyi -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-24T05:18:33.3645677Z creating build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.3649431Z copying torch\_C\_aoti.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.3665303Z copying torch\_C\_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.3677572Z copying torch\_C\_cpu.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.3700298Z copying torch\_C\_cudnn.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.3700824Z copying torch\_C\_cusparselt.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.3712407Z copying torch\_C\_distributed_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.3724321Z copying torch\_C\_distributed_c10d.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.3738676Z copying torch\_C\_distributed_rpc.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.3749684Z copying torch\_C\_distributed_rpc_testing.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.3760764Z copying torch\_C\_functions.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.3771922Z copying torch\_C\_functorch.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.3782603Z copying torch\_C\_instruction_counter.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.3792963Z copying torch\_C\_itt.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.3799514Z copying torch\_C\_jit_tree_views.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.3810285Z copying torch\_C\_lazy.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.3820676Z copying torch\_C\_lazy_ts_backend.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.3831975Z copying torch\_C\_monitor.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.3847426Z copying torch\_C\_nn.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.3858708Z copying torch\_C\_nvtx.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.3864887Z copying torch\_C\_onnx.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.3876100Z copying torch\_C\_profiler.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.3888764Z copying torch\_C\_VariableFunctions.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.7546309Z copying torch\_C\_verbose.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.7565834Z copying torch\_C\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:18:33.7753311Z creating build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-07-24T05:18:33.7753888Z copying torch\_C\_dynamo\compiled_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-07-24T05:18:33.7754550Z copying torch\_C\_dynamo\eval_frame.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-07-24T05:18:33.7755172Z copying torch\_C\_dynamo\guards.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-07-24T05:18:33.7765306Z copying torch\_C\_dynamo\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-07-24T05:18:33.7771294Z creating build\lib.win-amd64-cpython-39\torch\_C\_export 2025-07-24T05:18:33.7774229Z copying torch\_C\_export\pt2_archive_constants.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_export 2025-07-24T05:18:33.7785611Z copying torch\_C\_export\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_export 2025-07-24T05:18:33.7791244Z creating build\lib.win-amd64-cpython-39\torch\_C_flatbuffer 2025-07-24T05:18:33.7804213Z copying torch\_C_flatbuffer\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C_flatbuffer 2025-07-24T05:18:33.7819073Z creating build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:33.7821666Z copying torch\lib\shm.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:33.7828070Z copying torch\lib\shm.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:33.7833509Z creating build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-07-24T05:18:33.7836744Z copying torch\lib\libshm\alloc_info.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-07-24T05:18:33.7843051Z copying torch\lib\libshm\err.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-07-24T05:18:33.7858369Z copying torch\lib\libshm\libshm.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-07-24T05:18:33.7868879Z copying torch\lib\libshm\socket.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-07-24T05:18:33.7878824Z creating build\lib.win-amd64-cpython-39\torch\lib\libshm_windows 2025-07-24T05:18:33.7881838Z copying torch\lib\libshm_windows\libshm.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm_windows 2025-07-24T05:18:33.7887094Z creating build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.7889942Z copying torch\include\advisor-annotate.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.7896751Z copying torch\include\cpuinfo.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.7903763Z copying torch\include\dnnl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.7910096Z copying torch\include\dnnl_config.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.7916032Z copying torch\include\dnnl_debug.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.7931820Z copying torch\include\dnnl_ocl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.7937946Z copying torch\include\dnnl_sycl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.7944203Z copying torch\include\dnnl_sycl_types.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.7957195Z copying torch\include\dnnl_threadpool.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.7963206Z copying torch\include\dnnl_types.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.7969819Z copying torch\include\dnnl_version.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.7976389Z copying torch\include\experiments-config.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.7987007Z copying torch\include\fp16.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.7993025Z copying torch\include\fxdiv.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.7999386Z copying torch\include\ittnotify-zca.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.8005928Z copying torch\include\ittnotify.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.8014899Z copying torch\include\jitprofiling.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.8021687Z copying torch\include\libittnotify.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.8028003Z copying torch\include\libshm.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.8034226Z copying torch\include\psimd.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.8045818Z copying torch\include\pthreadpool.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.8053493Z copying torch\include\sleef.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.8062788Z copying torch\include\xnnpack.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:33.8070812Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-24T05:18:33.8082249Z copying torch\include\asmjit\a64.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-24T05:18:33.8092967Z copying torch\include\asmjit\arm.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-24T05:18:33.8099436Z copying torch\include\asmjit\asmjit-scope-begin.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-24T05:18:33.8106083Z copying torch\include\asmjit\asmjit-scope-end.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-24T05:18:33.8112177Z copying torch\include\asmjit\asmjit.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-24T05:18:33.8127393Z copying torch\include\asmjit\core.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-24T05:18:33.8135108Z copying torch\include\asmjit\x86.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-24T05:18:33.8140907Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-24T05:18:33.8143457Z copying torch\include\asmjit\arm\a64assembler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-24T05:18:33.8157950Z copying torch\include\asmjit\arm\a64builder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-24T05:18:33.8164266Z copying torch\include\asmjit\arm\a64compiler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-24T05:18:33.8171012Z copying torch\include\asmjit\arm\a64emitter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-24T05:18:33.8187395Z copying torch\include\asmjit\arm\a64globals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-24T05:18:33.8195451Z copying torch\include\asmjit\arm\a64instdb.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-24T05:18:33.8201974Z copying torch\include\asmjit\arm\a64operand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-24T05:18:33.8219682Z copying torch\include\asmjit\arm\armglobals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-24T05:18:33.8225411Z copying torch\include\asmjit\arm\armoperand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-24T05:18:33.8231858Z copying torch\include\asmjit\arm\armutils.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-24T05:18:33.8237500Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8240425Z copying torch\include\asmjit\core\api-config.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8247420Z copying torch\include\asmjit\core\archcommons.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8253956Z copying torch\include\asmjit\core\archtraits.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8260674Z copying torch\include\asmjit\core\assembler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8276825Z copying torch\include\asmjit\core\builder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8288429Z copying torch\include\asmjit\core\codebuffer.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8294608Z copying torch\include\asmjit\core\codeholder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8301464Z copying torch\include\asmjit\core\compiler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8309892Z copying torch\include\asmjit\core\compilerdefs.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8316051Z copying torch\include\asmjit\core\constpool.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8322317Z copying torch\include\asmjit\core\cpuinfo.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8329409Z copying torch\include\asmjit\core\emitter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8336665Z copying torch\include\asmjit\core\environment.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8343292Z copying torch\include\asmjit\core\errorhandler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8349674Z copying torch\include\asmjit\core\formatter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8356291Z copying torch\include\asmjit\core\func.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8363676Z copying torch\include\asmjit\core\globals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8374539Z copying torch\include\asmjit\core\inst.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8381352Z copying torch\include\asmjit\core\jitallocator.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8388323Z copying torch\include\asmjit\core\jitruntime.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8394567Z copying torch\include\asmjit\core\logger.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8406139Z copying torch\include\asmjit\core\operand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8427204Z copying torch\include\asmjit\core\osutils.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8433322Z copying torch\include\asmjit\core\string.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8439778Z copying torch\include\asmjit\core\support.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8451539Z copying torch\include\asmjit\core\target.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8467760Z copying torch\include\asmjit\core\type.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8474369Z copying torch\include\asmjit\core\virtmem.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8481340Z copying torch\include\asmjit\core\zone.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8508862Z copying torch\include\asmjit\core\zonehash.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8509819Z copying torch\include\asmjit\core\zonelist.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8510570Z copying torch\include\asmjit\core\zonestack.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8512132Z copying torch\include\asmjit\core\zonestring.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8523042Z copying torch\include\asmjit\core\zonetree.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8529618Z copying torch\include\asmjit\core\zonevector.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:18:33.8535639Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-24T05:18:33.8539029Z copying torch\include\asmjit\x86\x86assembler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-24T05:18:33.8545940Z copying torch\include\asmjit\x86\x86builder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-24T05:18:33.8558730Z copying torch\include\asmjit\x86\x86compiler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-24T05:18:33.8565774Z copying torch\include\asmjit\x86\x86emitter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-24T05:18:33.8585453Z copying torch\include\asmjit\x86\x86globals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-24T05:18:33.8594087Z copying torch\include\asmjit\x86\x86instdb.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-24T05:18:33.8601890Z copying torch\include\asmjit\x86\x86operand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-24T05:18:33.8608084Z creating build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8610896Z copying torch\include\ATen\AccumulateType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8617762Z copying torch\include\ATen\ArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8628929Z copying torch\include\ATen\ATen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8635720Z copying torch\include\ATen\autocast_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8642614Z copying torch\include\ATen\Backend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8657558Z copying torch\include\ATen\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8664890Z copying torch\include\ATen\BlasBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8670660Z copying torch\include\ATen\CachedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8676803Z copying torch\include\ATen\ceil_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8692144Z copying torch\include\ATen\code_template.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8710397Z copying torch\include\ATen\CollapseDims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8711199Z copying torch\include\ATen\CompositeExplicitAutogradFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8713068Z copying torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8728789Z copying torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8735238Z copying torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8742763Z copying torch\include\ATen\CompositeImplicitAutogradFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8749594Z copying torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8761710Z copying torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8767938Z copying torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8782937Z copying torch\include\ATen\Config.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8789389Z copying torch\include\ATen\Context.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8796647Z copying torch\include\ATen\cpp_custom_type_hack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8802978Z copying torch\include\ATen\CPUApplyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8809679Z copying torch\include\ATen\CPUFixedAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8815934Z copying torch\include\ATen\CPUFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8826715Z copying torch\include\ATen\CPUFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8833762Z copying torch\include\ATen\CPUGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8840127Z copying torch\include\ATen\CUDAFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8846499Z copying torch\include\ATen\CUDAFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8870956Z copying torch\include\ATen\Device.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8876980Z copying torch\include\ATen\DeviceAccelerator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8883550Z copying torch\include\ATen\DeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8889759Z copying torch\include\ATen\Dimname.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8900275Z copying torch\include\ATen\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8906256Z copying torch\include\ATen\Dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8913336Z copying torch\include\ATen\Dispatch_v2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8920611Z copying torch\include\ATen\div_rtn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8926615Z copying torch\include\ATen\DLConvertor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8933132Z copying torch\include\ATen\dlpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8939581Z copying torch\include\ATen\DynamicLibrary.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8945843Z copying torch\include\ATen\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8961249Z copying torch\include\ATen\ExpandBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8967901Z copying torch\include\ATen\ExpandUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8974648Z copying torch\include\ATen\Formatting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8980666Z copying torch\include\ATen\FunctionalStorageImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8992087Z copying torch\include\ATen\FunctionalTensorWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.8998697Z copying torch\include\ATen\Functions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9006305Z copying torch\include\ATen\FuncTorchTLS.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9012520Z copying torch\include\ATen\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9018614Z copying torch\include\ATen\InferSize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9025011Z copying torch\include\ATen\InitialTensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9041152Z copying torch\include\ATen\jiterator_macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9047315Z copying torch\include\ATen\jit_macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9058374Z copying torch\include\ATen\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9064375Z copying torch\include\ATen\LegacyBatchedFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9070873Z copying torch\include\ATen\LegacyBatchedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9078047Z copying torch\include\ATen\LegacyVmapMode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9088745Z copying torch\include\ATen\LegacyVmapTransforms.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9095130Z copying torch\include\ATen\LinalgBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9101513Z copying torch\include\ATen\MapAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9107817Z copying torch\include\ATen\MatrixRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9138678Z copying torch\include\ATen\MemoryOverlap.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9145300Z copying torch\include\ATen\MetaFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9151511Z copying torch\include\ATen\MetaFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9158534Z copying torch\include\ATen\MethodOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9172221Z copying torch\include\ATen\NamedTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9178249Z copying torch\include\ATen\NamedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9184767Z copying torch\include\ATen\NativeFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9192904Z copying torch\include\ATen\NativeMetaFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9200100Z copying torch\include\ATen\NestedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9247214Z copying torch\include\ATen\NumericUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9247918Z copying torch\include\ATen\OpaqueTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9248606Z copying torch\include\ATen\Operators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9249249Z copying torch\include\ATen\OpMathType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9249876Z copying torch\include\ATen\PadNd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9253189Z copying torch\include\ATen\Parallel-inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9259154Z copying torch\include\ATen\Parallel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9272130Z copying torch\include\ATen\ParallelFuture.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9276586Z copying torch\include\ATen\ParallelNative.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9283139Z copying torch\include\ATen\ParallelOpenMP.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9300055Z copying torch\include\ATen\PTThreadPool.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9310878Z copying torch\include\ATen\PythonTorchFunctionTLS.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9317468Z copying torch\include\ATen\record_function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9324390Z copying torch\include\ATen\RedispatchFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9351927Z copying torch\include\ATen\RegistrationDeclarations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9372226Z copying torch\include\ATen\ROCmFABackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9378544Z copying torch\include\ATen\SavedTensorHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9385009Z copying torch\include\ATen\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9391122Z copying torch\include\ATen\ScalarOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9404284Z copying torch\include\ATen\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9410497Z copying torch\include\ATen\SDPBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9416557Z copying torch\include\ATen\SequenceNumber.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9422536Z copying torch\include\ATen\SmallVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9433538Z copying torch\include\ATen\SparseCsrTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9439706Z copying torch\include\ATen\SparseCsrTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9446522Z copying torch\include\ATen\SparseTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9452932Z copying torch\include\ATen\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9463708Z copying torch\include\ATen\StorageUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9470428Z copying torch\include\ATen\Tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9476366Z copying torch\include\ATen\TensorAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9491675Z copying torch\include\ATen\TensorGeometry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9531451Z copying torch\include\ATen\TensorIndexing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9538542Z copying torch\include\ATen\TensorIterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9545737Z copying torch\include\ATen\TensorIteratorInternal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9552302Z copying torch\include\ATen\TensorMeta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9568516Z copying torch\include\ATen\TensorNames.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9575050Z copying torch\include\ATen\TensorOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9581644Z copying torch\include\ATen\TensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9588394Z copying torch\include\ATen\TensorSubclassLikeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9595391Z copying torch\include\ATen\TensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9601913Z copying torch\include\ATen\ThreadLocalPythonObjects.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9608323Z copying torch\include\ATen\ThreadLocalState.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9614757Z copying torch\include\ATen\TracerMode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9621344Z copying torch\include\ATen\TypeDefault.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9627620Z copying torch\include\ATen\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9633923Z copying torch\include\ATen\Version.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9640317Z copying torch\include\ATen\VmapGeneratedPlumbing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9662323Z copying torch\include\ATen\WrapDimUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9668954Z copying torch\include\ATen\WrapDimUtilsMulti.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:18:33.9674579Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9677488Z copying torch\include\ATen\core\alias_info.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9683787Z copying torch\include\ATen\core\Array.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9695779Z copying torch\include\ATen\core\ATenGeneral.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9701837Z copying torch\include\ATen\core\ATenOpList.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9713355Z copying torch\include\ATen\core\ATen_fwd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9732641Z copying torch\include\ATen\core\aten_interned_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9738570Z copying torch\include\ATen\core\ATen_pch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9744586Z copying torch\include\ATen\core\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9750604Z copying torch\include\ATen\core\blob.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9762630Z copying torch\include\ATen\core\builtin_function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9769048Z copying torch\include\ATen\core\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9775826Z copying torch\include\ATen\core\CheckMemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9782065Z copying torch\include\ATen\core\class_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9792923Z copying torch\include\ATen\core\custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9799264Z copying torch\include\ATen\core\DeprecatedTypeProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9806086Z copying torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9812171Z copying torch\include\ATen\core\Dict.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9822948Z copying torch\include\ATen\core\Dict_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9829255Z copying torch\include\ATen\core\Dimname.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9835376Z copying torch\include\ATen\core\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9841563Z copying torch\include\ATen\core\DistributionsHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9853125Z copying torch\include\ATen\core\dynamic_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9868695Z copying torch\include\ATen\core\enum_tag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9874825Z copying torch\include\ATen\core\enum_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9881035Z copying torch\include\ATen\core\Formatting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9892319Z copying torch\include\ATen\core\function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9898556Z copying torch\include\ATen\core\functional.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9904859Z copying torch\include\ATen\core\function_schema.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9911780Z copying torch\include\ATen\core\function_schema_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9923915Z copying torch\include\ATen\core\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9940166Z copying torch\include\ATen\core\GeneratorForPrivateuseone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9946364Z copying torch\include\ATen\core\grad_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9952739Z copying torch\include\ATen\core\IListRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9973381Z copying torch\include\ATen\core\IListRef_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9979837Z copying torch\include\ATen\core\interned_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9986272Z copying torch\include\ATen\core\interned_strings_class.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:33.9992632Z copying torch\include\ATen\core\ivalue.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0004648Z copying torch\include\ATen\core\ivalue_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0012174Z copying torch\include\ATen\core\ivalue_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0018465Z copying torch\include\ATen\core\jit_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0025856Z copying torch\include\ATen\core\jit_type_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0033330Z copying torch\include\ATen\core\LegacyTypeDispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0039753Z copying torch\include\ATen\core\List.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0046441Z copying torch\include\ATen\core\List_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0052795Z copying torch\include\ATen\core\MT19937RNGEngine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0068583Z copying torch\include\ATen\core\NamedTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0075646Z copying torch\include\ATen\core\NestedIntSymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0081605Z copying torch\include\ATen\core\operator_name.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0088337Z copying torch\include\ATen\core\PhiloxRNGEngine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0107384Z copying torch\include\ATen\core\PythonFallbackKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0114796Z copying torch\include\ATen\core\PythonOpRegistrationTrampoline.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0121055Z copying torch\include\ATen\core\qualified_name.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0127430Z copying torch\include\ATen\core\QuantizerBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0133881Z copying torch\include\ATen\core\Range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0140000Z copying torch\include\ATen\core\Reduction.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0155767Z copying torch\include\ATen\core\rref_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0161975Z copying torch\include\ATen\core\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0172560Z copying torch\include\ATen\core\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0179500Z copying torch\include\ATen\core\stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0185790Z copying torch\include\ATen\core\symbol.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0192485Z copying torch\include\ATen\core\Tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0198625Z copying torch\include\ATen\core\TensorAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0204996Z copying torch\include\ATen\core\TensorBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0212373Z copying torch\include\ATen\core\TensorBody.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0235725Z copying torch\include\ATen\core\TorchDispatchUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0236680Z copying torch\include\ATen\core\TransformationHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0260257Z copying torch\include\ATen\core\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0265951Z copying torch\include\ATen\core\type_factory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0272733Z copying torch\include\ATen\core\type_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0283268Z copying torch\include\ATen\core\UndefinedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0289733Z copying torch\include\ATen\core\UnsafeFromTH.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0302851Z copying torch\include\ATen\core\VariableHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0306510Z copying torch\include\ATen\core\Variadic.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0317680Z copying torch\include\ATen\core\Vitals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:18:34.0322586Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-07-24T05:18:34.0325508Z copying torch\include\ATen\core\boxing\BoxedKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-07-24T05:18:34.0331882Z copying torch\include\ATen\core\boxing\BoxedKernel_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-07-24T05:18:34.0338731Z copying torch\include\ATen\core\boxing\KernelFunction.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-07-24T05:18:34.0350762Z copying torch\include\ATen\core\boxing\KernelFunction_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-07-24T05:18:34.0366630Z copying torch\include\ATen\core\boxing\OperatorKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-07-24T05:18:34.0372112Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-07-24T05:18:34.0375273Z copying torch\include\ATen\core\boxing\impl\boxing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-07-24T05:18:34.0387509Z copying torch\include\ATen\core\boxing\impl\make_boxed_from_unboxed_functor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-07-24T05:18:34.0394274Z copying torch\include\ATen\core\boxing\impl\test_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-07-24T05:18:34.0400854Z copying torch\include\ATen\core\boxing\impl\WrapFunctionIntoFunctor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-07-24T05:18:34.0417000Z copying torch\include\ATen\core\boxing\impl\WrapFunctionIntoRuntimeFunctor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-07-24T05:18:34.0422699Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-24T05:18:34.0425608Z copying torch\include\ATen\core\dispatch\CppSignature.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-24T05:18:34.0431965Z copying torch\include\ATen\core\dispatch\Dispatcher.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-24T05:18:34.0438903Z copying torch\include\ATen\core\dispatch\DispatchKeyExtractor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-24T05:18:34.0449520Z copying torch\include\ATen\core\dispatch\ObservedOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-24T05:18:34.0465708Z copying torch\include\ATen\core\dispatch\OperatorEntry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-24T05:18:34.0472031Z copying torch\include\ATen\core\dispatch\OperatorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-24T05:18:34.0485133Z copying torch\include\ATen\core\dispatch\RegistrationHandleRAII.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-24T05:18:34.0491354Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-07-24T05:18:34.0494071Z copying torch\include\ATen\core\op_registration\adaption.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-07-24T05:18:34.0500598Z copying torch\include\ATen\core\op_registration\infer_schema.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-07-24T05:18:34.0507031Z copying torch\include\ATen\core\op_registration\op_allowlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-07-24T05:18:34.0523036Z copying torch\include\ATen\core\op_registration\op_registration.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-07-24T05:18:34.0538624Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-07-24T05:18:34.0541474Z copying torch\include\ATen\cpu\FlushDenormal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-07-24T05:18:34.0547723Z copying torch\include\ATen\cpu\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-07-24T05:18:34.0558252Z copying torch\include\ATen\cpu\vml.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-07-24T05:18:34.0563984Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:18:34.0566952Z copying torch\include\ATen\cpu\vec\functional.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:18:34.0573156Z copying torch\include\ATen\cpu\vec\functional_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:18:34.0579820Z copying torch\include\ATen\cpu\vec\functional_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:18:34.0586894Z copying torch\include\ATen\cpu\vec\intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:18:34.0602903Z copying torch\include\ATen\cpu\vec\vec.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:18:34.0609311Z copying torch\include\ATen\cpu\vec\vec_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:18:34.0617407Z copying torch\include\ATen\cpu\vec\vec_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:18:34.0623522Z copying torch\include\ATen\cpu\vec\vec_half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:18:34.0629942Z copying torch\include\ATen\cpu\vec\vec_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:18:34.0636230Z copying torch\include\ATen\cpu\vec\vec_n.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:18:34.0647873Z copying torch\include\ATen\cpu\vec\vec_quant.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:18:34.0653642Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-24T05:18:34.0656536Z copying torch\include\ATen\cpu\vec\sve\sve_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-24T05:18:34.0663280Z copying torch\include\ATen\cpu\vec\sve\vec_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-24T05:18:34.0670512Z copying torch\include\ATen\cpu\vec\sve\vec_common_sve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-24T05:18:34.0685344Z copying torch\include\ATen\cpu\vec\sve\vec_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-24T05:18:34.0702040Z copying torch\include\ATen\cpu\vec\sve\vec_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-24T05:18:34.0709441Z copying torch\include\ATen\cpu\vec\sve\vec_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-24T05:18:34.0727048Z copying torch\include\ATen\cpu\vec\sve\vec_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-24T05:18:34.0727979Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:18:34.0731312Z copying torch\include\ATen\cpu\vec\vec128\vec128.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:18:34.0739118Z copying torch\include\ATen\cpu\vec\vec128\vec128_bfloat16_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:18:34.0745574Z copying torch\include\ATen\cpu\vec\vec128\vec128_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:18:34.0757195Z copying torch\include\ATen\cpu\vec\vec128\vec128_float_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:18:34.0773529Z copying torch\include\ATen\cpu\vec\vec128\vec128_half_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:18:34.0781022Z copying torch\include\ATen\cpu\vec\vec128\vec128_reduced_precision_common_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:18:34.0787104Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:18:34.0790320Z copying torch\include\ATen\cpu\vec\vec256\missing_vld1_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:18:34.0796509Z copying torch\include\ATen\cpu\vec\vec256\missing_vst1_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:18:34.0802544Z copying torch\include\ATen\cpu\vec\vec256\vec256.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:18:34.0809257Z copying torch\include\ATen\cpu\vec\vec256\vec256_16bit_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:18:34.0829553Z copying torch\include\ATen\cpu\vec\vec256\vec256_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:18:34.0836012Z copying torch\include\ATen\cpu\vec\vec256\vec256_complex_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:18:34.0843001Z copying torch\include\ATen\cpu\vec\vec256\vec256_complex_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:18:34.0849832Z copying torch\include\ATen\cpu\vec\vec256\vec256_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:18:34.0856294Z copying torch\include\ATen\cpu\vec\vec256\vec256_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:18:34.0862737Z copying torch\include\ATen\cpu\vec\vec256\vec256_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:18:34.0870202Z copying torch\include\ATen\cpu\vec\vec256\vec256_half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:18:34.0876505Z copying torch\include\ATen\cpu\vec\vec256\vec256_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:18:34.0884322Z copying torch\include\ATen\cpu\vec\vec256\vec256_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:18:34.0890562Z copying torch\include\ATen\cpu\vec\vec256\vec256_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:18:34.0915022Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:18:34.0918015Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_bfloat16_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:18:34.0924497Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_common_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:18:34.0931713Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_double_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:18:34.0948319Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_float_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:18:34.0959521Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_double_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:18:34.0966810Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_float_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:18:34.0973577Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_int16_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:18:34.0980133Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_int32_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:18:34.0991019Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_int64_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:18:34.0997370Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint32_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:18:34.1003939Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint8_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:18:34.1010862Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_quint8_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:18:34.1017820Z copying torch\include\ATen\cpu\vec\vec256\vsx\vsx_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:18:34.1024348Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\zarch 2025-07-24T05:18:34.1027724Z copying torch\include\ATen\cpu\vec\vec256\zarch\vec256_zarch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\zarch 2025-07-24T05:18:34.1034722Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:18:34.1038214Z copying torch\include\ATen\cpu\vec\vec512\vec512.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:18:34.1044515Z copying torch\include\ATen\cpu\vec\vec512\vec512_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:18:34.1061858Z copying torch\include\ATen\cpu\vec\vec512\vec512_complex_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:18:34.1069113Z copying torch\include\ATen\cpu\vec\vec512\vec512_complex_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:18:34.1086151Z copying torch\include\ATen\cpu\vec\vec512\vec512_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:18:34.1097066Z copying torch\include\ATen\cpu\vec\vec512\vec512_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:18:34.1104142Z copying torch\include\ATen\cpu\vec\vec512\vec512_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:18:34.1111512Z copying torch\include\ATen\cpu\vec\vec512\vec512_float8.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:18:34.1119114Z copying torch\include\ATen\cpu\vec\vec512\vec512_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:18:34.1126582Z copying torch\include\ATen\cpu\vec\vec512\vec512_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:18:34.1133318Z copying torch\include\ATen\cpu\vec\vec512\vec512_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:18:34.1140075Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1143100Z copying torch\include\ATen\cuda\ATenCUDAGeneral.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1149495Z copying torch\include\ATen\cuda\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1160394Z copying torch\include\ATen\cuda\cub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1166706Z copying torch\include\ATen\cuda\CUDABlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1173901Z copying torch\include\ATen\cuda\CUDAContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1189964Z copying torch\include\ATen\cuda\CUDAContextLight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1196580Z copying torch\include\ATen\cuda\CUDADataType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1203002Z copying torch\include\ATen\cuda\CUDADevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1209232Z copying torch\include\ATen\cuda\CUDAEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1233453Z copying torch\include\ATen\cuda\CUDAGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1234219Z copying torch\include\ATen\cuda\CUDAGraph.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1234933Z copying torch\include\ATen\cuda\CUDASparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1237216Z copying torch\include\ATen\cuda\CUDASparseBlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1249192Z copying torch\include\ATen\cuda\CUDASparseDescriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1255742Z copying torch\include\ATen\cuda\CUDAUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1262638Z copying torch\include\ATen\cuda\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1269218Z copying torch\include\ATen\cuda\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1276037Z copying torch\include\ATen\cuda\jiterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1282594Z copying torch\include\ATen\cuda\jiterator_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1289006Z copying torch\include\ATen\cuda\llvm_jit_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1304779Z copying torch\include\ATen\cuda\PeerToPeerAccess.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1310661Z copying torch\include\ATen\cuda\PhiloxCudaState.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1317037Z copying torch\include\ATen\cuda\PinnedMemoryAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1323380Z copying torch\include\ATen\cuda\Sleep.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1329319Z copying torch\include\ATen\cuda\ThrustAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:34.1335150Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-24T05:18:34.1338065Z copying torch\include\ATen\cuda\detail\CUDAHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-24T05:18:34.1344964Z copying torch\include\ATen\cuda\detail\DeviceThreadHandles.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-24T05:18:34.1351292Z copying torch\include\ATen\cuda\detail\KernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-24T05:18:34.1357426Z copying torch\include\ATen\cuda\detail\LazyNVRTC.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-24T05:18:34.1372546Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-24T05:18:34.1375461Z copying torch\include\ATen\cuda\tunable\GemmCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-24T05:18:34.1382497Z copying torch\include\ATen\cuda\tunable\GemmHipblaslt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-24T05:18:34.1389893Z copying torch\include\ATen\cuda\tunable\GemmRocblas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-24T05:18:34.1400462Z copying torch\include\ATen\cuda\tunable\StreamTimer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-24T05:18:34.1416784Z copying torch\include\ATen\cuda\tunable\Tunable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-24T05:18:34.1422757Z copying torch\include\ATen\cuda\tunable\TunableGemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-24T05:18:34.1429448Z copying torch\include\ATen\cuda\tunable\TunableOp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-24T05:18:34.1435523Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-07-24T05:18:34.1438579Z copying torch\include\ATen\cudnn\cudnn-wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-07-24T05:18:34.1444643Z copying torch\include\ATen\cudnn\Descriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-07-24T05:18:34.1450892Z copying torch\include\ATen\cudnn\Handle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-07-24T05:18:34.1457606Z copying torch\include\ATen\cudnn\Handles.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-07-24T05:18:34.1463787Z copying torch\include\ATen\cudnn\Types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-07-24T05:18:34.1479349Z copying torch\include\ATen\cudnn\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-07-24T05:18:34.1484709Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:18:34.1487737Z copying torch\include\ATen\detail\AcceleratorHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:18:34.1494292Z copying torch\include\ATen\detail\CUDAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:18:34.1501500Z copying torch\include\ATen\detail\FunctionTraits.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:18:34.1521053Z copying torch\include\ATen\detail\HIPHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:18:34.1527526Z copying torch\include\ATen\detail\HPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:18:34.1533989Z copying torch\include\ATen\detail\IPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:18:34.1540717Z copying torch\include\ATen\detail\MAIAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:18:34.1547644Z copying torch\include\ATen\detail\MPSHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:18:34.1553860Z copying torch\include\ATen\detail\MTIAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:18:34.1560472Z copying torch\include\ATen\detail\PrivateUse1HooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:18:34.1567357Z copying torch\include\ATen\detail\XPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:18:34.1576938Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:18:34.1579868Z copying torch\include\ATen\functorch\ADInterpreters.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:18:34.1586368Z copying torch\include\ATen\functorch\BatchedFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:18:34.1593563Z copying torch\include\ATen\functorch\BatchedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:18:34.1619994Z copying torch\include\ATen\functorch\BatchingMetaprogramming.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:18:34.1626572Z copying torch\include\ATen\functorch\BatchRulesHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:18:34.1668029Z copying torch\include\ATen\functorch\DynamicLayer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:18:34.1674453Z copying torch\include\ATen\functorch\FunctionalizeInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:18:34.1690773Z copying torch\include\ATen\functorch\Interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:18:34.1697179Z copying torch\include\ATen\functorch\LegacyVmapTransforms.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:18:34.1703599Z copying torch\include\ATen\functorch\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:18:34.1710491Z copying torch\include\ATen\functorch\PlumbingHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:18:34.1726722Z copying torch\include\ATen\functorch\TensorWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:18:34.1729176Z copying torch\include\ATen\functorch\VmapInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:18:34.1743332Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-07-24T05:18:34.1744111Z copying torch\include\ATen\hip\impl\HIPAllocatorMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-07-24T05:18:34.1747203Z copying torch\include\ATen\hip\impl\HIPCachingAllocatorMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-07-24T05:18:34.1757906Z copying torch\include\ATen\hip\impl\HIPGuardImplMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-07-24T05:18:34.1769350Z copying torch\include\ATen\hip\impl\HIPStreamMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-07-24T05:18:34.1775157Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\metal 2025-07-24T05:18:34.1778685Z copying torch\include\ATen\metal\Context.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\metal 2025-07-24T05:18:34.1787816Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-07-24T05:18:34.1790657Z copying torch\include\ATen\miopen\Descriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-07-24T05:18:34.1797234Z copying torch\include\ATen\miopen\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-07-24T05:18:34.1803439Z copying torch\include\ATen\miopen\Handle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-07-24T05:18:34.1809342Z copying torch\include\ATen\miopen\miopen-wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-07-24T05:18:34.1828991Z copying torch\include\ATen\miopen\Types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-07-24T05:18:34.1834868Z copying torch\include\ATen\miopen\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-07-24T05:18:34.1839943Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:18:34.1843073Z copying torch\include\ATen\mps\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:18:34.1853746Z copying torch\include\ATen\mps\IndexKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:18:34.1859987Z copying torch\include\ATen\mps\MPSAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:18:34.1867616Z copying torch\include\ATen\mps\MPSAllocatorInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:18:34.1883760Z copying torch\include\ATen\mps\MPSDevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:18:34.1890020Z copying torch\include\ATen\mps\MPSEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:18:34.1896728Z copying torch\include\ATen\mps\MPSGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:18:34.1903033Z copying torch\include\ATen\mps\MPSGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:18:34.1920636Z copying torch\include\ATen\mps\MPSHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:18:34.1926479Z copying torch\include\ATen\mps\MPSProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:18:34.1933440Z copying torch\include\ATen\mps\MPSStream.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:18:34.1939230Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.1942108Z copying torch\include\ATen\native\Activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.1948507Z copying torch\include\ATen\native\AdaptivePooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.1955733Z copying torch\include\ATen\native\AmpKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.1962122Z copying torch\include\ATen\native\BatchLinearAlgebra.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.1983312Z copying torch\include\ATen\native\batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.1989487Z copying torch\include\ATen\native\BinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.1995828Z copying torch\include\ATen\native\BucketizationUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2002109Z copying torch\include\ATen\native\CanUse32BitIndexMath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2012525Z copying torch\include\ATen\native\ComplexHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2018892Z copying torch\include\ATen\native\CompositeRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2026011Z copying torch\include\ATen\native\CompositeRandomAccessorCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2037545Z copying torch\include\ATen\native\ConvolutionMM3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2043600Z copying torch\include\ATen\native\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2050717Z copying torch\include\ATen\native\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2056731Z copying torch\include\ATen\native\CPUBlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2062853Z copying torch\include\ATen\native\CPUFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2074077Z copying torch\include\ATen\native\Cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2080246Z copying torch\include\ATen\native\DilatedConvolutionUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2086465Z copying torch\include\ATen\native\DispatchStub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2093215Z copying torch\include\ATen\native\Distance.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2103774Z copying torch\include\ATen\native\Distributions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2120196Z copying torch\include\ATen\native\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2127007Z copying torch\include\ATen\native\EmbeddingBag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2133491Z copying torch\include\ATen\native\Fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2143429Z copying torch\include\ATen\native\ForeachUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2150210Z copying torch\include\ATen\native\FractionalMaxPooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2156482Z copying torch\include\ATen\native\FunctionOfAMatrixUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2162410Z copying torch\include\ATen\native\FusedAdagrad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2168518Z copying torch\include\ATen\native\FusedAdam.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2174852Z copying torch\include\ATen\native\FusedSGD.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2180677Z copying torch\include\ATen\native\Gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2186758Z copying torch\include\ATen\native\GridSampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2203774Z copying torch\include\ATen\native\GridSamplerUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2209990Z copying torch\include\ATen\native\group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2216524Z copying torch\include\ATen\native\Histogram.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2222826Z copying torch\include\ATen\native\im2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2229271Z copying torch\include\ATen\native\im2col_shape_check.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2240395Z copying torch\include\ATen\native\IndexingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2244063Z copying torch\include\ATen\native\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2284238Z copying torch\include\ATen\native\layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2284972Z copying torch\include\ATen\native\Lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2285721Z copying torch\include\ATen\native\LinearAlgebra.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2286515Z copying torch\include\ATen\native\LinearAlgebraUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2294255Z copying torch\include\ATen\native\LossMulti.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2306143Z copying torch\include\ATen\native\Math.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2314791Z copying torch\include\ATen\native\MathBitFallThroughLists.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2321320Z copying torch\include\ATen\native\MathBitsFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2327598Z copying torch\include\ATen\native\MaxPooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2335334Z copying torch\include\ATen\native\NonEmptyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2340383Z copying torch\include\ATen\native\NonSymbolicBC.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2346645Z copying torch\include\ATen\native\Normalization.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2352741Z copying torch\include\ATen\native\Padding.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2364805Z copying torch\include\ATen\native\PixelShuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2381258Z copying torch\include\ATen\native\PointwiseOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2387542Z copying torch\include\ATen\native\Pool.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2393688Z copying torch\include\ATen\native\Pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2404589Z copying torch\include\ATen\native\RangeFactories.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2410569Z copying torch\include\ATen\native\RangeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2416836Z copying torch\include\ATen\native\ReduceAllOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2422941Z copying torch\include\ATen\native\ReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2438553Z copying torch\include\ATen\native\ReduceOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2445611Z copying torch\include\ATen\native\ReductionType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2451849Z copying torch\include\ATen\native\Repeat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2457914Z copying torch\include\ATen\native\Resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2464177Z copying torch\include\ATen\native\ResizeCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2489375Z copying torch\include\ATen\native\RNN.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2495646Z copying torch\include\ATen\native\ScatterGatherChecks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2501933Z copying torch\include\ATen\native\SegmentReduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2513758Z copying torch\include\ATen\native\SharedReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2520785Z copying torch\include\ATen\native\SobolEngineOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2527194Z copying torch\include\ATen\native\Sorting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2533153Z copying torch\include\ATen\native\SortingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2539566Z copying torch\include\ATen\native\SparseTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2545930Z copying torch\include\ATen\native\SpectralOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2552554Z copying torch\include\ATen\native\StridedRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2568138Z copying torch\include\ATen\native\TensorAdvancedIndexing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2579502Z copying torch\include\ATen\native\TensorAdvancedIndexingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2585742Z copying torch\include\ATen\native\TensorCompare.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2592454Z copying torch\include\ATen\native\TensorConversions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2598826Z copying torch\include\ATen\native\TensorDimApply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2609995Z copying torch\include\ATen\native\TensorFactories.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2616662Z copying torch\include\ATen\native\TensorIterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2624364Z copying torch\include\ATen\native\TensorIteratorDynamicCasting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2644499Z copying torch\include\ATen\native\TensorProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2664770Z copying torch\include\ATen\native\TensorShape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2671722Z copying torch\include\ATen\native\TensorTransformations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2678375Z copying torch\include\ATen\native\TopKImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2685028Z copying torch\include\ATen\native\TransposeType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2691610Z copying torch\include\ATen\native\TriangularOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2698053Z copying torch\include\ATen\native\TypeProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2704479Z copying torch\include\ATen\native\UnaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2711288Z copying torch\include\ATen\native\Unfold2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2722143Z copying torch\include\ATen\native\Unfold3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2752778Z copying torch\include\ATen\native\UnfoldBackward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2753554Z copying torch\include\ATen\native\UpSample.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2754302Z copying torch\include\ATen\native\verbose_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2755342Z copying torch\include\ATen\native\vol2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:18:34.2761153Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-07-24T05:18:34.2766508Z copying torch\include\ATen\native\ao_sparse\quantized\cpu\fbgemm_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-07-24T05:18:34.2772819Z copying torch\include\ATen\native\ao_sparse\quantized\cpu\packed_params.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-07-24T05:18:34.2779220Z copying torch\include\ATen\native\ao_sparse\quantized\cpu\qnnpack_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-07-24T05:18:34.2784405Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2788252Z copying torch\include\ATen\native\cpu\AtomicAddFloat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2793916Z copying torch\include\ATen\native\cpu\avx_mathfun.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2800595Z copying torch\include\ATen\native\cpu\CatKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2806981Z copying torch\include\ATen\native\cpu\ChannelShuffleKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2823255Z copying torch\include\ATen\native\cpu\CopyKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2829653Z copying torch\include\ATen\native\cpu\DepthwiseConvKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2835972Z copying torch\include\ATen\native\cpu\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2842624Z copying torch\include\ATen\native\cpu\Elu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2849204Z copying torch\include\ATen\native\cpu\Gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2855643Z copying torch\include\ATen\native\cpu\GridSamplerKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2861892Z copying torch\include\ATen\native\cpu\IndexKernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2868471Z copying torch\include\ATen\native\cpu\Intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2874811Z copying torch\include\ATen\native\cpu\int_mm_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2881214Z copying torch\include\ATen\native\cpu\IsContiguous.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2887388Z copying torch\include\ATen\native\cpu\LogAddExp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2898372Z copying torch\include\ATen\native\cpu\LogSoftmaxKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2904656Z copying torch\include\ATen\native\cpu\Loops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2911113Z copying torch\include\ATen\native\cpu\MaxUnpoolKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2917104Z copying torch\include\ATen\native\cpu\mixed_data_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2927516Z copying torch\include\ATen\native\cpu\moments_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2943490Z copying torch\include\ATen\native\cpu\PixelShuffleKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2949492Z copying torch\include\ATen\native\cpu\Reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2956011Z copying torch\include\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2962357Z copying torch\include\ATen\native\cpu\ReduceUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2969165Z copying torch\include\ATen\native\cpu\SampledAddmmKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2975246Z copying torch\include\ATen\native\cpu\SerialStackImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2981552Z copying torch\include\ATen\native\cpu\SoftmaxKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2987974Z copying torch\include\ATen\native\cpu\SpmmReduceKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.2994678Z copying torch\include\ATen\native\cpu\StackKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.3000997Z copying torch\include\ATen\native\cpu\UpSampleKernelAVXAntialias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.3018468Z copying torch\include\ATen\native\cpu\utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.3024918Z copying torch\include\ATen\native\cpu\WeightNormKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.3032115Z copying torch\include\ATen\native\cpu\zmath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:18:34.3037697Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3040248Z copying torch\include\ATen\native\cuda\Activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3046375Z copying torch\include\ATen\native\cuda\BinaryInternal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3058202Z copying torch\include\ATen\native\cuda\CompositeRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3064556Z copying torch\include\ATen\native\cuda\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3080991Z copying torch\include\ATen\native\cuda\CuFFTPlanCache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3087728Z copying torch\include\ATen\native\cuda\CuFFTUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3094208Z copying torch\include\ATen\native\cuda\Distributions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3100875Z copying torch\include\ATen\native\cuda\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3107763Z copying torch\include\ATen\native\cuda\GridSampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3124411Z copying torch\include\ATen\native\cuda\GroupMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3130579Z copying torch\include\ATen\native\cuda\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3136740Z copying torch\include\ATen\native\cuda\IndexKernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3143481Z copying torch\include\ATen\native\cuda\jit_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3154579Z copying torch\include\ATen\native\cuda\LaunchUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3160714Z copying torch\include\ATen\native\cuda\MiscUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3167158Z copying torch\include\ATen\native\cuda\ReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3173266Z copying torch\include\ATen\native\cuda\Resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3189012Z copying torch\include\ATen\native\cuda\RowwiseScaledMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3194851Z copying torch\include\ATen\native\cuda\ScaledGroupMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3201243Z copying torch\include\ATen\native\cuda\ScanKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3218421Z copying torch\include\ATen\native\cuda\Sort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3224363Z copying torch\include\ATen\native\cuda\Sorting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3232020Z copying torch\include\ATen\native\cuda\SortStable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3241285Z copying torch\include\ATen\native\cuda\TensorModeKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3244536Z copying torch\include\ATen\native\cuda\TensorTopK.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3256433Z copying torch\include\ATen\native\cuda\thread_constants.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:34.3272089Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-07-24T05:18:34.3274822Z copying torch\include\ATen\native\hip\ck_bgemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-07-24T05:18:34.3281303Z copying torch\include\ATen\native\hip\ck_gemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-07-24T05:18:34.3287238Z copying torch\include\ATen\native\hip\ck_gemm_template.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-07-24T05:18:34.3298813Z copying torch\include\ATen\native\hip\ck_types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-07-24T05:18:34.3304246Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\bgemm_kernels 2025-07-24T05:18:34.3318180Z copying torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_collection.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\bgemm_kernels 2025-07-24T05:18:34.3324373Z copying torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_template.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\bgemm_kernels 2025-07-24T05:18:34.3335121Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-07-24T05:18:34.3337956Z copying torch\include\ATen\native\kleidiai\kai_kernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-07-24T05:18:34.3344411Z copying torch\include\ATen\native\kleidiai\kai_pack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-07-24T05:18:34.3350811Z copying torch\include\ATen\native\kleidiai\kai_ukernel_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-07-24T05:18:34.3356312Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu 2025-07-24T05:18:34.3360620Z copying torch\include\ATen\native\mkldnn\xpu\Conv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu 2025-07-24T05:18:34.3371353Z copying torch\include\ATen\native\mkldnn\xpu\FusionUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu 2025-07-24T05:18:34.3377713Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:18:34.3380462Z copying torch\include\ATen\native\mkldnn\xpu\detail\Attr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:18:34.3388023Z copying torch\include\ATen\native\mkldnn\xpu\detail\DnnlExt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:18:34.3394862Z copying torch\include\ATen\native\mkldnn\xpu\detail\LRUCache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:18:34.3400975Z copying torch\include\ATen\native\mkldnn\xpu\detail\oneDNN.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:18:34.3407349Z copying torch\include\ATen\native\mkldnn\xpu\detail\oneDNNContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:18:34.3413903Z copying torch\include\ATen\native\mkldnn\xpu\detail\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:18:34.3434423Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-24T05:18:34.3437097Z copying torch\include\ATen\native\mps\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-24T05:18:34.3443170Z copying torch\include\ATen\native\mps\MetalShaderLibrary.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-24T05:18:34.3449446Z copying torch\include\ATen\native\mps\MPSGraphSequoiaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-24T05:18:34.3455649Z copying torch\include\ATen\native\mps\MPSGraphSonomaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-24T05:18:34.3474788Z copying torch\include\ATen\native\mps\MPSGraphVenturaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-24T05:18:34.3481155Z copying torch\include\ATen\native\mps\OperationUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-24T05:18:34.3488012Z copying torch\include\ATen\native\mps\TensorFactory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-24T05:18:34.3497802Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels 2025-07-24T05:18:34.3501326Z copying torch\include\ATen\native\mps\kernels\Pooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels 2025-07-24T05:18:34.3507486Z copying torch\include\ATen\native\mps\kernels\UpSample.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels 2025-07-24T05:18:34.3512982Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-07-24T05:18:34.3515872Z copying torch\include\ATen\native\mps\operations\BinaryKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-07-24T05:18:34.3522246Z copying torch\include\ATen\native\mps\operations\FusedAdamAmsgradKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-07-24T05:18:34.3533170Z copying torch\include\ATen\native\mps\operations\FusedAdamKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-07-24T05:18:34.3550081Z copying torch\include\ATen\native\mps\operations\FusedAdamWAmsgradKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-07-24T05:18:34.3556497Z copying torch\include\ATen\native\mps\operations\FusedAdamWKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-07-24T05:18:34.3563046Z copying torch\include\ATen\native\mps\operations\MultiTensorApply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-07-24T05:18:34.3569000Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mtia 2025-07-24T05:18:34.3571945Z copying torch\include\ATen\native\mtia\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mtia 2025-07-24T05:18:34.3577520Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-07-24T05:18:34.3580561Z copying torch\include\ATen\native\nested\NestedTensorBinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-07-24T05:18:34.3587110Z copying torch\include\ATen\native\nested\NestedTensorMath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-07-24T05:18:34.3597979Z copying torch\include\ATen\native\nested\NestedTensorTransformerFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-07-24T05:18:34.3613948Z copying torch\include\ATen\native\nested\NestedTensorTransformerUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-07-24T05:18:34.3620458Z copying torch\include\ATen\native\nested\NestedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-07-24T05:18:34.3634798Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-24T05:18:34.3637770Z copying torch\include\ATen\native\quantized\AffineQuantizer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-24T05:18:34.3644538Z copying torch\include\ATen\native\quantized\AffineQuantizerBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-24T05:18:34.3651569Z copying torch\include\ATen\native\quantized\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-24T05:18:34.3671176Z copying torch\include\ATen\native\quantized\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-24T05:18:34.3677262Z copying torch\include\ATen\native\quantized\FakeQuantAffine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-24T05:18:34.3683643Z copying torch\include\ATen\native\quantized\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-24T05:18:34.3722722Z copying torch\include\ATen\native\quantized\library.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-24T05:18:34.3729213Z copying torch\include\ATen\native\quantized\PackedParams.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-24T05:18:34.3740018Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:18:34.3744145Z copying torch\include\ATen\native\quantized\cpu\ACLUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:18:34.3750314Z copying torch\include\ATen\native\quantized\cpu\BinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:18:34.3757044Z copying torch\include\ATen\native\quantized\cpu\conv_serialization.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:18:34.3772401Z copying torch\include\ATen\native\quantized\cpu\EmbeddingPackedParams.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:18:34.3783737Z copying torch\include\ATen\native\quantized\cpu\fbgemm_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:18:34.3790166Z copying torch\include\ATen\native\quantized\cpu\init_qnnpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:18:34.3800729Z copying torch\include\ATen\native\quantized\cpu\OnednnUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:18:34.3807066Z copying torch\include\ATen\native\quantized\cpu\qconv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:18:34.3813412Z copying torch\include\ATen\native\quantized\cpu\qembeddingbag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:18:34.3819726Z copying torch\include\ATen\native\quantized\cpu\qembeddingbag_prepack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:18:34.3831066Z copying torch\include\ATen\native\quantized\cpu\qlinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:18:34.3837211Z copying torch\include\ATen\native\quantized\cpu\QnnpackUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:18:34.3844037Z copying torch\include\ATen\native\quantized\cpu\QuantizedOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:18:34.3855107Z copying torch\include\ATen\native\quantized\cpu\QuantUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:18:34.3866419Z copying torch\include\ATen\native\quantized\cpu\RuyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:18:34.3872591Z copying torch\include\ATen\native\quantized\cpu\XnnpackUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:18:34.3878200Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cudnn 2025-07-24T05:18:34.3882090Z copying torch\include\ATen\native\quantized\cudnn\utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cudnn 2025-07-24T05:18:34.3886626Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-07-24T05:18:34.3889589Z copying torch\include\ATen\native\transformers\attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-07-24T05:18:34.3900606Z copying torch\include\ATen\native\transformers\sdp_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-07-24T05:18:34.3911868Z copying torch\include\ATen\native\transformers\sdp_utils_cpp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-07-24T05:18:34.3927771Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda 2025-07-24T05:18:34.3930697Z copying torch\include\ATen\native\transformers\cuda\sdp_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda 2025-07-24T05:18:34.3936137Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\flash_attn 2025-07-24T05:18:34.3939162Z copying torch\include\ATen\native\transformers\cuda\flash_attn\flash_api.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\flash_attn 2025-07-24T05:18:34.3945640Z copying torch\include\ATen\native\transformers\cuda\flash_attn\static_switch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\flash_attn 2025-07-24T05:18:34.3951304Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:18:34.3954503Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\debug_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:18:34.3960914Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm_kernel_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:18:34.3972195Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:18:34.3990059Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:18:34.3997345Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\pytorch_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:18:34.4010938Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-07-24T05:18:34.4014108Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_pipelined.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-07-24T05:18:34.4021098Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_rescale_output.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-07-24T05:18:34.4028245Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_thread_apply_logsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-07-24T05:18:34.4047130Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:18:34.4050479Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:18:34.4056790Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:18:34.4063376Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_multistage.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:18:34.4070722Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_pipelined.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:18:34.4086971Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\find_default_mma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:18:34.4093663Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_accum_lambda_iterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:18:34.4100810Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_from_smem.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:18:34.4107898Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:18:34.4111263Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\default_warp_iterator_from_smem.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:18:34.4117922Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\epilogue_predicated_tile_iterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:18:34.4125107Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\make_residual_last.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:18:34.4148023Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_access_iterator_residual_last.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:18:34.4155144Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_iterator_residual_last.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:18:34.4162963Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\transpose_warp_iterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:18:34.4170355Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\warp_iterator_from_smem.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:18:34.4179308Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-07-24T05:18:34.4182469Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-07-24T05:18:34.4190560Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-07-24T05:18:34.4196543Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-07-24T05:18:34.4199864Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform\tile_smem_loader.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-07-24T05:18:34.4205055Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip 2025-07-24T05:18:34.4208014Z copying torch\include\ATen\native\transformers\hip\aotriton_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip 2025-07-24T05:18:34.4217555Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn 2025-07-24T05:18:34.4220537Z copying torch\include\ATen\native\transformers\hip\flash_attn\flash_api.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn 2025-07-24T05:18:34.4227407Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-07-24T05:18:34.4230140Z copying torch\include\ATen\native\transformers\hip\flash_attn\ck\me_ck_api.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-07-24T05:18:34.4247675Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-07-24T05:18:34.4248349Z copying torch\include\ATen\native\utils\Factory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-07-24T05:18:34.4249202Z copying torch\include\ATen\native\utils\ParamsHash.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-07-24T05:18:34.4263994Z copying torch\include\ATen\native\utils\ParamUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-07-24T05:18:34.4269742Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4272774Z copying torch\include\ATen\ops\abs.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4279038Z copying torch\include\ATen\ops\absolute.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4285685Z copying torch\include\ATen\ops\absolute_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4296243Z copying torch\include\ATen\ops\absolute_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4311936Z copying torch\include\ATen\ops\absolute_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4318598Z copying torch\include\ATen\ops\abs_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4324811Z copying torch\include\ATen\ops\abs_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4331253Z copying torch\include\ATen\ops\abs_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4337485Z copying torch\include\ATen\ops\abs_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4349397Z copying torch\include\ATen\ops\abs_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4359744Z copying torch\include\ATen\ops\acos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4365785Z copying torch\include\ATen\ops\acosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4372332Z copying torch\include\ATen\ops\acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4382990Z copying torch\include\ATen\ops\acosh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4393790Z copying torch\include\ATen\ops\acosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4399937Z copying torch\include\ATen\ops\acosh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4406123Z copying torch\include\ATen\ops\acosh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4413000Z copying torch\include\ATen\ops\acosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4427580Z copying torch\include\ATen\ops\acosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4434832Z copying torch\include\ATen\ops\acos_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4450222Z copying torch\include\ATen\ops\acos_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4456684Z copying torch\include\ATen\ops\acos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4462986Z copying torch\include\ATen\ops\acos_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4469212Z copying torch\include\ATen\ops\acos_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4475645Z copying torch\include\ATen\ops\acos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4481885Z copying torch\include\ATen\ops\acos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4488315Z copying torch\include\ATen\ops\adaptive_avg_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4495050Z copying torch\include\ATen\ops\adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4502030Z copying torch\include\ATen\ops\adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4518129Z copying torch\include\ATen\ops\adaptive_avg_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4529029Z copying torch\include\ATen\ops\adaptive_avg_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4535561Z copying torch\include\ATen\ops\adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4542489Z copying torch\include\ATen\ops\adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4549647Z copying torch\include\ATen\ops\adaptive_avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4561080Z copying torch\include\ATen\ops\adaptive_avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4567649Z copying torch\include\ATen\ops\adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4574293Z copying torch\include\ATen\ops\adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4605805Z copying torch\include\ATen\ops\adaptive_avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4616315Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4623044Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4630200Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4636810Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4647993Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4655062Z copying torch\include\ATen\ops\adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4661708Z copying torch\include\ATen\ops\adaptive_avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4668482Z copying torch\include\ATen\ops\adaptive_avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4675817Z copying torch\include\ATen\ops\adaptive_avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4682210Z copying torch\include\ATen\ops\adaptive_avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4708132Z copying torch\include\ATen\ops\adaptive_max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4715033Z copying torch\include\ATen\ops\adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4721761Z copying torch\include\ATen\ops\adaptive_max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4728191Z copying torch\include\ATen\ops\adaptive_max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4734842Z copying torch\include\ATen\ops\adaptive_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4754718Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4755842Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4762632Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4769810Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4776823Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4783869Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4800027Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4807172Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4814326Z copying torch\include\ATen\ops\adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4826430Z copying torch\include\ATen\ops\adaptive_max_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4833787Z copying torch\include\ATen\ops\adaptive_max_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4840568Z copying torch\include\ATen\ops\adaptive_max_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4847181Z copying torch\include\ATen\ops\adaptive_max_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4867644Z copying torch\include\ATen\ops\adaptive_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4874252Z copying torch\include\ATen\ops\adaptive_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4881024Z copying torch\include\ATen\ops\adaptive_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4887661Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4902682Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4919552Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4926171Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4932722Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4944894Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4952111Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4958714Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4965618Z copying torch\include\ATen\ops\adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4972043Z copying torch\include\ATen\ops\adaptive_max_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4978678Z copying torch\include\ATen\ops\adaptive_max_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4985321Z copying torch\include\ATen\ops\adaptive_max_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4992261Z copying torch\include\ATen\ops\adaptive_max_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.4999130Z copying torch\include\ATen\ops\adaptive_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5005825Z copying torch\include\ATen\ops\adaptive_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5012393Z copying torch\include\ATen\ops\add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5018752Z copying torch\include\ATen\ops\addbmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5025102Z copying torch\include\ATen\ops\addbmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5032095Z copying torch\include\ATen\ops\addbmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5038361Z copying torch\include\ATen\ops\addbmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5045033Z copying torch\include\ATen\ops\addbmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5056499Z copying torch\include\ATen\ops\addbmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5062975Z copying torch\include\ATen\ops\addcdiv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5069893Z copying torch\include\ATen\ops\addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5076319Z copying torch\include\ATen\ops\addcdiv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5089774Z copying torch\include\ATen\ops\addcdiv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5106899Z copying torch\include\ATen\ops\addcdiv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5113533Z copying torch\include\ATen\ops\addcdiv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5119968Z copying torch\include\ATen\ops\addcdiv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5135056Z copying torch\include\ATen\ops\addcdiv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5141334Z copying torch\include\ATen\ops\addcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5148045Z copying torch\include\ATen\ops\addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5154413Z copying torch\include\ATen\ops\addcmul_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5160989Z copying torch\include\ATen\ops\addcmul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5167741Z copying torch\include\ATen\ops\addcmul_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5175309Z copying torch\include\ATen\ops\addcmul_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5181409Z copying torch\include\ATen\ops\addcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5193491Z copying torch\include\ATen\ops\addcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5200234Z copying torch\include\ATen\ops\addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5206962Z copying torch\include\ATen\ops\addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5213333Z copying torch\include\ATen\ops\addmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5224972Z copying torch\include\ATen\ops\addmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5231788Z copying torch\include\ATen\ops\addmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5238644Z copying torch\include\ATen\ops\addmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5247794Z copying torch\include\ATen\ops\addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5252038Z copying torch\include\ATen\ops\addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5274184Z copying torch\include\ATen\ops\addmv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5275116Z copying torch\include\ATen\ops\addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5283782Z copying torch\include\ATen\ops\addmv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5295084Z copying torch\include\ATen\ops\addmv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5301760Z copying torch\include\ATen\ops\addmv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5309124Z copying torch\include\ATen\ops\addmv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5315032Z copying torch\include\ATen\ops\addmv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5321533Z copying torch\include\ATen\ops\addmv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5328326Z copying torch\include\ATen\ops\addr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5334790Z copying torch\include\ATen\ops\addr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5341222Z copying torch\include\ATen\ops\addr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5365193Z copying torch\include\ATen\ops\addr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5371748Z copying torch\include\ATen\ops\addr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5545408Z copying torch\include\ATen\ops\addr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5546373Z copying torch\include\ATen\ops\add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5547489Z copying torch\include\ATen\ops\add_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5548335Z copying torch\include\ATen\ops\add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5549076Z copying torch\include\ATen\ops\add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5549795Z copying torch\include\ATen\ops\add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5550504Z copying torch\include\ATen\ops\add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5551215Z copying torch\include\ATen\ops\add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5551923Z copying torch\include\ATen\ops\add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5552623Z copying torch\include\ATen\ops\adjoint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5553559Z copying torch\include\ATen\ops\adjoint_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5554421Z copying torch\include\ATen\ops\adjoint_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5555180Z copying torch\include\ATen\ops\adjoint_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5555921Z copying torch\include\ATen\ops\affine_grid_generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5556723Z copying torch\include\ATen\ops\affine_grid_generator_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5557762Z copying torch\include\ATen\ops\affine_grid_generator_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5558824Z copying torch\include\ATen\ops\affine_grid_generator_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5559696Z copying torch\include\ATen\ops\affine_grid_generator_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5560682Z copying torch\include\ATen\ops\affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5561658Z copying torch\include\ATen\ops\affine_grid_generator_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5568752Z copying torch\include\ATen\ops\affine_grid_generator_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5575785Z copying torch\include\ATen\ops\alias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5587035Z copying torch\include\ATen\ops\alias_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5593433Z copying torch\include\ATen\ops\alias_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5600494Z copying torch\include\ATen\ops\alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5607119Z copying torch\include\ATen\ops\alias_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5613833Z copying torch\include\ATen\ops\alias_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5620411Z copying torch\include\ATen\ops\alias_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5627364Z copying torch\include\ATen\ops\alias_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5633688Z copying torch\include\ATen\ops\alias_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5640649Z copying torch\include\ATen\ops\align_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5647375Z copying torch\include\ATen\ops\align_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5653872Z copying torch\include\ATen\ops\align_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5660491Z copying torch\include\ATen\ops\align_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5671599Z copying torch\include\ATen\ops\align_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5678708Z copying torch\include\ATen\ops\align_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5685346Z copying torch\include\ATen\ops\align_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5692001Z copying torch\include\ATen\ops\align_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5698526Z copying torch\include\ATen\ops\align_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5704986Z copying torch\include\ATen\ops\align_to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5711670Z copying torch\include\ATen\ops\align_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5718582Z copying torch\include\ATen\ops\align_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5730034Z copying torch\include\ATen\ops\all.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5736151Z copying torch\include\ATen\ops\allclose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5742669Z copying torch\include\ATen\ops\allclose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5758134Z copying torch\include\ATen\ops\allclose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5764611Z copying torch\include\ATen\ops\allclose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5771864Z copying torch\include\ATen\ops\all_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5778691Z copying torch\include\ATen\ops\all_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5785693Z copying torch\include\ATen\ops\all_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5793275Z copying torch\include\ATen\ops\all_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5799190Z copying torch\include\ATen\ops\all_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5805573Z copying torch\include\ATen\ops\all_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5811931Z copying torch\include\ATen\ops\all_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5818493Z copying torch\include\ATen\ops\all_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5824684Z copying torch\include\ATen\ops\all_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5864054Z copying torch\include\ATen\ops\alpha_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5871065Z copying torch\include\ATen\ops\alpha_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5877474Z copying torch\include\ATen\ops\alpha_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5889526Z copying torch\include\ATen\ops\alpha_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5896233Z copying torch\include\ATen\ops\amax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5902743Z copying torch\include\ATen\ops\amax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5912967Z copying torch\include\ATen\ops\amax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5919665Z copying torch\include\ATen\ops\amax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5927170Z copying torch\include\ATen\ops\amax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5933759Z copying torch\include\ATen\ops\amax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5940358Z copying torch\include\ATen\ops\amax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5947259Z copying torch\include\ATen\ops\amax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5953621Z copying torch\include\ATen\ops\amin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5960215Z copying torch\include\ATen\ops\aminmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5967775Z copying torch\include\ATen\ops\aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5974244Z copying torch\include\ATen\ops\aminmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5980916Z copying torch\include\ATen\ops\aminmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5987417Z copying torch\include\ATen\ops\aminmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.5998681Z copying torch\include\ATen\ops\aminmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6005801Z copying torch\include\ATen\ops\aminmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6012102Z copying torch\include\ATen\ops\aminmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6019243Z copying torch\include\ATen\ops\amin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6025586Z copying torch\include\ATen\ops\amin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6032919Z copying torch\include\ATen\ops\amin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6039024Z copying torch\include\ATen\ops\amin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6045339Z copying torch\include\ATen\ops\amin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6056446Z copying torch\include\ATen\ops\amin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6063111Z copying torch\include\ATen\ops\amin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6069496Z copying torch\include\ATen\ops\and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6076549Z copying torch\include\ATen\ops\and_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6087210Z copying torch\include\ATen\ops\and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6093567Z copying torch\include\ATen\ops\and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6100346Z copying torch\include\ATen\ops\angle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6106688Z copying torch\include\ATen\ops\angle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6117443Z copying torch\include\ATen\ops\angle_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6123936Z copying torch\include\ATen\ops\angle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6130332Z copying torch\include\ATen\ops\angle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6136627Z copying torch\include\ATen\ops\any.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6143277Z copying torch\include\ATen\ops\any_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6149912Z copying torch\include\ATen\ops\any_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6156762Z copying torch\include\ATen\ops\any_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6163243Z copying torch\include\ATen\ops\any_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6177599Z copying torch\include\ATen\ops\any_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6196231Z copying torch\include\ATen\ops\any_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6202560Z copying torch\include\ATen\ops\any_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6208911Z copying torch\include\ATen\ops\any_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6215422Z copying torch\include\ATen\ops\any_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6221678Z copying torch\include\ATen\ops\arange.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6228897Z copying torch\include\ATen\ops\arange_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6235358Z copying torch\include\ATen\ops\arange_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6246482Z copying torch\include\ATen\ops\arange_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6253258Z copying torch\include\ATen\ops\arange_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6259852Z copying torch\include\ATen\ops\arange_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6266290Z copying torch\include\ATen\ops\arange_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6277115Z copying torch\include\ATen\ops\arccos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6283316Z copying torch\include\ATen\ops\arccosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6289999Z copying torch\include\ATen\ops\arccosh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6296397Z copying torch\include\ATen\ops\arccosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6302674Z copying torch\include\ATen\ops\arccosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6309593Z copying torch\include\ATen\ops\arccos_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6316068Z copying torch\include\ATen\ops\arccos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6322957Z copying torch\include\ATen\ops\arccos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6335083Z copying torch\include\ATen\ops\arcsin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6341985Z copying torch\include\ATen\ops\arcsinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6355623Z copying torch\include\ATen\ops\arcsinh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6361013Z copying torch\include\ATen\ops\arcsinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6372218Z copying torch\include\ATen\ops\arcsinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6382949Z copying torch\include\ATen\ops\arcsin_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6389508Z copying torch\include\ATen\ops\arcsin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6395894Z copying torch\include\ATen\ops\arcsin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6407285Z copying torch\include\ATen\ops\arctan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6413626Z copying torch\include\ATen\ops\arctan2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6420185Z copying torch\include\ATen\ops\arctan2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6427132Z copying torch\include\ATen\ops\arctan2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6433271Z copying torch\include\ATen\ops\arctan2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6439876Z copying torch\include\ATen\ops\arctanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6446416Z copying torch\include\ATen\ops\arctanh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6452979Z copying torch\include\ATen\ops\arctanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6463939Z copying torch\include\ATen\ops\arctanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6470964Z copying torch\include\ATen\ops\arctan_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6478048Z copying torch\include\ATen\ops\arctan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6484164Z copying torch\include\ATen\ops\arctan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6495023Z copying torch\include\ATen\ops\argmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6501710Z copying torch\include\ATen\ops\argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6508185Z copying torch\include\ATen\ops\argmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6514604Z copying torch\include\ATen\ops\argmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6526040Z copying torch\include\ATen\ops\argmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6533824Z copying torch\include\ATen\ops\argmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6540247Z copying torch\include\ATen\ops\argmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6546877Z copying torch\include\ATen\ops\argmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6566997Z copying torch\include\ATen\ops\argmin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6573960Z copying torch\include\ATen\ops\argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6580655Z copying torch\include\ATen\ops\argmin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6587279Z copying torch\include\ATen\ops\argmin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6598297Z copying torch\include\ATen\ops\argmin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6605010Z copying torch\include\ATen\ops\argmin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6611738Z copying torch\include\ATen\ops\argmin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6619063Z copying torch\include\ATen\ops\argmin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6630548Z copying torch\include\ATen\ops\argsort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6636840Z copying torch\include\ATen\ops\argsort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6643563Z copying torch\include\ATen\ops\argsort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6650077Z copying torch\include\ATen\ops\argsort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6656797Z copying torch\include\ATen\ops\argwhere.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6663262Z copying torch\include\ATen\ops\argwhere_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6669859Z copying torch\include\ATen\ops\argwhere_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6676267Z copying torch\include\ATen\ops\argwhere_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6689388Z copying torch\include\ATen\ops\asin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6695817Z copying torch\include\ATen\ops\asinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6702965Z copying torch\include\ATen\ops\asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6709740Z copying torch\include\ATen\ops\asinh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6717003Z copying torch\include\ATen\ops\asinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6723702Z copying torch\include\ATen\ops\asinh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6730320Z copying torch\include\ATen\ops\asinh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6736917Z copying torch\include\ATen\ops\asinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6748614Z copying torch\include\ATen\ops\asinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6756670Z copying torch\include\ATen\ops\asin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6765864Z copying torch\include\ATen\ops\asin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6770326Z copying torch\include\ATen\ops\asin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6781633Z copying torch\include\ATen\ops\asin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6788326Z copying torch\include\ATen\ops\asin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6794907Z copying torch\include\ATen\ops\asin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6801522Z copying torch\include\ATen\ops\asin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6812070Z copying torch\include\ATen\ops\as_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6819052Z copying torch\include\ATen\ops\as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6825452Z copying torch\include\ATen\ops\as_strided_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6832658Z copying torch\include\ATen\ops\as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6843464Z copying torch\include\ATen\ops\as_strided_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6850287Z copying torch\include\ATen\ops\as_strided_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6869026Z copying torch\include\ATen\ops\as_strided_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6875532Z copying torch\include\ATen\ops\as_strided_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6882126Z copying torch\include\ATen\ops\as_strided_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6888891Z copying torch\include\ATen\ops\as_strided_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6895640Z copying torch\include\ATen\ops\as_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6901992Z copying torch\include\ATen\ops\as_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6914411Z copying torch\include\ATen\ops\as_strided_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6958597Z copying torch\include\ATen\ops\as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6959723Z copying torch\include\ATen\ops\as_strided_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6960643Z copying torch\include\ATen\ops\as_strided_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6961421Z copying torch\include\ATen\ops\as_strided_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6962120Z copying torch\include\ATen\ops\atan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6962771Z copying torch\include\ATen\ops\atan2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6968986Z copying torch\include\ATen\ops\atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6980102Z copying torch\include\ATen\ops\atan2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6987105Z copying torch\include\ATen\ops\atan2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.6993524Z copying torch\include\ATen\ops\atan2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7000310Z copying torch\include\ATen\ops\atan2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7006884Z copying torch\include\ATen\ops\atan2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7013404Z copying torch\include\ATen\ops\atan2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7020147Z copying torch\include\ATen\ops\atanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7027551Z copying torch\include\ATen\ops\atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7040883Z copying torch\include\ATen\ops\atanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7047712Z copying torch\include\ATen\ops\atanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7054882Z copying torch\include\ATen\ops\atanh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7061439Z copying torch\include\ATen\ops\atanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7084508Z copying torch\include\ATen\ops\atanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7090688Z copying torch\include\ATen\ops\atanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7097475Z copying torch\include\ATen\ops\atan_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7103497Z copying torch\include\ATen\ops\atan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7117230Z copying torch\include\ATen\ops\atan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7123805Z copying torch\include\ATen\ops\atan_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7130188Z copying torch\include\ATen\ops\atan_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7136916Z copying torch\include\ATen\ops\atan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7148606Z copying torch\include\ATen\ops\atan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7154866Z copying torch\include\ATen\ops\atleast_1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7161715Z copying torch\include\ATen\ops\atleast_1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7168097Z copying torch\include\ATen\ops\atleast_1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7174308Z copying torch\include\ATen\ops\atleast_1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7180688Z copying torch\include\ATen\ops\atleast_2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7188135Z copying torch\include\ATen\ops\atleast_2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7194739Z copying torch\include\ATen\ops\atleast_2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7205283Z copying torch\include\ATen\ops\atleast_2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7211875Z copying torch\include\ATen\ops\atleast_3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7219604Z copying torch\include\ATen\ops\atleast_3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7225655Z copying torch\include\ATen\ops\atleast_3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7232067Z copying torch\include\ATen\ops\atleast_3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7238660Z copying torch\include\ATen\ops\avg_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7245645Z copying torch\include\ATen\ops\avg_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7252602Z copying torch\include\ATen\ops\avg_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7292026Z copying torch\include\ATen\ops\avg_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7292753Z copying torch\include\ATen\ops\avg_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7293444Z copying torch\include\ATen\ops\avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7294167Z copying torch\include\ATen\ops\avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7295147Z copying torch\include\ATen\ops\avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7301518Z copying torch\include\ATen\ops\avg_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7308449Z copying torch\include\ATen\ops\avg_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7316208Z copying torch\include\ATen\ops\avg_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7322233Z copying torch\include\ATen\ops\avg_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7329136Z copying torch\include\ATen\ops\avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7336025Z copying torch\include\ATen\ops\avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7343375Z copying torch\include\ATen\ops\avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7353768Z copying torch\include\ATen\ops\avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7360670Z copying torch\include\ATen\ops\avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7367280Z copying torch\include\ATen\ops\avg_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7373894Z copying torch\include\ATen\ops\avg_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7385252Z copying torch\include\ATen\ops\avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7392258Z copying torch\include\ATen\ops\avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7398887Z copying torch\include\ATen\ops\avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7405586Z copying torch\include\ATen\ops\avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7417041Z copying torch\include\ATen\ops\avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7423661Z copying torch\include\ATen\ops\avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7431104Z copying torch\include\ATen\ops\avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7437697Z copying torch\include\ATen\ops\avg_pool3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7449134Z copying torch\include\ATen\ops\avg_pool3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7456008Z copying torch\include\ATen\ops\avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7473897Z copying torch\include\ATen\ops\avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7513099Z copying torch\include\ATen\ops\avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7527660Z copying torch\include\ATen\ops\avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7535259Z copying torch\include\ATen\ops\avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7542016Z copying torch\include\ATen\ops\avg_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7549114Z copying torch\include\ATen\ops\avg_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7559607Z copying torch\include\ATen\ops\avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7566227Z copying torch\include\ATen\ops\avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7573572Z copying torch\include\ATen\ops\baddbmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7581340Z copying torch\include\ATen\ops\baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7587463Z copying torch\include\ATen\ops\baddbmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7594541Z copying torch\include\ATen\ops\baddbmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7601353Z copying torch\include\ATen\ops\baddbmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7608386Z copying torch\include\ATen\ops\baddbmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7615488Z copying torch\include\ATen\ops\baddbmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7621890Z copying torch\include\ATen\ops\baddbmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7628781Z copying torch\include\ATen\ops\bartlett_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7635744Z copying torch\include\ATen\ops\bartlett_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7642461Z copying torch\include\ATen\ops\bartlett_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7649515Z copying torch\include\ATen\ops\bartlett_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7656389Z copying torch\include\ATen\ops\batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7663034Z copying torch\include\ATen\ops\batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7670092Z copying torch\include\ATen\ops\batch_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7676856Z copying torch\include\ATen\ops\batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7684453Z copying torch\include\ATen\ops\batch_norm_backward_elemt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7691158Z copying torch\include\ATen\ops\batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7703089Z copying torch\include\ATen\ops\batch_norm_backward_elemt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7710073Z copying torch\include\ATen\ops\batch_norm_backward_elemt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7716896Z copying torch\include\ATen\ops\batch_norm_backward_elemt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7724675Z copying torch\include\ATen\ops\batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7731013Z copying torch\include\ATen\ops\batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7738059Z copying torch\include\ATen\ops\batch_norm_backward_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7745428Z copying torch\include\ATen\ops\batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7752685Z copying torch\include\ATen\ops\batch_norm_backward_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7764906Z copying torch\include\ATen\ops\batch_norm_backward_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7779512Z copying torch\include\ATen\ops\batch_norm_backward_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7780509Z copying torch\include\ATen\ops\batch_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7786841Z copying torch\include\ATen\ops\batch_norm_elemt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7798825Z copying torch\include\ATen\ops\batch_norm_elemt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7805884Z copying torch\include\ATen\ops\batch_norm_elemt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7812510Z copying torch\include\ATen\ops\batch_norm_elemt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7819422Z copying torch\include\ATen\ops\batch_norm_gather_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7835396Z copying torch\include\ATen\ops\batch_norm_gather_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7842224Z copying torch\include\ATen\ops\batch_norm_gather_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7849172Z copying torch\include\ATen\ops\batch_norm_gather_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7856067Z copying torch\include\ATen\ops\batch_norm_gather_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7863136Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7870381Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7877123Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7883928Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7895380Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7901975Z copying torch\include\ATen\ops\batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7941552Z copying torch\include\ATen\ops\batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7948367Z copying torch\include\ATen\ops\batch_norm_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7955356Z copying torch\include\ATen\ops\batch_norm_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7962197Z copying torch\include\ATen\ops\batch_norm_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7968939Z copying torch\include\ATen\ops\batch_norm_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7975496Z copying torch\include\ATen\ops\batch_norm_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7991038Z copying torch\include\ATen\ops\batch_norm_update_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.7998157Z copying torch\include\ATen\ops\batch_norm_update_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8004822Z copying torch\include\ATen\ops\batch_norm_update_stats_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8012838Z copying torch\include\ATen\ops\batch_norm_update_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8024493Z copying torch\include\ATen\ops\batch_norm_update_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8031458Z copying torch\include\ATen\ops\batch_norm_update_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8038138Z copying torch\include\ATen\ops\bernoulli.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8045200Z copying torch\include\ATen\ops\bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8056495Z copying torch\include\ATen\ops\bernoulli_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8063775Z copying torch\include\ATen\ops\bernoulli_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8070349Z copying torch\include\ATen\ops\bernoulli_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8086526Z copying torch\include\ATen\ops\bernoulli_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8092951Z copying torch\include\ATen\ops\bernoulli_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8099632Z copying torch\include\ATen\ops\bernoulli_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8106860Z copying torch\include\ATen\ops\bilinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8113535Z copying torch\include\ATen\ops\bilinear_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8124833Z copying torch\include\ATen\ops\bilinear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8131443Z copying torch\include\ATen\ops\bilinear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8138329Z copying torch\include\ATen\ops\binary_cross_entropy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8145039Z copying torch\include\ATen\ops\binary_cross_entropy_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8156511Z copying torch\include\ATen\ops\binary_cross_entropy_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8163124Z copying torch\include\ATen\ops\binary_cross_entropy_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8169930Z copying torch\include\ATen\ops\binary_cross_entropy_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8177063Z copying torch\include\ATen\ops\binary_cross_entropy_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8192417Z copying torch\include\ATen\ops\binary_cross_entropy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8199336Z copying torch\include\ATen\ops\binary_cross_entropy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8207044Z copying torch\include\ATen\ops\binary_cross_entropy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8213077Z copying torch\include\ATen\ops\binary_cross_entropy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8220003Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8227370Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8234358Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8241686Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8248223Z copying torch\include\ATen\ops\bincount.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8254904Z copying torch\include\ATen\ops\bincount_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8261525Z copying torch\include\ATen\ops\bincount_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8278069Z copying torch\include\ATen\ops\bincount_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8278847Z copying torch\include\ATen\ops\bincount_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8284008Z copying torch\include\ATen\ops\bincount_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8290134Z copying torch\include\ATen\ops\binomial.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8296903Z copying torch\include\ATen\ops\binomial_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8303394Z copying torch\include\ATen\ops\binomial_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8309932Z copying torch\include\ATen\ops\binomial_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8317037Z copying torch\include\ATen\ops\binomial_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8323584Z copying torch\include\ATen\ops\binomial_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8330281Z copying torch\include\ATen\ops\bitwise_and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8337431Z copying torch\include\ATen\ops\bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8343850Z copying torch\include\ATen\ops\bitwise_and_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8350288Z copying torch\include\ATen\ops\bitwise_and_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8361540Z copying torch\include\ATen\ops\bitwise_and_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8367954Z copying torch\include\ATen\ops\bitwise_and_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8374950Z copying torch\include\ATen\ops\bitwise_and_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8381300Z copying torch\include\ATen\ops\bitwise_and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8391904Z copying torch\include\ATen\ops\bitwise_and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8398416Z copying torch\include\ATen\ops\bitwise_left_shift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8406213Z copying torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8413189Z copying torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8424844Z copying torch\include\ATen\ops\bitwise_left_shift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8431658Z copying torch\include\ATen\ops\bitwise_left_shift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8438287Z copying torch\include\ATen\ops\bitwise_left_shift_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8444915Z copying torch\include\ATen\ops\bitwise_left_shift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8451530Z copying torch\include\ATen\ops\bitwise_left_shift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8458326Z copying torch\include\ATen\ops\bitwise_left_shift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8465234Z copying torch\include\ATen\ops\bitwise_not.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8472160Z copying torch\include\ATen\ops\bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8478648Z copying torch\include\ATen\ops\bitwise_not_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8485183Z copying torch\include\ATen\ops\bitwise_not_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8491733Z copying torch\include\ATen\ops\bitwise_not_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8498113Z copying torch\include\ATen\ops\bitwise_not_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8504747Z copying torch\include\ATen\ops\bitwise_not_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8511619Z copying torch\include\ATen\ops\bitwise_not_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8518150Z copying torch\include\ATen\ops\bitwise_or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8525370Z copying torch\include\ATen\ops\bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8541982Z copying torch\include\ATen\ops\bitwise_or_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8548716Z copying torch\include\ATen\ops\bitwise_or_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8555355Z copying torch\include\ATen\ops\bitwise_or_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8561907Z copying torch\include\ATen\ops\bitwise_or_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8568819Z copying torch\include\ATen\ops\bitwise_or_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8575321Z copying torch\include\ATen\ops\bitwise_or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8582080Z copying torch\include\ATen\ops\bitwise_or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8589408Z copying torch\include\ATen\ops\bitwise_right_shift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8601074Z copying torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8607433Z copying torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8614491Z copying torch\include\ATen\ops\bitwise_right_shift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8621385Z copying torch\include\ATen\ops\bitwise_right_shift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8628390Z copying torch\include\ATen\ops\bitwise_right_shift_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8635219Z copying torch\include\ATen\ops\bitwise_right_shift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8642303Z copying torch\include\ATen\ops\bitwise_right_shift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8649267Z copying torch\include\ATen\ops\bitwise_right_shift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8663837Z copying torch\include\ATen\ops\bitwise_xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8671913Z copying torch\include\ATen\ops\bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8678988Z copying torch\include\ATen\ops\bitwise_xor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8686066Z copying torch\include\ATen\ops\bitwise_xor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8693024Z copying torch\include\ATen\ops\bitwise_xor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8699660Z copying torch\include\ATen\ops\bitwise_xor_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8706669Z copying torch\include\ATen\ops\bitwise_xor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8713847Z copying torch\include\ATen\ops\bitwise_xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8742109Z copying torch\include\ATen\ops\bitwise_xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8742847Z copying torch\include\ATen\ops\blackman_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8743723Z copying torch\include\ATen\ops\blackman_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8748123Z copying torch\include\ATen\ops\blackman_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8760233Z copying torch\include\ATen\ops\blackman_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8766430Z copying torch\include\ATen\ops\block_diag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8773947Z copying torch\include\ATen\ops\block_diag_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8780342Z copying torch\include\ATen\ops\block_diag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8793320Z copying torch\include\ATen\ops\block_diag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8798578Z copying torch\include\ATen\ops\bmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8805168Z copying torch\include\ATen\ops\bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8811358Z copying torch\include\ATen\ops\bmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8818184Z copying torch\include\ATen\ops\bmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8825067Z copying torch\include\ATen\ops\bmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8831267Z copying torch\include\ATen\ops\bmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8837994Z copying torch\include\ATen\ops\bmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8848739Z copying torch\include\ATen\ops\bmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8854972Z copying torch\include\ATen\ops\broadcast_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8861672Z copying torch\include\ATen\ops\broadcast_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8868055Z copying torch\include\ATen\ops\broadcast_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8874357Z copying torch\include\ATen\ops\broadcast_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8881181Z copying torch\include\ATen\ops\broadcast_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8888367Z copying torch\include\ATen\ops\broadcast_to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8895077Z copying torch\include\ATen\ops\broadcast_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8905837Z copying torch\include\ATen\ops\broadcast_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8912376Z copying torch\include\ATen\ops\bucketize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8919119Z copying torch\include\ATen\ops\bucketize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8925514Z copying torch\include\ATen\ops\bucketize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8932364Z copying torch\include\ATen\ops\bucketize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8938840Z copying torch\include\ATen\ops\bucketize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8945340Z copying torch\include\ATen\ops\bucketize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8952332Z copying torch\include\ATen\ops\can_cast.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8963743Z copying torch\include\ATen\ops\can_cast_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8970393Z copying torch\include\ATen\ops\can_cast_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8976672Z copying torch\include\ATen\ops\can_cast_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8983169Z copying torch\include\ATen\ops\cartesian_prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.8995041Z copying torch\include\ATen\ops\cartesian_prod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9001609Z copying torch\include\ATen\ops\cartesian_prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9007996Z copying torch\include\ATen\ops\cartesian_prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9014716Z copying torch\include\ATen\ops\cat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9025636Z copying torch\include\ATen\ops\cat_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9032170Z copying torch\include\ATen\ops\cat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9072732Z copying torch\include\ATen\ops\cat_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9079387Z copying torch\include\ATen\ops\cat_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9090328Z copying torch\include\ATen\ops\cat_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9096862Z copying torch\include\ATen\ops\cat_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9103453Z copying torch\include\ATen\ops\cat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9110325Z copying torch\include\ATen\ops\cat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9121816Z copying torch\include\ATen\ops\cauchy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9128123Z copying torch\include\ATen\ops\cauchy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9134776Z copying torch\include\ATen\ops\cauchy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9141692Z copying torch\include\ATen\ops\cauchy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9148550Z copying torch\include\ATen\ops\cauchy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9169498Z copying torch\include\ATen\ops\cauchy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9176084Z copying torch\include\ATen\ops\cauchy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9182699Z copying torch\include\ATen\ops\ccol_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9194335Z copying torch\include\ATen\ops\ccol_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9201102Z copying torch\include\ATen\ops\ccol_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9208623Z copying torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9215792Z copying torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9222879Z copying torch\include\ATen\ops\ccol_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9229582Z copying torch\include\ATen\ops\ccol_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9236789Z copying torch\include\ATen\ops\ccol_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9243245Z copying torch\include\ATen\ops\ccol_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9250550Z copying torch\include\ATen\ops\cdist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9257474Z copying torch\include\ATen\ops\cdist_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9263934Z copying torch\include\ATen\ops\cdist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9286909Z copying torch\include\ATen\ops\cdist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9287591Z copying torch\include\ATen\ops\ceil.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9290612Z copying torch\include\ATen\ops\ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9297289Z copying torch\include\ATen\ops\ceil_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9305064Z copying torch\include\ATen\ops\ceil_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9318821Z copying torch\include\ATen\ops\ceil_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9325260Z copying torch\include\ATen\ops\ceil_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9331726Z copying torch\include\ATen\ops\ceil_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9338425Z copying torch\include\ATen\ops\ceil_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9344659Z copying torch\include\ATen\ops\celu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9351236Z copying torch\include\ATen\ops\celu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9357613Z copying torch\include\ATen\ops\celu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9364003Z copying torch\include\ATen\ops\celu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9378965Z copying torch\include\ATen\ops\chain_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9386034Z copying torch\include\ATen\ops\chain_matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9392726Z copying torch\include\ATen\ops\chain_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9400723Z copying torch\include\ATen\ops\chain_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9407059Z copying torch\include\ATen\ops\chalf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9413281Z copying torch\include\ATen\ops\chalf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9419991Z copying torch\include\ATen\ops\chalf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9426416Z copying torch\include\ATen\ops\chalf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9433438Z copying torch\include\ATen\ops\channel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9440202Z copying torch\include\ATen\ops\channel_shuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9447176Z copying torch\include\ATen\ops\channel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9453877Z copying torch\include\ATen\ops\channel_shuffle_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9469532Z copying torch\include\ATen\ops\channel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9476283Z copying torch\include\ATen\ops\channel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9482798Z copying torch\include\ATen\ops\cholesky.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9489380Z copying torch\include\ATen\ops\cholesky_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9495997Z copying torch\include\ATen\ops\cholesky_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9502587Z copying torch\include\ATen\ops\cholesky_inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9509484Z copying torch\include\ATen\ops\cholesky_inverse_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9516431Z copying torch\include\ATen\ops\cholesky_inverse_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9528769Z copying torch\include\ATen\ops\cholesky_inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9535791Z copying torch\include\ATen\ops\cholesky_inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9543132Z copying torch\include\ATen\ops\cholesky_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9549417Z copying torch\include\ATen\ops\cholesky_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9556083Z copying torch\include\ATen\ops\cholesky_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9563504Z copying torch\include\ATen\ops\cholesky_solve_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9570394Z copying torch\include\ATen\ops\cholesky_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9581680Z copying torch\include\ATen\ops\cholesky_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9591547Z copying torch\include\ATen\ops\choose_qparams_optimized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9599203Z copying torch\include\ATen\ops\choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9605624Z copying torch\include\ATen\ops\choose_qparams_optimized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9613843Z copying torch\include\ATen\ops\choose_qparams_optimized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9624886Z copying torch\include\ATen\ops\chunk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9631615Z copying torch\include\ATen\ops\chunk_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9638931Z copying torch\include\ATen\ops\chunk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9645050Z copying torch\include\ATen\ops\chunk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9651802Z copying torch\include\ATen\ops\clamp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9658639Z copying torch\include\ATen\ops\clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9665098Z copying torch\include\ATen\ops\clamp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9671869Z copying torch\include\ATen\ops\clamp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9682940Z copying torch\include\ATen\ops\clamp_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9690823Z copying torch\include\ATen\ops\clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9696788Z copying torch\include\ATen\ops\clamp_max_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9704198Z copying torch\include\ATen\ops\clamp_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9715050Z copying torch\include\ATen\ops\clamp_max_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9721507Z copying torch\include\ATen\ops\clamp_max_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9728347Z copying torch\include\ATen\ops\clamp_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9734932Z copying torch\include\ATen\ops\clamp_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9742133Z copying torch\include\ATen\ops\clamp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9748356Z copying torch\include\ATen\ops\clamp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9755457Z copying torch\include\ATen\ops\clamp_min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9762674Z copying torch\include\ATen\ops\clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9769434Z copying torch\include\ATen\ops\clamp_min_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9784195Z copying torch\include\ATen\ops\clamp_min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9785622Z copying torch\include\ATen\ops\clamp_min_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9790471Z copying torch\include\ATen\ops\clamp_min_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9797196Z copying torch\include\ATen\ops\clamp_min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9804294Z copying torch\include\ATen\ops\clamp_min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9811247Z copying torch\include\ATen\ops\clamp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9817660Z copying torch\include\ATen\ops\clamp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9829319Z copying torch\include\ATen\ops\clip.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9836075Z copying torch\include\ATen\ops\clip_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9842465Z copying torch\include\ATen\ops\clip_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9848965Z copying torch\include\ATen\ops\clip_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9855219Z copying torch\include\ATen\ops\clone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9861874Z copying torch\include\ATen\ops\clone_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9868706Z copying torch\include\ATen\ops\clone_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9875203Z copying torch\include\ATen\ops\clone_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9887613Z copying torch\include\ATen\ops\coalesce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9893905Z copying torch\include\ATen\ops\coalesce_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9900288Z copying torch\include\ATen\ops\coalesce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9906551Z copying torch\include\ATen\ops\coalesce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9920954Z copying torch\include\ATen\ops\col2im.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9927742Z copying torch\include\ATen\ops\col2im_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9966980Z copying torch\include\ATen\ops\col2im_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9973529Z copying torch\include\ATen\ops\col2im_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9980096Z copying torch\include\ATen\ops\col2im_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9986530Z copying torch\include\ATen\ops\column_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9993378Z copying torch\include\ATen\ops\column_stack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:34.9999753Z copying torch\include\ATen\ops\column_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0010355Z copying torch\include\ATen\ops\column_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0016875Z copying torch\include\ATen\ops\col_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0023792Z copying torch\include\ATen\ops\col_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0030445Z copying torch\include\ATen\ops\col_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0037411Z copying torch\include\ATen\ops\col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0044143Z copying torch\include\ATen\ops\col_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0050778Z copying torch\include\ATen\ops\col_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0057367Z copying torch\include\ATen\ops\col_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0071713Z copying torch\include\ATen\ops\col_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0078335Z copying torch\include\ATen\ops\col_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0084948Z copying torch\include\ATen\ops\combinations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0091673Z copying torch\include\ATen\ops\combinations_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0098217Z copying torch\include\ATen\ops\combinations_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0104672Z copying torch\include\ATen\ops\combinations_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0111305Z copying torch\include\ATen\ops\complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0117795Z copying torch\include\ATen\ops\complex_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0124539Z copying torch\include\ATen\ops\complex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0131017Z copying torch\include\ATen\ops\complex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0137816Z copying torch\include\ATen\ops\complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0144409Z copying torch\include\ATen\ops\complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0154861Z copying torch\include\ATen\ops\concat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0161163Z copying torch\include\ATen\ops\concatenate.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0167976Z copying torch\include\ATen\ops\concatenate_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0174779Z copying torch\include\ATen\ops\concatenate_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0185823Z copying torch\include\ATen\ops\concatenate_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0192761Z copying torch\include\ATen\ops\concat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0199248Z copying torch\include\ATen\ops\concat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0205672Z copying torch\include\ATen\ops\concat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0212186Z copying torch\include\ATen\ops\conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0218522Z copying torch\include\ATen\ops\conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0225102Z copying torch\include\ATen\ops\conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0231612Z copying torch\include\ATen\ops\conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0241911Z copying torch\include\ATen\ops\conj_physical.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0248672Z copying torch\include\ATen\ops\conj_physical_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0255769Z copying torch\include\ATen\ops\conj_physical_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0262346Z copying torch\include\ATen\ops\conj_physical_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0274136Z copying torch\include\ATen\ops\conj_physical_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0280789Z copying torch\include\ATen\ops\conj_physical_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0317617Z copying torch\include\ATen\ops\conj_physical_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0318365Z copying torch\include\ATen\ops\constant_pad_nd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0319236Z copying torch\include\ATen\ops\constant_pad_nd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0320127Z copying torch\include\ATen\ops\constant_pad_nd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0320884Z copying torch\include\ATen\ops\constant_pad_nd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0325900Z copying torch\include\ATen\ops\contiguous.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0349252Z copying torch\include\ATen\ops\contiguous_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0355835Z copying torch\include\ATen\ops\contiguous_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0362172Z copying torch\include\ATen\ops\contiguous_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0369046Z copying torch\include\ATen\ops\conv1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0382084Z copying torch\include\ATen\ops\conv1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0387708Z copying torch\include\ATen\ops\conv1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0394183Z copying torch\include\ATen\ops\conv1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0400860Z copying torch\include\ATen\ops\conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0407454Z copying torch\include\ATen\ops\conv2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0414277Z copying torch\include\ATen\ops\conv2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0420853Z copying torch\include\ATen\ops\conv2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0427315Z copying torch\include\ATen\ops\conv3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0433831Z copying torch\include\ATen\ops\conv3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0440226Z copying torch\include\ATen\ops\conv3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0446563Z copying torch\include\ATen\ops\conv3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0452954Z copying torch\include\ATen\ops\convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0467671Z copying torch\include\ATen\ops\convolution_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0474469Z copying torch\include\ATen\ops\convolution_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0526429Z copying torch\include\ATen\ops\convolution_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0533557Z copying torch\include\ATen\ops\convolution_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0544699Z copying torch\include\ATen\ops\convolution_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0551838Z copying torch\include\ATen\ops\convolution_backward_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0558986Z copying torch\include\ATen\ops\convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0565781Z copying torch\include\ATen\ops\convolution_backward_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0580045Z copying torch\include\ATen\ops\convolution_backward_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0586880Z copying torch\include\ATen\ops\convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0593848Z copying torch\include\ATen\ops\convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0600622Z copying torch\include\ATen\ops\convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0607723Z copying torch\include\ATen\ops\convolution_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0615048Z copying torch\include\ATen\ops\convolution_overrideable_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0621805Z copying torch\include\ATen\ops\convolution_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0628864Z copying torch\include\ATen\ops\convolution_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0639498Z copying torch\include\ATen\ops\conv_depthwise3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0646406Z copying torch\include\ATen\ops\conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0657902Z copying torch\include\ATen\ops\conv_depthwise3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0665369Z copying torch\include\ATen\ops\conv_depthwise3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0681966Z copying torch\include\ATen\ops\conv_depthwise3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0688878Z copying torch\include\ATen\ops\conv_tbc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0695328Z copying torch\include\ATen\ops\conv_tbc_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0702266Z copying torch\include\ATen\ops\conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0709197Z copying torch\include\ATen\ops\conv_tbc_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0716162Z copying torch\include\ATen\ops\conv_tbc_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0723777Z copying torch\include\ATen\ops\conv_tbc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0730019Z copying torch\include\ATen\ops\conv_tbc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0742137Z copying torch\include\ATen\ops\conv_tbc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0748976Z copying torch\include\ATen\ops\conv_transpose1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0755973Z copying torch\include\ATen\ops\conv_transpose1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0763681Z copying torch\include\ATen\ops\conv_transpose1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0770107Z copying torch\include\ATen\ops\conv_transpose1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0776832Z copying torch\include\ATen\ops\conv_transpose2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0798568Z copying torch\include\ATen\ops\conv_transpose2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0799495Z copying torch\include\ATen\ops\conv_transpose2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0804407Z copying torch\include\ATen\ops\conv_transpose2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0810628Z copying torch\include\ATen\ops\conv_transpose3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0817683Z copying torch\include\ATen\ops\conv_transpose3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0824639Z copying torch\include\ATen\ops\conv_transpose3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0831384Z copying torch\include\ATen\ops\conv_transpose3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0838511Z copying torch\include\ATen\ops\copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0844812Z copying torch\include\ATen\ops\copysign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0851783Z copying torch\include\ATen\ops\copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0858379Z copying torch\include\ATen\ops\copysign_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0865091Z copying torch\include\ATen\ops\copysign_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0871990Z copying torch\include\ATen\ops\copysign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0878572Z copying torch\include\ATen\ops\copysign_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0885490Z copying torch\include\ATen\ops\copysign_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0892218Z copying torch\include\ATen\ops\copysign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0898879Z copying torch\include\ATen\ops\copysign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0905957Z copying torch\include\ATen\ops\copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0912870Z copying torch\include\ATen\ops\copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0919481Z copying torch\include\ATen\ops\copy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0926465Z copying torch\include\ATen\ops\copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0932852Z copying torch\include\ATen\ops\copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0939350Z copying torch\include\ATen\ops\copy_sparse_to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0946260Z copying torch\include\ATen\ops\copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0953046Z copying torch\include\ATen\ops\copy_sparse_to_sparse_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0959647Z copying torch\include\ATen\ops\copy_sparse_to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.0971199Z copying torch\include\ATen\ops\copy_sparse_to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1020018Z copying torch\include\ATen\ops\corrcoef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1026480Z copying torch\include\ATen\ops\corrcoef_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1032999Z copying torch\include\ATen\ops\corrcoef_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1039563Z copying torch\include\ATen\ops\corrcoef_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1046056Z copying torch\include\ATen\ops\cos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1052412Z copying torch\include\ATen\ops\cosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1059058Z copying torch\include\ATen\ops\cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1065702Z copying torch\include\ATen\ops\cosh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1072380Z copying torch\include\ATen\ops\cosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1078989Z copying torch\include\ATen\ops\cosh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1085313Z copying torch\include\ATen\ops\cosh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1091975Z copying torch\include\ATen\ops\cosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1098303Z copying torch\include\ATen\ops\cosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1104683Z copying torch\include\ATen\ops\cosine_embedding_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1111792Z copying torch\include\ATen\ops\cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1122791Z copying torch\include\ATen\ops\cosine_embedding_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1129428Z copying torch\include\ATen\ops\cosine_embedding_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1136085Z copying torch\include\ATen\ops\cosine_similarity.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1143748Z copying torch\include\ATen\ops\cosine_similarity_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1155043Z copying torch\include\ATen\ops\cosine_similarity_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1161392Z copying torch\include\ATen\ops\cosine_similarity_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1168678Z copying torch\include\ATen\ops\cos_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1175067Z copying torch\include\ATen\ops\cos_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1181692Z copying torch\include\ATen\ops\cos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1188983Z copying torch\include\ATen\ops\cos_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1194833Z copying torch\include\ATen\ops\cos_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1201784Z copying torch\include\ATen\ops\cos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1208601Z copying torch\include\ATen\ops\cos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1215239Z copying torch\include\ATen\ops\count_nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1222292Z copying torch\include\ATen\ops\count_nonzero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1229308Z copying torch\include\ATen\ops\count_nonzero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1235987Z copying torch\include\ATen\ops\count_nonzero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1242728Z copying torch\include\ATen\ops\count_nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1249443Z copying torch\include\ATen\ops\count_nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1256038Z copying torch\include\ATen\ops\cov.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1262659Z copying torch\include\ATen\ops\cov_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1269705Z copying torch\include\ATen\ops\cov_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1276396Z copying torch\include\ATen\ops\cov_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1283317Z copying torch\include\ATen\ops\cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1290649Z copying torch\include\ATen\ops\cross_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1298002Z copying torch\include\ATen\ops\cross_entropy_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1305985Z copying torch\include\ATen\ops\cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1312710Z copying torch\include\ATen\ops\cross_entropy_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1319888Z copying torch\include\ATen\ops\cross_entropy_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1327954Z copying torch\include\ATen\ops\cross_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1333338Z copying torch\include\ATen\ops\cross_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1340082Z copying torch\include\ATen\ops\crow_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1351339Z copying torch\include\ATen\ops\crow_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1358026Z copying torch\include\ATen\ops\crow_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1365273Z copying torch\include\ATen\ops\crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1372631Z copying torch\include\ATen\ops\crow_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1379290Z copying torch\include\ATen\ops\crow_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1386227Z copying torch\include\ATen\ops\crow_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1393297Z copying torch\include\ATen\ops\crow_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1399645Z copying torch\include\ATen\ops\crow_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1411051Z copying torch\include\ATen\ops\ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1418390Z copying torch\include\ATen\ops\ctc_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1424872Z copying torch\include\ATen\ops\ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1431397Z copying torch\include\ATen\ops\ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1438153Z copying torch\include\ATen\ops\cudnn_affine_grid_generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1465887Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1473177Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1480066Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1487529Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1494502Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1501790Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1509249Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1522372Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1529569Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1536348Z copying torch\include\ATen\ops\cudnn_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1543082Z copying torch\include\ATen\ops\cudnn_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1555014Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1562145Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1569140Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1576803Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1588835Z copying torch\include\ATen\ops\cudnn_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1596492Z copying torch\include\ATen\ops\cudnn_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1603122Z copying torch\include\ATen\ops\cudnn_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1610014Z copying torch\include\ATen\ops\cudnn_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1616947Z copying torch\include\ATen\ops\cudnn_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1624928Z copying torch\include\ATen\ops\cudnn_convolution_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1631646Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1638393Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1645349Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1652282Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1659396Z copying torch\include\ATen\ops\cudnn_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1666325Z copying torch\include\ATen\ops\cudnn_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1673269Z copying torch\include\ATen\ops\cudnn_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1680288Z copying torch\include\ATen\ops\cudnn_convolution_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1687681Z copying torch\include\ATen\ops\cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1694717Z copying torch\include\ATen\ops\cudnn_convolution_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1701646Z copying torch\include\ATen\ops\cudnn_convolution_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1708816Z copying torch\include\ATen\ops\cudnn_convolution_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1719983Z copying torch\include\ATen\ops\cudnn_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1726974Z copying torch\include\ATen\ops\cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1734019Z copying torch\include\ATen\ops\cudnn_convolution_transpose_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.1740888Z copying torch\include\ATen\ops\cudnn_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2063691Z copying torch\include\ATen\ops\cudnn_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2064713Z copying torch\include\ATen\ops\cudnn_grid_sampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2065510Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2066493Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2067585Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2068480Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2069328Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2070331Z copying torch\include\ATen\ops\cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2071368Z copying torch\include\ATen\ops\cudnn_grid_sampler_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2072224Z copying torch\include\ATen\ops\cudnn_grid_sampler_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2073011Z copying torch\include\ATen\ops\cudnn_grid_sampler_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2073771Z copying torch\include\ATen\ops\cudnn_is_acceptable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2074672Z copying torch\include\ATen\ops\cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2075598Z copying torch\include\ATen\ops\cudnn_is_acceptable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2076377Z copying torch\include\ATen\ops\cudnn_is_acceptable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2077091Z copying torch\include\ATen\ops\cummax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2077800Z copying torch\include\ATen\ops\cummaxmin_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2078706Z copying torch\include\ATen\ops\cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2079638Z copying torch\include\ATen\ops\cummaxmin_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2080423Z copying torch\include\ATen\ops\cummaxmin_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2081291Z copying torch\include\ATen\ops\cummax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2082247Z copying torch\include\ATen\ops\cummax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2083131Z copying torch\include\ATen\ops\cummax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2083836Z copying torch\include\ATen\ops\cummax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2084501Z copying torch\include\ATen\ops\cummin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2085308Z copying torch\include\ATen\ops\cummin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2086254Z copying torch\include\ATen\ops\cummin_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2087088Z copying torch\include\ATen\ops\cummin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2089038Z copying torch\include\ATen\ops\cummin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2089914Z copying torch\include\ATen\ops\cumprod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2090655Z copying torch\include\ATen\ops\cumprod_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2091546Z copying torch\include\ATen\ops\cumprod_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2092471Z copying torch\include\ATen\ops\cumprod_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2093262Z copying torch\include\ATen\ops\cumprod_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2094191Z copying torch\include\ATen\ops\cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2150857Z copying torch\include\ATen\ops\cumprod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2151766Z copying torch\include\ATen\ops\cumprod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2152634Z copying torch\include\ATen\ops\cumprod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2153373Z copying torch\include\ATen\ops\cumprod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2154109Z copying torch\include\ATen\ops\cumprod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2154861Z copying torch\include\ATen\ops\cumprod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2155578Z copying torch\include\ATen\ops\cumprod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2156272Z copying torch\include\ATen\ops\cumsum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2157169Z copying torch\include\ATen\ops\cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2158215Z copying torch\include\ATen\ops\cumsum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2159068Z copying torch\include\ATen\ops\cumsum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2159835Z copying torch\include\ATen\ops\cumsum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2160553Z copying torch\include\ATen\ops\cumsum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2161290Z copying torch\include\ATen\ops\cumsum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2162026Z copying torch\include\ATen\ops\cumsum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2162715Z copying torch\include\ATen\ops\cumsum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2163512Z copying torch\include\ATen\ops\cumulative_trapezoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2164434Z copying torch\include\ATen\ops\cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2165396Z copying torch\include\ATen\ops\cumulative_trapezoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2166218Z copying torch\include\ATen\ops\cumulative_trapezoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2166934Z copying torch\include\ATen\ops\data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2168055Z copying torch\include\ATen\ops\data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2168886Z copying torch\include\ATen\ops\data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2173869Z copying torch\include\ATen\ops\data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2179892Z copying torch\include\ATen\ops\deg2rad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2186508Z copying torch\include\ATen\ops\deg2rad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2193356Z copying torch\include\ATen\ops\deg2rad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2200765Z copying torch\include\ATen\ops\deg2rad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2207220Z copying torch\include\ATen\ops\dense_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2213933Z copying torch\include\ATen\ops\dense_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2220498Z copying torch\include\ATen\ops\dense_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2227105Z copying torch\include\ATen\ops\dense_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2234217Z copying torch\include\ATen\ops\dequantize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2241614Z copying torch\include\ATen\ops\dequantize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2248403Z copying torch\include\ATen\ops\dequantize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2254982Z copying torch\include\ATen\ops\dequantize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2261728Z copying torch\include\ATen\ops\dequantize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2268588Z copying torch\include\ATen\ops\dequantize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2275373Z copying torch\include\ATen\ops\det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2325069Z copying torch\include\ATen\ops\detach.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2331816Z copying torch\include\ATen\ops\detach_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2339893Z copying torch\include\ATen\ops\detach_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2346142Z copying torch\include\ATen\ops\detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2352777Z copying torch\include\ATen\ops\detach_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2359585Z copying torch\include\ATen\ops\detach_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2365807Z copying torch\include\ATen\ops\detach_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2372970Z copying torch\include\ATen\ops\detach_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2378830Z copying torch\include\ATen\ops\detach_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2387391Z copying torch\include\ATen\ops\det_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2393967Z copying torch\include\ATen\ops\det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2400288Z copying torch\include\ATen\ops\det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2406510Z copying torch\include\ATen\ops\diag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2413530Z copying torch\include\ATen\ops\diagflat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2420069Z copying torch\include\ATen\ops\diagflat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2426877Z copying torch\include\ATen\ops\diagflat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2433341Z copying torch\include\ATen\ops\diagflat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2440102Z copying torch\include\ATen\ops\diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2446645Z copying torch\include\ATen\ops\diagonal_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2453573Z copying torch\include\ATen\ops\diagonal_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2460104Z copying torch\include\ATen\ops\diagonal_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2466844Z copying torch\include\ATen\ops\diagonal_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2473689Z copying torch\include\ATen\ops\diagonal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2481227Z copying torch\include\ATen\ops\diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2488084Z copying torch\include\ATen\ops\diagonal_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2495210Z copying torch\include\ATen\ops\diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2501903Z copying torch\include\ATen\ops\diagonal_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2508638Z copying torch\include\ATen\ops\diagonal_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2515400Z copying torch\include\ATen\ops\diagonal_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2522125Z copying torch\include\ATen\ops\diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2528825Z copying torch\include\ATen\ops\diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2535793Z copying torch\include\ATen\ops\diagonal_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2542803Z copying torch\include\ATen\ops\diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2549760Z copying torch\include\ATen\ops\diagonal_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2556357Z copying torch\include\ATen\ops\diagonal_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2563260Z copying torch\include\ATen\ops\diagonal_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2570304Z copying torch\include\ATen\ops\diag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2576784Z copying torch\include\ATen\ops\diag_embed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2584504Z copying torch\include\ATen\ops\diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2596968Z copying torch\include\ATen\ops\diag_embed_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2603813Z copying torch\include\ATen\ops\diag_embed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2610305Z copying torch\include\ATen\ops\diag_embed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2616774Z copying torch\include\ATen\ops\diag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2623413Z copying torch\include\ATen\ops\diag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2638251Z copying torch\include\ATen\ops\diff.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2639109Z copying torch\include\ATen\ops\diff_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2646067Z copying torch\include\ATen\ops\diff_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2652893Z copying torch\include\ATen\ops\diff_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2659629Z copying torch\include\ATen\ops\digamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2666048Z copying torch\include\ATen\ops\digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2672516Z copying torch\include\ATen\ops\digamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2679824Z copying torch\include\ATen\ops\digamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2686292Z copying torch\include\ATen\ops\digamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2692691Z copying torch\include\ATen\ops\digamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2699158Z copying torch\include\ATen\ops\digamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2712782Z copying torch\include\ATen\ops\digamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2719241Z copying torch\include\ATen\ops\dist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2725775Z copying torch\include\ATen\ops\dist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2732148Z copying torch\include\ATen\ops\dist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2743879Z copying torch\include\ATen\ops\dist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2750456Z copying torch\include\ATen\ops\div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2756748Z copying torch\include\ATen\ops\divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2763261Z copying torch\include\ATen\ops\divide_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2769840Z copying torch\include\ATen\ops\divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2776091Z copying torch\include\ATen\ops\divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2782911Z copying torch\include\ATen\ops\div_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2789694Z copying torch\include\ATen\ops\div_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2796176Z copying torch\include\ATen\ops\div_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2803496Z copying torch\include\ATen\ops\div_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2812091Z copying torch\include\ATen\ops\div_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2856017Z copying torch\include\ATen\ops\div_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2856739Z copying torch\include\ATen\ops\div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2857415Z copying torch\include\ATen\ops\div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2858052Z copying torch\include\ATen\ops\dot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2858821Z copying torch\include\ATen\ops\dot_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2859650Z copying torch\include\ATen\ops\dot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2860582Z copying torch\include\ATen\ops\dot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2868114Z copying torch\include\ATen\ops\dot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2874274Z copying torch\include\ATen\ops\dot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2880530Z copying torch\include\ATen\ops\dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2886902Z copying torch\include\ATen\ops\dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2893529Z copying torch\include\ATen\ops\dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2899906Z copying torch\include\ATen\ops\dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2907284Z copying torch\include\ATen\ops\dsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2913255Z copying torch\include\ATen\ops\dsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2919777Z copying torch\include\ATen\ops\dsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2926099Z copying torch\include\ATen\ops\dsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2932494Z copying torch\include\ATen\ops\dstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2939094Z copying torch\include\ATen\ops\dstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2945457Z copying torch\include\ATen\ops\dstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2952090Z copying torch\include\ATen\ops\dstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2963655Z copying torch\include\ATen\ops\einsum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2974778Z copying torch\include\ATen\ops\einsum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2981155Z copying torch\include\ATen\ops\einsum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2987527Z copying torch\include\ATen\ops\einsum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.2994161Z copying torch\include\ATen\ops\elu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3000370Z copying torch\include\ATen\ops\elu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3007291Z copying torch\include\ATen\ops\elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3014080Z copying torch\include\ATen\ops\elu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3020677Z copying torch\include\ATen\ops\elu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3027300Z copying torch\include\ATen\ops\elu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3034164Z copying torch\include\ATen\ops\elu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3040846Z copying torch\include\ATen\ops\elu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3051719Z copying torch\include\ATen\ops\elu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3058850Z copying torch\include\ATen\ops\elu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3066239Z copying torch\include\ATen\ops\elu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3073093Z copying torch\include\ATen\ops\elu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3084026Z copying torch\include\ATen\ops\elu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3090573Z copying torch\include\ATen\ops\elu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3097266Z copying torch\include\ATen\ops\elu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3103661Z copying torch\include\ATen\ops\elu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3114582Z copying torch\include\ATen\ops\embedding.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3121231Z copying torch\include\ATen\ops\embedding_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3128331Z copying torch\include\ATen\ops\embedding_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3135026Z copying torch\include\ATen\ops\embedding_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3141615Z copying torch\include\ATen\ops\embedding_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3148340Z copying torch\include\ATen\ops\embedding_bag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3155325Z copying torch\include\ATen\ops\embedding_bag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3161840Z copying torch\include\ATen\ops\embedding_bag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3168835Z copying torch\include\ATen\ops\embedding_bag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3175693Z copying torch\include\ATen\ops\embedding_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3182408Z copying torch\include\ATen\ops\embedding_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3189601Z copying torch\include\ATen\ops\embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3196439Z copying torch\include\ATen\ops\embedding_dense_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3203336Z copying torch\include\ATen\ops\embedding_dense_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3210397Z copying torch\include\ATen\ops\embedding_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3217047Z copying torch\include\ATen\ops\embedding_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3224511Z copying torch\include\ATen\ops\embedding_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3230844Z copying torch\include\ATen\ops\embedding_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3238038Z copying torch\include\ATen\ops\embedding_renorm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3245732Z copying torch\include\ATen\ops\embedding_renorm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3253352Z copying torch\include\ATen\ops\embedding_renorm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3260547Z copying torch\include\ATen\ops\embedding_renorm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3267690Z copying torch\include\ATen\ops\embedding_renorm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3274460Z copying torch\include\ATen\ops\embedding_renorm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3281688Z copying torch\include\ATen\ops\embedding_renorm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3289143Z copying torch\include\ATen\ops\embedding_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3296228Z copying torch\include\ATen\ops\embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3329703Z copying torch\include\ATen\ops\embedding_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3330570Z copying torch\include\ATen\ops\embedding_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3331325Z copying torch\include\ATen\ops\empty.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3332124Z copying torch\include\ATen\ops\empty_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3333397Z copying torch\include\ATen\ops\empty_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3360684Z copying torch\include\ATen\ops\empty_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3367898Z copying torch\include\ATen\ops\empty_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3374574Z copying torch\include\ATen\ops\empty_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3381595Z copying torch\include\ATen\ops\empty_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3388219Z copying torch\include\ATen\ops\empty_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3394899Z copying torch\include\ATen\ops\empty_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3401514Z copying torch\include\ATen\ops\empty_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3408000Z copying torch\include\ATen\ops\empty_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3414715Z copying torch\include\ATen\ops\empty_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3421408Z copying torch\include\ATen\ops\empty_permuted.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3428817Z copying torch\include\ATen\ops\empty_permuted_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3435133Z copying torch\include\ATen\ops\empty_permuted_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3441722Z copying torch\include\ATen\ops\empty_permuted_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3448339Z copying torch\include\ATen\ops\empty_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3455594Z copying torch\include\ATen\ops\empty_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3462300Z copying torch\include\ATen\ops\empty_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3469191Z copying torch\include\ATen\ops\empty_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3475819Z copying torch\include\ATen\ops\empty_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3482776Z copying torch\include\ATen\ops\empty_strided_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3489267Z copying torch\include\ATen\ops\empty_strided_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3495952Z copying torch\include\ATen\ops\empty_strided_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3503209Z copying torch\include\ATen\ops\empty_strided_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3510138Z copying torch\include\ATen\ops\empty_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3517080Z copying torch\include\ATen\ops\empty_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3524241Z copying torch\include\ATen\ops\eq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3530564Z copying torch\include\ATen\ops\equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3536722Z copying torch\include\ATen\ops\equal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3543211Z copying torch\include\ATen\ops\equal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3549881Z copying torch\include\ATen\ops\equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3556502Z copying torch\include\ATen\ops\equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3563824Z copying torch\include\ATen\ops\eq_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3570372Z copying torch\include\ATen\ops\eq_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3576865Z copying torch\include\ATen\ops\eq_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3584037Z copying torch\include\ATen\ops\eq_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3590587Z copying torch\include\ATen\ops\eq_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3596867Z copying torch\include\ATen\ops\eq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3603255Z copying torch\include\ATen\ops\eq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3609850Z copying torch\include\ATen\ops\erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3616025Z copying torch\include\ATen\ops\erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3622530Z copying torch\include\ATen\ops\erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3645860Z copying torch\include\ATen\ops\erfc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3652174Z copying torch\include\ATen\ops\erfc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3658673Z copying torch\include\ATen\ops\erfc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3664938Z copying torch\include\ATen\ops\erfc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3671666Z copying torch\include\ATen\ops\erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3678062Z copying torch\include\ATen\ops\erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3684780Z copying torch\include\ATen\ops\erfinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3691468Z copying torch\include\ATen\ops\erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3698065Z copying torch\include\ATen\ops\erfinv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3704754Z copying torch\include\ATen\ops\erfinv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3711881Z copying torch\include\ATen\ops\erfinv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3718145Z copying torch\include\ATen\ops\erfinv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3724834Z copying torch\include\ATen\ops\erfinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3731637Z copying torch\include\ATen\ops\erfinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3739408Z copying torch\include\ATen\ops\erf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3746039Z copying torch\include\ATen\ops\erf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3752698Z copying torch\include\ATen\ops\erf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3759380Z copying torch\include\ATen\ops\erf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3765653Z copying torch\include\ATen\ops\erf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3772042Z copying torch\include\ATen\ops\erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3778737Z copying torch\include\ATen\ops\erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3784911Z copying torch\include\ATen\ops\exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3791204Z copying torch\include\ATen\ops\exp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3797747Z copying torch\include\ATen\ops\exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3804766Z copying torch\include\ATen\ops\exp2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3811451Z copying torch\include\ATen\ops\exp2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3817793Z copying torch\include\ATen\ops\exp2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3824036Z copying torch\include\ATen\ops\exp2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3830900Z copying torch\include\ATen\ops\exp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3837155Z copying torch\include\ATen\ops\exp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3875094Z copying torch\include\ATen\ops\expand.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3881579Z copying torch\include\ATen\ops\expand_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3888519Z copying torch\include\ATen\ops\expand_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3895033Z copying torch\include\ATen\ops\expand_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3901594Z copying torch\include\ATen\ops\expand_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3908447Z copying torch\include\ATen\ops\expand_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3915835Z copying torch\include\ATen\ops\expand_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3923878Z copying torch\include\ATen\ops\expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3932060Z copying torch\include\ATen\ops\expand_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3947384Z copying torch\include\ATen\ops\expand_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3948162Z copying torch\include\ATen\ops\expand_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3954740Z copying torch\include\ATen\ops\expand_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3961215Z copying torch\include\ATen\ops\expand_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3967879Z copying torch\include\ATen\ops\expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3976314Z copying torch\include\ATen\ops\expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3983029Z copying torch\include\ATen\ops\expm1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3989916Z copying torch\include\ATen\ops\expm1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.3996906Z copying torch\include\ATen\ops\expm1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4004027Z copying torch\include\ATen\ops\expm1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4010823Z copying torch\include\ATen\ops\expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4017821Z copying torch\include\ATen\ops\expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4025589Z copying torch\include\ATen\ops\exponential.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4032801Z copying torch\include\ATen\ops\exponential_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4040096Z copying torch\include\ATen\ops\exponential_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4046775Z copying torch\include\ATen\ops\exponential_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4053738Z copying torch\include\ATen\ops\exponential_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4060964Z copying torch\include\ATen\ops\exponential_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4067601Z copying torch\include\ATen\ops\exponential_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4074873Z copying torch\include\ATen\ops\exp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4081389Z copying torch\include\ATen\ops\exp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4088374Z copying torch\include\ATen\ops\exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4095450Z copying torch\include\ATen\ops\exp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4101799Z copying torch\include\ATen\ops\exp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4109557Z copying torch\include\ATen\ops\exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4116199Z copying torch\include\ATen\ops\exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4123355Z copying torch\include\ATen\ops\eye.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4130514Z copying torch\include\ATen\ops\eye_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4137114Z copying torch\include\ATen\ops\eye_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4144454Z copying torch\include\ATen\ops\eye_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4151910Z copying torch\include\ATen\ops\eye_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4158567Z copying torch\include\ATen\ops\eye_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4165183Z copying torch\include\ATen\ops\eye_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4172149Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4178807Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4185684Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4193402Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4200247Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4207351Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4214579Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4221832Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4229909Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4236974Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4244753Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4252440Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4259625Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4266664Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4274750Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4281842Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4290305Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4301333Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4346827Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4348032Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4349133Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4350311Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4351366Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4352515Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4356618Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4365576Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4372836Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4380216Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4387795Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4395021Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4403647Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4411128Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4418215Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4425413Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4433457Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4441007Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4448548Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4455915Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4463000Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4470943Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4477956Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4485028Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4492156Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4499126Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4506629Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4513991Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4521693Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4529252Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4536743Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4545042Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4552277Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4559127Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4567246Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4574554Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4582171Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4589798Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4596693Z copying torch\include\ATen\ops\feature_alpha_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4604632Z copying torch\include\ATen\ops\feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4612652Z copying torch\include\ATen\ops\feature_alpha_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4620399Z copying torch\include\ATen\ops\feature_alpha_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4627863Z copying torch\include\ATen\ops\feature_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4634852Z copying torch\include\ATen\ops\feature_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4641623Z copying torch\include\ATen\ops\feature_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4648258Z copying torch\include\ATen\ops\feature_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4655613Z copying torch\include\ATen\ops\fft_fft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4662263Z copying torch\include\ATen\ops\fft_fft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4669152Z copying torch\include\ATen\ops\fft_fft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4675757Z copying torch\include\ATen\ops\fft_fft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4683102Z copying torch\include\ATen\ops\fft_fft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4690713Z copying torch\include\ATen\ops\fft_fftfreq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4697868Z copying torch\include\ATen\ops\fft_fftfreq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4704571Z copying torch\include\ATen\ops\fft_fftfreq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4712093Z copying torch\include\ATen\ops\fft_fftfreq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4718318Z copying torch\include\ATen\ops\fft_fftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4725568Z copying torch\include\ATen\ops\fft_fftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4732535Z copying torch\include\ATen\ops\fft_fftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4740291Z copying torch\include\ATen\ops\fft_fftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4748042Z copying torch\include\ATen\ops\fft_fftshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4755547Z copying torch\include\ATen\ops\fft_fftshift_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4763103Z copying torch\include\ATen\ops\fft_fftshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4799719Z copying torch\include\ATen\ops\fft_fftshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4888753Z copying torch\include\ATen\ops\fft_fft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4904090Z copying torch\include\ATen\ops\fft_fft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4910851Z copying torch\include\ATen\ops\fft_fft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4918584Z copying torch\include\ATen\ops\fft_hfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4925013Z copying torch\include\ATen\ops\fft_hfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4933017Z copying torch\include\ATen\ops\fft_hfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4939673Z copying torch\include\ATen\ops\fft_hfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4947349Z copying torch\include\ATen\ops\fft_hfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4955455Z copying torch\include\ATen\ops\fft_hfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4964210Z copying torch\include\ATen\ops\fft_hfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4971993Z copying torch\include\ATen\ops\fft_hfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4979953Z copying torch\include\ATen\ops\fft_hfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4988233Z copying torch\include\ATen\ops\fft_hfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.4996125Z copying torch\include\ATen\ops\fft_hfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5015900Z copying torch\include\ATen\ops\fft_hfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5022329Z copying torch\include\ATen\ops\fft_ifft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5029975Z copying torch\include\ATen\ops\fft_ifft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5036975Z copying torch\include\ATen\ops\fft_ifft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5044052Z copying torch\include\ATen\ops\fft_ifft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5050188Z copying torch\include\ATen\ops\fft_ifft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5057001Z copying torch\include\ATen\ops\fft_ifftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5067602Z copying torch\include\ATen\ops\fft_ifftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5074550Z copying torch\include\ATen\ops\fft_ifftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5114160Z copying torch\include\ATen\ops\fft_ifftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5120668Z copying torch\include\ATen\ops\fft_ifftshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5165599Z copying torch\include\ATen\ops\fft_ifftshift_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5172260Z copying torch\include\ATen\ops\fft_ifftshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5178801Z copying torch\include\ATen\ops\fft_ifftshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5186382Z copying torch\include\ATen\ops\fft_ifft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5193497Z copying torch\include\ATen\ops\fft_ifft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5199992Z copying torch\include\ATen\ops\fft_ifft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5208325Z copying torch\include\ATen\ops\fft_ihfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5214947Z copying torch\include\ATen\ops\fft_ihfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5222293Z copying torch\include\ATen\ops\fft_ihfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5228729Z copying torch\include\ATen\ops\fft_ihfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5235656Z copying torch\include\ATen\ops\fft_ihfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5242475Z copying torch\include\ATen\ops\fft_ihfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5249562Z copying torch\include\ATen\ops\fft_ihfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5256405Z copying torch\include\ATen\ops\fft_ihfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5263128Z copying torch\include\ATen\ops\fft_ihfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5270118Z copying torch\include\ATen\ops\fft_ihfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5276776Z copying torch\include\ATen\ops\fft_ihfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5283651Z copying torch\include\ATen\ops\fft_ihfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5290653Z copying torch\include\ATen\ops\fft_irfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5297077Z copying torch\include\ATen\ops\fft_irfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5304179Z copying torch\include\ATen\ops\fft_irfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5310950Z copying torch\include\ATen\ops\fft_irfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5317750Z copying torch\include\ATen\ops\fft_irfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5324505Z copying torch\include\ATen\ops\fft_irfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5331786Z copying torch\include\ATen\ops\fft_irfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5338558Z copying torch\include\ATen\ops\fft_irfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5345149Z copying torch\include\ATen\ops\fft_irfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5352436Z copying torch\include\ATen\ops\fft_irfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5359115Z copying torch\include\ATen\ops\fft_irfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5365647Z copying torch\include\ATen\ops\fft_irfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5372421Z copying torch\include\ATen\ops\fft_rfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5378982Z copying torch\include\ATen\ops\fft_rfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5385869Z copying torch\include\ATen\ops\fft_rfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5392604Z copying torch\include\ATen\ops\fft_rfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5399194Z copying torch\include\ATen\ops\fft_rfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5405715Z copying torch\include\ATen\ops\fft_rfftfreq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5412614Z copying torch\include\ATen\ops\fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5419601Z copying torch\include\ATen\ops\fft_rfftfreq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5426203Z copying torch\include\ATen\ops\fft_rfftfreq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5432884Z copying torch\include\ATen\ops\fft_rfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5440269Z copying torch\include\ATen\ops\fft_rfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5447143Z copying torch\include\ATen\ops\fft_rfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5453792Z copying torch\include\ATen\ops\fft_rfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5461929Z copying torch\include\ATen\ops\fft_rfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5468215Z copying torch\include\ATen\ops\fft_rfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5474712Z copying torch\include\ATen\ops\fft_rfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5481263Z copying torch\include\ATen\ops\fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5488001Z copying torch\include\ATen\ops\fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5494960Z copying torch\include\ATen\ops\fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5501505Z copying torch\include\ATen\ops\fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5508202Z copying torch\include\ATen\ops\fill_diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5514924Z copying torch\include\ATen\ops\fill_diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5521368Z copying torch\include\ATen\ops\fill_diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5527589Z copying torch\include\ATen\ops\fill_diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5534389Z copying torch\include\ATen\ops\fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5541113Z copying torch\include\ATen\ops\fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5547777Z copying torch\include\ATen\ops\fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5553985Z copying torch\include\ATen\ops\fix.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5560542Z copying torch\include\ATen\ops\fix_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5566955Z copying torch\include\ATen\ops\fix_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5573473Z copying torch\include\ATen\ops\fix_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5579908Z copying torch\include\ATen\ops\flatten.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5586433Z copying torch\include\ATen\ops\flatten_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5593148Z copying torch\include\ATen\ops\flatten_dense_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5600099Z copying torch\include\ATen\ops\flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5606594Z copying torch\include\ATen\ops\flatten_dense_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5613107Z copying torch\include\ATen\ops\flatten_dense_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5619559Z copying torch\include\ATen\ops\flatten_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5626174Z copying torch\include\ATen\ops\flatten_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5632736Z copying torch\include\ATen\ops\flip.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5639293Z copying torch\include\ATen\ops\fliplr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5645717Z copying torch\include\ATen\ops\fliplr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5653037Z copying torch\include\ATen\ops\fliplr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5659447Z copying torch\include\ATen\ops\fliplr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5666064Z copying torch\include\ATen\ops\flipud.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5672647Z copying torch\include\ATen\ops\flipud_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5679106Z copying torch\include\ATen\ops\flipud_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5685401Z copying torch\include\ATen\ops\flipud_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5692429Z copying torch\include\ATen\ops\flip_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5698913Z copying torch\include\ATen\ops\flip_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5712416Z copying torch\include\ATen\ops\flip_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5715208Z copying torch\include\ATen\ops\flip_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5722213Z copying torch\include\ATen\ops\flip_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5728577Z copying torch\include\ATen\ops\float_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5735336Z copying torch\include\ATen\ops\float_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5742155Z copying torch\include\ATen\ops\float_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5748992Z copying torch\include\ATen\ops\float_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5755525Z copying torch\include\ATen\ops\floor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5762250Z copying torch\include\ATen\ops\floor_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5768629Z copying torch\include\ATen\ops\floor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5775253Z copying torch\include\ATen\ops\floor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5781910Z copying torch\include\ATen\ops\floor_divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5788939Z copying torch\include\ATen\ops\floor_divide_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5795680Z copying torch\include\ATen\ops\floor_divide_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5802265Z copying torch\include\ATen\ops\floor_divide_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5808972Z copying torch\include\ATen\ops\floor_divide_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5815534Z copying torch\include\ATen\ops\floor_divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5822042Z copying torch\include\ATen\ops\floor_divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5828792Z copying torch\include\ATen\ops\floor_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5835306Z copying torch\include\ATen\ops\floor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5842532Z copying torch\include\ATen\ops\floor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5884254Z copying torch\include\ATen\ops\floor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5884931Z copying torch\include\ATen\ops\fmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5885796Z copying torch\include\ATen\ops\fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5886708Z copying torch\include\ATen\ops\fmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5887439Z copying torch\include\ATen\ops\fmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5888154Z copying torch\include\ATen\ops\fmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5894156Z copying torch\include\ATen\ops\fmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5935214Z copying torch\include\ATen\ops\fmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5941968Z copying torch\include\ATen\ops\fmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5948341Z copying torch\include\ATen\ops\fmin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5954981Z copying torch\include\ATen\ops\fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5961338Z copying torch\include\ATen\ops\fmin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5968421Z copying torch\include\ATen\ops\fmin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5974973Z copying torch\include\ATen\ops\fmin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.5997740Z copying torch\include\ATen\ops\fmin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6004303Z copying torch\include\ATen\ops\fmin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6010597Z copying torch\include\ATen\ops\fmin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6016968Z copying torch\include\ATen\ops\fmod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6024117Z copying torch\include\ATen\ops\fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6030804Z copying torch\include\ATen\ops\fmod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6037234Z copying torch\include\ATen\ops\fmod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6043884Z copying torch\include\ATen\ops\fmod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6050542Z copying torch\include\ATen\ops\fmod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6057209Z copying torch\include\ATen\ops\fmod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6063724Z copying torch\include\ATen\ops\fmod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6070362Z copying torch\include\ATen\ops\fmod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6076708Z copying torch\include\ATen\ops\frac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6083065Z copying torch\include\ATen\ops\fractional_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6089642Z copying torch\include\ATen\ops\fractional_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6097020Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6104575Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6112022Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6119408Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6126936Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6134223Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6141569Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6148793Z copying torch\include\ATen\ops\fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6156526Z copying torch\include\ATen\ops\fractional_max_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6163136Z copying torch\include\ATen\ops\fractional_max_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6169957Z copying torch\include\ATen\ops\fractional_max_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6177683Z copying torch\include\ATen\ops\fractional_max_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6184542Z copying torch\include\ATen\ops\fractional_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6191382Z copying torch\include\ATen\ops\fractional_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6198162Z copying torch\include\ATen\ops\fractional_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6204845Z copying torch\include\ATen\ops\fractional_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6211668Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6218438Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6225613Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6232555Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6240401Z copying torch\include\ATen\ops\fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6247306Z copying torch\include\ATen\ops\fractional_max_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6254251Z copying torch\include\ATen\ops\fractional_max_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6261157Z copying torch\include\ATen\ops\fractional_max_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6268338Z copying torch\include\ATen\ops\fractional_max_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6275639Z copying torch\include\ATen\ops\fractional_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6282534Z copying torch\include\ATen\ops\fractional_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6289569Z copying torch\include\ATen\ops\frac_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6296181Z copying torch\include\ATen\ops\frac_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6303207Z copying torch\include\ATen\ops\frac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6309987Z copying torch\include\ATen\ops\frac_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6344985Z copying torch\include\ATen\ops\frac_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6345734Z copying torch\include\ATen\ops\frac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6346427Z copying torch\include\ATen\ops\frac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6347260Z copying torch\include\ATen\ops\frexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6348083Z copying torch\include\ATen\ops\frexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6352695Z copying torch\include\ATen\ops\frexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6359479Z copying torch\include\ATen\ops\frexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6366568Z copying torch\include\ATen\ops\frexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6372864Z copying torch\include\ATen\ops\frexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6379882Z copying torch\include\ATen\ops\frobenius_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6386577Z copying torch\include\ATen\ops\frobenius_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6393307Z copying torch\include\ATen\ops\frobenius_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6399950Z copying torch\include\ATen\ops\frobenius_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6406415Z copying torch\include\ATen\ops\from_blob.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6413214Z copying torch\include\ATen\ops\from_file.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6420004Z copying torch\include\ATen\ops\from_file_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6426603Z copying torch\include\ATen\ops\from_file_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6433226Z copying torch\include\ATen\ops\from_file_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6439963Z copying torch\include\ATen\ops\from_file_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6451783Z copying torch\include\ATen\ops\full.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6458325Z copying torch\include\ATen\ops\full_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6464818Z copying torch\include\ATen\ops\full_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6471983Z copying torch\include\ATen\ops\full_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6478353Z copying torch\include\ATen\ops\full_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6485229Z copying torch\include\ATen\ops\full_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6491742Z copying torch\include\ATen\ops\full_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6498249Z copying torch\include\ATen\ops\full_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6504678Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6512109Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6519066Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6525940Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6532297Z copying torch\include\ATen\ops\gather.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6574942Z copying torch\include\ATen\ops\gather_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6581813Z copying torch\include\ATen\ops\gather_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6588229Z copying torch\include\ATen\ops\gather_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6595028Z copying torch\include\ATen\ops\gather_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6601963Z copying torch\include\ATen\ops\gather_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6608698Z copying torch\include\ATen\ops\gather_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6615391Z copying torch\include\ATen\ops\gather_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6622016Z copying torch\include\ATen\ops\gather_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6629127Z copying torch\include\ATen\ops\gather_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6635471Z copying torch\include\ATen\ops\gather_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6642731Z copying torch\include\ATen\ops\gather_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6649452Z copying torch\include\ATen\ops\gather_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6656049Z copying torch\include\ATen\ops\gcd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6662835Z copying torch\include\ATen\ops\gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6669745Z copying torch\include\ATen\ops\gcd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6676432Z copying torch\include\ATen\ops\gcd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6682806Z copying torch\include\ATen\ops\gcd_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6689039Z copying torch\include\ATen\ops\gcd_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6695746Z copying torch\include\ATen\ops\gcd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6702512Z copying torch\include\ATen\ops\gcd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6709376Z copying torch\include\ATen\ops\ge.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6715428Z copying torch\include\ATen\ops\gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6721886Z copying torch\include\ATen\ops\gelu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6728954Z copying torch\include\ATen\ops\gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6735489Z copying torch\include\ATen\ops\gelu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6742356Z copying torch\include\ATen\ops\gelu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6749810Z copying torch\include\ATen\ops\gelu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6757074Z copying torch\include\ATen\ops\gelu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6764030Z copying torch\include\ATen\ops\gelu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6770547Z copying torch\include\ATen\ops\gelu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6778209Z copying torch\include\ATen\ops\gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6785066Z copying torch\include\ATen\ops\gelu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6791873Z copying torch\include\ATen\ops\gelu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6798829Z copying torch\include\ATen\ops\gelu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6805538Z copying torch\include\ATen\ops\gelu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6828888Z copying torch\include\ATen\ops\gelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6829629Z copying torch\include\ATen\ops\gelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6830324Z copying torch\include\ATen\ops\geometric.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6834816Z copying torch\include\ATen\ops\geometric_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6841144Z copying torch\include\ATen\ops\geometric_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6847899Z copying torch\include\ATen\ops\geometric_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6854926Z copying torch\include\ATen\ops\geometric_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6861777Z copying torch\include\ATen\ops\geometric_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6868617Z copying torch\include\ATen\ops\geometric_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6875172Z copying torch\include\ATen\ops\geqrf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6882015Z copying torch\include\ATen\ops\geqrf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6889577Z copying torch\include\ATen\ops\geqrf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6896266Z copying torch\include\ATen\ops\geqrf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6902810Z copying torch\include\ATen\ops\geqrf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6911065Z copying torch\include\ATen\ops\ger.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6916917Z copying torch\include\ATen\ops\ger_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6923220Z copying torch\include\ATen\ops\ger_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6929659Z copying torch\include\ATen\ops\ger_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6936299Z copying torch\include\ATen\ops\ge_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6942687Z copying torch\include\ATen\ops\ge_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6949317Z copying torch\include\ATen\ops\ge_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6956257Z copying torch\include\ATen\ops\ge_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6962798Z copying torch\include\ATen\ops\ge_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6969581Z copying torch\include\ATen\ops\ge_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6976065Z copying torch\include\ATen\ops\ge_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6982204Z copying torch\include\ATen\ops\glu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6988544Z copying torch\include\ATen\ops\glu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.6995100Z copying torch\include\ATen\ops\glu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7001668Z copying torch\include\ATen\ops\glu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7008056Z copying torch\include\ATen\ops\glu_backward_jvp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7015272Z copying torch\include\ATen\ops\glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7021933Z copying torch\include\ATen\ops\glu_backward_jvp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7028984Z copying torch\include\ATen\ops\glu_backward_jvp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7035486Z copying torch\include\ATen\ops\glu_backward_jvp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7042063Z copying torch\include\ATen\ops\glu_backward_jvp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7048668Z copying torch\include\ATen\ops\glu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7055264Z copying torch\include\ATen\ops\glu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7062728Z copying torch\include\ATen\ops\glu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7069283Z copying torch\include\ATen\ops\glu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7075655Z copying torch\include\ATen\ops\glu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7082602Z copying torch\include\ATen\ops\glu_jvp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7089047Z copying torch\include\ATen\ops\glu_jvp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7095394Z copying torch\include\ATen\ops\glu_jvp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7101981Z copying torch\include\ATen\ops\glu_jvp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7108842Z copying torch\include\ATen\ops\glu_jvp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7115283Z copying torch\include\ATen\ops\glu_jvp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7121761Z copying torch\include\ATen\ops\glu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7128619Z copying torch\include\ATen\ops\glu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7134566Z copying torch\include\ATen\ops\glu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7141074Z copying torch\include\ATen\ops\glu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7147464Z copying torch\include\ATen\ops\gradient.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7154213Z copying torch\include\ATen\ops\gradient_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7161041Z copying torch\include\ATen\ops\gradient_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7167558Z copying torch\include\ATen\ops\gradient_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7174265Z copying torch\include\ATen\ops\greater.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7180944Z copying torch\include\ATen\ops\greater_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7187542Z copying torch\include\ATen\ops\greater_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7194452Z copying torch\include\ATen\ops\greater_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7205674Z copying torch\include\ATen\ops\greater_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7212564Z copying torch\include\ATen\ops\greater_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7219330Z copying torch\include\ATen\ops\greater_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7226182Z copying torch\include\ATen\ops\greater_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7232989Z copying torch\include\ATen\ops\grid_sampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7239563Z copying torch\include\ATen\ops\grid_sampler_2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7246213Z copying torch\include\ATen\ops\grid_sampler_2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7253213Z copying torch\include\ATen\ops\grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7260080Z copying torch\include\ATen\ops\grid_sampler_2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7267997Z copying torch\include\ATen\ops\grid_sampler_2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7275037Z copying torch\include\ATen\ops\grid_sampler_2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7281897Z copying torch\include\ATen\ops\grid_sampler_2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7289311Z copying torch\include\ATen\ops\grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7296010Z copying torch\include\ATen\ops\grid_sampler_2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7302901Z copying torch\include\ATen\ops\grid_sampler_2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7309857Z copying torch\include\ATen\ops\grid_sampler_2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7316662Z copying torch\include\ATen\ops\grid_sampler_2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7333738Z copying torch\include\ATen\ops\grid_sampler_3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7334501Z copying torch\include\ATen\ops\grid_sampler_3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7340154Z copying torch\include\ATen\ops\grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7347095Z copying torch\include\ATen\ops\grid_sampler_3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7354401Z copying torch\include\ATen\ops\grid_sampler_3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7361402Z copying torch\include\ATen\ops\grid_sampler_3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7368935Z copying torch\include\ATen\ops\grid_sampler_3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7375293Z copying torch\include\ATen\ops\grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7382005Z copying torch\include\ATen\ops\grid_sampler_3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7389058Z copying torch\include\ATen\ops\grid_sampler_3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7395989Z copying torch\include\ATen\ops\grid_sampler_3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7402944Z copying torch\include\ATen\ops\grid_sampler_3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7409816Z copying torch\include\ATen\ops\grid_sampler_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7416545Z copying torch\include\ATen\ops\grid_sampler_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7423145Z copying torch\include\ATen\ops\grid_sampler_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7429832Z copying torch\include\ATen\ops\group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7436563Z copying torch\include\ATen\ops\group_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7443323Z copying torch\include\ATen\ops\group_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7449782Z copying torch\include\ATen\ops\group_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7456394Z copying torch\include\ATen\ops\gru.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7462637Z copying torch\include\ATen\ops\gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7469391Z copying torch\include\ATen\ops\gru_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7476013Z copying torch\include\ATen\ops\gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7483030Z copying torch\include\ATen\ops\gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7490133Z copying torch\include\ATen\ops\gru_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7497163Z copying torch\include\ATen\ops\gru_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7503617Z copying torch\include\ATen\ops\gru_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7510262Z copying torch\include\ATen\ops\gt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7517468Z copying torch\include\ATen\ops\gt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7523597Z copying torch\include\ATen\ops\gt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7530245Z copying torch\include\ATen\ops\gt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7536763Z copying torch\include\ATen\ops\gt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7543299Z copying torch\include\ATen\ops\gt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7550244Z copying torch\include\ATen\ops\gt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7556894Z copying torch\include\ATen\ops\gt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7563357Z copying torch\include\ATen\ops\hamming_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7570258Z copying torch\include\ATen\ops\hamming_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7576820Z copying torch\include\ATen\ops\hamming_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7583752Z copying torch\include\ATen\ops\hamming_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7591255Z copying torch\include\ATen\ops\hann_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7598331Z copying torch\include\ATen\ops\hann_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7605201Z copying torch\include\ATen\ops\hann_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7612211Z copying torch\include\ATen\ops\hann_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7618863Z copying torch\include\ATen\ops\hardshrink.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7626136Z copying torch\include\ATen\ops\hardshrink_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7633388Z copying torch\include\ATen\ops\hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7639992Z copying torch\include\ATen\ops\hardshrink_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7647294Z copying torch\include\ATen\ops\hardshrink_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7654844Z copying torch\include\ATen\ops\hardshrink_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7661644Z copying torch\include\ATen\ops\hardshrink_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7668590Z copying torch\include\ATen\ops\hardshrink_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7675399Z copying torch\include\ATen\ops\hardshrink_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7683143Z copying torch\include\ATen\ops\hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7689512Z copying torch\include\ATen\ops\hardshrink_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7696189Z copying torch\include\ATen\ops\hardshrink_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7703180Z copying torch\include\ATen\ops\hardshrink_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7710099Z copying torch\include\ATen\ops\hardshrink_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7717187Z copying torch\include\ATen\ops\hardshrink_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7723769Z copying torch\include\ATen\ops\hardshrink_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7730568Z copying torch\include\ATen\ops\hardsigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7737258Z copying torch\include\ATen\ops\hardsigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7777645Z copying torch\include\ATen\ops\hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7784515Z copying torch\include\ATen\ops\hardsigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7791819Z copying torch\include\ATen\ops\hardsigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7799292Z copying torch\include\ATen\ops\hardsigmoid_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7806400Z copying torch\include\ATen\ops\hardsigmoid_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7813235Z copying torch\include\ATen\ops\hardsigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7820400Z copying torch\include\ATen\ops\hardsigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7827539Z copying torch\include\ATen\ops\hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7834268Z copying torch\include\ATen\ops\hardsigmoid_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7841120Z copying torch\include\ATen\ops\hardsigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7848221Z copying torch\include\ATen\ops\hardsigmoid_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7854837Z copying torch\include\ATen\ops\hardsigmoid_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7861810Z copying torch\include\ATen\ops\hardsigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7868915Z copying torch\include\ATen\ops\hardsigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7875538Z copying torch\include\ATen\ops\hardswish.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7909435Z copying torch\include\ATen\ops\hardswish_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7916351Z copying torch\include\ATen\ops\hardswish_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7925562Z copying torch\include\ATen\ops\hardswish_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7969916Z copying torch\include\ATen\ops\hardswish_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7970758Z copying torch\include\ATen\ops\hardswish_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7971610Z copying torch\include\ATen\ops\hardswish_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7972394Z copying torch\include\ATen\ops\hardswish_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7973187Z copying torch\include\ATen\ops\hardswish_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7973960Z copying torch\include\ATen\ops\hardswish_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7975855Z copying torch\include\ATen\ops\hardswish_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7982742Z copying torch\include\ATen\ops\hardswish_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7989819Z copying torch\include\ATen\ops\hardtanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.7996259Z copying torch\include\ATen\ops\hardtanh_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8003485Z copying torch\include\ATen\ops\hardtanh_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8010016Z copying torch\include\ATen\ops\hardtanh_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8016656Z copying torch\include\ATen\ops\hardtanh_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8023499Z copying torch\include\ATen\ops\hardtanh_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8030198Z copying torch\include\ATen\ops\hardtanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8036751Z copying torch\include\ATen\ops\hardtanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8043565Z copying torch\include\ATen\ops\hardtanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8050305Z copying torch\include\ATen\ops\hardtanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8056875Z copying torch\include\ATen\ops\hardtanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8063354Z copying torch\include\ATen\ops\heaviside.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8070579Z copying torch\include\ATen\ops\heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8105252Z copying torch\include\ATen\ops\heaviside_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8111502Z copying torch\include\ATen\ops\heaviside_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8118134Z copying torch\include\ATen\ops\heaviside_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8124738Z copying torch\include\ATen\ops\heaviside_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8131356Z copying torch\include\ATen\ops\heaviside_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8138079Z copying torch\include\ATen\ops\heaviside_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8144673Z copying torch\include\ATen\ops\hinge_embedding_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8151658Z copying torch\include\ATen\ops\hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8158240Z copying torch\include\ATen\ops\hinge_embedding_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8164932Z copying torch\include\ATen\ops\hinge_embedding_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8171230Z copying torch\include\ATen\ops\histc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8177568Z copying torch\include\ATen\ops\histc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8184311Z copying torch\include\ATen\ops\histc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8191349Z copying torch\include\ATen\ops\histc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8198023Z copying torch\include\ATen\ops\histc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8204774Z copying torch\include\ATen\ops\histogram.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8211620Z copying torch\include\ATen\ops\histogramdd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8218410Z copying torch\include\ATen\ops\histogramdd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8225280Z copying torch\include\ATen\ops\histogramdd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8232128Z copying torch\include\ATen\ops\histogramdd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8238848Z copying torch\include\ATen\ops\histogram_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8245937Z copying torch\include\ATen\ops\histogram_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8252512Z copying torch\include\ATen\ops\histogram_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8259145Z copying torch\include\ATen\ops\hsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8265803Z copying torch\include\ATen\ops\hsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8272572Z copying torch\include\ATen\ops\hsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8291071Z copying torch\include\ATen\ops\hsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8292965Z copying torch\include\ATen\ops\hspmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8293658Z copying torch\include\ATen\ops\hspmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8299193Z copying torch\include\ATen\ops\hspmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8305663Z copying torch\include\ATen\ops\hstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8312449Z copying torch\include\ATen\ops\hstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8318958Z copying torch\include\ATen\ops\hstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8325602Z copying torch\include\ATen\ops\hstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8358580Z copying torch\include\ATen\ops\huber_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8359312Z copying torch\include\ATen\ops\huber_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8360211Z copying torch\include\ATen\ops\huber_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8361172Z copying torch\include\ATen\ops\huber_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8362999Z copying torch\include\ATen\ops\huber_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8370716Z copying torch\include\ATen\ops\huber_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8377023Z copying torch\include\ATen\ops\huber_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8383810Z copying torch\include\ATen\ops\huber_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8390460Z copying torch\include\ATen\ops\huber_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8397132Z copying torch\include\ATen\ops\huber_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8404668Z copying torch\include\ATen\ops\huber_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8411684Z copying torch\include\ATen\ops\hypot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8418833Z copying torch\include\ATen\ops\hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8425635Z copying torch\include\ATen\ops\hypot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8432293Z copying torch\include\ATen\ops\hypot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8438919Z copying torch\include\ATen\ops\hypot_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8445952Z copying torch\include\ATen\ops\hypot_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8452488Z copying torch\include\ATen\ops\hypot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8458957Z copying torch\include\ATen\ops\hypot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8465423Z copying torch\include\ATen\ops\i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8472180Z copying torch\include\ATen\ops\i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8478659Z copying torch\include\ATen\ops\i0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8485671Z copying torch\include\ATen\ops\i0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8491624Z copying torch\include\ATen\ops\i0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8497748Z copying torch\include\ATen\ops\i0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8509087Z copying torch\include\ATen\ops\i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8515233Z copying torch\include\ATen\ops\i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8521895Z copying torch\include\ATen\ops\igamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8528009Z copying torch\include\ATen\ops\igammac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8534767Z copying torch\include\ATen\ops\igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8541332Z copying torch\include\ATen\ops\igammac_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8547985Z copying torch\include\ATen\ops\igammac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8554437Z copying torch\include\ATen\ops\igammac_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8561099Z copying torch\include\ATen\ops\igammac_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8567727Z copying torch\include\ATen\ops\igammac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8574613Z copying torch\include\ATen\ops\igammac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8581477Z copying torch\include\ATen\ops\igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8588316Z copying torch\include\ATen\ops\igamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8594901Z copying torch\include\ATen\ops\igamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8601381Z copying torch\include\ATen\ops\igamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8607978Z copying torch\include\ATen\ops\igamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8614506Z copying torch\include\ATen\ops\igamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8621034Z copying torch\include\ATen\ops\igamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8627702Z copying torch\include\ATen\ops\im2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8634047Z copying torch\include\ATen\ops\im2col_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8640714Z copying torch\include\ATen\ops\im2col_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8647518Z copying torch\include\ATen\ops\im2col_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8654317Z copying torch\include\ATen\ops\im2col_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8660894Z copying torch\include\ATen\ops\imag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8667645Z copying torch\include\ATen\ops\imag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8674173Z copying torch\include\ATen\ops\imag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8680537Z copying torch\include\ATen\ops\imag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8686815Z copying torch\include\ATen\ops\index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8693211Z copying torch\include\ATen\ops\index_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8700815Z copying torch\include\ATen\ops\index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8708331Z copying torch\include\ATen\ops\index_add_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8714898Z copying torch\include\ATen\ops\index_add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8721636Z copying torch\include\ATen\ops\index_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8754381Z copying torch\include\ATen\ops\index_add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8755145Z copying torch\include\ATen\ops\index_add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8755902Z copying torch\include\ATen\ops\index_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8756609Z copying torch\include\ATen\ops\index_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8760407Z copying torch\include\ATen\ops\index_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8767407Z copying torch\include\ATen\ops\index_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8774166Z copying torch\include\ATen\ops\index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8781173Z copying torch\include\ATen\ops\index_copy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8789391Z copying torch\include\ATen\ops\index_copy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8794851Z copying torch\include\ATen\ops\index_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8801675Z copying torch\include\ATen\ops\index_copy_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.8808527Z copying torch\include\ATen\ops\index_copy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9529616Z copying torch\include\ATen\ops\index_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9702877Z copying torch\include\ATen\ops\index_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9710037Z copying torch\include\ATen\ops\index_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9717324Z copying torch\include\ATen\ops\index_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9724068Z copying torch\include\ATen\ops\index_fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9731241Z copying torch\include\ATen\ops\index_fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9738304Z copying torch\include\ATen\ops\index_fill_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9745907Z copying torch\include\ATen\ops\index_fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9752174Z copying torch\include\ATen\ops\index_fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9759037Z copying torch\include\ATen\ops\index_fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9765722Z copying torch\include\ATen\ops\index_fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9772738Z copying torch\include\ATen\ops\index_fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9780389Z copying torch\include\ATen\ops\index_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9786787Z copying torch\include\ATen\ops\index_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9793325Z copying torch\include\ATen\ops\index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9800111Z copying torch\include\ATen\ops\index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9806867Z copying torch\include\ATen\ops\index_put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9814388Z copying torch\include\ATen\ops\index_put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9820896Z copying torch\include\ATen\ops\index_put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9827965Z copying torch\include\ATen\ops\index_put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9834835Z copying torch\include\ATen\ops\index_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9842069Z copying torch\include\ATen\ops\index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9849286Z copying torch\include\ATen\ops\index_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9856675Z copying torch\include\ATen\ops\index_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9863265Z copying torch\include\ATen\ops\index_reduce_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9870636Z copying torch\include\ATen\ops\index_reduce_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9877007Z copying torch\include\ATen\ops\index_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9883647Z copying torch\include\ATen\ops\index_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9890206Z copying torch\include\ATen\ops\index_select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9896944Z copying torch\include\ATen\ops\index_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9904141Z copying torch\include\ATen\ops\index_select_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9910914Z copying torch\include\ATen\ops\index_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9917615Z copying torch\include\ATen\ops\index_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9924762Z copying torch\include\ATen\ops\index_select_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9931423Z copying torch\include\ATen\ops\index_select_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9938130Z copying torch\include\ATen\ops\index_select_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9944750Z copying torch\include\ATen\ops\index_select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9951514Z copying torch\include\ATen\ops\index_select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9958224Z copying torch\include\ATen\ops\indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9964571Z copying torch\include\ATen\ops\indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9971222Z copying torch\include\ATen\ops\indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9978138Z copying torch\include\ATen\ops\indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9984751Z copying torch\include\ATen\ops\indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9991548Z copying torch\include\ATen\ops\indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:35.9998784Z copying torch\include\ATen\ops\indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0004935Z copying torch\include\ATen\ops\indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0011406Z copying torch\include\ATen\ops\indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0018404Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0025431Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0032217Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0038911Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0045564Z copying torch\include\ATen\ops\inner.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0052113Z copying torch\include\ATen\ops\inner_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0058725Z copying torch\include\ATen\ops\inner_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0065174Z copying torch\include\ATen\ops\inner_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0071817Z copying torch\include\ATen\ops\instance_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0078605Z copying torch\include\ATen\ops\instance_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0085077Z copying torch\include\ATen\ops\instance_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0091581Z copying torch\include\ATen\ops\instance_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0098672Z copying torch\include\ATen\ops\int_repr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0105243Z copying torch\include\ATen\ops\int_repr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0111839Z copying torch\include\ATen\ops\int_repr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0118325Z copying torch\include\ATen\ops\int_repr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0124936Z copying torch\include\ATen\ops\inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0132864Z copying torch\include\ATen\ops\inverse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0139233Z copying torch\include\ATen\ops\inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0145732Z copying torch\include\ATen\ops\inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0152507Z copying torch\include\ATen\ops\isclose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0159935Z copying torch\include\ATen\ops\isclose_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0166123Z copying torch\include\ATen\ops\isclose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0172661Z copying torch\include\ATen\ops\isclose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0179169Z copying torch\include\ATen\ops\isfinite.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0185563Z copying torch\include\ATen\ops\isfinite_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0192247Z copying torch\include\ATen\ops\isfinite_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0198853Z copying torch\include\ATen\ops\isfinite_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0205340Z copying torch\include\ATen\ops\isin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0211717Z copying torch\include\ATen\ops\isinf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0218418Z copying torch\include\ATen\ops\isinf_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0224861Z copying torch\include\ATen\ops\isinf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0231277Z copying torch\include\ATen\ops\isinf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0238242Z copying torch\include\ATen\ops\isin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0245265Z copying torch\include\ATen\ops\isin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0252112Z copying torch\include\ATen\ops\isin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0258595Z copying torch\include\ATen\ops\isin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0265450Z copying torch\include\ATen\ops\isin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0272529Z copying torch\include\ATen\ops\isin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0278567Z copying torch\include\ATen\ops\isin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0284921Z copying torch\include\ATen\ops\isnan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0291662Z copying torch\include\ATen\ops\isnan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0298165Z copying torch\include\ATen\ops\isnan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0304973Z copying torch\include\ATen\ops\isnan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0312059Z copying torch\include\ATen\ops\isnan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0318999Z copying torch\include\ATen\ops\isnan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0325607Z copying torch\include\ATen\ops\isneginf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0332317Z copying torch\include\ATen\ops\isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0339102Z copying torch\include\ATen\ops\isneginf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0345797Z copying torch\include\ATen\ops\isneginf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0383417Z copying torch\include\ATen\ops\isneginf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0384188Z copying torch\include\ATen\ops\isneginf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0384935Z copying torch\include\ATen\ops\isneginf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0385662Z copying torch\include\ATen\ops\isneginf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0386356Z copying torch\include\ATen\ops\isposinf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0392410Z copying torch\include\ATen\ops\isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0399192Z copying torch\include\ATen\ops\isposinf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0407595Z copying torch\include\ATen\ops\isposinf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0413397Z copying torch\include\ATen\ops\isposinf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0419965Z copying torch\include\ATen\ops\isposinf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0426750Z copying torch\include\ATen\ops\isposinf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0434598Z copying torch\include\ATen\ops\isposinf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0440177Z copying torch\include\ATen\ops\isreal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0446807Z copying torch\include\ATen\ops\isreal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0453177Z copying torch\include\ATen\ops\isreal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0459428Z copying torch\include\ATen\ops\isreal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0501903Z copying torch\include\ATen\ops\istft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0508948Z copying torch\include\ATen\ops\istft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0515323Z copying torch\include\ATen\ops\istft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0522280Z copying torch\include\ATen\ops\istft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0529621Z copying torch\include\ATen\ops\is_coalesced.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0536349Z copying torch\include\ATen\ops\is_coalesced_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0542974Z copying torch\include\ATen\ops\is_coalesced_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0550077Z copying torch\include\ATen\ops\is_coalesced_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0556753Z copying torch\include\ATen\ops\is_complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0563545Z copying torch\include\ATen\ops\is_complex_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0570022Z copying torch\include\ATen\ops\is_complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0576513Z copying torch\include\ATen\ops\is_complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0583480Z copying torch\include\ATen\ops\is_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0590200Z copying torch\include\ATen\ops\is_conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0596606Z copying torch\include\ATen\ops\is_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0603554Z copying torch\include\ATen\ops\is_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0610251Z copying torch\include\ATen\ops\is_distributed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0617102Z copying torch\include\ATen\ops\is_distributed_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0624457Z copying torch\include\ATen\ops\is_distributed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0630980Z copying torch\include\ATen\ops\is_distributed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0637726Z copying torch\include\ATen\ops\is_floating_point.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0644793Z copying torch\include\ATen\ops\is_floating_point_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0651785Z copying torch\include\ATen\ops\is_floating_point_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0659122Z copying torch\include\ATen\ops\is_floating_point_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0665570Z copying torch\include\ATen\ops\is_inference.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0672569Z copying torch\include\ATen\ops\is_inference_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0679015Z copying torch\include\ATen\ops\is_inference_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0685477Z copying torch\include\ATen\ops\is_inference_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0692877Z copying torch\include\ATen\ops\is_leaf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0699169Z copying torch\include\ATen\ops\is_leaf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0705807Z copying torch\include\ATen\ops\is_leaf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0712369Z copying torch\include\ATen\ops\is_leaf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0719012Z copying torch\include\ATen\ops\is_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0725479Z copying torch\include\ATen\ops\is_neg_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0731876Z copying torch\include\ATen\ops\is_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0755806Z copying torch\include\ATen\ops\is_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0762045Z copying torch\include\ATen\ops\is_nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0769067Z copying torch\include\ATen\ops\is_nonzero_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0775731Z copying torch\include\ATen\ops\is_nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0782221Z copying torch\include\ATen\ops\is_nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0789105Z copying torch\include\ATen\ops\is_pinned.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0796414Z copying torch\include\ATen\ops\is_pinned_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0803182Z copying torch\include\ATen\ops\is_pinned_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0809680Z copying torch\include\ATen\ops\is_pinned_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0816983Z copying torch\include\ATen\ops\is_same_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0824427Z copying torch\include\ATen\ops\is_same_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0830836Z copying torch\include\ATen\ops\is_same_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0837476Z copying torch\include\ATen\ops\is_same_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0844338Z copying torch\include\ATen\ops\is_set_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0850772Z copying torch\include\ATen\ops\is_set_to_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0857290Z copying torch\include\ATen\ops\is_set_to_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0864196Z copying torch\include\ATen\ops\is_set_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0871473Z copying torch\include\ATen\ops\is_set_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0878036Z copying torch\include\ATen\ops\is_signed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0884961Z copying torch\include\ATen\ops\is_signed_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0891567Z copying torch\include\ATen\ops\is_signed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0897799Z copying torch\include\ATen\ops\is_signed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0904388Z copying torch\include\ATen\ops\is_vulkan_available.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0911911Z copying torch\include\ATen\ops\is_vulkan_available_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0918906Z copying torch\include\ATen\ops\is_vulkan_available_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0926054Z copying torch\include\ATen\ops\is_vulkan_available_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0933133Z copying torch\include\ATen\ops\item.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0939459Z copying torch\include\ATen\ops\item_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0945935Z copying torch\include\ATen\ops\item_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0952581Z copying torch\include\ATen\ops\item_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0959344Z copying torch\include\ATen\ops\kaiser_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0966469Z copying torch\include\ATen\ops\kaiser_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0973594Z copying torch\include\ATen\ops\kaiser_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0980105Z copying torch\include\ATen\ops\kaiser_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0986533Z copying torch\include\ATen\ops\kl_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0993240Z copying torch\include\ATen\ops\kl_div_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.0999565Z copying torch\include\ATen\ops\kl_div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1005960Z copying torch\include\ATen\ops\kl_div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1012415Z copying torch\include\ATen\ops\kron.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1019105Z copying torch\include\ATen\ops\kron_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1025537Z copying torch\include\ATen\ops\kron_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1032140Z copying torch\include\ATen\ops\kron_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1038321Z copying torch\include\ATen\ops\kthvalue.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1044975Z copying torch\include\ATen\ops\kthvalue_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1051924Z copying torch\include\ATen\ops\kthvalue_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1058903Z copying torch\include\ATen\ops\kthvalue_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1065647Z copying torch\include\ATen\ops\kthvalue_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1072243Z copying torch\include\ATen\ops\kthvalue_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1078862Z copying torch\include\ATen\ops\kthvalue_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1085347Z copying torch\include\ATen\ops\l1_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1091809Z copying torch\include\ATen\ops\l1_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1098189Z copying torch\include\ATen\ops\l1_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1104444Z copying torch\include\ATen\ops\l1_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1111166Z copying torch\include\ATen\ops\layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1118081Z copying torch\include\ATen\ops\layer_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1124535Z copying torch\include\ATen\ops\layer_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1131333Z copying torch\include\ATen\ops\layer_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1137834Z copying torch\include\ATen\ops\lcm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1144417Z copying torch\include\ATen\ops\lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1151061Z copying torch\include\ATen\ops\lcm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1157505Z copying torch\include\ATen\ops\lcm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1164245Z copying torch\include\ATen\ops\lcm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1170610Z copying torch\include\ATen\ops\lcm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1177610Z copying torch\include\ATen\ops\lcm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1184443Z copying torch\include\ATen\ops\lcm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1190903Z copying torch\include\ATen\ops\ldexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1197997Z copying torch\include\ATen\ops\ldexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1204467Z copying torch\include\ATen\ops\ldexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1210876Z copying torch\include\ATen\ops\ldexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1217365Z copying torch\include\ATen\ops\le.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1223919Z copying torch\include\ATen\ops\leaky_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1230590Z copying torch\include\ATen\ops\leaky_relu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1237555Z copying torch\include\ATen\ops\leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1244222Z copying torch\include\ATen\ops\leaky_relu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1250777Z copying torch\include\ATen\ops\leaky_relu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1257449Z copying torch\include\ATen\ops\leaky_relu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1264519Z copying torch\include\ATen\ops\leaky_relu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1271458Z copying torch\include\ATen\ops\leaky_relu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1278150Z copying torch\include\ATen\ops\leaky_relu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1285215Z copying torch\include\ATen\ops\leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1291713Z copying torch\include\ATen\ops\leaky_relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1298447Z copying torch\include\ATen\ops\leaky_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1304929Z copying torch\include\ATen\ops\leaky_relu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1312575Z copying torch\include\ATen\ops\leaky_relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1319102Z copying torch\include\ATen\ops\leaky_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1325657Z copying torch\include\ATen\ops\leaky_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1332159Z copying torch\include\ATen\ops\lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1338820Z copying torch\include\ATen\ops\lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1345137Z copying torch\include\ATen\ops\lerp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1351987Z copying torch\include\ATen\ops\lerp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1358860Z copying torch\include\ATen\ops\lerp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1366023Z copying torch\include\ATen\ops\lerp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1406729Z copying torch\include\ATen\ops\lerp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1407443Z copying torch\include\ATen\ops\lerp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1408105Z copying torch\include\ATen\ops\less.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1408898Z copying torch\include\ATen\ops\less_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1409728Z copying torch\include\ATen\ops\less_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1410566Z copying torch\include\ATen\ops\less_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1416971Z copying torch\include\ATen\ops\less_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1423322Z copying torch\include\ATen\ops\less_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1430906Z copying torch\include\ATen\ops\less_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1437284Z copying torch\include\ATen\ops\less_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1444558Z copying torch\include\ATen\ops\le_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1451108Z copying torch\include\ATen\ops\le_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1457942Z copying torch\include\ATen\ops\le_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1464104Z copying torch\include\ATen\ops\le_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1470681Z copying torch\include\ATen\ops\le_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1477161Z copying torch\include\ATen\ops\le_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1483577Z copying torch\include\ATen\ops\le_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1489954Z copying torch\include\ATen\ops\lgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1496513Z copying torch\include\ATen\ops\lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1502890Z copying torch\include\ATen\ops\lgamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1510340Z copying torch\include\ATen\ops\lgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1516872Z copying torch\include\ATen\ops\lgamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1523550Z copying torch\include\ATen\ops\lgamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1530178Z copying torch\include\ATen\ops\lgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1536643Z copying torch\include\ATen\ops\lgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1543190Z copying torch\include\ATen\ops\lift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1549979Z copying torch\include\ATen\ops\lift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1556307Z copying torch\include\ATen\ops\lift_fresh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1563055Z copying torch\include\ATen\ops\lift_fresh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1569536Z copying torch\include\ATen\ops\lift_fresh_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1576846Z copying torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1583723Z copying torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1590372Z copying torch\include\ATen\ops\lift_fresh_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1597080Z copying torch\include\ATen\ops\lift_fresh_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1603629Z copying torch\include\ATen\ops\lift_fresh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1610100Z copying torch\include\ATen\ops\lift_fresh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1616881Z copying torch\include\ATen\ops\lift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1623117Z copying torch\include\ATen\ops\lift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1629472Z copying torch\include\ATen\ops\linalg_cholesky.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1636379Z copying torch\include\ATen\ops\linalg_cholesky_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1642857Z copying torch\include\ATen\ops\linalg_cholesky_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1649989Z copying torch\include\ATen\ops\linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1657175Z copying torch\include\ATen\ops\linalg_cholesky_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1663789Z copying torch\include\ATen\ops\linalg_cholesky_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1670648Z copying torch\include\ATen\ops\linalg_cholesky_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1677576Z copying torch\include\ATen\ops\linalg_cholesky_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1684658Z copying torch\include\ATen\ops\linalg_cholesky_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1692190Z copying torch\include\ATen\ops\linalg_cholesky_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1698773Z copying torch\include\ATen\ops\linalg_cholesky_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1705623Z copying torch\include\ATen\ops\linalg_cholesky_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1712651Z copying torch\include\ATen\ops\linalg_cond.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1720817Z copying torch\include\ATen\ops\linalg_cond_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1727067Z copying torch\include\ATen\ops\linalg_cond_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1733777Z copying torch\include\ATen\ops\linalg_cond_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1740452Z copying torch\include\ATen\ops\linalg_cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1747765Z copying torch\include\ATen\ops\linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1755260Z copying torch\include\ATen\ops\linalg_cross_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1761689Z copying torch\include\ATen\ops\linalg_cross_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1768457Z copying torch\include\ATen\ops\linalg_cross_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1775497Z copying torch\include\ATen\ops\linalg_cross_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1782367Z copying torch\include\ATen\ops\linalg_cross_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1789667Z copying torch\include\ATen\ops\linalg_cross_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1796143Z copying torch\include\ATen\ops\linalg_det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1803425Z copying torch\include\ATen\ops\linalg_det_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1810512Z copying torch\include\ATen\ops\linalg_det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1817233Z copying torch\include\ATen\ops\linalg_det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1824197Z copying torch\include\ATen\ops\linalg_diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1831256Z copying torch\include\ATen\ops\linalg_diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1838110Z copying torch\include\ATen\ops\linalg_diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1844614Z copying torch\include\ATen\ops\linalg_diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1851419Z copying torch\include\ATen\ops\linalg_eig.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1867974Z copying torch\include\ATen\ops\linalg_eigh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1868835Z copying torch\include\ATen\ops\linalg_eigh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1874087Z copying torch\include\ATen\ops\linalg_eigh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1880828Z copying torch\include\ATen\ops\linalg_eigh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1888026Z copying torch\include\ATen\ops\linalg_eigvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1894900Z copying torch\include\ATen\ops\linalg_eigvalsh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1903363Z copying torch\include\ATen\ops\linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1909120Z copying torch\include\ATen\ops\linalg_eigvalsh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1915811Z copying torch\include\ATen\ops\linalg_eigvalsh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1922992Z copying torch\include\ATen\ops\linalg_eigvals_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1929536Z copying torch\include\ATen\ops\linalg_eigvals_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1936460Z copying torch\include\ATen\ops\linalg_eigvals_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1943173Z copying torch\include\ATen\ops\linalg_eigvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1950052Z copying torch\include\ATen\ops\linalg_eigvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1957145Z copying torch\include\ATen\ops\linalg_eig_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1964032Z copying torch\include\ATen\ops\linalg_eig_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1970690Z copying torch\include\ATen\ops\linalg_eig_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1977518Z copying torch\include\ATen\ops\linalg_eig_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1984076Z copying torch\include\ATen\ops\linalg_householder_product.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1990841Z copying torch\include\ATen\ops\linalg_householder_product_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.1998000Z copying torch\include\ATen\ops\linalg_householder_product_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2005423Z copying torch\include\ATen\ops\linalg_householder_product_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2012373Z copying torch\include\ATen\ops\linalg_householder_product_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2019096Z copying torch\include\ATen\ops\linalg_inv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2026242Z copying torch\include\ATen\ops\linalg_inv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2033062Z copying torch\include\ATen\ops\linalg_inv_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2040688Z copying torch\include\ATen\ops\linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2047123Z copying torch\include\ATen\ops\linalg_inv_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2053885Z copying torch\include\ATen\ops\linalg_inv_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2072484Z copying torch\include\ATen\ops\linalg_inv_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2079240Z copying torch\include\ATen\ops\linalg_inv_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2086176Z copying torch\include\ATen\ops\linalg_inv_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2092696Z copying torch\include\ATen\ops\linalg_inv_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2099669Z copying torch\include\ATen\ops\linalg_inv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2106208Z copying torch\include\ATen\ops\linalg_inv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2113125Z copying torch\include\ATen\ops\linalg_ldl_factor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2120621Z copying torch\include\ATen\ops\linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2127051Z copying torch\include\ATen\ops\linalg_ldl_factor_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2134329Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2141427Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2148745Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2155465Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2162394Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2169105Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2176097Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2183181Z copying torch\include\ATen\ops\linalg_ldl_factor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2190222Z copying torch\include\ATen\ops\linalg_ldl_factor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2197479Z copying torch\include\ATen\ops\linalg_ldl_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2204897Z copying torch\include\ATen\ops\linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2211798Z copying torch\include\ATen\ops\linalg_ldl_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2219041Z copying torch\include\ATen\ops\linalg_ldl_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2225892Z copying torch\include\ATen\ops\linalg_ldl_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2234007Z copying torch\include\ATen\ops\linalg_ldl_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2240928Z copying torch\include\ATen\ops\linalg_ldl_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2247766Z copying torch\include\ATen\ops\linalg_ldl_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2254425Z copying torch\include\ATen\ops\linalg_lstsq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2261515Z copying torch\include\ATen\ops\linalg_lstsq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2268937Z copying torch\include\ATen\ops\linalg_lstsq_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2355227Z copying torch\include\ATen\ops\linalg_lstsq_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2360605Z copying torch\include\ATen\ops\linalg_lstsq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2367461Z copying torch\include\ATen\ops\linalg_lstsq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2375087Z copying torch\include\ATen\ops\linalg_lu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2382194Z copying torch\include\ATen\ops\linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2388843Z copying torch\include\ATen\ops\linalg_lu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2395577Z copying torch\include\ATen\ops\linalg_lu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2402474Z copying torch\include\ATen\ops\linalg_lu_factor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2409678Z copying torch\include\ATen\ops\linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2416316Z copying torch\include\ATen\ops\linalg_lu_factor_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2423446Z copying torch\include\ATen\ops\linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2430160Z copying torch\include\ATen\ops\linalg_lu_factor_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2437116Z copying torch\include\ATen\ops\linalg_lu_factor_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2443910Z copying torch\include\ATen\ops\linalg_lu_factor_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2450812Z copying torch\include\ATen\ops\linalg_lu_factor_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2459333Z copying torch\include\ATen\ops\linalg_lu_factor_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2500614Z copying torch\include\ATen\ops\linalg_lu_factor_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2501498Z copying torch\include\ATen\ops\linalg_lu_factor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2502279Z copying torch\include\ATen\ops\linalg_lu_factor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2503024Z copying torch\include\ATen\ops\linalg_lu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2503763Z copying torch\include\ATen\ops\linalg_lu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2504980Z copying torch\include\ATen\ops\linalg_lu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2512020Z copying torch\include\ATen\ops\linalg_lu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2519102Z copying torch\include\ATen\ops\linalg_lu_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2526379Z copying torch\include\ATen\ops\linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2534091Z copying torch\include\ATen\ops\linalg_lu_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2540288Z copying torch\include\ATen\ops\linalg_lu_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2547346Z copying torch\include\ATen\ops\linalg_lu_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2554916Z copying torch\include\ATen\ops\linalg_lu_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2561757Z copying torch\include\ATen\ops\linalg_lu_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2568652Z copying torch\include\ATen\ops\linalg_lu_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2575761Z copying torch\include\ATen\ops\linalg_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2583718Z copying torch\include\ATen\ops\linalg_matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2590547Z copying torch\include\ATen\ops\linalg_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2597647Z copying torch\include\ATen\ops\linalg_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2604834Z copying torch\include\ATen\ops\linalg_matrix_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2612009Z copying torch\include\ATen\ops\linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2618834Z copying torch\include\ATen\ops\linalg_matrix_exp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2625794Z copying torch\include\ATen\ops\linalg_matrix_exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2632699Z copying torch\include\ATen\ops\linalg_matrix_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2639665Z copying torch\include\ATen\ops\linalg_matrix_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2646961Z copying torch\include\ATen\ops\linalg_matrix_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2654294Z copying torch\include\ATen\ops\linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2661276Z copying torch\include\ATen\ops\linalg_matrix_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2668320Z copying torch\include\ATen\ops\linalg_matrix_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2675647Z copying torch\include\ATen\ops\linalg_matrix_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2682480Z copying torch\include\ATen\ops\linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2689435Z copying torch\include\ATen\ops\linalg_matrix_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2696833Z copying torch\include\ATen\ops\linalg_matrix_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2704234Z copying torch\include\ATen\ops\linalg_matrix_rank.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2711273Z copying torch\include\ATen\ops\linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2718326Z copying torch\include\ATen\ops\linalg_matrix_rank_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2725181Z copying torch\include\ATen\ops\linalg_matrix_rank_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2731982Z copying torch\include\ATen\ops\linalg_multi_dot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2739277Z copying torch\include\ATen\ops\linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2746196Z copying torch\include\ATen\ops\linalg_multi_dot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2758126Z copying torch\include\ATen\ops\linalg_multi_dot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2763167Z copying torch\include\ATen\ops\linalg_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2770816Z copying torch\include\ATen\ops\linalg_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2776980Z copying torch\include\ATen\ops\linalg_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2784059Z copying torch\include\ATen\ops\linalg_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2791174Z copying torch\include\ATen\ops\linalg_pinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2799102Z copying torch\include\ATen\ops\linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2805652Z copying torch\include\ATen\ops\linalg_pinv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2812718Z copying torch\include\ATen\ops\linalg_pinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2819834Z copying torch\include\ATen\ops\linalg_pinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2826907Z copying torch\include\ATen\ops\linalg_pinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2834184Z copying torch\include\ATen\ops\linalg_qr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2841459Z copying torch\include\ATen\ops\linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2848181Z copying torch\include\ATen\ops\linalg_qr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2855033Z copying torch\include\ATen\ops\linalg_qr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2878097Z copying torch\include\ATen\ops\linalg_qr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2878946Z copying torch\include\ATen\ops\linalg_qr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2879720Z copying torch\include\ATen\ops\linalg_qr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2887986Z copying torch\include\ATen\ops\linalg_qr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2893973Z copying torch\include\ATen\ops\linalg_slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2901026Z copying torch\include\ATen\ops\linalg_slogdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2908361Z copying torch\include\ATen\ops\linalg_slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2915128Z copying torch\include\ATen\ops\linalg_slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2923214Z copying torch\include\ATen\ops\linalg_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2929327Z copying torch\include\ATen\ops\linalg_solve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2936231Z copying torch\include\ATen\ops\linalg_solve_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2943614Z copying torch\include\ATen\ops\linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2955169Z copying torch\include\ATen\ops\linalg_solve_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2962312Z copying torch\include\ATen\ops\linalg_solve_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2968613Z copying torch\include\ATen\ops\linalg_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2975550Z copying torch\include\ATen\ops\linalg_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2982201Z copying torch\include\ATen\ops\linalg_solve_triangular.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2989194Z copying torch\include\ATen\ops\linalg_solve_triangular_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.2996379Z copying torch\include\ATen\ops\linalg_solve_triangular_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3003143Z copying torch\include\ATen\ops\linalg_solve_triangular_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3009881Z copying torch\include\ATen\ops\linalg_solve_triangular_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3016474Z copying torch\include\ATen\ops\linalg_svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3023161Z copying torch\include\ATen\ops\linalg_svdvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3030285Z copying torch\include\ATen\ops\linalg_svdvals_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3037124Z copying torch\include\ATen\ops\linalg_svdvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3043946Z copying torch\include\ATen\ops\linalg_svdvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3050811Z copying torch\include\ATen\ops\linalg_svd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3057307Z copying torch\include\ATen\ops\linalg_svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3064124Z copying torch\include\ATen\ops\linalg_svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3071079Z copying torch\include\ATen\ops\linalg_tensorinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3078322Z copying torch\include\ATen\ops\linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3085514Z copying torch\include\ATen\ops\linalg_tensorinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3092404Z copying torch\include\ATen\ops\linalg_tensorinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3100252Z copying torch\include\ATen\ops\linalg_tensorsolve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3108019Z copying torch\include\ATen\ops\linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3115201Z copying torch\include\ATen\ops\linalg_tensorsolve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3122650Z copying torch\include\ATen\ops\linalg_tensorsolve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3129819Z copying torch\include\ATen\ops\linalg_vander.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3137715Z copying torch\include\ATen\ops\linalg_vander_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3144468Z copying torch\include\ATen\ops\linalg_vander_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3151121Z copying torch\include\ATen\ops\linalg_vander_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3157943Z copying torch\include\ATen\ops\linalg_vecdot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3164891Z copying torch\include\ATen\ops\linalg_vecdot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3203700Z copying torch\include\ATen\ops\linalg_vecdot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3210369Z copying torch\include\ATen\ops\linalg_vecdot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3218129Z copying torch\include\ATen\ops\linalg_vector_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3225172Z copying torch\include\ATen\ops\linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3232105Z copying torch\include\ATen\ops\linalg_vector_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3239065Z copying torch\include\ATen\ops\linalg_vector_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3247038Z copying torch\include\ATen\ops\linalg_vector_norm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3253037Z copying torch\include\ATen\ops\linalg_vector_norm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3260237Z copying torch\include\ATen\ops\linalg_vector_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3267129Z copying torch\include\ATen\ops\linalg_vector_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3274179Z copying torch\include\ATen\ops\linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3281054Z copying torch\include\ATen\ops\linear_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3287797Z copying torch\include\ATen\ops\linear_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3294480Z copying torch\include\ATen\ops\linear_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3301518Z copying torch\include\ATen\ops\linear_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3308773Z copying torch\include\ATen\ops\linear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3316187Z copying torch\include\ATen\ops\linear_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3322963Z copying torch\include\ATen\ops\linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3329566Z copying torch\include\ATen\ops\linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3336335Z copying torch\include\ATen\ops\linspace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3381937Z copying torch\include\ATen\ops\linspace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3389948Z copying torch\include\ATen\ops\linspace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3396230Z copying torch\include\ATen\ops\linspace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3403625Z copying torch\include\ATen\ops\linspace_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3410113Z copying torch\include\ATen\ops\linspace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3417020Z copying torch\include\ATen\ops\linspace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3423694Z copying torch\include\ATen\ops\log.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3430788Z copying torch\include\ATen\ops\log10.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3437339Z copying torch\include\ATen\ops\log10_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3443971Z copying torch\include\ATen\ops\log10_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3450656Z copying torch\include\ATen\ops\log10_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3457242Z copying torch\include\ATen\ops\log10_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3464059Z copying torch\include\ATen\ops\log10_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3470788Z copying torch\include\ATen\ops\log10_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3478414Z copying torch\include\ATen\ops\log10_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3484924Z copying torch\include\ATen\ops\log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3491891Z copying torch\include\ATen\ops\log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3498683Z copying torch\include\ATen\ops\log1p_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3505539Z copying torch\include\ATen\ops\log1p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3512185Z copying torch\include\ATen\ops\log1p_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3519088Z copying torch\include\ATen\ops\log1p_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3525727Z copying torch\include\ATen\ops\log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3532288Z copying torch\include\ATen\ops\log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3539025Z copying torch\include\ATen\ops\log2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3545814Z copying torch\include\ATen\ops\log2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3552403Z copying torch\include\ATen\ops\log2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3559118Z copying torch\include\ATen\ops\log2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3565592Z copying torch\include\ATen\ops\log2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3571986Z copying torch\include\ATen\ops\log2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3579500Z copying torch\include\ATen\ops\log2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3587879Z copying torch\include\ATen\ops\log2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3593961Z copying torch\include\ATen\ops\logaddexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3600479Z copying torch\include\ATen\ops\logaddexp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3607648Z copying torch\include\ATen\ops\logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3614837Z copying torch\include\ATen\ops\logaddexp2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3621487Z copying torch\include\ATen\ops\logaddexp2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3629493Z copying torch\include\ATen\ops\logaddexp2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3636307Z copying torch\include\ATen\ops\logaddexp2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3643370Z copying torch\include\ATen\ops\logaddexp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3650225Z copying torch\include\ATen\ops\logaddexp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3657489Z copying torch\include\ATen\ops\logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3665183Z copying torch\include\ATen\ops\logaddexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3672063Z copying torch\include\ATen\ops\logaddexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3678931Z copying torch\include\ATen\ops\logaddexp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3685855Z copying torch\include\ATen\ops\logaddexp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3692763Z copying torch\include\ATen\ops\logaddexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3732798Z copying torch\include\ATen\ops\logaddexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3739506Z copying torch\include\ATen\ops\logcumsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3747359Z copying torch\include\ATen\ops\logcumsumexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3753796Z copying torch\include\ATen\ops\logcumsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3760501Z copying torch\include\ATen\ops\logcumsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3767260Z copying torch\include\ATen\ops\logcumsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3774116Z copying torch\include\ATen\ops\logdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3780564Z copying torch\include\ATen\ops\logdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3787936Z copying torch\include\ATen\ops\logdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3794167Z copying torch\include\ATen\ops\logdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3801482Z copying torch\include\ATen\ops\logical_and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3809152Z copying torch\include\ATen\ops\logical_and_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3816930Z copying torch\include\ATen\ops\logical_and_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3824228Z copying torch\include\ATen\ops\logical_and_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3831704Z copying torch\include\ATen\ops\logical_and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3840353Z copying torch\include\ATen\ops\logical_and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3848326Z copying torch\include\ATen\ops\logical_not.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3856438Z copying torch\include\ATen\ops\logical_not_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3863994Z copying torch\include\ATen\ops\logical_not_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3872343Z copying torch\include\ATen\ops\logical_not_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3880423Z copying torch\include\ATen\ops\logical_not_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3889414Z copying torch\include\ATen\ops\logical_not_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3897180Z copying torch\include\ATen\ops\logical_or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3905155Z copying torch\include\ATen\ops\logical_or_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3912563Z copying torch\include\ATen\ops\logical_or_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3919772Z copying torch\include\ATen\ops\logical_or_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3927681Z copying torch\include\ATen\ops\logical_or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3934376Z copying torch\include\ATen\ops\logical_or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3941576Z copying torch\include\ATen\ops\logical_xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3949249Z copying torch\include\ATen\ops\logical_xor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3956633Z copying torch\include\ATen\ops\logical_xor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3964426Z copying torch\include\ATen\ops\logical_xor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3971718Z copying torch\include\ATen\ops\logical_xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3978329Z copying torch\include\ATen\ops\logical_xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3985177Z copying torch\include\ATen\ops\logit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3991604Z copying torch\include\ATen\ops\logit_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.3998643Z copying torch\include\ATen\ops\logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4005458Z copying torch\include\ATen\ops\logit_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4012677Z copying torch\include\ATen\ops\logit_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4019516Z copying torch\include\ATen\ops\logit_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4026329Z copying torch\include\ATen\ops\logit_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4033081Z copying torch\include\ATen\ops\logit_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4039888Z copying torch\include\ATen\ops\logit_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4046587Z copying torch\include\ATen\ops\logit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4053566Z copying torch\include\ATen\ops\logit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4060184Z copying torch\include\ATen\ops\logit_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4066953Z copying torch\include\ATen\ops\logit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4073700Z copying torch\include\ATen\ops\logit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4080395Z copying torch\include\ATen\ops\logspace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4087279Z copying torch\include\ATen\ops\logspace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4093639Z copying torch\include\ATen\ops\logspace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4100272Z copying torch\include\ATen\ops\logspace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4107107Z copying torch\include\ATen\ops\logspace_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4113744Z copying torch\include\ATen\ops\logspace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4120382Z copying torch\include\ATen\ops\logspace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4127090Z copying torch\include\ATen\ops\logsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4134035Z copying torch\include\ATen\ops\logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4140738Z copying torch\include\ATen\ops\logsumexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4147598Z copying torch\include\ATen\ops\logsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4155062Z copying torch\include\ATen\ops\logsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4161881Z copying torch\include\ATen\ops\logsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4168813Z copying torch\include\ATen\ops\log_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4175356Z copying torch\include\ATen\ops\log_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4182170Z copying torch\include\ATen\ops\log_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4188837Z copying torch\include\ATen\ops\log_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4195052Z copying torch\include\ATen\ops\log_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4201960Z copying torch\include\ATen\ops\log_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4208607Z copying torch\include\ATen\ops\log_normal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4215720Z copying torch\include\ATen\ops\log_normal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4222737Z copying torch\include\ATen\ops\log_normal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4229541Z copying torch\include\ATen\ops\log_normal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4236178Z copying torch\include\ATen\ops\log_normal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4242787Z copying torch\include\ATen\ops\log_normal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4249728Z copying torch\include\ATen\ops\log_normal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4256407Z copying torch\include\ATen\ops\log_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4263384Z copying torch\include\ATen\ops\log_sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4313552Z copying torch\include\ATen\ops\log_sigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4320319Z copying torch\include\ATen\ops\log_sigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4327273Z copying torch\include\ATen\ops\log_sigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4334365Z copying torch\include\ATen\ops\log_sigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4340975Z copying torch\include\ATen\ops\log_sigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4348170Z copying torch\include\ATen\ops\log_sigmoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4354836Z copying torch\include\ATen\ops\log_sigmoid_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4362125Z copying torch\include\ATen\ops\log_sigmoid_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4368890Z copying torch\include\ATen\ops\log_sigmoid_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4375841Z copying torch\include\ATen\ops\log_sigmoid_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4383196Z copying torch\include\ATen\ops\log_sigmoid_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4390798Z copying torch\include\ATen\ops\log_sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4397460Z copying torch\include\ATen\ops\log_sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4404237Z copying torch\include\ATen\ops\log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4411274Z copying torch\include\ATen\ops\log_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4418318Z copying torch\include\ATen\ops\log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4425152Z copying torch\include\ATen\ops\log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4432204Z copying torch\include\ATen\ops\log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4439248Z copying torch\include\ATen\ops\lshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4445807Z copying torch\include\ATen\ops\lshift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4476613Z copying torch\include\ATen\ops\lshift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4483020Z copying torch\include\ATen\ops\lshift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4489662Z copying torch\include\ATen\ops\lshift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4496176Z copying torch\include\ATen\ops\lshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4503153Z copying torch\include\ATen\ops\lshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4510182Z copying torch\include\ATen\ops\lstm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4516793Z copying torch\include\ATen\ops\lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4523599Z copying torch\include\ATen\ops\lstm_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4530232Z copying torch\include\ATen\ops\lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4536945Z copying torch\include\ATen\ops\lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4543779Z copying torch\include\ATen\ops\lstm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4550452Z copying torch\include\ATen\ops\lstm_mps_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4557479Z copying torch\include\ATen\ops\lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4564950Z copying torch\include\ATen\ops\lstm_mps_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4572123Z copying torch\include\ATen\ops\lstm_mps_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4579443Z copying torch\include\ATen\ops\lstm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4586526Z copying torch\include\ATen\ops\lstm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4593311Z copying torch\include\ATen\ops\lt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4600523Z copying torch\include\ATen\ops\lt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4607818Z copying torch\include\ATen\ops\lt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4615157Z copying torch\include\ATen\ops\lt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4622707Z copying torch\include\ATen\ops\lt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4630139Z copying torch\include\ATen\ops\lt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4637584Z copying torch\include\ATen\ops\lt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4644320Z copying torch\include\ATen\ops\lt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4650666Z copying torch\include\ATen\ops\lu_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4657674Z copying torch\include\ATen\ops\lu_solve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4664191Z copying torch\include\ATen\ops\lu_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4670946Z copying torch\include\ATen\ops\lu_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4677718Z copying torch\include\ATen\ops\lu_unpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4684980Z copying torch\include\ATen\ops\lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4691688Z copying torch\include\ATen\ops\lu_unpack_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4698772Z copying torch\include\ATen\ops\lu_unpack_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4705500Z copying torch\include\ATen\ops\lu_unpack_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4712547Z copying torch\include\ATen\ops\lu_unpack_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4719408Z copying torch\include\ATen\ops\lu_unpack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4728804Z copying torch\include\ATen\ops\lu_unpack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4735791Z copying torch\include\ATen\ops\margin_ranking_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4743409Z copying torch\include\ATen\ops\margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4749804Z copying torch\include\ATen\ops\margin_ranking_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4756633Z copying torch\include\ATen\ops\margin_ranking_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4763285Z copying torch\include\ATen\ops\masked_fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4770239Z copying torch\include\ATen\ops\masked_fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4777137Z copying torch\include\ATen\ops\masked_fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4783782Z copying torch\include\ATen\ops\masked_fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4790558Z copying torch\include\ATen\ops\masked_fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4797927Z copying torch\include\ATen\ops\masked_fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4804778Z copying torch\include\ATen\ops\masked_fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4811789Z copying torch\include\ATen\ops\masked_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4818626Z copying torch\include\ATen\ops\masked_scatter_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4826490Z copying torch\include\ATen\ops\masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4833459Z copying torch\include\ATen\ops\masked_scatter_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4841599Z copying torch\include\ATen\ops\masked_scatter_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4848379Z copying torch\include\ATen\ops\masked_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4855103Z copying torch\include\ATen\ops\masked_scatter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4861931Z copying torch\include\ATen\ops\masked_scatter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4869148Z copying torch\include\ATen\ops\masked_scatter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4876300Z copying torch\include\ATen\ops\masked_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4883312Z copying torch\include\ATen\ops\masked_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4890126Z copying torch\include\ATen\ops\masked_select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4896990Z copying torch\include\ATen\ops\masked_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4904081Z copying torch\include\ATen\ops\masked_select_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4911133Z copying torch\include\ATen\ops\masked_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4917969Z copying torch\include\ATen\ops\masked_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4924926Z copying torch\include\ATen\ops\masked_select_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4931485Z copying torch\include\ATen\ops\masked_select_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4938460Z copying torch\include\ATen\ops\masked_select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4945120Z copying torch\include\ATen\ops\masked_select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4951779Z copying torch\include\ATen\ops\matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4958551Z copying torch\include\ATen\ops\matmul_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4965634Z copying torch\include\ATen\ops\matmul_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4972092Z copying torch\include\ATen\ops\matmul_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4978744Z copying torch\include\ATen\ops\matmul_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4985610Z copying torch\include\ATen\ops\matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4992688Z copying torch\include\ATen\ops\matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.4999375Z copying torch\include\ATen\ops\matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5006152Z copying torch\include\ATen\ops\matrix_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5012897Z copying torch\include\ATen\ops\matrix_exp_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5021083Z copying torch\include\ATen\ops\matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5026963Z copying torch\include\ATen\ops\matrix_exp_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5033905Z copying torch\include\ATen\ops\matrix_exp_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5040547Z copying torch\include\ATen\ops\matrix_exp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5047012Z copying torch\include\ATen\ops\matrix_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5053415Z copying torch\include\ATen\ops\matrix_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5060225Z copying torch\include\ATen\ops\matrix_H.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5066561Z copying torch\include\ATen\ops\matrix_H_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5073260Z copying torch\include\ATen\ops\matrix_H_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5079644Z copying torch\include\ATen\ops\matrix_H_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5086337Z copying torch\include\ATen\ops\matrix_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5093258Z copying torch\include\ATen\ops\matrix_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5105068Z copying torch\include\ATen\ops\matrix_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5112008Z copying torch\include\ATen\ops\matrix_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5118640Z copying torch\include\ATen\ops\max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5124778Z copying torch\include\ATen\ops\maximum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5131518Z copying torch\include\ATen\ops\maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5137960Z copying torch\include\ATen\ops\maximum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5145846Z copying torch\include\ATen\ops\maximum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5152560Z copying torch\include\ATen\ops\maximum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5159430Z copying torch\include\ATen\ops\maximum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5166540Z copying torch\include\ATen\ops\maximum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5173502Z copying torch\include\ATen\ops\maximum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5181176Z copying torch\include\ATen\ops\max_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5188119Z copying torch\include\ATen\ops\max_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5195038Z copying torch\include\ATen\ops\max_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5201579Z copying torch\include\ATen\ops\max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5208141Z copying torch\include\ATen\ops\max_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5215325Z copying torch\include\ATen\ops\max_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5222027Z copying torch\include\ATen\ops\max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5228944Z copying torch\include\ATen\ops\max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5235297Z copying torch\include\ATen\ops\max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5242233Z copying torch\include\ATen\ops\max_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5248873Z copying torch\include\ATen\ops\max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5256283Z copying torch\include\ATen\ops\max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5263505Z copying torch\include\ATen\ops\max_pool1d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5270668Z copying torch\include\ATen\ops\max_pool1d_with_indices_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5277430Z copying torch\include\ATen\ops\max_pool1d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5284307Z copying torch\include\ATen\ops\max_pool1d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5290887Z copying torch\include\ATen\ops\max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5642718Z copying torch\include\ATen\ops\max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5643811Z copying torch\include\ATen\ops\max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5644760Z copying torch\include\ATen\ops\max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5645564Z copying torch\include\ATen\ops\max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5646565Z copying torch\include\ATen\ops\max_pool2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5648588Z copying torch\include\ATen\ops\max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5649403Z copying torch\include\ATen\ops\max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5650163Z copying torch\include\ATen\ops\max_pool2d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5650977Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5652123Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5654254Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5655193Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5656122Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5657088Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5658013Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5659891Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5660931Z copying torch\include\ATen\ops\max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5662036Z copying torch\include\ATen\ops\max_pool2d_with_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5662981Z copying torch\include\ATen\ops\max_pool2d_with_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5663822Z copying torch\include\ATen\ops\max_pool2d_with_indices_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5665662Z copying torch\include\ATen\ops\max_pool2d_with_indices_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5666579Z copying torch\include\ATen\ops\max_pool2d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5667459Z copying torch\include\ATen\ops\max_pool2d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5668283Z copying torch\include\ATen\ops\max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5669114Z copying torch\include\ATen\ops\max_pool3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5671023Z copying torch\include\ATen\ops\max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5671768Z copying torch\include\ATen\ops\max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5672500Z copying torch\include\ATen\ops\max_pool3d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5673317Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5674201Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5675213Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5677128Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5678131Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5678995Z copying torch\include\ATen\ops\max_pool3d_with_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5679869Z copying torch\include\ATen\ops\max_pool3d_with_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5680716Z copying torch\include\ATen\ops\max_pool3d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5682155Z copying torch\include\ATen\ops\max_pool3d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5683309Z copying torch\include\ATen\ops\max_unpool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5684072Z copying torch\include\ATen\ops\max_unpool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5684880Z copying torch\include\ATen\ops\max_unpool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5686738Z copying torch\include\ATen\ops\max_unpool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5693374Z copying torch\include\ATen\ops\max_unpool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5700351Z copying torch\include\ATen\ops\max_unpool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5707425Z copying torch\include\ATen\ops\max_unpool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5714478Z copying torch\include\ATen\ops\max_unpool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5721906Z copying torch\include\ATen\ops\max_unpool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5729005Z copying torch\include\ATen\ops\max_unpool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5735527Z copying torch\include\ATen\ops\mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5742408Z copying torch\include\ATen\ops\mean_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5749270Z copying torch\include\ATen\ops\mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5756207Z copying torch\include\ATen\ops\mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5762891Z copying torch\include\ATen\ops\mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5770037Z copying torch\include\ATen\ops\mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5776799Z copying torch\include\ATen\ops\mean_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5783623Z copying torch\include\ATen\ops\mean_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5790238Z copying torch\include\ATen\ops\mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5797233Z copying torch\include\ATen\ops\mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5803717Z copying torch\include\ATen\ops\median.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5810457Z copying torch\include\ATen\ops\median_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5817294Z copying torch\include\ATen\ops\median_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5824208Z copying torch\include\ATen\ops\median_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5831632Z copying torch\include\ATen\ops\median_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5838194Z copying torch\include\ATen\ops\median_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5844919Z copying torch\include\ATen\ops\median_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5855566Z copying torch\include\ATen\ops\meshgrid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5862258Z copying torch\include\ATen\ops\meshgrid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5869530Z copying torch\include\ATen\ops\meshgrid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5876354Z copying torch\include\ATen\ops\meshgrid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5883190Z copying torch\include\ATen\ops\mH.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5889216Z copying torch\include\ATen\ops\mH_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5895576Z copying torch\include\ATen\ops\mH_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5901964Z copying torch\include\ATen\ops\mH_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5912810Z copying torch\include\ATen\ops\min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5919340Z copying torch\include\ATen\ops\minimum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5926151Z copying torch\include\ATen\ops\minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5932886Z copying torch\include\ATen\ops\minimum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5940837Z copying torch\include\ATen\ops\minimum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5948037Z copying torch\include\ATen\ops\minimum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5954942Z copying torch\include\ATen\ops\minimum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5962176Z copying torch\include\ATen\ops\minimum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5968914Z copying torch\include\ATen\ops\minimum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5975875Z copying torch\include\ATen\ops\min_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5982747Z copying torch\include\ATen\ops\min_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5989628Z copying torch\include\ATen\ops\min_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.5996776Z copying torch\include\ATen\ops\min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6003459Z copying torch\include\ATen\ops\min_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6009805Z copying torch\include\ATen\ops\min_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6016188Z copying torch\include\ATen\ops\min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6022694Z copying torch\include\ATen\ops\min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6029272Z copying torch\include\ATen\ops\miopen_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6036005Z copying torch\include\ATen\ops\miopen_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6042753Z copying torch\include\ATen\ops\miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6049392Z copying torch\include\ATen\ops\miopen_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6056117Z copying torch\include\ATen\ops\miopen_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6139063Z copying torch\include\ATen\ops\miopen_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6146417Z copying torch\include\ATen\ops\miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6153514Z copying torch\include\ATen\ops\miopen_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6160262Z copying torch\include\ATen\ops\miopen_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6167154Z copying torch\include\ATen\ops\miopen_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6173902Z copying torch\include\ATen\ops\miopen_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6180799Z copying torch\include\ATen\ops\miopen_convolution_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6198301Z copying torch\include\ATen\ops\miopen_convolution_add_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6205780Z copying torch\include\ATen\ops\miopen_convolution_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6212867Z copying torch\include\ATen\ops\miopen_convolution_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6221415Z copying torch\include\ATen\ops\miopen_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6228345Z copying torch\include\ATen\ops\miopen_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6235269Z copying torch\include\ATen\ops\miopen_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6242683Z copying torch\include\ATen\ops\miopen_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6249690Z copying torch\include\ATen\ops\miopen_convolution_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6257103Z copying torch\include\ATen\ops\miopen_convolution_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6263894Z copying torch\include\ATen\ops\miopen_convolution_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6270870Z copying torch\include\ATen\ops\miopen_convolution_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6277813Z copying torch\include\ATen\ops\miopen_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6285910Z copying torch\include\ATen\ops\miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6292732Z copying torch\include\ATen\ops\miopen_convolution_transpose_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6299746Z copying torch\include\ATen\ops\miopen_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6310954Z copying torch\include\ATen\ops\miopen_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6317852Z copying torch\include\ATen\ops\miopen_depthwise_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6594585Z copying torch\include\ATen\ops\miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6601242Z copying torch\include\ATen\ops\miopen_depthwise_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6608436Z copying torch\include\ATen\ops\miopen_depthwise_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6615297Z copying torch\include\ATen\ops\miopen_depthwise_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6622053Z copying torch\include\ATen\ops\miopen_rnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6628645Z copying torch\include\ATen\ops\miopen_rnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6636004Z copying torch\include\ATen\ops\miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6642809Z copying torch\include\ATen\ops\miopen_rnn_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6649784Z copying torch\include\ATen\ops\miopen_rnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6656591Z copying torch\include\ATen\ops\miopen_rnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6664023Z copying torch\include\ATen\ops\miopen_rnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6671298Z copying torch\include\ATen\ops\miopen_rnn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6678068Z copying torch\include\ATen\ops\miopen_rnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6684875Z copying torch\include\ATen\ops\miopen_rnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6691987Z copying torch\include\ATen\ops\mish.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6698596Z copying torch\include\ATen\ops\mish_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6706151Z copying torch\include\ATen\ops\mish_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6713048Z copying torch\include\ATen\ops\mish_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6719774Z copying torch\include\ATen\ops\mish_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6726539Z copying torch\include\ATen\ops\mish_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6733308Z copying torch\include\ATen\ops\mish_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6740988Z copying torch\include\ATen\ops\mish_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6747793Z copying torch\include\ATen\ops\mish_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6754497Z copying torch\include\ATen\ops\mish_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6761142Z copying torch\include\ATen\ops\mish_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6767888Z copying torch\include\ATen\ops\mish_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6774791Z copying torch\include\ATen\ops\mish_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6781725Z copying torch\include\ATen\ops\mish_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6788491Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6795251Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6806711Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6813562Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6821264Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6828085Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6835125Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6842595Z copying torch\include\ATen\ops\mkldnn_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6849955Z copying torch\include\ATen\ops\mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6856571Z copying torch\include\ATen\ops\mkldnn_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6863429Z copying torch\include\ATen\ops\mkldnn_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6870231Z copying torch\include\ATen\ops\mkldnn_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6877031Z copying torch\include\ATen\ops\mkldnn_linear_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6884316Z copying torch\include\ATen\ops\mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6892542Z copying torch\include\ATen\ops\mkldnn_linear_backward_input.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6901887Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6905871Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6913804Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6919874Z copying torch\include\ATen\ops\mkldnn_linear_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6926980Z copying torch\include\ATen\ops\mkldnn_linear_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6933823Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6941012Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6947841Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6954974Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6961899Z copying torch\include\ATen\ops\mkldnn_linear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6968758Z copying torch\include\ATen\ops\mkldnn_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6976017Z copying torch\include\ATen\ops\mkldnn_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6984171Z copying torch\include\ATen\ops\mkldnn_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6990111Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.6997989Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7005002Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7012036Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7019069Z copying torch\include\ATen\ops\mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7025795Z copying torch\include\ATen\ops\mkldnn_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7032626Z copying torch\include\ATen\ops\mkldnn_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7039941Z copying torch\include\ATen\ops\mkldnn_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7046811Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7054124Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7060855Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7067881Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7074862Z copying torch\include\ATen\ops\mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7081579Z copying torch\include\ATen\ops\mkldnn_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7088348Z copying torch\include\ATen\ops\mkldnn_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7095227Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7102324Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7109304Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7116183Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7122903Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7130009Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7137462Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7144334Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7151459Z copying torch\include\ATen\ops\mkldnn_rnn_layer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7158299Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7165268Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7172545Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7179753Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7186577Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7193804Z copying torch\include\ATen\ops\mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7204248Z copying torch\include\ATen\ops\mkldnn_rnn_layer_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7211158Z copying torch\include\ATen\ops\mkldnn_rnn_layer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7218059Z copying torch\include\ATen\ops\mkldnn_rnn_layer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7224656Z copying torch\include\ATen\ops\mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7231776Z copying torch\include\ATen\ops\mm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7239153Z copying torch\include\ATen\ops\mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7246811Z copying torch\include\ATen\ops\mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7253810Z copying torch\include\ATen\ops\mm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7260312Z copying torch\include\ATen\ops\mm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7267025Z copying torch\include\ATen\ops\mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7274063Z copying torch\include\ATen\ops\mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7280544Z copying torch\include\ATen\ops\mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7287179Z copying torch\include\ATen\ops\mode_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7294179Z copying torch\include\ATen\ops\mode_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7300778Z copying torch\include\ATen\ops\mode_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7307503Z copying torch\include\ATen\ops\mode_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7314641Z copying torch\include\ATen\ops\mode_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7321107Z copying torch\include\ATen\ops\mode_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7327665Z copying torch\include\ATen\ops\moveaxis.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7334987Z copying torch\include\ATen\ops\moveaxis_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7341444Z copying torch\include\ATen\ops\moveaxis_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7348175Z copying torch\include\ATen\ops\moveaxis_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7355032Z copying torch\include\ATen\ops\movedim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7361917Z copying torch\include\ATen\ops\movedim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7368298Z copying torch\include\ATen\ops\movedim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7375159Z copying torch\include\ATen\ops\movedim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7382392Z copying torch\include\ATen\ops\mps_convolution_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7390331Z copying torch\include\ATen\ops\mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7422167Z copying torch\include\ATen\ops\mps_convolution_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7423038Z copying torch\include\ATen\ops\mps_convolution_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7423893Z copying torch\include\ATen\ops\mps_convolution_transpose_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7424920Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7429622Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7435628Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7441988Z copying torch\include\ATen\ops\mse_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7448634Z copying torch\include\ATen\ops\mse_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7460329Z copying torch\include\ATen\ops\mse_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7467588Z copying torch\include\ATen\ops\mse_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7474326Z copying torch\include\ATen\ops\mse_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7481234Z copying torch\include\ATen\ops\mse_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7488319Z copying torch\include\ATen\ops\mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7495022Z copying torch\include\ATen\ops\mse_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7501720Z copying torch\include\ATen\ops\mse_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7508722Z copying torch\include\ATen\ops\mse_loss_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7515694Z copying torch\include\ATen\ops\mse_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7523036Z copying torch\include\ATen\ops\mse_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7529842Z copying torch\include\ATen\ops\mse_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7536472Z copying torch\include\ATen\ops\msort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7543031Z copying torch\include\ATen\ops\msort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7549759Z copying torch\include\ATen\ops\msort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7555956Z copying torch\include\ATen\ops\msort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7562552Z copying torch\include\ATen\ops\mT.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7569000Z copying torch\include\ATen\ops\mT_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7575712Z copying torch\include\ATen\ops\mT_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7581943Z copying torch\include\ATen\ops\mT_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7588370Z copying torch\include\ATen\ops\mul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7599286Z copying torch\include\ATen\ops\multilabel_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7606633Z copying torch\include\ATen\ops\multilabel_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7613389Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7620145Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7627016Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7633896Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7640978Z copying torch\include\ATen\ops\multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7647573Z copying torch\include\ATen\ops\multilabel_margin_loss_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7654591Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7661313Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7668905Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7675777Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7682526Z copying torch\include\ATen\ops\multilabel_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7689413Z copying torch\include\ATen\ops\multilabel_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7696169Z copying torch\include\ATen\ops\multinomial.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7703715Z copying torch\include\ATen\ops\multinomial_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7715090Z copying torch\include\ATen\ops\multinomial_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7721716Z copying torch\include\ATen\ops\multinomial_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7728814Z copying torch\include\ATen\ops\multinomial_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7735662Z copying torch\include\ATen\ops\multiply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7742466Z copying torch\include\ATen\ops\multiply_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7749622Z copying torch\include\ATen\ops\multiply_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7755866Z copying torch\include\ATen\ops\multiply_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7762668Z copying torch\include\ATen\ops\multi_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7769735Z copying torch\include\ATen\ops\multi_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7776583Z copying torch\include\ATen\ops\multi_margin_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7784089Z copying torch\include\ATen\ops\multi_margin_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7819068Z copying torch\include\ATen\ops\multi_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7825645Z copying torch\include\ATen\ops\multi_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7832779Z copying torch\include\ATen\ops\multi_margin_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7839830Z copying torch\include\ATen\ops\multi_margin_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7847201Z copying torch\include\ATen\ops\multi_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7853527Z copying torch\include\ATen\ops\multi_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7860946Z copying torch\include\ATen\ops\mul_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7867693Z copying torch\include\ATen\ops\mul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7874306Z copying torch\include\ATen\ops\mul_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7881497Z copying torch\include\ATen\ops\mul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7887965Z copying torch\include\ATen\ops\mul_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7903962Z copying torch\include\ATen\ops\mul_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7904801Z copying torch\include\ATen\ops\mul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7946497Z copying torch\include\ATen\ops\mul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7952795Z copying torch\include\ATen\ops\mv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7959339Z copying torch\include\ATen\ops\mvlgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7965928Z copying torch\include\ATen\ops\mvlgamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7972450Z copying torch\include\ATen\ops\mvlgamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7979285Z copying torch\include\ATen\ops\mvlgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7986407Z copying torch\include\ATen\ops\mvlgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.7994286Z copying torch\include\ATen\ops\mvlgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8001006Z copying torch\include\ATen\ops\mv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8007723Z copying torch\include\ATen\ops\mv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8014423Z copying torch\include\ATen\ops\mv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8020667Z copying torch\include\ATen\ops\nanmean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8027224Z copying torch\include\ATen\ops\nanmean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8034101Z copying torch\include\ATen\ops\nanmean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8040711Z copying torch\include\ATen\ops\nanmean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8047459Z copying torch\include\ATen\ops\nanmedian.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8059354Z copying torch\include\ATen\ops\nanmedian_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8066241Z copying torch\include\ATen\ops\nanmedian_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8073413Z copying torch\include\ATen\ops\nanmedian_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8080050Z copying torch\include\ATen\ops\nanmedian_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8086968Z copying torch\include\ATen\ops\nanmedian_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8093634Z copying torch\include\ATen\ops\nanmedian_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8100175Z copying torch\include\ATen\ops\nanquantile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8107475Z copying torch\include\ATen\ops\nanquantile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8126465Z copying torch\include\ATen\ops\nanquantile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8133300Z copying torch\include\ATen\ops\nanquantile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8139926Z copying torch\include\ATen\ops\nansum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8147778Z copying torch\include\ATen\ops\nansum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8154872Z copying torch\include\ATen\ops\nansum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8162394Z copying torch\include\ATen\ops\nansum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8169602Z copying torch\include\ATen\ops\nansum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8177389Z copying torch\include\ATen\ops\nan_to_num.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8184970Z copying torch\include\ATen\ops\nan_to_num_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8192413Z copying torch\include\ATen\ops\nan_to_num_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8199546Z copying torch\include\ATen\ops\nan_to_num_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8206702Z copying torch\include\ATen\ops\nan_to_num_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8213570Z copying torch\include\ATen\ops\nan_to_num_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8220659Z copying torch\include\ATen\ops\narrow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8227773Z copying torch\include\ATen\ops\narrow_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8235653Z copying torch\include\ATen\ops\narrow_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8243009Z copying torch\include\ATen\ops\narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8250526Z copying torch\include\ATen\ops\narrow_copy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8257743Z copying torch\include\ATen\ops\narrow_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8264911Z copying torch\include\ATen\ops\narrow_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8272078Z copying torch\include\ATen\ops\narrow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8278732Z copying torch\include\ATen\ops\narrow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8286649Z copying torch\include\ATen\ops\native_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8293943Z copying torch\include\ATen\ops\native_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8301383Z copying torch\include\ATen\ops\native_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8308807Z copying torch\include\ATen\ops\native_batch_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8316239Z copying torch\include\ATen\ops\native_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8323265Z copying torch\include\ATen\ops\native_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8330671Z copying torch\include\ATen\ops\native_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8337582Z copying torch\include\ATen\ops\native_batch_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8345972Z copying torch\include\ATen\ops\native_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8354232Z copying torch\include\ATen\ops\native_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8362454Z copying torch\include\ATen\ops\native_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8369881Z copying torch\include\ATen\ops\native_channel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8377301Z copying torch\include\ATen\ops\native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8384232Z copying torch\include\ATen\ops\native_channel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8391339Z copying torch\include\ATen\ops\native_channel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8398955Z copying torch\include\ATen\ops\native_channel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8406722Z copying torch\include\ATen\ops\native_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8413915Z copying torch\include\ATen\ops\native_dropout_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8421349Z copying torch\include\ATen\ops\native_dropout_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8429310Z copying torch\include\ATen\ops\native_dropout_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8436824Z copying torch\include\ATen\ops\native_dropout_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8445005Z copying torch\include\ATen\ops\native_dropout_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8452165Z copying torch\include\ATen\ops\native_dropout_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8459758Z copying torch\include\ATen\ops\native_dropout_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8467072Z copying torch\include\ATen\ops\native_dropout_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8475147Z copying torch\include\ATen\ops\native_dropout_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8482001Z copying torch\include\ATen\ops\native_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.8489190Z copying torch\include\ATen\ops\native_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9082916Z copying torch\include\ATen\ops\native_group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9089675Z copying torch\include\ATen\ops\native_group_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9097031Z copying torch\include\ATen\ops\native_group_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9103835Z copying torch\include\ATen\ops\native_group_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9111336Z copying torch\include\ATen\ops\native_group_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9117706Z copying torch\include\ATen\ops\native_group_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9124842Z copying torch\include\ATen\ops\native_group_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9131804Z copying torch\include\ATen\ops\native_group_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9138551Z copying torch\include\ATen\ops\native_group_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9145884Z copying torch\include\ATen\ops\native_group_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9167225Z copying torch\include\ATen\ops\native_group_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9174033Z copying torch\include\ATen\ops\native_group_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9181279Z copying torch\include\ATen\ops\native_layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9188394Z copying torch\include\ATen\ops\native_layer_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9195599Z copying torch\include\ATen\ops\native_layer_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9202688Z copying torch\include\ATen\ops\native_layer_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9209670Z copying torch\include\ATen\ops\native_layer_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9216613Z copying torch\include\ATen\ops\native_layer_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9228597Z copying torch\include\ATen\ops\native_layer_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9235701Z copying torch\include\ATen\ops\native_layer_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9242600Z copying torch\include\ATen\ops\native_layer_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9249540Z copying torch\include\ATen\ops\native_layer_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9256737Z copying torch\include\ATen\ops\native_layer_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9263570Z copying torch\include\ATen\ops\native_layer_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9270694Z copying torch\include\ATen\ops\native_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9277901Z copying torch\include\ATen\ops\native_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9284963Z copying torch\include\ATen\ops\native_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9291733Z copying torch\include\ATen\ops\native_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9298399Z copying torch\include\ATen\ops\ne.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9304900Z copying torch\include\ATen\ops\neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9311763Z copying torch\include\ATen\ops\negative.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9318650Z copying torch\include\ATen\ops\negative_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9325379Z copying torch\include\ATen\ops\negative_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9332358Z copying torch\include\ATen\ops\negative_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9351782Z copying torch\include\ATen\ops\neg_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9354688Z copying torch\include\ATen\ops\neg_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9361769Z copying torch\include\ATen\ops\neg_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9369348Z copying torch\include\ATen\ops\neg_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9378954Z copying torch\include\ATen\ops\neg_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9385786Z copying torch\include\ATen\ops\neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9392567Z copying torch\include\ATen\ops\neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9399417Z copying torch\include\ATen\ops\nested_to_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9406520Z copying torch\include\ATen\ops\nested_to_padded_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9440576Z copying torch\include\ATen\ops\nested_to_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9441538Z copying torch\include\ATen\ops\nested_to_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9442280Z copying torch\include\ATen\ops\new_empty.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9443164Z copying torch\include\ATen\ops\new_empty_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9444558Z copying torch\include\ATen\ops\new_empty_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9452589Z copying torch\include\ATen\ops\new_empty_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9458592Z copying torch\include\ATen\ops\new_empty_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9465973Z copying torch\include\ATen\ops\new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9472910Z copying torch\include\ATen\ops\new_empty_strided_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9479922Z copying torch\include\ATen\ops\new_empty_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9486701Z copying torch\include\ATen\ops\new_empty_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9493475Z copying torch\include\ATen\ops\new_full.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9500037Z copying torch\include\ATen\ops\new_full_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9506554Z copying torch\include\ATen\ops\new_full_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9513362Z copying torch\include\ATen\ops\new_full_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9519932Z copying torch\include\ATen\ops\new_ones.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9526781Z copying torch\include\ATen\ops\new_ones_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9533505Z copying torch\include\ATen\ops\new_ones_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9544774Z copying torch\include\ATen\ops\new_ones_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9551482Z copying torch\include\ATen\ops\new_zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9558351Z copying torch\include\ATen\ops\new_zeros_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9564956Z copying torch\include\ATen\ops\new_zeros_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9571707Z copying torch\include\ATen\ops\new_zeros_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9578208Z copying torch\include\ATen\ops\nextafter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9585927Z copying torch\include\ATen\ops\nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9592732Z copying torch\include\ATen\ops\nextafter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9599528Z copying torch\include\ATen\ops\nextafter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9606109Z copying torch\include\ATen\ops\nextafter_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9612987Z copying torch\include\ATen\ops\nextafter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9619681Z copying torch\include\ATen\ops\nextafter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9626295Z copying torch\include\ATen\ops\nextafter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9633497Z copying torch\include\ATen\ops\ne_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9640127Z copying torch\include\ATen\ops\ne_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9646688Z copying torch\include\ATen\ops\ne_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9653232Z copying torch\include\ATen\ops\ne_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9659526Z copying torch\include\ATen\ops\ne_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9666053Z copying torch\include\ATen\ops\ne_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9672771Z copying torch\include\ATen\ops\ne_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9679184Z copying torch\include\ATen\ops\nll_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9685478Z copying torch\include\ATen\ops\nll_loss2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9692639Z copying torch\include\ATen\ops\nll_loss2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9699468Z copying torch\include\ATen\ops\nll_loss2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9706139Z copying torch\include\ATen\ops\nll_loss2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9712951Z copying torch\include\ATen\ops\nll_loss2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9720047Z copying torch\include\ATen\ops\nll_loss2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9726946Z copying torch\include\ATen\ops\nll_loss2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9733630Z copying torch\include\ATen\ops\nll_loss2d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9741296Z copying torch\include\ATen\ops\nll_loss2d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9747773Z copying torch\include\ATen\ops\nll_loss2d_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9754815Z copying torch\include\ATen\ops\nll_loss2d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9761736Z copying torch\include\ATen\ops\nll_loss2d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9768276Z copying torch\include\ATen\ops\nll_loss2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9775168Z copying torch\include\ATen\ops\nll_loss2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9809606Z copying torch\include\ATen\ops\nll_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9816758Z copying torch\include\ATen\ops\nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9823950Z copying torch\include\ATen\ops\nll_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9831556Z copying torch\include\ATen\ops\nll_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9837760Z copying torch\include\ATen\ops\nll_loss_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9844531Z copying torch\include\ATen\ops\nll_loss_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9851207Z copying torch\include\ATen\ops\nll_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9858515Z copying torch\include\ATen\ops\nll_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9865465Z copying torch\include\ATen\ops\nll_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9877208Z copying torch\include\ATen\ops\nll_loss_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9884357Z copying torch\include\ATen\ops\nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9891032Z copying torch\include\ATen\ops\nll_loss_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9897850Z copying torch\include\ATen\ops\nll_loss_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9904845Z copying torch\include\ATen\ops\nll_loss_forward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9911821Z copying torch\include\ATen\ops\nll_loss_forward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9918972Z copying torch\include\ATen\ops\nll_loss_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9926950Z copying torch\include\ATen\ops\nll_loss_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9970803Z copying torch\include\ATen\ops\nll_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9971520Z copying torch\include\ATen\ops\nll_loss_nd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9972357Z copying torch\include\ATen\ops\nll_loss_nd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9973299Z copying torch\include\ATen\ops\nll_loss_nd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9974035Z copying torch\include\ATen\ops\nll_loss_nd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9974742Z copying torch\include\ATen\ops\nll_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9980094Z copying torch\include\ATen\ops\nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9986730Z copying torch\include\ATen\ops\nonzero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:36.9999241Z copying torch\include\ATen\ops\nonzero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0005960Z copying torch\include\ATen\ops\nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0013700Z copying torch\include\ATen\ops\nonzero_numpy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0022453Z copying torch\include\ATen\ops\nonzero_numpy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0028319Z copying torch\include\ATen\ops\nonzero_numpy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0034829Z copying torch\include\ATen\ops\nonzero_numpy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0041539Z copying torch\include\ATen\ops\nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0048319Z copying torch\include\ATen\ops\nonzero_static.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0055349Z copying torch\include\ATen\ops\nonzero_static_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0062210Z copying torch\include\ATen\ops\nonzero_static_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0069473Z copying torch\include\ATen\ops\nonzero_static_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0076277Z copying torch\include\ATen\ops\nonzero_static_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0083151Z copying torch\include\ATen\ops\norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0089476Z copying torch\include\ATen\ops\normal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0096151Z copying torch\include\ATen\ops\normal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0102705Z copying torch\include\ATen\ops\normal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0109700Z copying torch\include\ATen\ops\normal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0116368Z copying torch\include\ATen\ops\normal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0123149Z copying torch\include\ATen\ops\normal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0129856Z copying torch\include\ATen\ops\normal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0137069Z copying torch\include\ATen\ops\norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0143839Z copying torch\include\ATen\ops\norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0151069Z copying torch\include\ATen\ops\norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0157804Z copying torch\include\ATen\ops\norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0164597Z copying torch\include\ATen\ops\norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0171479Z copying torch\include\ATen\ops\norm_except_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0178476Z copying torch\include\ATen\ops\norm_except_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0185083Z copying torch\include\ATen\ops\norm_except_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0191786Z copying torch\include\ATen\ops\norm_except_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0198612Z copying torch\include\ATen\ops\norm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0205193Z copying torch\include\ATen\ops\norm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0212196Z copying torch\include\ATen\ops\norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0224216Z copying torch\include\ATen\ops\norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0230693Z copying torch\include\ATen\ops\not_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0242055Z copying torch\include\ATen\ops\not_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0252950Z copying torch\include\ATen\ops\not_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0268889Z copying torch\include\ATen\ops\not_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0275783Z copying torch\include\ATen\ops\nuclear_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0282711Z copying torch\include\ATen\ops\nuclear_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0289366Z copying torch\include\ATen\ops\nuclear_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0296249Z copying torch\include\ATen\ops\nuclear_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0302925Z copying torch\include\ATen\ops\numpy_T.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0309438Z copying torch\include\ATen\ops\numpy_T_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0316058Z copying torch\include\ATen\ops\numpy_T_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0326487Z copying torch\include\ATen\ops\numpy_T_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0332946Z copying torch\include\ATen\ops\ones.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0339919Z copying torch\include\ATen\ops\ones_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0346545Z copying torch\include\ATen\ops\ones_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0358290Z copying torch\include\ATen\ops\ones_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0365000Z copying torch\include\ATen\ops\ones_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0371689Z copying torch\include\ATen\ops\ones_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0378465Z copying torch\include\ATen\ops\ones_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0385051Z copying torch\include\ATen\ops\ones_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0391477Z copying torch\include\ATen\ops\one_hot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0397961Z copying torch\include\ATen\ops\one_hot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0404625Z copying torch\include\ATen\ops\one_hot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0411697Z copying torch\include\ATen\ops\one_hot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0418472Z copying torch\include\ATen\ops\or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0462579Z copying torch\include\ATen\ops\orgqr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0463411Z copying torch\include\ATen\ops\orgqr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0464245Z copying torch\include\ATen\ops\orgqr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0464929Z copying torch\include\ATen\ops\orgqr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0465600Z copying torch\include\ATen\ops\ormqr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0466410Z copying torch\include\ATen\ops\ormqr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0474658Z copying torch\include\ATen\ops\ormqr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0480819Z copying torch\include\ATen\ops\ormqr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0487922Z copying torch\include\ATen\ops\ormqr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0519284Z copying torch\include\ATen\ops\or_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0529647Z copying torch\include\ATen\ops\or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0535872Z copying torch\include\ATen\ops\or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0542066Z copying torch\include\ATen\ops\outer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0548873Z copying torch\include\ATen\ops\outer_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0555559Z copying torch\include\ATen\ops\outer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0562672Z copying torch\include\ATen\ops\outer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0569790Z copying torch\include\ATen\ops\output_nr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0576036Z copying torch\include\ATen\ops\output_nr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0582439Z copying torch\include\ATen\ops\output_nr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0588967Z copying torch\include\ATen\ops\output_nr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0595449Z copying torch\include\ATen\ops\pad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0602055Z copying torch\include\ATen\ops\pad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0608769Z copying torch\include\ATen\ops\pad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0615077Z copying torch\include\ATen\ops\pad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0621236Z copying torch\include\ATen\ops\pad_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0629039Z copying torch\include\ATen\ops\pad_sequence_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0643646Z copying torch\include\ATen\ops\pad_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0650420Z copying torch\include\ATen\ops\pad_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0657327Z copying torch\include\ATen\ops\pairwise_distance.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0664090Z copying torch\include\ATen\ops\pairwise_distance_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0671027Z copying torch\include\ATen\ops\pairwise_distance_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0677951Z copying torch\include\ATen\ops\pairwise_distance_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0685066Z copying torch\include\ATen\ops\pdist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0691500Z copying torch\include\ATen\ops\pdist_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0698079Z copying torch\include\ATen\ops\pdist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0704456Z copying torch\include\ATen\ops\pdist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0711333Z copying torch\include\ATen\ops\permute.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0717822Z copying torch\include\ATen\ops\permute_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0724270Z copying torch\include\ATen\ops\permute_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0732704Z copying torch\include\ATen\ops\permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0739089Z copying torch\include\ATen\ops\permute_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0745849Z copying torch\include\ATen\ops\permute_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0753197Z copying torch\include\ATen\ops\permute_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0760248Z copying torch\include\ATen\ops\permute_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0767092Z copying torch\include\ATen\ops\permute_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0773877Z copying torch\include\ATen\ops\pinverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0780597Z copying torch\include\ATen\ops\pinverse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0787110Z copying torch\include\ATen\ops\pinverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0793667Z copying torch\include\ATen\ops\pinverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0800381Z copying torch\include\ATen\ops\pin_memory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0811939Z copying torch\include\ATen\ops\pin_memory_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0819138Z copying torch\include\ATen\ops\pin_memory_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0825499Z copying torch\include\ATen\ops\pin_memory_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0832412Z copying torch\include\ATen\ops\pixel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0844156Z copying torch\include\ATen\ops\pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0851217Z copying torch\include\ATen\ops\pixel_shuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0857943Z copying torch\include\ATen\ops\pixel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0865064Z copying torch\include\ATen\ops\pixel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0876791Z copying torch\include\ATen\ops\pixel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0883207Z copying torch\include\ATen\ops\pixel_unshuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0890608Z copying torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0897535Z copying torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0909129Z copying torch\include\ATen\ops\pixel_unshuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0931670Z copying torch\include\ATen\ops\pixel_unshuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0932465Z copying torch\include\ATen\ops\pixel_unshuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0933261Z copying torch\include\ATen\ops\poisson.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0943885Z copying torch\include\ATen\ops\poisson_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0950915Z copying torch\include\ATen\ops\poisson_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0957871Z copying torch\include\ATen\ops\poisson_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0964765Z copying torch\include\ATen\ops\poisson_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0971734Z copying torch\include\ATen\ops\poisson_nll_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0979089Z copying torch\include\ATen\ops\poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0986135Z copying torch\include\ATen\ops\poisson_nll_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0993018Z copying torch\include\ATen\ops\poisson_nll_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.0999656Z copying torch\include\ATen\ops\poisson_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.1006286Z copying torch\include\ATen\ops\polar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.1014010Z copying torch\include\ATen\ops\polar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.1944608Z copying torch\include\ATen\ops\polar_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.1956564Z copying torch\include\ATen\ops\polar_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.1963931Z copying torch\include\ATen\ops\polar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.1970837Z copying torch\include\ATen\ops\polar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.1977952Z copying torch\include\ATen\ops\polygamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.1984887Z copying torch\include\ATen\ops\polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.1991984Z copying torch\include\ATen\ops\polygamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.1998678Z copying torch\include\ATen\ops\polygamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2005798Z copying torch\include\ATen\ops\polygamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2022196Z copying torch\include\ATen\ops\polygamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2028999Z copying torch\include\ATen\ops\polygamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2035648Z copying torch\include\ATen\ops\polygamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2042411Z copying torch\include\ATen\ops\polygamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2049084Z copying torch\include\ATen\ops\positive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2055537Z copying torch\include\ATen\ops\positive_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2062454Z copying torch\include\ATen\ops\positive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2069243Z copying torch\include\ATen\ops\positive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2081294Z copying torch\include\ATen\ops\pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2087358Z copying torch\include\ATen\ops\pow_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2094178Z copying torch\include\ATen\ops\pow_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2100855Z copying torch\include\ATen\ops\pow_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2111604Z copying torch\include\ATen\ops\pow_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2118061Z copying torch\include\ATen\ops\pow_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2124716Z copying torch\include\ATen\ops\pow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2132100Z copying torch\include\ATen\ops\pow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2138613Z copying torch\include\ATen\ops\prelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2145188Z copying torch\include\ATen\ops\prelu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2151947Z copying torch\include\ATen\ops\prelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2158360Z copying torch\include\ATen\ops\prelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2169617Z copying torch\include\ATen\ops\prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2176440Z copying torch\include\ATen\ops\prod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2184055Z copying torch\include\ATen\ops\prod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2190918Z copying torch\include\ATen\ops\prod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2197682Z copying torch\include\ATen\ops\prod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2204368Z copying torch\include\ATen\ops\prod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2211424Z copying torch\include\ATen\ops\prod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2218420Z copying torch\include\ATen\ops\prod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2225197Z copying torch\include\ATen\ops\prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2232049Z copying torch\include\ATen\ops\prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2238638Z copying torch\include\ATen\ops\promote_types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2245631Z copying torch\include\ATen\ops\promote_types_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2252454Z copying torch\include\ATen\ops\promote_types_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2259220Z copying torch\include\ATen\ops\promote_types_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2265952Z copying torch\include\ATen\ops\put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2272833Z copying torch\include\ATen\ops\put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2283911Z copying torch\include\ATen\ops\put_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2290749Z copying torch\include\ATen\ops\put_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2297431Z copying torch\include\ATen\ops\put_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2304252Z copying torch\include\ATen\ops\put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2315767Z copying torch\include\ATen\ops\put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2321863Z copying torch\include\ATen\ops\qr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2328536Z copying torch\include\ATen\ops\qr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2335173Z copying torch\include\ATen\ops\qr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2346640Z copying torch\include\ATen\ops\qr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2353205Z copying torch\include\ATen\ops\qscheme.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2360058Z copying torch\include\ATen\ops\qscheme_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2367071Z copying torch\include\ATen\ops\qscheme_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2378844Z copying torch\include\ATen\ops\quantile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2385624Z copying torch\include\ATen\ops\quantile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2392286Z copying torch\include\ATen\ops\quantile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2398754Z copying torch\include\ATen\ops\quantile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2405490Z copying torch\include\ATen\ops\quantized_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2412530Z copying torch\include\ATen\ops\quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2419485Z copying torch\include\ATen\ops\quantized_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2426187Z copying torch\include\ATen\ops\quantized_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2433116Z copying torch\include\ATen\ops\quantized_gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2440216Z copying torch\include\ATen\ops\quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2447817Z copying torch\include\ATen\ops\quantized_gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2453750Z copying torch\include\ATen\ops\quantized_gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2464634Z copying torch\include\ATen\ops\quantized_lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2471710Z copying torch\include\ATen\ops\quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2478455Z copying torch\include\ATen\ops\quantized_lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2486425Z copying torch\include\ATen\ops\quantized_lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2503483Z copying torch\include\ATen\ops\quantized_max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2510329Z copying torch\include\ATen\ops\quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2517221Z copying torch\include\ATen\ops\quantized_max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2523983Z copying torch\include\ATen\ops\quantized_max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2535931Z copying torch\include\ATen\ops\quantized_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2541592Z copying torch\include\ATen\ops\quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2548559Z copying torch\include\ATen\ops\quantized_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2555163Z copying torch\include\ATen\ops\quantized_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2561889Z copying torch\include\ATen\ops\quantized_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2569062Z copying torch\include\ATen\ops\quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2575757Z copying torch\include\ATen\ops\quantized_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2582490Z copying torch\include\ATen\ops\quantized_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2589882Z copying torch\include\ATen\ops\quantized_rnn_relu_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2596797Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2603456Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2610274Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2617467Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2624327Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2631140Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2637831Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2644554Z copying torch\include\ATen\ops\quantize_per_channel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2651866Z copying torch\include\ATen\ops\quantize_per_channel_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2658498Z copying torch\include\ATen\ops\quantize_per_channel_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2665347Z copying torch\include\ATen\ops\quantize_per_channel_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2672158Z copying torch\include\ATen\ops\quantize_per_channel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2678743Z copying torch\include\ATen\ops\quantize_per_channel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2685466Z copying torch\include\ATen\ops\quantize_per_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2692534Z copying torch\include\ATen\ops\quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2699334Z copying torch\include\ATen\ops\quantize_per_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2706071Z copying torch\include\ATen\ops\quantize_per_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2713538Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2720665Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2738404Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2745591Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2752575Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2759412Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2766155Z copying torch\include\ATen\ops\quantize_per_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2772770Z copying torch\include\ATen\ops\quantize_per_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2779407Z copying torch\include\ATen\ops\q_per_channel_axis.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2786158Z copying torch\include\ATen\ops\q_per_channel_axis_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2793328Z copying torch\include\ATen\ops\q_per_channel_axis_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2799944Z copying torch\include\ATen\ops\q_per_channel_scales.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2806838Z copying torch\include\ATen\ops\q_per_channel_scales_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2814290Z copying torch\include\ATen\ops\q_per_channel_scales_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2820901Z copying torch\include\ATen\ops\q_per_channel_scales_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2827831Z copying torch\include\ATen\ops\q_per_channel_zero_points.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2835134Z copying torch\include\ATen\ops\q_per_channel_zero_points_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2842711Z copying torch\include\ATen\ops\q_per_channel_zero_points_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2849694Z copying torch\include\ATen\ops\q_per_channel_zero_points_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2856294Z copying torch\include\ATen\ops\q_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2862863Z copying torch\include\ATen\ops\q_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2871013Z copying torch\include\ATen\ops\q_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2882078Z copying torch\include\ATen\ops\q_zero_point.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2888575Z copying torch\include\ATen\ops\q_zero_point_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2895463Z copying torch\include\ATen\ops\q_zero_point_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2902111Z copying torch\include\ATen\ops\rad2deg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2912446Z copying torch\include\ATen\ops\rad2deg_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2919009Z copying torch\include\ATen\ops\rad2deg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2925632Z copying torch\include\ATen\ops\rad2deg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2932330Z copying torch\include\ATen\ops\rand.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2940439Z copying torch\include\ATen\ops\randint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2948270Z copying torch\include\ATen\ops\randint_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2955193Z copying torch\include\ATen\ops\randint_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2968071Z copying torch\include\ATen\ops\randint_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2970030Z copying torch\include\ATen\ops\randint_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2977795Z copying torch\include\ATen\ops\randint_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2984685Z copying torch\include\ATen\ops\randint_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2992095Z copying torch\include\ATen\ops\randint_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.2998523Z copying torch\include\ATen\ops\randn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3005705Z copying torch\include\ATen\ops\randn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3012998Z copying torch\include\ATen\ops\randn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3019716Z copying torch\include\ATen\ops\randn_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3026615Z copying torch\include\ATen\ops\randn_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3033543Z copying torch\include\ATen\ops\randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3040661Z copying torch\include\ATen\ops\randn_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3104209Z copying torch\include\ATen\ops\randn_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3112645Z copying torch\include\ATen\ops\randn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3185379Z copying torch\include\ATen\ops\randn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3225101Z copying torch\include\ATen\ops\random.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3231963Z copying torch\include\ATen\ops\random_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3238670Z copying torch\include\ATen\ops\random_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3245466Z copying torch\include\ATen\ops\random_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3252407Z copying torch\include\ATen\ops\random_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3259206Z copying torch\include\ATen\ops\random_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3270299Z copying torch\include\ATen\ops\random_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3277119Z copying torch\include\ATen\ops\randperm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3283825Z copying torch\include\ATen\ops\randperm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3290423Z copying torch\include\ATen\ops\randperm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3297493Z copying torch\include\ATen\ops\randperm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3304066Z copying torch\include\ATen\ops\randperm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3314203Z copying torch\include\ATen\ops\randperm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3321338Z copying torch\include\ATen\ops\rand_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3328163Z copying torch\include\ATen\ops\rand_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3334644Z copying torch\include\ATen\ops\rand_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3341499Z copying torch\include\ATen\ops\rand_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3348942Z copying torch\include\ATen\ops\rand_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3356338Z copying torch\include\ATen\ops\rand_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3363853Z copying torch\include\ATen\ops\rand_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3370486Z copying torch\include\ATen\ops\rand_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3377545Z copying torch\include\ATen\ops\range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3383888Z copying torch\include\ATen\ops\range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3391147Z copying torch\include\ATen\ops\range_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3398793Z copying torch\include\ATen\ops\range_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3405458Z copying torch\include\ATen\ops\range_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3412335Z copying torch\include\ATen\ops\range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3419180Z copying torch\include\ATen\ops\range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3426007Z copying torch\include\ATen\ops\ravel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3432650Z copying torch\include\ATen\ops\ravel_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3456135Z copying torch\include\ATen\ops\ravel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3456829Z copying torch\include\ATen\ops\ravel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3474778Z copying torch\include\ATen\ops\real.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3475580Z copying torch\include\ATen\ops\real_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3478291Z copying torch\include\ATen\ops\real_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3484867Z copying torch\include\ATen\ops\real_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3491211Z copying torch\include\ATen\ops\reciprocal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3499218Z copying torch\include\ATen\ops\reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3506403Z copying torch\include\ATen\ops\reciprocal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3514138Z copying torch\include\ATen\ops\reciprocal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3556795Z copying torch\include\ATen\ops\reciprocal_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3562528Z copying torch\include\ATen\ops\reciprocal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3574749Z copying torch\include\ATen\ops\reciprocal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3581563Z copying torch\include\ATen\ops\reciprocal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3588404Z copying torch\include\ATen\ops\record_stream.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3594832Z copying torch\include\ATen\ops\record_stream_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3605685Z copying torch\include\ATen\ops\record_stream_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3612016Z copying torch\include\ATen\ops\record_stream_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3618989Z copying torch\include\ATen\ops\refine_names.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3626026Z copying torch\include\ATen\ops\refine_names_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3637433Z copying torch\include\ATen\ops\refine_names_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3643760Z copying torch\include\ATen\ops\refine_names_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3651283Z copying torch\include\ATen\ops\reflection_pad1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3657550Z copying torch\include\ATen\ops\reflection_pad1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3664925Z copying torch\include\ATen\ops\reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3671759Z copying torch\include\ATen\ops\reflection_pad1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3678903Z copying torch\include\ATen\ops\reflection_pad1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3685687Z copying torch\include\ATen\ops\reflection_pad1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3692472Z copying torch\include\ATen\ops\reflection_pad1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3699194Z copying torch\include\ATen\ops\reflection_pad1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3705892Z copying torch\include\ATen\ops\reflection_pad1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3713168Z copying torch\include\ATen\ops\reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3720063Z copying torch\include\ATen\ops\reflection_pad1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3727116Z copying torch\include\ATen\ops\reflection_pad1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3733850Z copying torch\include\ATen\ops\reflection_pad1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3740760Z copying torch\include\ATen\ops\reflection_pad1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3751714Z copying torch\include\ATen\ops\reflection_pad1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3758515Z copying torch\include\ATen\ops\reflection_pad1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3773683Z copying torch\include\ATen\ops\reflection_pad2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3774491Z copying torch\include\ATen\ops\reflection_pad2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3780476Z copying torch\include\ATen\ops\reflection_pad2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3788723Z copying torch\include\ATen\ops\reflection_pad2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3796246Z copying torch\include\ATen\ops\reflection_pad2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3803262Z copying torch\include\ATen\ops\reflection_pad2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3810381Z copying torch\include\ATen\ops\reflection_pad2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3818877Z copying torch\include\ATen\ops\reflection_pad2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3825627Z copying torch\include\ATen\ops\reflection_pad2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3832614Z copying torch\include\ATen\ops\reflection_pad2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3863319Z copying torch\include\ATen\ops\reflection_pad3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3870667Z copying torch\include\ATen\ops\reflection_pad3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3878139Z copying torch\include\ATen\ops\reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3885417Z copying torch\include\ATen\ops\reflection_pad3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3892844Z copying torch\include\ATen\ops\reflection_pad3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3899997Z copying torch\include\ATen\ops\reflection_pad3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3907131Z copying torch\include\ATen\ops\reflection_pad3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3914677Z copying torch\include\ATen\ops\reflection_pad3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3921858Z copying torch\include\ATen\ops\reflection_pad3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3929078Z copying torch\include\ATen\ops\reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3946758Z copying torch\include\ATen\ops\reflection_pad3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3947673Z copying torch\include\ATen\ops\reflection_pad3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3961290Z copying torch\include\ATen\ops\reflection_pad3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3962121Z copying torch\include\ATen\ops\reflection_pad3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3967504Z copying torch\include\ATen\ops\reflection_pad3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3974477Z copying torch\include\ATen\ops\reflection_pad3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3981144Z copying torch\include\ATen\ops\relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3987871Z copying torch\include\ATen\ops\relu6.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.3994379Z copying torch\include\ATen\ops\relu6_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4000932Z copying torch\include\ATen\ops\relu6_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4007269Z copying torch\include\ATen\ops\relu6_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4782502Z copying torch\include\ATen\ops\relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4790040Z copying torch\include\ATen\ops\relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4797138Z copying torch\include\ATen\ops\relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4804058Z copying torch\include\ATen\ops\relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4810442Z copying torch\include\ATen\ops\relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4817087Z copying torch\include\ATen\ops\relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4856576Z copying torch\include\ATen\ops\remainder.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4864918Z copying torch\include\ATen\ops\remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4871952Z copying torch\include\ATen\ops\remainder_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4879254Z copying torch\include\ATen\ops\remainder_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4887779Z copying torch\include\ATen\ops\remainder_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4897905Z copying torch\include\ATen\ops\remainder_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4905152Z copying torch\include\ATen\ops\remainder_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4911768Z copying torch\include\ATen\ops\remainder_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4918759Z copying torch\include\ATen\ops\remainder_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4925451Z copying torch\include\ATen\ops\rename.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4931659Z copying torch\include\ATen\ops\rename_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4938131Z copying torch\include\ATen\ops\rename_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4944508Z copying torch\include\ATen\ops\rename_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4951860Z copying torch\include\ATen\ops\renorm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4958652Z copying torch\include\ATen\ops\renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4965066Z copying torch\include\ATen\ops\renorm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4971755Z copying torch\include\ATen\ops\renorm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4978418Z copying torch\include\ATen\ops\renorm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4985064Z copying torch\include\ATen\ops\renorm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4991581Z copying torch\include\ATen\ops\renorm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.4997941Z copying torch\include\ATen\ops\renorm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5008481Z copying torch\include\ATen\ops\repeat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5014804Z copying torch\include\ATen\ops\repeat_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5021061Z copying torch\include\ATen\ops\repeat_interleave.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5027895Z copying torch\include\ATen\ops\repeat_interleave_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5039636Z copying torch\include\ATen\ops\repeat_interleave_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5046142Z copying torch\include\ATen\ops\repeat_interleave_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5052905Z copying torch\include\ATen\ops\repeat_interleave_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5059596Z copying torch\include\ATen\ops\repeat_interleave_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5066719Z copying torch\include\ATen\ops\repeat_interleave_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5073547Z copying torch\include\ATen\ops\repeat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5080095Z copying torch\include\ATen\ops\repeat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5087043Z copying torch\include\ATen\ops\replication_pad1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5116340Z copying torch\include\ATen\ops\replication_pad1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5124110Z copying torch\include\ATen\ops\replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5131183Z copying torch\include\ATen\ops\replication_pad1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5139017Z copying torch\include\ATen\ops\replication_pad1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5145748Z copying torch\include\ATen\ops\replication_pad1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5153099Z copying torch\include\ATen\ops\replication_pad1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5160595Z copying torch\include\ATen\ops\replication_pad1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5167404Z copying torch\include\ATen\ops\replication_pad1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5178753Z copying torch\include\ATen\ops\replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5185431Z copying torch\include\ATen\ops\replication_pad1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5192602Z copying torch\include\ATen\ops\replication_pad1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5200115Z copying torch\include\ATen\ops\replication_pad1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5207106Z copying torch\include\ATen\ops\replication_pad1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5213852Z copying torch\include\ATen\ops\replication_pad1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5220587Z copying torch\include\ATen\ops\replication_pad1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5227333Z copying torch\include\ATen\ops\replication_pad2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5234554Z copying torch\include\ATen\ops\replication_pad2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5241621Z copying torch\include\ATen\ops\replication_pad2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5249327Z copying torch\include\ATen\ops\replication_pad2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5255572Z copying torch\include\ATen\ops\replication_pad2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5262635Z copying torch\include\ATen\ops\replication_pad2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5269624Z copying torch\include\ATen\ops\replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5276452Z copying torch\include\ATen\ops\replication_pad2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5283740Z copying torch\include\ATen\ops\replication_pad2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5290589Z copying torch\include\ATen\ops\replication_pad2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5297388Z copying torch\include\ATen\ops\replication_pad2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5312803Z copying torch\include\ATen\ops\replication_pad2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5314601Z copying torch\include\ATen\ops\replication_pad2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5321327Z copying torch\include\ATen\ops\replication_pad3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5328194Z copying torch\include\ATen\ops\replication_pad3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5335887Z copying torch\include\ATen\ops\replication_pad3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5342907Z copying torch\include\ATen\ops\replication_pad3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5350363Z copying torch\include\ATen\ops\replication_pad3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5357144Z copying torch\include\ATen\ops\replication_pad3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5364123Z copying torch\include\ATen\ops\replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5371162Z copying torch\include\ATen\ops\replication_pad3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5381991Z copying torch\include\ATen\ops\replication_pad3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5389780Z copying torch\include\ATen\ops\replication_pad3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5396550Z copying torch\include\ATen\ops\replication_pad3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5403327Z copying torch\include\ATen\ops\replication_pad3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5410655Z copying torch\include\ATen\ops\replication_pad3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5417978Z copying torch\include\ATen\ops\requires_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5424878Z copying torch\include\ATen\ops\requires_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5431692Z copying torch\include\ATen\ops\requires_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5446519Z copying torch\include\ATen\ops\requires_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5455042Z copying torch\include\ATen\ops\reshape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5499547Z copying torch\include\ATen\ops\reshape_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5500482Z copying torch\include\ATen\ops\reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5501527Z copying torch\include\ATen\ops\reshape_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5502413Z copying torch\include\ATen\ops\reshape_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5503134Z copying torch\include\ATen\ops\reshape_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5505745Z copying torch\include\ATen\ops\reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5516143Z copying torch\include\ATen\ops\reshape_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5523660Z copying torch\include\ATen\ops\reshape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5529854Z copying torch\include\ATen\ops\reshape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5538128Z copying torch\include\ATen\ops\resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5544476Z copying torch\include\ATen\ops\resize_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5551524Z copying torch\include\ATen\ops\resize_as_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5558065Z copying torch\include\ATen\ops\resize_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5564662Z copying torch\include\ATen\ops\resize_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5571315Z copying torch\include\ATen\ops\resize_as_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5578343Z copying torch\include\ATen\ops\resize_as_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5586188Z copying torch\include\ATen\ops\resize_as_sparse_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5593121Z copying torch\include\ATen\ops\resize_as_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5605355Z copying torch\include\ATen\ops\resize_as_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5612278Z copying torch\include\ATen\ops\resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5619207Z copying torch\include\ATen\ops\resize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5626233Z copying torch\include\ATen\ops\resize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5632794Z copying torch\include\ATen\ops\resize_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5639819Z copying torch\include\ATen\ops\resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5646359Z copying torch\include\ATen\ops\resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5653342Z copying torch\include\ATen\ops\resolve_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5660224Z copying torch\include\ATen\ops\resolve_conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5666689Z copying torch\include\ATen\ops\resolve_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5673214Z copying torch\include\ATen\ops\resolve_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5680581Z copying torch\include\ATen\ops\resolve_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5688175Z copying torch\include\ATen\ops\resolve_neg_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5695091Z copying torch\include\ATen\ops\resolve_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5701826Z copying torch\include\ATen\ops\resolve_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5708624Z copying torch\include\ATen\ops\result_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5715373Z copying torch\include\ATen\ops\result_type_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5721815Z copying torch\include\ATen\ops\result_type_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5728363Z copying torch\include\ATen\ops\result_type_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5735531Z copying torch\include\ATen\ops\retains_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5746842Z copying torch\include\ATen\ops\retains_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5753365Z copying torch\include\ATen\ops\retains_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5759699Z copying torch\include\ATen\ops\retains_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5766328Z copying torch\include\ATen\ops\retain_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5772999Z copying torch\include\ATen\ops\retain_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5779499Z copying torch\include\ATen\ops\retain_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5785884Z copying torch\include\ATen\ops\retain_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5792837Z copying torch\include\ATen\ops\rms_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5803984Z copying torch\include\ATen\ops\rms_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5810424Z copying torch\include\ATen\ops\rms_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5816923Z copying torch\include\ATen\ops\rms_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5823432Z copying torch\include\ATen\ops\rnn_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5829832Z copying torch\include\ATen\ops\rnn_relu_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5836650Z copying torch\include\ATen\ops\rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5843757Z copying torch\include\ATen\ops\rnn_relu_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5850908Z copying torch\include\ATen\ops\rnn_relu_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5857714Z copying torch\include\ATen\ops\rnn_relu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5864381Z copying torch\include\ATen\ops\rnn_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5871479Z copying torch\include\ATen\ops\rnn_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5878638Z copying torch\include\ATen\ops\rnn_tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5889362Z copying torch\include\ATen\ops\rnn_tanh_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5896523Z copying torch\include\ATen\ops\rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5903734Z copying torch\include\ATen\ops\rnn_tanh_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5910761Z copying torch\include\ATen\ops\rnn_tanh_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5918034Z copying torch\include\ATen\ops\rnn_tanh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5924638Z copying torch\include\ATen\ops\rnn_tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5955046Z copying torch\include\ATen\ops\rnn_tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5955718Z copying torch\include\ATen\ops\roll.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5956507Z copying torch\include\ATen\ops\roll_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5957806Z copying torch\include\ATen\ops\roll_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5961753Z copying torch\include\ATen\ops\roll_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5968608Z copying torch\include\ATen\ops\roll_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5979212Z copying torch\include\ATen\ops\roll_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5985123Z copying torch\include\ATen\ops\rot90.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5991976Z copying torch\include\ATen\ops\rot90_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.5998603Z copying torch\include\ATen\ops\rot90_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6006580Z copying torch\include\ATen\ops\rot90_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6013820Z copying torch\include\ATen\ops\round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6020863Z copying torch\include\ATen\ops\round_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6027117Z copying torch\include\ATen\ops\round_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6034604Z copying torch\include\ATen\ops\round_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6044300Z copying torch\include\ATen\ops\round_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6051148Z copying torch\include\ATen\ops\round_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6058401Z copying torch\include\ATen\ops\round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6070381Z copying torch\include\ATen\ops\round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6077612Z copying torch\include\ATen\ops\row_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6084408Z copying torch\include\ATen\ops\row_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6090785Z copying torch\include\ATen\ops\row_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6102656Z copying torch\include\ATen\ops\row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6109501Z copying torch\include\ATen\ops\row_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6116175Z copying torch\include\ATen\ops\row_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6122975Z copying torch\include\ATen\ops\row_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6129754Z copying torch\include\ATen\ops\row_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6136100Z copying torch\include\ATen\ops\row_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6142787Z copying torch\include\ATen\ops\row_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6149684Z copying torch\include\ATen\ops\row_stack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6156340Z copying torch\include\ATen\ops\row_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6162654Z copying torch\include\ATen\ops\row_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6169329Z copying torch\include\ATen\ops\rrelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6175929Z copying torch\include\ATen\ops\rrelu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6188833Z copying torch\include\ATen\ops\rrelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6195497Z copying torch\include\ATen\ops\rrelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6202600Z copying torch\include\ATen\ops\rrelu_with_noise.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6209130Z copying torch\include\ATen\ops\rrelu_with_noise_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6220448Z copying torch\include\ATen\ops\rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6227284Z copying torch\include\ATen\ops\rrelu_with_noise_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6235207Z copying torch\include\ATen\ops\rrelu_with_noise_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6247322Z copying torch\include\ATen\ops\rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6258512Z copying torch\include\ATen\ops\rrelu_with_noise_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6265409Z copying torch\include\ATen\ops\rrelu_with_noise_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6272479Z copying torch\include\ATen\ops\rrelu_with_noise_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6279307Z copying torch\include\ATen\ops\rrelu_with_noise_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6286595Z copying torch\include\ATen\ops\rrelu_with_noise_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6293477Z copying torch\include\ATen\ops\rshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6300258Z copying torch\include\ATen\ops\rshift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6306928Z copying torch\include\ATen\ops\rshift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6313808Z copying torch\include\ATen\ops\rshift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6320870Z copying torch\include\ATen\ops\rshift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6327301Z copying torch\include\ATen\ops\rshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6349547Z copying torch\include\ATen\ops\rshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6356368Z copying torch\include\ATen\ops\rsqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6363333Z copying torch\include\ATen\ops\rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6369875Z copying torch\include\ATen\ops\rsqrt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6376752Z copying torch\include\ATen\ops\rsqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6393132Z copying torch\include\ATen\ops\rsqrt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6399690Z copying torch\include\ATen\ops\rsqrt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6406708Z copying torch\include\ATen\ops\rsqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6414485Z copying torch\include\ATen\ops\rsqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6421389Z copying torch\include\ATen\ops\rsub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6428171Z copying torch\include\ATen\ops\rsub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6435260Z copying torch\include\ATen\ops\rsub_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6442192Z copying torch\include\ATen\ops\rsub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6485345Z copying torch\include\ATen\ops\rsub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6486053Z copying torch\include\ATen\ops\rsub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6486874Z copying torch\include\ATen\ops\scalar_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6487731Z copying torch\include\ATen\ops\scalar_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6488697Z copying torch\include\ATen\ops\scalar_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6489441Z copying torch\include\ATen\ops\scalar_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6494304Z copying torch\include\ATen\ops\scaled_dot_product_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6501743Z copying torch\include\ATen\ops\scaled_dot_product_attention_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6509851Z copying torch\include\ATen\ops\scaled_dot_product_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6515986Z copying torch\include\ATen\ops\scaled_dot_product_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6523055Z copying torch\include\ATen\ops\scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6529378Z copying torch\include\ATen\ops\scatter_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6536747Z copying torch\include\ATen\ops\scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6543255Z copying torch\include\ATen\ops\scatter_add_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6549970Z copying torch\include\ATen\ops\scatter_add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6556695Z copying torch\include\ATen\ops\scatter_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6563640Z copying torch\include\ATen\ops\scatter_add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6570686Z copying torch\include\ATen\ops\scatter_add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6577294Z copying torch\include\ATen\ops\scatter_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6584532Z copying torch\include\ATen\ops\scatter_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6591711Z copying torch\include\ATen\ops\scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6598692Z copying torch\include\ATen\ops\scatter_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6605671Z copying torch\include\ATen\ops\scatter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6612622Z copying torch\include\ATen\ops\scatter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6619364Z copying torch\include\ATen\ops\scatter_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6626060Z copying torch\include\ATen\ops\scatter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6632950Z copying torch\include\ATen\ops\scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6639603Z copying torch\include\ATen\ops\scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6646399Z copying torch\include\ATen\ops\scatter_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6653591Z copying torch\include\ATen\ops\scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6660534Z copying torch\include\ATen\ops\scatter_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6667238Z copying torch\include\ATen\ops\scatter_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6673988Z copying torch\include\ATen\ops\scatter_reduce_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6680712Z copying torch\include\ATen\ops\scatter_reduce_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6687395Z copying torch\include\ATen\ops\scatter_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6694037Z copying torch\include\ATen\ops\scatter_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6700754Z copying torch\include\ATen\ops\searchsorted.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6708007Z copying torch\include\ATen\ops\searchsorted_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6714481Z copying torch\include\ATen\ops\searchsorted_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6721121Z copying torch\include\ATen\ops\searchsorted_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6728378Z copying torch\include\ATen\ops\searchsorted_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6736108Z copying torch\include\ATen\ops\segment_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6746853Z copying torch\include\ATen\ops\segment_reduce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6753386Z copying torch\include\ATen\ops\segment_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6760465Z copying torch\include\ATen\ops\segment_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6767368Z copying torch\include\ATen\ops\segment_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6774242Z copying torch\include\ATen\ops\segment_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6780492Z copying torch\include\ATen\ops\select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6820138Z copying torch\include\ATen\ops\select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6827095Z copying torch\include\ATen\ops\select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6834338Z copying torch\include\ATen\ops\select_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6840972Z copying torch\include\ATen\ops\select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6847858Z copying torch\include\ATen\ops\select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6854454Z copying torch\include\ATen\ops\select_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6861462Z copying torch\include\ATen\ops\select_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6868199Z copying torch\include\ATen\ops\select_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6875621Z copying torch\include\ATen\ops\select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6882753Z copying torch\include\ATen\ops\select_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6889505Z copying torch\include\ATen\ops\select_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6896218Z copying torch\include\ATen\ops\select_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6907252Z copying torch\include\ATen\ops\select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6913854Z copying torch\include\ATen\ops\select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6920514Z copying torch\include\ATen\ops\select_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6927832Z copying torch\include\ATen\ops\select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6939173Z copying torch\include\ATen\ops\select_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6946427Z copying torch\include\ATen\ops\select_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6985261Z copying torch\include\ATen\ops\select_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6985970Z copying torch\include\ATen\ops\selu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6986762Z copying torch\include\ATen\ops\selu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6987648Z copying torch\include\ATen\ops\selu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6988332Z copying torch\include\ATen\ops\selu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6989617Z copying torch\include\ATen\ops\set.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.6997435Z copying torch\include\ATen\ops\set_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7003490Z copying torch\include\ATen\ops\set_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7010066Z copying torch\include\ATen\ops\set_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7016664Z copying torch\include\ATen\ops\set_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7023326Z copying torch\include\ATen\ops\set_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7029925Z copying torch\include\ATen\ops\set_data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7037759Z copying torch\include\ATen\ops\set_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7043916Z copying torch\include\ATen\ops\set_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7050905Z copying torch\include\ATen\ops\set_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7057421Z copying torch\include\ATen\ops\set_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7063761Z copying torch\include\ATen\ops\set_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7070240Z copying torch\include\ATen\ops\sgn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7076881Z copying torch\include\ATen\ops\sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7083223Z copying torch\include\ATen\ops\sgn_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7090530Z copying torch\include\ATen\ops\sgn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7096885Z copying torch\include\ATen\ops\sgn_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7103011Z copying torch\include\ATen\ops\sgn_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7109734Z copying torch\include\ATen\ops\sgn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7116155Z copying torch\include\ATen\ops\sgn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7122347Z copying torch\include\ATen\ops\sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7128871Z copying torch\include\ATen\ops\sigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7135884Z copying torch\include\ATen\ops\sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7142844Z copying torch\include\ATen\ops\sigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7149576Z copying torch\include\ATen\ops\sigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7159688Z copying torch\include\ATen\ops\sigmoid_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7166718Z copying torch\include\ATen\ops\sigmoid_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7173101Z copying torch\include\ATen\ops\sigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7179750Z copying torch\include\ATen\ops\sigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7186879Z copying torch\include\ATen\ops\sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7193802Z copying torch\include\ATen\ops\sigmoid_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7200797Z copying torch\include\ATen\ops\sigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7207020Z copying torch\include\ATen\ops\sigmoid_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7213483Z copying torch\include\ATen\ops\sigmoid_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7220130Z copying torch\include\ATen\ops\sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7226842Z copying torch\include\ATen\ops\sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7233996Z copying torch\include\ATen\ops\sign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7240290Z copying torch\include\ATen\ops\signbit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7247418Z copying torch\include\ATen\ops\signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7253880Z copying torch\include\ATen\ops\signbit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7260720Z copying torch\include\ATen\ops\signbit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7267766Z copying torch\include\ATen\ops\signbit_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7274778Z copying torch\include\ATen\ops\signbit_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7281761Z copying torch\include\ATen\ops\signbit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7288779Z copying torch\include\ATen\ops\signbit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7300314Z copying torch\include\ATen\ops\sign_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7306874Z copying torch\include\ATen\ops\sign_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7313849Z copying torch\include\ATen\ops\sign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7320528Z copying torch\include\ATen\ops\sign_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7331082Z copying torch\include\ATen\ops\sign_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7337796Z copying torch\include\ATen\ops\sign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7344603Z copying torch\include\ATen\ops\sign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7350960Z copying torch\include\ATen\ops\silu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7357864Z copying torch\include\ATen\ops\silu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7364882Z copying torch\include\ATen\ops\silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7371653Z copying torch\include\ATen\ops\silu_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7378353Z copying torch\include\ATen\ops\silu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7385349Z copying torch\include\ATen\ops\silu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7392223Z copying torch\include\ATen\ops\silu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7399319Z copying torch\include\ATen\ops\silu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7406178Z copying torch\include\ATen\ops\silu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7413487Z copying torch\include\ATen\ops\silu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7420532Z copying torch\include\ATen\ops\silu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7426890Z copying torch\include\ATen\ops\silu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7433613Z copying torch\include\ATen\ops\silu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7440511Z copying torch\include\ATen\ops\silu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7447151Z copying torch\include\ATen\ops\silu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7463184Z copying torch\include\ATen\ops\silu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7463977Z copying torch\include\ATen\ops\silu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7467811Z copying torch\include\ATen\ops\sin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7475190Z copying torch\include\ATen\ops\sinc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7481882Z copying torch\include\ATen\ops\sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7521330Z copying torch\include\ATen\ops\sinc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7527753Z copying torch\include\ATen\ops\sinc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7534476Z copying torch\include\ATen\ops\sinc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7540779Z copying torch\include\ATen\ops\sinc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7547440Z copying torch\include\ATen\ops\sinc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7554003Z copying torch\include\ATen\ops\sinc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7560178Z copying torch\include\ATen\ops\sinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7566803Z copying torch\include\ATen\ops\sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7573237Z copying torch\include\ATen\ops\sinh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7580080Z copying torch\include\ATen\ops\sinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7586855Z copying torch\include\ATen\ops\sinh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7593251Z copying torch\include\ATen\ops\sinh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7599667Z copying torch\include\ATen\ops\sinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7606492Z copying torch\include\ATen\ops\sinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7613379Z copying torch\include\ATen\ops\sin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7619741Z copying torch\include\ATen\ops\sin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7626235Z copying torch\include\ATen\ops\sin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7633102Z copying torch\include\ATen\ops\sin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7639251Z copying torch\include\ATen\ops\sin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7645651Z copying torch\include\ATen\ops\sin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7652224Z copying torch\include\ATen\ops\sin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7658455Z copying torch\include\ATen\ops\size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7664897Z copying torch\include\ATen\ops\size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7672041Z copying torch\include\ATen\ops\size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7678171Z copying torch\include\ATen\ops\size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7684668Z copying torch\include\ATen\ops\slice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7690746Z copying torch\include\ATen\ops\slice_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7697789Z copying torch\include\ATen\ops\slice_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7704542Z copying torch\include\ATen\ops\slice_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7711286Z copying torch\include\ATen\ops\slice_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7718045Z copying torch\include\ATen\ops\slice_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7725780Z copying torch\include\ATen\ops\slice_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7733224Z copying torch\include\ATen\ops\slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7741073Z copying torch\include\ATen\ops\slice_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7747651Z copying torch\include\ATen\ops\slice_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7754320Z copying torch\include\ATen\ops\slice_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7761095Z copying torch\include\ATen\ops\slice_inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7768123Z copying torch\include\ATen\ops\slice_inverse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7774928Z copying torch\include\ATen\ops\slice_inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7781675Z copying torch\include\ATen\ops\slice_inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7788605Z copying torch\include\ATen\ops\slice_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7799989Z copying torch\include\ATen\ops\slice_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7806757Z copying torch\include\ATen\ops\slice_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7814856Z copying torch\include\ATen\ops\slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7821811Z copying torch\include\ATen\ops\slice_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7833234Z copying torch\include\ATen\ops\slice_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7840574Z copying torch\include\ATen\ops\slice_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7848062Z copying torch\include\ATen\ops\slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7854918Z copying torch\include\ATen\ops\slogdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7861525Z copying torch\include\ATen\ops\slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7868292Z copying torch\include\ATen\ops\slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7875063Z copying torch\include\ATen\ops\slow_conv3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7882616Z copying torch\include\ATen\ops\slow_conv3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7919494Z copying torch\include\ATen\ops\slow_conv3d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.7927026Z copying torch\include\ATen\ops\slow_conv3d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8091852Z copying torch\include\ATen\ops\slow_conv3d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8099947Z copying torch\include\ATen\ops\slow_conv3d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8107829Z copying torch\include\ATen\ops\slow_conv3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8116147Z copying torch\include\ATen\ops\slow_conv3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8122869Z copying torch\include\ATen\ops\slow_conv_dilated2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8130768Z copying torch\include\ATen\ops\slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8138307Z copying torch\include\ATen\ops\slow_conv_dilated2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8145229Z copying torch\include\ATen\ops\slow_conv_dilated2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8152592Z copying torch\include\ATen\ops\slow_conv_dilated2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8159473Z copying torch\include\ATen\ops\slow_conv_dilated2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8166232Z copying torch\include\ATen\ops\slow_conv_dilated3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8173508Z copying torch\include\ATen\ops\slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8180537Z copying torch\include\ATen\ops\slow_conv_dilated3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8187355Z copying torch\include\ATen\ops\slow_conv_dilated3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8194309Z copying torch\include\ATen\ops\slow_conv_dilated3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8201031Z copying torch\include\ATen\ops\slow_conv_dilated3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8208041Z copying torch\include\ATen\ops\slow_conv_transpose2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8215338Z copying torch\include\ATen\ops\slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8222701Z copying torch\include\ATen\ops\slow_conv_transpose2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8229697Z copying torch\include\ATen\ops\slow_conv_transpose2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8236800Z copying torch\include\ATen\ops\slow_conv_transpose2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8244112Z copying torch\include\ATen\ops\slow_conv_transpose2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8251327Z copying torch\include\ATen\ops\slow_conv_transpose2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8258346Z copying torch\include\ATen\ops\slow_conv_transpose2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8265163Z copying torch\include\ATen\ops\slow_conv_transpose3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8272865Z copying torch\include\ATen\ops\slow_conv_transpose3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8280026Z copying torch\include\ATen\ops\slow_conv_transpose3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8286722Z copying torch\include\ATen\ops\slow_conv_transpose3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8293773Z copying torch\include\ATen\ops\slow_conv_transpose3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8300561Z copying torch\include\ATen\ops\smm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8307180Z copying torch\include\ATen\ops\smm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8314485Z copying torch\include\ATen\ops\smm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8320807Z copying torch\include\ATen\ops\smm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8327377Z copying torch\include\ATen\ops\smooth_l1_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8334291Z copying torch\include\ATen\ops\smooth_l1_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8341498Z copying torch\include\ATen\ops\smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8349000Z copying torch\include\ATen\ops\smooth_l1_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8356112Z copying torch\include\ATen\ops\smooth_l1_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8364032Z copying torch\include\ATen\ops\smooth_l1_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8371998Z copying torch\include\ATen\ops\smooth_l1_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8378816Z copying torch\include\ATen\ops\smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8385609Z copying torch\include\ATen\ops\smooth_l1_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8392704Z copying torch\include\ATen\ops\smooth_l1_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8400153Z copying torch\include\ATen\ops\smooth_l1_loss_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8406825Z copying torch\include\ATen\ops\smooth_l1_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8413579Z copying torch\include\ATen\ops\smooth_l1_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8420611Z copying torch\include\ATen\ops\smooth_l1_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8427262Z copying torch\include\ATen\ops\softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8434618Z copying torch\include\ATen\ops\softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8441095Z copying torch\include\ATen\ops\softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8447771Z copying torch\include\ATen\ops\softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8454708Z copying torch\include\ATen\ops\softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8461341Z copying torch\include\ATen\ops\softplus.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8469373Z copying torch\include\ATen\ops\softplus_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8486438Z copying torch\include\ATen\ops\softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8489605Z copying torch\include\ATen\ops\softplus_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8496655Z copying torch\include\ATen\ops\softplus_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8504308Z copying torch\include\ATen\ops\softplus_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8511227Z copying torch\include\ATen\ops\softplus_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8517968Z copying torch\include\ATen\ops\softplus_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8524962Z copying torch\include\ATen\ops\softplus_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8532100Z copying torch\include\ATen\ops\softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8543561Z copying torch\include\ATen\ops\softplus_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8550517Z copying torch\include\ATen\ops\softplus_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8557513Z copying torch\include\ATen\ops\softplus_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8564324Z copying torch\include\ATen\ops\softplus_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8575235Z copying torch\include\ATen\ops\softplus_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8581790Z copying torch\include\ATen\ops\softplus_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8589117Z copying torch\include\ATen\ops\softshrink.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8595845Z copying torch\include\ATen\ops\softshrink_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8602976Z copying torch\include\ATen\ops\softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8609734Z copying torch\include\ATen\ops\softshrink_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8616776Z copying torch\include\ATen\ops\softshrink_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8623670Z copying torch\include\ATen\ops\softshrink_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8630516Z copying torch\include\ATen\ops\softshrink_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8637441Z copying torch\include\ATen\ops\softshrink_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8644084Z copying torch\include\ATen\ops\softshrink_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8651111Z copying torch\include\ATen\ops\softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8663054Z copying torch\include\ATen\ops\softshrink_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8669903Z copying torch\include\ATen\ops\softshrink_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8676551Z copying torch\include\ATen\ops\softshrink_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8683260Z copying torch\include\ATen\ops\softshrink_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8689938Z copying torch\include\ATen\ops\softshrink_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8696645Z copying torch\include\ATen\ops\softshrink_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8705495Z copying torch\include\ATen\ops\soft_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8719064Z copying torch\include\ATen\ops\soft_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8726155Z copying torch\include\ATen\ops\soft_margin_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8732583Z copying torch\include\ATen\ops\soft_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8739488Z copying torch\include\ATen\ops\soft_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8746853Z copying torch\include\ATen\ops\soft_margin_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8753620Z copying torch\include\ATen\ops\soft_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8760620Z copying torch\include\ATen\ops\soft_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8767218Z copying torch\include\ATen\ops\sort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8773909Z copying torch\include\ATen\ops\sort_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8780743Z copying torch\include\ATen\ops\sort_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8787822Z copying torch\include\ATen\ops\sort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8794430Z copying torch\include\ATen\ops\sort_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8801147Z copying torch\include\ATen\ops\sort_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8808029Z copying torch\include\ATen\ops\sort_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8814527Z copying torch\include\ATen\ops\sort_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8820902Z copying torch\include\ATen\ops\sort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8842662Z copying torch\include\ATen\ops\sort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8848996Z copying torch\include\ATen\ops\sparse_bsc_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8855858Z copying torch\include\ATen\ops\sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8862375Z copying torch\include\ATen\ops\sparse_bsc_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8869269Z copying torch\include\ATen\ops\sparse_bsc_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8911185Z copying torch\include\ATen\ops\sparse_bsr_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8918191Z copying torch\include\ATen\ops\sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8925152Z copying torch\include\ATen\ops\sparse_bsr_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8932779Z copying torch\include\ATen\ops\sparse_bsr_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8939105Z copying torch\include\ATen\ops\sparse_compressed_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8946257Z copying torch\include\ATen\ops\sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8953632Z copying torch\include\ATen\ops\sparse_compressed_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8961168Z copying torch\include\ATen\ops\sparse_compressed_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8996109Z copying torch\include\ATen\ops\sparse_coo_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8997014Z copying torch\include\ATen\ops\sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8998111Z copying torch\include\ATen\ops\sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8999020Z copying torch\include\ATen\ops\sparse_coo_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.8999793Z copying torch\include\ATen\ops\sparse_coo_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9006521Z copying torch\include\ATen\ops\sparse_csc_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9014454Z copying torch\include\ATen\ops\sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9020870Z copying torch\include\ATen\ops\sparse_csc_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9027637Z copying torch\include\ATen\ops\sparse_csc_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9035065Z copying torch\include\ATen\ops\sparse_csr_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9042695Z copying torch\include\ATen\ops\sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9053143Z copying torch\include\ATen\ops\sparse_csr_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9060380Z copying torch\include\ATen\ops\sparse_csr_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9067226Z copying torch\include\ATen\ops\sparse_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9074118Z copying torch\include\ATen\ops\sparse_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9080664Z copying torch\include\ATen\ops\sparse_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9087434Z copying torch\include\ATen\ops\sparse_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9094379Z copying torch\include\ATen\ops\sparse_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9101290Z copying torch\include\ATen\ops\sparse_mask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9107965Z copying torch\include\ATen\ops\sparse_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9114716Z copying torch\include\ATen\ops\sparse_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9121285Z copying torch\include\ATen\ops\sparse_resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9128307Z copying torch\include\ATen\ops\sparse_resize_and_clear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9135274Z copying torch\include\ATen\ops\sparse_resize_and_clear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9146974Z copying torch\include\ATen\ops\sparse_resize_and_clear_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9154068Z copying torch\include\ATen\ops\sparse_resize_and_clear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9160885Z copying torch\include\ATen\ops\sparse_resize_and_clear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9167717Z copying torch\include\ATen\ops\sparse_resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9174422Z copying torch\include\ATen\ops\sparse_resize_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9181220Z copying torch\include\ATen\ops\sparse_resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9188119Z copying torch\include\ATen\ops\sparse_resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9194837Z copying torch\include\ATen\ops\sparse_sampled_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9201860Z copying torch\include\ATen\ops\sparse_sampled_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9208480Z copying torch\include\ATen\ops\sparse_sampled_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9215066Z copying torch\include\ATen\ops\special_airy_ai.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9222013Z copying torch\include\ATen\ops\special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9228860Z copying torch\include\ATen\ops\special_airy_ai_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9235738Z copying torch\include\ATen\ops\special_airy_ai_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9242223Z copying torch\include\ATen\ops\special_airy_ai_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9248953Z copying torch\include\ATen\ops\special_airy_ai_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9255723Z copying torch\include\ATen\ops\special_airy_ai_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9262741Z copying torch\include\ATen\ops\special_airy_ai_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9269573Z copying torch\include\ATen\ops\special_bessel_j0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9276685Z copying torch\include\ATen\ops\special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9283707Z copying torch\include\ATen\ops\special_bessel_j0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9290441Z copying torch\include\ATen\ops\special_bessel_j0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9322960Z copying torch\include\ATen\ops\special_bessel_j0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9329737Z copying torch\include\ATen\ops\special_bessel_j0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9336399Z copying torch\include\ATen\ops\special_bessel_j0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9343018Z copying torch\include\ATen\ops\special_bessel_j0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9350301Z copying torch\include\ATen\ops\special_bessel_j1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9357781Z copying torch\include\ATen\ops\special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9364541Z copying torch\include\ATen\ops\special_bessel_j1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9371439Z copying torch\include\ATen\ops\special_bessel_j1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9378160Z copying torch\include\ATen\ops\special_bessel_j1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9385047Z copying torch\include\ATen\ops\special_bessel_j1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9392597Z copying torch\include\ATen\ops\special_bessel_j1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9399449Z copying torch\include\ATen\ops\special_bessel_j1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9406592Z copying torch\include\ATen\ops\special_bessel_y0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9413859Z copying torch\include\ATen\ops\special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9421015Z copying torch\include\ATen\ops\special_bessel_y0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9427811Z copying torch\include\ATen\ops\special_bessel_y0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9435149Z copying torch\include\ATen\ops\special_bessel_y0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9442124Z copying torch\include\ATen\ops\special_bessel_y0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9454095Z copying torch\include\ATen\ops\special_bessel_y0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9461538Z copying torch\include\ATen\ops\special_bessel_y0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9468581Z copying torch\include\ATen\ops\special_bessel_y1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9507045Z copying torch\include\ATen\ops\special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9508117Z copying torch\include\ATen\ops\special_bessel_y1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9509010Z copying torch\include\ATen\ops\special_bessel_y1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9509816Z copying torch\include\ATen\ops\special_bessel_y1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9510630Z copying torch\include\ATen\ops\special_bessel_y1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9516253Z copying torch\include\ATen\ops\special_bessel_y1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9523200Z copying torch\include\ATen\ops\special_bessel_y1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9531409Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9538680Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9545972Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9553554Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9560760Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9567611Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9574864Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9581739Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9589357Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9596064Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9603338Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9610580Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9618002Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9625145Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9632377Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9639277Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9646321Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9653394Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9660379Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9667635Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9674974Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9681903Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9688819Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9696469Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9703582Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9710822Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9718458Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9725327Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9732658Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9740164Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9747173Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9754771Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9761590Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9768555Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9775705Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9782714Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9789922Z copying torch\include\ATen\ops\special_digamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9797115Z copying torch\include\ATen\ops\special_digamma_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9804093Z copying torch\include\ATen\ops\special_digamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9811257Z copying torch\include\ATen\ops\special_digamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9818515Z copying torch\include\ATen\ops\special_entr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9826021Z copying torch\include\ATen\ops\special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9839476Z copying torch\include\ATen\ops\special_entr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9846960Z copying torch\include\ATen\ops\special_entr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9854406Z copying torch\include\ATen\ops\special_entr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9861393Z copying torch\include\ATen\ops\special_entr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9868449Z copying torch\include\ATen\ops\special_entr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9875354Z copying torch\include\ATen\ops\special_entr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9882168Z copying torch\include\ATen\ops\special_erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9890190Z copying torch\include\ATen\ops\special_erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9896731Z copying torch\include\ATen\ops\special_erfcx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9904276Z copying torch\include\ATen\ops\special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9911103Z copying torch\include\ATen\ops\special_erfcx_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9918258Z copying torch\include\ATen\ops\special_erfcx_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9925113Z copying torch\include\ATen\ops\special_erfcx_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9932252Z copying torch\include\ATen\ops\special_erfcx_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9939454Z copying torch\include\ATen\ops\special_erfcx_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9947219Z copying torch\include\ATen\ops\special_erfcx_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9958898Z copying torch\include\ATen\ops\special_erfc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9965930Z copying torch\include\ATen\ops\special_erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9984263Z copying torch\include\ATen\ops\special_erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9985062Z copying torch\include\ATen\ops\special_erfinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:37.9993457Z copying torch\include\ATen\ops\special_erfinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0000326Z copying torch\include\ATen\ops\special_erfinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0008392Z copying torch\include\ATen\ops\special_erfinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0014591Z copying torch\include\ATen\ops\special_erf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0021522Z copying torch\include\ATen\ops\special_erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0028035Z copying torch\include\ATen\ops\special_erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0035402Z copying torch\include\ATen\ops\special_exp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0066626Z copying torch\include\ATen\ops\special_exp2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0072752Z copying torch\include\ATen\ops\special_exp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0079776Z copying torch\include\ATen\ops\special_exp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0086481Z copying torch\include\ATen\ops\special_expit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0093472Z copying torch\include\ATen\ops\special_expit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0100678Z copying torch\include\ATen\ops\special_expit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0107195Z copying torch\include\ATen\ops\special_expit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0114315Z copying torch\include\ATen\ops\special_expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0122347Z copying torch\include\ATen\ops\special_expm1_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0128633Z copying torch\include\ATen\ops\special_expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0135469Z copying torch\include\ATen\ops\special_expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0142288Z copying torch\include\ATen\ops\special_gammainc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0149131Z copying torch\include\ATen\ops\special_gammaincc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0156134Z copying torch\include\ATen\ops\special_gammaincc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0163064Z copying torch\include\ATen\ops\special_gammaincc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0169758Z copying torch\include\ATen\ops\special_gammaincc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0177153Z copying torch\include\ATen\ops\special_gammainc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0183905Z copying torch\include\ATen\ops\special_gammainc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0190940Z copying torch\include\ATen\ops\special_gammainc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0197646Z copying torch\include\ATen\ops\special_gammaln.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0204597Z copying torch\include\ATen\ops\special_gammaln_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0211638Z copying torch\include\ATen\ops\special_gammaln_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0218526Z copying torch\include\ATen\ops\special_gammaln_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0225859Z copying torch\include\ATen\ops\special_hermite_polynomial_h.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0232818Z copying torch\include\ATen\ops\special_hermite_polynomial_he.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0240803Z copying torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0247697Z copying torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0254785Z copying torch\include\ATen\ops\special_hermite_polynomial_he_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0261998Z copying torch\include\ATen\ops\special_hermite_polynomial_he_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0269602Z copying torch\include\ATen\ops\special_hermite_polynomial_he_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0276249Z copying torch\include\ATen\ops\special_hermite_polynomial_he_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0283145Z copying torch\include\ATen\ops\special_hermite_polynomial_he_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0290192Z copying torch\include\ATen\ops\special_hermite_polynomial_he_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0298193Z copying torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0305185Z copying torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0312317Z copying torch\include\ATen\ops\special_hermite_polynomial_h_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0319632Z copying torch\include\ATen\ops\special_hermite_polynomial_h_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0326823Z copying torch\include\ATen\ops\special_hermite_polynomial_h_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0334214Z copying torch\include\ATen\ops\special_hermite_polynomial_h_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0341559Z copying torch\include\ATen\ops\special_hermite_polynomial_h_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0349232Z copying torch\include\ATen\ops\special_hermite_polynomial_h_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0357033Z copying torch\include\ATen\ops\special_i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0363945Z copying torch\include\ATen\ops\special_i0e.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0371296Z copying torch\include\ATen\ops\special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0378715Z copying torch\include\ATen\ops\special_i0e_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0386644Z copying torch\include\ATen\ops\special_i0e_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0393876Z copying torch\include\ATen\ops\special_i0e_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0401188Z copying torch\include\ATen\ops\special_i0e_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0407707Z copying torch\include\ATen\ops\special_i0e_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0414709Z copying torch\include\ATen\ops\special_i0e_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0421842Z copying torch\include\ATen\ops\special_i0_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0429384Z copying torch\include\ATen\ops\special_i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0436117Z copying torch\include\ATen\ops\special_i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0443300Z copying torch\include\ATen\ops\special_i1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0450354Z copying torch\include\ATen\ops\special_i1e.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0458204Z copying torch\include\ATen\ops\special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0465496Z copying torch\include\ATen\ops\special_i1e_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0472668Z copying torch\include\ATen\ops\special_i1e_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0480235Z copying torch\include\ATen\ops\special_i1e_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0487217Z copying torch\include\ATen\ops\special_i1e_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0493976Z copying torch\include\ATen\ops\special_i1e_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0501173Z copying torch\include\ATen\ops\special_i1e_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0508720Z copying torch\include\ATen\ops\special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0515420Z copying torch\include\ATen\ops\special_i1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0522523Z copying torch\include\ATen\ops\special_i1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0529659Z copying torch\include\ATen\ops\special_i1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0536241Z copying torch\include\ATen\ops\special_i1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0543104Z copying torch\include\ATen\ops\special_i1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0550092Z copying torch\include\ATen\ops\special_i1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0557268Z copying torch\include\ATen\ops\special_laguerre_polynomial_l.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0564628Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0572216Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0579270Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0587041Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0594016Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0601386Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0608844Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0616003Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0622943Z copying torch\include\ATen\ops\special_legendre_polynomial_p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0631280Z copying torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0638522Z copying torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0645701Z copying torch\include\ATen\ops\special_legendre_polynomial_p_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0654276Z copying torch\include\ATen\ops\special_legendre_polynomial_p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0661458Z copying torch\include\ATen\ops\special_legendre_polynomial_p_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0668477Z copying torch\include\ATen\ops\special_legendre_polynomial_p_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0675958Z copying torch\include\ATen\ops\special_legendre_polynomial_p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0683796Z copying torch\include\ATen\ops\special_legendre_polynomial_p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0691060Z copying torch\include\ATen\ops\special_log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0698835Z copying torch\include\ATen\ops\special_log1p_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0705929Z copying torch\include\ATen\ops\special_log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0712948Z copying torch\include\ATen\ops\special_log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0719913Z copying torch\include\ATen\ops\special_logit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0727876Z copying torch\include\ATen\ops\special_logit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0735096Z copying torch\include\ATen\ops\special_logit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0742159Z copying torch\include\ATen\ops\special_logit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0749608Z copying torch\include\ATen\ops\special_logsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0757785Z copying torch\include\ATen\ops\special_logsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0764630Z copying torch\include\ATen\ops\special_logsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0771359Z copying torch\include\ATen\ops\special_logsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0779610Z copying torch\include\ATen\ops\special_log_ndtr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0786940Z copying torch\include\ATen\ops\special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0794466Z copying torch\include\ATen\ops\special_log_ndtr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0802122Z copying torch\include\ATen\ops\special_log_ndtr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0809069Z copying torch\include\ATen\ops\special_log_ndtr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0816069Z copying torch\include\ATen\ops\special_log_ndtr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0851953Z copying torch\include\ATen\ops\special_log_ndtr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0858927Z copying torch\include\ATen\ops\special_log_ndtr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0865944Z copying torch\include\ATen\ops\special_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0873353Z copying torch\include\ATen\ops\special_log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0880124Z copying torch\include\ATen\ops\special_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0886830Z copying torch\include\ATen\ops\special_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0893650Z copying torch\include\ATen\ops\special_modified_bessel_i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0901037Z copying torch\include\ATen\ops\special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0908453Z copying torch\include\ATen\ops\special_modified_bessel_i0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0915406Z copying torch\include\ATen\ops\special_modified_bessel_i0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0929417Z copying torch\include\ATen\ops\special_modified_bessel_i0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0930321Z copying torch\include\ATen\ops\special_modified_bessel_i0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0937169Z copying torch\include\ATen\ops\special_modified_bessel_i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0945239Z copying torch\include\ATen\ops\special_modified_bessel_i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0952766Z copying torch\include\ATen\ops\special_modified_bessel_i1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0960375Z copying torch\include\ATen\ops\special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0968126Z copying torch\include\ATen\ops\special_modified_bessel_i1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0975354Z copying torch\include\ATen\ops\special_modified_bessel_i1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0982369Z copying torch\include\ATen\ops\special_modified_bessel_i1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0989939Z copying torch\include\ATen\ops\special_modified_bessel_i1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.0996925Z copying torch\include\ATen\ops\special_modified_bessel_i1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1004385Z copying torch\include\ATen\ops\special_modified_bessel_i1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1011486Z copying torch\include\ATen\ops\special_modified_bessel_k0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1019001Z copying torch\include\ATen\ops\special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1026417Z copying torch\include\ATen\ops\special_modified_bessel_k0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1041481Z copying torch\include\ATen\ops\special_modified_bessel_k0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1043827Z copying torch\include\ATen\ops\special_modified_bessel_k0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1085456Z copying torch\include\ATen\ops\special_modified_bessel_k0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1086343Z copying torch\include\ATen\ops\special_modified_bessel_k0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1087181Z copying torch\include\ATen\ops\special_modified_bessel_k0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1088039Z copying torch\include\ATen\ops\special_modified_bessel_k1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1089069Z copying torch\include\ATen\ops\special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1098448Z copying torch\include\ATen\ops\special_modified_bessel_k1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1105731Z copying torch\include\ATen\ops\special_modified_bessel_k1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1113103Z copying torch\include\ATen\ops\special_modified_bessel_k1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1120500Z copying torch\include\ATen\ops\special_modified_bessel_k1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1127555Z copying torch\include\ATen\ops\special_modified_bessel_k1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1144044Z copying torch\include\ATen\ops\special_modified_bessel_k1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1151292Z copying torch\include\ATen\ops\special_multigammaln.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1158961Z copying torch\include\ATen\ops\special_multigammaln_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1166818Z copying torch\include\ATen\ops\special_multigammaln_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1173718Z copying torch\include\ATen\ops\special_multigammaln_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1181056Z copying torch\include\ATen\ops\special_ndtr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1188645Z copying torch\include\ATen\ops\special_ndtri.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1196050Z copying torch\include\ATen\ops\special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1202885Z copying torch\include\ATen\ops\special_ndtri_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1209926Z copying torch\include\ATen\ops\special_ndtri_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1222093Z copying torch\include\ATen\ops\special_ndtri_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1229208Z copying torch\include\ATen\ops\special_ndtri_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1236354Z copying torch\include\ATen\ops\special_ndtri_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1243141Z copying torch\include\ATen\ops\special_ndtri_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1250072Z copying torch\include\ATen\ops\special_ndtr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1330048Z copying torch\include\ATen\ops\special_ndtr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1337120Z copying torch\include\ATen\ops\special_ndtr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1344066Z copying torch\include\ATen\ops\special_polygamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1351459Z copying torch\include\ATen\ops\special_polygamma_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1358695Z copying torch\include\ATen\ops\special_polygamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1372472Z copying torch\include\ATen\ops\special_polygamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1379165Z copying torch\include\ATen\ops\special_psi.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1386116Z copying torch\include\ATen\ops\special_psi_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1393789Z copying torch\include\ATen\ops\special_psi_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1400104Z copying torch\include\ATen\ops\special_psi_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1412332Z copying torch\include\ATen\ops\special_round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1419639Z copying torch\include\ATen\ops\special_round_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1426775Z copying torch\include\ATen\ops\special_round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1434607Z copying torch\include\ATen\ops\special_round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1441872Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1449418Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1456584Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1463822Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1470744Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1477877Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1489249Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1496625Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1503554Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1511146Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1517934Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1533780Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1541028Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1548902Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1556079Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1562976Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1569868Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1577826Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1584912Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1591976Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1599298Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1606764Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1613915Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1621159Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1628483Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1635647Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1644633Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1652464Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1659689Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1667666Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1674967Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1683493Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1691495Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1698639Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1705538Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1713312Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1745218Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1752607Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1760045Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1767182Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1774666Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1788974Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1796293Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1803570Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1811794Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1819107Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1826652Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1834882Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1841735Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1849065Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1856259Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1864031Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1871095Z copying torch\include\ATen\ops\special_sinc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1878386Z copying torch\include\ATen\ops\special_sinc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1885724Z copying torch\include\ATen\ops\special_sinc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1892472Z copying torch\include\ATen\ops\special_sinc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1899457Z copying torch\include\ATen\ops\special_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1906676Z copying torch\include\ATen\ops\special_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1913853Z copying torch\include\ATen\ops\special_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1920898Z copying torch\include\ATen\ops\special_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1928186Z copying torch\include\ATen\ops\special_spherical_bessel_j0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1940257Z copying torch\include\ATen\ops\special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1946982Z copying torch\include\ATen\ops\special_spherical_bessel_j0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1954317Z copying torch\include\ATen\ops\special_spherical_bessel_j0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1961159Z copying torch\include\ATen\ops\special_spherical_bessel_j0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1972733Z copying torch\include\ATen\ops\special_spherical_bessel_j0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1984061Z copying torch\include\ATen\ops\special_spherical_bessel_j0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1991091Z copying torch\include\ATen\ops\special_spherical_bessel_j0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.1998092Z copying torch\include\ATen\ops\special_xlog1py.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2005562Z copying torch\include\ATen\ops\special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2013301Z copying torch\include\ATen\ops\special_xlog1py_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2024691Z copying torch\include\ATen\ops\special_xlog1py_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2031900Z copying torch\include\ATen\ops\special_xlog1py_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2038991Z copying torch\include\ATen\ops\special_xlog1py_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2045838Z copying torch\include\ATen\ops\special_xlog1py_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2052572Z copying torch\include\ATen\ops\special_xlog1py_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2063881Z copying torch\include\ATen\ops\special_xlog1py_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2070977Z copying torch\include\ATen\ops\special_xlogy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2078325Z copying torch\include\ATen\ops\special_xlogy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2085296Z copying torch\include\ATen\ops\special_xlogy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2092069Z copying torch\include\ATen\ops\special_xlogy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2098834Z copying torch\include\ATen\ops\special_zeta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2106237Z copying torch\include\ATen\ops\special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2113333Z copying torch\include\ATen\ops\special_zeta_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2120500Z copying torch\include\ATen\ops\special_zeta_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2127592Z copying torch\include\ATen\ops\special_zeta_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2138896Z copying torch\include\ATen\ops\special_zeta_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2146016Z copying torch\include\ATen\ops\special_zeta_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2152972Z copying torch\include\ATen\ops\special_zeta_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2159991Z copying torch\include\ATen\ops\special_zeta_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2166623Z copying torch\include\ATen\ops\split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2177513Z copying torch\include\ATen\ops\split_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2184396Z copying torch\include\ATen\ops\split_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2191125Z copying torch\include\ATen\ops\split_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2198162Z copying torch\include\ATen\ops\split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2204849Z copying torch\include\ATen\ops\split_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2211452Z copying torch\include\ATen\ops\split_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2218142Z copying torch\include\ATen\ops\split_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2224783Z copying torch\include\ATen\ops\split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2231794Z copying torch\include\ATen\ops\split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2238405Z copying torch\include\ATen\ops\split_with_sizes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2245463Z copying torch\include\ATen\ops\split_with_sizes_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2252057Z copying torch\include\ATen\ops\split_with_sizes_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2259228Z copying torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2266433Z copying torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2273748Z copying torch\include\ATen\ops\split_with_sizes_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2286961Z copying torch\include\ATen\ops\split_with_sizes_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2293809Z copying torch\include\ATen\ops\split_with_sizes_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2300936Z copying torch\include\ATen\ops\split_with_sizes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2307912Z copying torch\include\ATen\ops\split_with_sizes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2315055Z copying torch\include\ATen\ops\sqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2326743Z copying torch\include\ATen\ops\sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2333310Z copying torch\include\ATen\ops\sqrt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2340065Z copying torch\include\ATen\ops\sqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2346745Z copying torch\include\ATen\ops\sqrt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2353570Z copying torch\include\ATen\ops\sqrt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2360153Z copying torch\include\ATen\ops\sqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2366938Z copying torch\include\ATen\ops\sqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2373096Z copying torch\include\ATen\ops\square.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2379747Z copying torch\include\ATen\ops\square_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2386835Z copying torch\include\ATen\ops\square_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2393606Z copying torch\include\ATen\ops\square_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2400331Z copying torch\include\ATen\ops\squeeze.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2407631Z copying torch\include\ATen\ops\squeeze_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2414315Z copying torch\include\ATen\ops\squeeze_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2420865Z copying torch\include\ATen\ops\squeeze_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2433040Z copying torch\include\ATen\ops\squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2440352Z copying torch\include\ATen\ops\squeeze_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2447432Z copying torch\include\ATen\ops\squeeze_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2454174Z copying torch\include\ATen\ops\squeeze_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2461420Z copying torch\include\ATen\ops\squeeze_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2468444Z copying torch\include\ATen\ops\squeeze_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2475346Z copying torch\include\ATen\ops\sspaddmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2482456Z copying torch\include\ATen\ops\sspaddmm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2490742Z copying torch\include\ATen\ops\sspaddmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2518377Z copying torch\include\ATen\ops\sspaddmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2519264Z copying torch\include\ATen\ops\sspaddmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2519972Z copying torch\include\ATen\ops\sspaddmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2520657Z copying torch\include\ATen\ops\stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2527382Z copying torch\include\ATen\ops\stack_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2534215Z copying torch\include\ATen\ops\stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2546110Z copying torch\include\ATen\ops\stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2580435Z copying torch\include\ATen\ops\std.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2587097Z copying torch\include\ATen\ops\std_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2593748Z copying torch\include\ATen\ops\std_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2600488Z copying torch\include\ATen\ops\std_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2615272Z copying torch\include\ATen\ops\std_mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2622095Z copying torch\include\ATen\ops\std_mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2628964Z copying torch\include\ATen\ops\std_mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2635800Z copying torch\include\ATen\ops\std_mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2642616Z copying torch\include\ATen\ops\std_mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2649478Z copying torch\include\ATen\ops\std_mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2656657Z copying torch\include\ATen\ops\std_mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2663130Z copying torch\include\ATen\ops\std_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2669852Z copying torch\include\ATen\ops\std_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2676486Z copying torch\include\ATen\ops\stft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2683184Z copying torch\include\ATen\ops\stft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2690429Z copying torch\include\ATen\ops\stft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2697494Z copying torch\include\ATen\ops\stft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2703655Z copying torch\include\ATen\ops\stride.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2710865Z copying torch\include\ATen\ops\stride_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2717311Z copying torch\include\ATen\ops\stride_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2723542Z copying torch\include\ATen\ops\stride_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2730163Z copying torch\include\ATen\ops\sub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2736475Z copying torch\include\ATen\ops\subtract.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2743204Z copying torch\include\ATen\ops\subtract_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2754958Z copying torch\include\ATen\ops\subtract_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2761560Z copying torch\include\ATen\ops\subtract_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2768689Z copying torch\include\ATen\ops\sub_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2775211Z copying torch\include\ATen\ops\sub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2782144Z copying torch\include\ATen\ops\sub_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2788863Z copying torch\include\ATen\ops\sub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2795481Z copying torch\include\ATen\ops\sub_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2802426Z copying torch\include\ATen\ops\sub_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2808366Z copying torch\include\ATen\ops\sub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2814939Z copying torch\include\ATen\ops\sub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2821360Z copying torch\include\ATen\ops\sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2828243Z copying torch\include\ATen\ops\sum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2835350Z copying torch\include\ATen\ops\sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2842768Z copying torch\include\ATen\ops\sum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2849544Z copying torch\include\ATen\ops\sum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2862066Z copying torch\include\ATen\ops\sum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2868873Z copying torch\include\ATen\ops\sum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2875203Z copying torch\include\ATen\ops\sum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2882335Z copying torch\include\ATen\ops\sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2888586Z copying torch\include\ATen\ops\sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2895199Z copying torch\include\ATen\ops\sum_to_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2902599Z copying torch\include\ATen\ops\sum_to_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2909351Z copying torch\include\ATen\ops\sum_to_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2916623Z copying torch\include\ATen\ops\sum_to_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2949359Z copying torch\include\ATen\ops\svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2961407Z copying torch\include\ATen\ops\svd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2968185Z copying torch\include\ATen\ops\svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2974842Z copying torch\include\ATen\ops\svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2981351Z copying torch\include\ATen\ops\swapaxes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.2988203Z copying torch\include\ATen\ops\swapaxes_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3005795Z copying torch\include\ATen\ops\swapaxes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3006201Z copying torch\include\ATen\ops\swapaxes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3011850Z copying torch\include\ATen\ops\swapdims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3017883Z copying torch\include\ATen\ops\swapdims_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3024478Z copying torch\include\ATen\ops\swapdims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3031364Z copying torch\include\ATen\ops\swapdims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3038385Z copying torch\include\ATen\ops\sym_constrain_range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3045843Z copying torch\include\ATen\ops\sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3052365Z copying torch\include\ATen\ops\sym_constrain_range_for_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3059587Z copying torch\include\ATen\ops\sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3071785Z copying torch\include\ATen\ops\sym_constrain_range_for_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3078544Z copying torch\include\ATen\ops\sym_constrain_range_for_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3085407Z copying torch\include\ATen\ops\sym_constrain_range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3092561Z copying torch\include\ATen\ops\sym_constrain_range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3099374Z copying torch\include\ATen\ops\sym_numel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3106423Z copying torch\include\ATen\ops\sym_numel_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3112952Z copying torch\include\ATen\ops\sym_numel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3119311Z copying torch\include\ATen\ops\sym_numel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3126012Z copying torch\include\ATen\ops\sym_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3132570Z copying torch\include\ATen\ops\sym_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3144218Z copying torch\include\ATen\ops\sym_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3150600Z copying torch\include\ATen\ops\sym_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3157148Z copying torch\include\ATen\ops\sym_storage_offset.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3164148Z copying torch\include\ATen\ops\sym_storage_offset_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3170649Z copying torch\include\ATen\ops\sym_storage_offset_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3177010Z copying torch\include\ATen\ops\sym_storage_offset_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3183848Z copying torch\include\ATen\ops\sym_stride.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3191374Z copying torch\include\ATen\ops\sym_stride_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3198119Z copying torch\include\ATen\ops\sym_stride_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3204804Z copying torch\include\ATen\ops\sym_stride_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3211281Z copying torch\include\ATen\ops\t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3217158Z copying torch\include\ATen\ops\take.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3223534Z copying torch\include\ATen\ops\take_along_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3230828Z copying torch\include\ATen\ops\take_along_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3237651Z copying torch\include\ATen\ops\take_along_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3249517Z copying torch\include\ATen\ops\take_along_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3256791Z copying torch\include\ATen\ops\take_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3263256Z copying torch\include\ATen\ops\take_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3270499Z copying torch\include\ATen\ops\take_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3277048Z copying torch\include\ATen\ops\take_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3283633Z copying torch\include\ATen\ops\tan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3289928Z copying torch\include\ATen\ops\tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3296989Z copying torch\include\ATen\ops\tanh_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3304431Z copying torch\include\ATen\ops\tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3311184Z copying torch\include\ATen\ops\tanh_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3317927Z copying torch\include\ATen\ops\tanh_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3324852Z copying torch\include\ATen\ops\tanh_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3331854Z copying torch\include\ATen\ops\tanh_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3338801Z copying torch\include\ATen\ops\tanh_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3346447Z copying torch\include\ATen\ops\tanh_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3360262Z copying torch\include\ATen\ops\tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3366924Z copying torch\include\ATen\ops\tanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3373538Z copying torch\include\ATen\ops\tanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3380298Z copying torch\include\ATen\ops\tanh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3386687Z copying torch\include\ATen\ops\tanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3393330Z copying torch\include\ATen\ops\tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3400090Z copying torch\include\ATen\ops\tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3406717Z copying torch\include\ATen\ops\tan_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3413891Z copying torch\include\ATen\ops\tan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3420438Z copying torch\include\ATen\ops\tan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3435316Z copying torch\include\ATen\ops\tan_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3441505Z copying torch\include\ATen\ops\tan_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3448168Z copying torch\include\ATen\ops\tan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3454754Z copying torch\include\ATen\ops\tan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3461054Z copying torch\include\ATen\ops\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3471956Z copying torch\include\ATen\ops\tensordot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3479128Z copying torch\include\ATen\ops\tensordot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3486469Z copying torch\include\ATen\ops\tensordot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3492663Z copying torch\include\ATen\ops\tensordot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3505460Z copying torch\include\ATen\ops\tensor_split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3516114Z copying torch\include\ATen\ops\tensor_split_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3523577Z copying torch\include\ATen\ops\tensor_split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3529649Z copying torch\include\ATen\ops\tensor_split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3536257Z copying torch\include\ATen\ops\thnn_conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3543176Z copying torch\include\ATen\ops\thnn_conv2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3549943Z copying torch\include\ATen\ops\thnn_conv2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3557035Z copying torch\include\ATen\ops\thnn_conv2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3564172Z copying torch\include\ATen\ops\threshold.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3590636Z copying torch\include\ATen\ops\threshold_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3597474Z copying torch\include\ATen\ops\threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3604224Z copying torch\include\ATen\ops\threshold_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3610887Z copying torch\include\ATen\ops\threshold_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3617724Z copying torch\include\ATen\ops\threshold_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3624445Z copying torch\include\ATen\ops\threshold_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3631178Z copying torch\include\ATen\ops\threshold_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3637977Z copying torch\include\ATen\ops\threshold_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3645855Z copying torch\include\ATen\ops\threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3652647Z copying torch\include\ATen\ops\threshold_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3659347Z copying torch\include\ATen\ops\threshold_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3666279Z copying torch\include\ATen\ops\threshold_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3673668Z copying torch\include\ATen\ops\threshold_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3680144Z copying torch\include\ATen\ops\threshold_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3686808Z copying torch\include\ATen\ops\threshold_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3693465Z copying torch\include\ATen\ops\tile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3700362Z copying torch\include\ATen\ops\tile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3712097Z copying torch\include\ATen\ops\tile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3718436Z copying torch\include\ATen\ops\tile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3725195Z copying torch\include\ATen\ops\to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3731427Z copying torch\include\ATen\ops\topk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3738080Z copying torch\include\ATen\ops\topk_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3749377Z copying torch\include\ATen\ops\topk_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3756943Z copying torch\include\ATen\ops\topk_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3763656Z copying torch\include\ATen\ops\topk_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3770345Z copying torch\include\ATen\ops\topk_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3777163Z copying torch\include\ATen\ops\topk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3783558Z copying torch\include\ATen\ops\topk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3790380Z copying torch\include\ATen\ops\to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3796898Z copying torch\include\ATen\ops\to_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3803170Z copying torch\include\ATen\ops\to_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3809989Z copying torch\include\ATen\ops\to_dense_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3822617Z copying torch\include\ATen\ops\to_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3828908Z copying torch\include\ATen\ops\to_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3835947Z copying torch\include\ATen\ops\to_dense_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3842672Z copying torch\include\ATen\ops\to_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3849685Z copying torch\include\ATen\ops\to_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3856871Z copying torch\include\ATen\ops\to_mkldnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3863048Z copying torch\include\ATen\ops\to_mkldnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3870440Z copying torch\include\ATen\ops\to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3877106Z copying torch\include\ATen\ops\to_mkldnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3883629Z copying torch\include\ATen\ops\to_mkldnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3890917Z copying torch\include\ATen\ops\to_mkldnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3897529Z copying torch\include\ATen\ops\to_mkldnn_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3904367Z copying torch\include\ATen\ops\to_mkldnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3911416Z copying torch\include\ATen\ops\to_mkldnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3918592Z copying torch\include\ATen\ops\to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3930758Z copying torch\include\ATen\ops\to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3937168Z copying torch\include\ATen\ops\to_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3944228Z copying torch\include\ATen\ops\to_padded_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3951353Z copying torch\include\ATen\ops\to_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3958268Z copying torch\include\ATen\ops\to_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3964754Z copying torch\include\ATen\ops\to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3971632Z copying torch\include\ATen\ops\to_sparse_bsc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3978396Z copying torch\include\ATen\ops\to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3985735Z copying torch\include\ATen\ops\to_sparse_bsc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3992489Z copying torch\include\ATen\ops\to_sparse_bsc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.3999267Z copying torch\include\ATen\ops\to_sparse_bsr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4006242Z copying torch\include\ATen\ops\to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4013032Z copying torch\include\ATen\ops\to_sparse_bsr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4019849Z copying torch\include\ATen\ops\to_sparse_bsr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4028080Z copying torch\include\ATen\ops\to_sparse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4034039Z copying torch\include\ATen\ops\to_sparse_csc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4040966Z copying torch\include\ATen\ops\to_sparse_csc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4047714Z copying torch\include\ATen\ops\to_sparse_csc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4055009Z copying torch\include\ATen\ops\to_sparse_csc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4060780Z copying torch\include\ATen\ops\to_sparse_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4072878Z copying torch\include\ATen\ops\to_sparse_csr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4079492Z copying torch\include\ATen\ops\to_sparse_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4086047Z copying torch\include\ATen\ops\to_sparse_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4092671Z copying torch\include\ATen\ops\to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4099478Z copying torch\include\ATen\ops\to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4111618Z copying torch\include\ATen\ops\trace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4118007Z copying torch\include\ATen\ops\trace_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4125891Z copying torch\include\ATen\ops\trace_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4132270Z copying torch\include\ATen\ops\trace_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4138644Z copying torch\include\ATen\ops\trace_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4150277Z copying torch\include\ATen\ops\trace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4156958Z copying torch\include\ATen\ops\trace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4163525Z copying torch\include\ATen\ops\trace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4170509Z copying torch\include\ATen\ops\trace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4177087Z copying torch\include\ATen\ops\trace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4183728Z copying torch\include\ATen\ops\transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4190769Z copying torch\include\ATen\ops\transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4197517Z copying torch\include\ATen\ops\transpose_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4203973Z copying torch\include\ATen\ops\transpose_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4210908Z copying torch\include\ATen\ops\transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4217938Z copying torch\include\ATen\ops\transpose_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4225054Z copying torch\include\ATen\ops\transpose_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4231824Z copying torch\include\ATen\ops\transpose_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4238465Z copying torch\include\ATen\ops\transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4245017Z copying torch\include\ATen\ops\transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4251796Z copying torch\include\ATen\ops\trapezoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4258625Z copying torch\include\ATen\ops\trapezoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4265438Z copying torch\include\ATen\ops\trapezoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4272371Z copying torch\include\ATen\ops\trapezoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4279208Z copying torch\include\ATen\ops\trapz.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4290586Z copying torch\include\ATen\ops\trapz_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4297385Z copying torch\include\ATen\ops\trapz_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4303886Z copying torch\include\ATen\ops\trapz_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4310861Z copying torch\include\ATen\ops\triangular_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4317854Z copying torch\include\ATen\ops\triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4324682Z copying torch\include\ATen\ops\triangular_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4331955Z copying torch\include\ATen\ops\triangular_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4338396Z copying torch\include\ATen\ops\triangular_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4345309Z copying torch\include\ATen\ops\triangular_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4352115Z copying torch\include\ATen\ops\triangular_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4359195Z copying torch\include\ATen\ops\triangular_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4366309Z copying torch\include\ATen\ops\tril.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4372932Z copying torch\include\ATen\ops\tril_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4379682Z copying torch\include\ATen\ops\tril_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4386624Z copying torch\include\ATen\ops\tril_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4393465Z copying torch\include\ATen\ops\tril_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4400763Z copying torch\include\ATen\ops\tril_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4407325Z copying torch\include\ATen\ops\tril_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4414193Z copying torch\include\ATen\ops\tril_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4421069Z copying torch\include\ATen\ops\tril_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4427874Z copying torch\include\ATen\ops\tril_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4435212Z copying torch\include\ATen\ops\tril_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4441731Z copying torch\include\ATen\ops\tril_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4448353Z copying torch\include\ATen\ops\tril_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4455015Z copying torch\include\ATen\ops\tril_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4461673Z copying torch\include\ATen\ops\triplet_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4468873Z copying torch\include\ATen\ops\triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4475624Z copying torch\include\ATen\ops\triplet_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4483009Z copying torch\include\ATen\ops\triplet_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4489642Z copying torch\include\ATen\ops\triu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4501650Z copying torch\include\ATen\ops\triu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4521432Z copying torch\include\ATen\ops\triu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4528500Z copying torch\include\ATen\ops\triu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4535316Z copying torch\include\ATen\ops\triu_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4542500Z copying torch\include\ATen\ops\triu_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4631011Z copying torch\include\ATen\ops\triu_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4637722Z copying torch\include\ATen\ops\triu_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4644554Z copying torch\include\ATen\ops\triu_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4651433Z copying torch\include\ATen\ops\triu_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4658259Z copying torch\include\ATen\ops\triu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4664645Z copying torch\include\ATen\ops\triu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4671414Z copying torch\include\ATen\ops\triu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4678260Z copying torch\include\ATen\ops\triu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4685561Z copying torch\include\ATen\ops\true_divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4692673Z copying torch\include\ATen\ops\true_divide_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4704686Z copying torch\include\ATen\ops\true_divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4711586Z copying torch\include\ATen\ops\true_divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4717990Z copying torch\include\ATen\ops\trunc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4724701Z copying torch\include\ATen\ops\trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4731430Z copying torch\include\ATen\ops\trunc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4737953Z copying torch\include\ATen\ops\trunc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4744935Z copying torch\include\ATen\ops\trunc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4751710Z copying torch\include\ATen\ops\trunc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4758162Z copying torch\include\ATen\ops\trunc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4764720Z copying torch\include\ATen\ops\trunc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4775941Z copying torch\include\ATen\ops\type_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4782247Z copying torch\include\ATen\ops\type_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4789061Z copying torch\include\ATen\ops\type_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4795405Z copying torch\include\ATen\ops\type_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4802157Z copying torch\include\ATen\ops\t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4808715Z copying torch\include\ATen\ops\t_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4816785Z copying torch\include\ATen\ops\t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4825398Z copying torch\include\ATen\ops\t_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4832802Z copying torch\include\ATen\ops\t_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4838920Z copying torch\include\ATen\ops\t_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4850502Z copying torch\include\ATen\ops\t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4856584Z copying torch\include\ATen\ops\t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4863013Z copying torch\include\ATen\ops\unbind.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4870976Z copying torch\include\ATen\ops\unbind_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4876728Z copying torch\include\ATen\ops\unbind_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4883529Z copying torch\include\ATen\ops\unbind_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4890993Z copying torch\include\ATen\ops\unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4897761Z copying torch\include\ATen\ops\unbind_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4904720Z copying torch\include\ATen\ops\unbind_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4911359Z copying torch\include\ATen\ops\unbind_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4940342Z copying torch\include\ATen\ops\unbind_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4946976Z copying torch\include\ATen\ops\unbind_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4954625Z copying torch\include\ATen\ops\unflatten.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4961996Z copying torch\include\ATen\ops\unflatten_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4968978Z copying torch\include\ATen\ops\unflatten_dense_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4980305Z copying torch\include\ATen\ops\unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4986925Z copying torch\include\ATen\ops\unflatten_dense_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.4993539Z copying torch\include\ATen\ops\unflatten_dense_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5000223Z copying torch\include\ATen\ops\unflatten_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5018524Z copying torch\include\ATen\ops\unflatten_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5019226Z copying torch\include\ATen\ops\unfold.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5021903Z copying torch\include\ATen\ops\unfold_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5029246Z copying torch\include\ATen\ops\unfold_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5036614Z copying torch\include\ATen\ops\unfold_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5043423Z copying torch\include\ATen\ops\unfold_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5054689Z copying torch\include\ATen\ops\unfold_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5061497Z copying torch\include\ATen\ops\unfold_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5068276Z copying torch\include\ATen\ops\unfold_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5075565Z copying torch\include\ATen\ops\unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5082671Z copying torch\include\ATen\ops\unfold_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5093648Z copying torch\include\ATen\ops\unfold_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5100876Z copying torch\include\ATen\ops\unfold_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5107367Z copying torch\include\ATen\ops\unfold_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5114448Z copying torch\include\ATen\ops\unfold_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5121125Z copying torch\include\ATen\ops\unfold_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5127925Z copying torch\include\ATen\ops\unfold_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5134341Z copying torch\include\ATen\ops\unfold_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5141029Z copying torch\include\ATen\ops\uniform.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5147738Z copying torch\include\ATen\ops\uniform_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5154790Z copying torch\include\ATen\ops\uniform_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5164949Z copying torch\include\ATen\ops\uniform_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5172098Z copying torch\include\ATen\ops\uniform_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5178644Z copying torch\include\ATen\ops\uniform_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5199961Z copying torch\include\ATen\ops\uniform_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5206667Z copying torch\include\ATen\ops\unique_consecutive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5213507Z copying torch\include\ATen\ops\unique_consecutive_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5220283Z copying torch\include\ATen\ops\unique_consecutive_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5226997Z copying torch\include\ATen\ops\unique_consecutive_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5234265Z copying torch\include\ATen\ops\unique_consecutive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5240853Z copying torch\include\ATen\ops\unique_consecutive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5247365Z copying torch\include\ATen\ops\unique_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5254356Z copying torch\include\ATen\ops\unique_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5261024Z copying torch\include\ATen\ops\unique_dim_consecutive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5268640Z copying torch\include\ATen\ops\unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5275903Z copying torch\include\ATen\ops\unique_dim_consecutive_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5282625Z copying torch\include\ATen\ops\unique_dim_consecutive_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5289450Z copying torch\include\ATen\ops\unique_dim_consecutive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5296215Z copying torch\include\ATen\ops\unique_dim_consecutive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5302948Z copying torch\include\ATen\ops\unique_dim_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5309973Z copying torch\include\ATen\ops\unique_dim_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5317213Z copying torch\include\ATen\ops\unique_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5324133Z copying torch\include\ATen\ops\unique_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5331020Z copying torch\include\ATen\ops\unsafe_chunk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5337839Z copying torch\include\ATen\ops\unsafe_chunk_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5344458Z copying torch\include\ATen\ops\unsafe_chunk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5355594Z copying torch\include\ATen\ops\unsafe_chunk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5362228Z copying torch\include\ATen\ops\unsafe_split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5369446Z copying torch\include\ATen\ops\unsafe_split_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5376210Z copying torch\include\ATen\ops\unsafe_split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5383086Z copying torch\include\ATen\ops\unsafe_split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5390262Z copying torch\include\ATen\ops\unsafe_split_with_sizes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5397728Z copying torch\include\ATen\ops\unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5404498Z copying torch\include\ATen\ops\unsafe_split_with_sizes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5411408Z copying torch\include\ATen\ops\unsafe_split_with_sizes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5418511Z copying torch\include\ATen\ops\unsqueeze.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5425415Z copying torch\include\ATen\ops\unsqueeze_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5432223Z copying torch\include\ATen\ops\unsqueeze_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5439655Z copying torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5446831Z copying torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5453284Z copying torch\include\ATen\ops\unsqueeze_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5460423Z copying torch\include\ATen\ops\unsqueeze_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5467283Z copying torch\include\ATen\ops\unsqueeze_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5474224Z copying torch\include\ATen\ops\unsqueeze_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5481634Z copying torch\include\ATen\ops\upsample_bicubic2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5488537Z copying torch\include\ATen\ops\upsample_bicubic2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5495804Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5502676Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5530877Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5531801Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5532706Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5533604Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5540329Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5549135Z copying torch\include\ATen\ops\upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5555423Z copying torch\include\ATen\ops\upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5562004Z copying torch\include\ATen\ops\upsample_bicubic2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5569056Z copying torch\include\ATen\ops\upsample_bicubic2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5576082Z copying torch\include\ATen\ops\upsample_bicubic2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5583537Z copying torch\include\ATen\ops\upsample_bicubic2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5590689Z copying torch\include\ATen\ops\upsample_bicubic2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5597445Z copying torch\include\ATen\ops\upsample_bicubic2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5604260Z copying torch\include\ATen\ops\upsample_bilinear2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5611564Z copying torch\include\ATen\ops\upsample_bilinear2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5618870Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5625541Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5632678Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5639537Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5646408Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5653246Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5660189Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5667515Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5679213Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5686265Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5693183Z copying torch\include\ATen\ops\upsample_bilinear2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5700415Z copying torch\include\ATen\ops\upsample_bilinear2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5707630Z copying torch\include\ATen\ops\upsample_bilinear2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5714628Z copying torch\include\ATen\ops\upsample_bilinear2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5721407Z copying torch\include\ATen\ops\upsample_bilinear2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5728514Z copying torch\include\ATen\ops\upsample_bilinear2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5735242Z copying torch\include\ATen\ops\upsample_linear1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5742016Z copying torch\include\ATen\ops\upsample_linear1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5749665Z copying torch\include\ATen\ops\upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5756411Z copying torch\include\ATen\ops\upsample_linear1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5763264Z copying torch\include\ATen\ops\upsample_linear1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5770461Z copying torch\include\ATen\ops\upsample_linear1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5777427Z copying torch\include\ATen\ops\upsample_linear1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5784305Z copying torch\include\ATen\ops\upsample_linear1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5792165Z copying torch\include\ATen\ops\upsample_linear1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5799024Z copying torch\include\ATen\ops\upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5805845Z copying torch\include\ATen\ops\upsample_linear1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5812782Z copying torch\include\ATen\ops\upsample_linear1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5819894Z copying torch\include\ATen\ops\upsample_linear1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5826939Z copying torch\include\ATen\ops\upsample_linear1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5834715Z copying torch\include\ATen\ops\upsample_linear1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5841562Z copying torch\include\ATen\ops\upsample_linear1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5848678Z copying torch\include\ATen\ops\upsample_linear1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5855866Z copying torch\include\ATen\ops\upsample_nearest1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5862832Z copying torch\include\ATen\ops\upsample_nearest1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5870372Z copying torch\include\ATen\ops\upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5877705Z copying torch\include\ATen\ops\upsample_nearest1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5884957Z copying torch\include\ATen\ops\upsample_nearest1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5892155Z copying torch\include\ATen\ops\upsample_nearest1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5899764Z copying torch\include\ATen\ops\upsample_nearest1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5906632Z copying torch\include\ATen\ops\upsample_nearest1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5913734Z copying torch\include\ATen\ops\upsample_nearest1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5921116Z copying torch\include\ATen\ops\upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5937629Z copying torch\include\ATen\ops\upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5941120Z copying torch\include\ATen\ops\upsample_nearest1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5959866Z copying torch\include\ATen\ops\upsample_nearest1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5960685Z copying torch\include\ATen\ops\upsample_nearest1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5964409Z copying torch\include\ATen\ops\upsample_nearest1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5976390Z copying torch\include\ATen\ops\upsample_nearest1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5984040Z copying torch\include\ATen\ops\upsample_nearest1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5990434Z copying torch\include\ATen\ops\upsample_nearest2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.5997562Z copying torch\include\ATen\ops\upsample_nearest2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6004743Z copying torch\include\ATen\ops\upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6016571Z copying torch\include\ATen\ops\upsample_nearest2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6023418Z copying torch\include\ATen\ops\upsample_nearest2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6030345Z copying torch\include\ATen\ops\upsample_nearest2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6037294Z copying torch\include\ATen\ops\upsample_nearest2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6044477Z copying torch\include\ATen\ops\upsample_nearest2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6051387Z copying torch\include\ATen\ops\upsample_nearest2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6058761Z copying torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6066327Z copying torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6073408Z copying torch\include\ATen\ops\upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6080325Z copying torch\include\ATen\ops\upsample_nearest2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6092505Z copying torch\include\ATen\ops\upsample_nearest2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6099614Z copying torch\include\ATen\ops\upsample_nearest2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6106799Z copying torch\include\ATen\ops\upsample_nearest2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6113875Z copying torch\include\ATen\ops\upsample_nearest2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6120654Z copying torch\include\ATen\ops\upsample_nearest2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6127434Z copying torch\include\ATen\ops\upsample_nearest3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6134570Z copying torch\include\ATen\ops\upsample_nearest3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6142388Z copying torch\include\ATen\ops\upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6149305Z copying torch\include\ATen\ops\upsample_nearest3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6156249Z copying torch\include\ATen\ops\upsample_nearest3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6163739Z copying torch\include\ATen\ops\upsample_nearest3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6170273Z copying torch\include\ATen\ops\upsample_nearest3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6177268Z copying torch\include\ATen\ops\upsample_nearest3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6184452Z copying torch\include\ATen\ops\upsample_nearest3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6191921Z copying torch\include\ATen\ops\upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6203674Z copying torch\include\ATen\ops\upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6210521Z copying torch\include\ATen\ops\upsample_nearest3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6217472Z copying torch\include\ATen\ops\upsample_nearest3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6224451Z copying torch\include\ATen\ops\upsample_nearest3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6231389Z copying torch\include\ATen\ops\upsample_nearest3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6238154Z copying torch\include\ATen\ops\upsample_nearest3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6245018Z copying torch\include\ATen\ops\upsample_nearest3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6251871Z copying torch\include\ATen\ops\upsample_trilinear3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6258791Z copying torch\include\ATen\ops\upsample_trilinear3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6266323Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6278250Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6285096Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6291953Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6298878Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6306607Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6314125Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6321970Z copying torch\include\ATen\ops\upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6329335Z copying torch\include\ATen\ops\upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6336498Z copying torch\include\ATen\ops\upsample_trilinear3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6343728Z copying torch\include\ATen\ops\upsample_trilinear3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6351258Z copying torch\include\ATen\ops\upsample_trilinear3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6358581Z copying torch\include\ATen\ops\upsample_trilinear3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6365804Z copying torch\include\ATen\ops\upsample_trilinear3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6373409Z copying torch\include\ATen\ops\upsample_trilinear3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6380589Z copying torch\include\ATen\ops\values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6387013Z copying torch\include\ATen\ops\values_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6394075Z copying torch\include\ATen\ops\values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6401300Z copying torch\include\ATen\ops\values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6408337Z copying torch\include\ATen\ops\values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6415641Z copying torch\include\ATen\ops\values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6422428Z copying torch\include\ATen\ops\values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6429493Z copying torch\include\ATen\ops\values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6436439Z copying torch\include\ATen\ops\values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6444044Z copying torch\include\ATen\ops\value_selecting_reduction_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6450886Z copying torch\include\ATen\ops\value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6457715Z copying torch\include\ATen\ops\value_selecting_reduction_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6464568Z copying torch\include\ATen\ops\value_selecting_reduction_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6471533Z copying torch\include\ATen\ops\vander.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6478609Z copying torch\include\ATen\ops\vander_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6485154Z copying torch\include\ATen\ops\vander_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6496571Z copying torch\include\ATen\ops\vander_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6503705Z copying torch\include\ATen\ops\var.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6510812Z copying torch\include\ATen\ops\var_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6524749Z copying torch\include\ATen\ops\var_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6525496Z copying torch\include\ATen\ops\var_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6532087Z copying torch\include\ATen\ops\var_mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6538838Z copying torch\include\ATen\ops\var_mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6545984Z copying torch\include\ATen\ops\var_mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6552746Z copying torch\include\ATen\ops\var_mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6559938Z copying torch\include\ATen\ops\var_mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6570974Z copying torch\include\ATen\ops\var_mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6577667Z copying torch\include\ATen\ops\var_mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6584224Z copying torch\include\ATen\ops\var_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6590813Z copying torch\include\ATen\ops\var_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6597302Z copying torch\include\ATen\ops\vdot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6603841Z copying torch\include\ATen\ops\vdot_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6610449Z copying torch\include\ATen\ops\vdot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6617184Z copying torch\include\ATen\ops\vdot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6623713Z copying torch\include\ATen\ops\vdot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6630172Z copying torch\include\ATen\ops\vdot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6640610Z copying torch\include\ATen\ops\view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6647188Z copying torch\include\ATen\ops\view_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6653347Z copying torch\include\ATen\ops\view_as_complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6660292Z copying torch\include\ATen\ops\view_as_complex_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6667424Z copying torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6679253Z copying torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6686186Z copying torch\include\ATen\ops\view_as_complex_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6693619Z copying torch\include\ATen\ops\view_as_complex_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6700776Z copying torch\include\ATen\ops\view_as_complex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6708592Z copying torch\include\ATen\ops\view_as_complex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6715185Z copying torch\include\ATen\ops\view_as_complex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6722267Z copying torch\include\ATen\ops\view_as_complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6728846Z copying torch\include\ATen\ops\view_as_complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6736109Z copying torch\include\ATen\ops\view_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6743277Z copying torch\include\ATen\ops\view_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6749731Z copying torch\include\ATen\ops\view_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6757182Z copying torch\include\ATen\ops\view_as_real.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6764041Z copying torch\include\ATen\ops\view_as_real_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6771849Z copying torch\include\ATen\ops\view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6778411Z copying torch\include\ATen\ops\view_as_real_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6785193Z copying torch\include\ATen\ops\view_as_real_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6792094Z copying torch\include\ATen\ops\view_as_real_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6799543Z copying torch\include\ATen\ops\view_as_real_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6807071Z copying torch\include\ATen\ops\view_as_real_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6814087Z copying torch\include\ATen\ops\view_as_real_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6850411Z copying torch\include\ATen\ops\view_as_real_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6879153Z copying torch\include\ATen\ops\view_as_real_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6886637Z copying torch\include\ATen\ops\view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6892811Z copying torch\include\ATen\ops\view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6900175Z copying torch\include\ATen\ops\view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6907650Z copying torch\include\ATen\ops\view_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6914679Z copying torch\include\ATen\ops\view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6921482Z copying torch\include\ATen\ops\view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6928468Z copying torch\include\ATen\ops\view_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6935206Z copying torch\include\ATen\ops\view_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6942060Z copying torch\include\ATen\ops\view_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6949398Z copying torch\include\ATen\ops\view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6955819Z copying torch\include\ATen\ops\view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6962556Z copying torch\include\ATen\ops\vsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6969241Z copying torch\include\ATen\ops\vsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6980348Z copying torch\include\ATen\ops\vsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6987331Z copying torch\include\ATen\ops\vsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.6994696Z copying torch\include\ATen\ops\vstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7001219Z copying torch\include\ATen\ops\vstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7007824Z copying torch\include\ATen\ops\vstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7014318Z copying torch\include\ATen\ops\vstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7021871Z copying torch\include\ATen\ops\where.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7029381Z copying torch\include\ATen\ops\where_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7035895Z copying torch\include\ATen\ops\where_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7042574Z copying torch\include\ATen\ops\where_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7049342Z copying torch\include\ATen\ops\where_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7055972Z copying torch\include\ATen\ops\where_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7062754Z copying torch\include\ATen\ops\xlogy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7070864Z copying torch\include\ATen\ops\xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7076372Z copying torch\include\ATen\ops\xlogy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7087655Z copying torch\include\ATen\ops\xlogy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7094373Z copying torch\include\ATen\ops\xlogy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7100912Z copying torch\include\ATen\ops\xlogy_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7107598Z copying torch\include\ATen\ops\xlogy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7114514Z copying torch\include\ATen\ops\xlogy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7121123Z copying torch\include\ATen\ops\xlogy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7127828Z copying torch\include\ATen\ops\xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7134387Z copying torch\include\ATen\ops\xor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7140903Z copying torch\include\ATen\ops\xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7147227Z copying torch\include\ATen\ops\xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7159488Z copying torch\include\ATen\ops\zero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7165881Z copying torch\include\ATen\ops\zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7172782Z copying torch\include\ATen\ops\zeros_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7179478Z copying torch\include\ATen\ops\zeros_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7186219Z copying torch\include\ATen\ops\zeros_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7193349Z copying torch\include\ATen\ops\zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7200051Z copying torch\include\ATen\ops\zeros_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7206746Z copying torch\include\ATen\ops\zeros_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7213487Z copying torch\include\ATen\ops\zeros_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7220200Z copying torch\include\ATen\ops\zeros_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7227428Z copying torch\include\ATen\ops\zero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7234551Z copying torch\include\ATen\ops\zero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7241187Z copying torch\include\ATen\ops\zero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7247794Z copying torch\include\ATen\ops\zero_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7254223Z copying torch\include\ATen\ops\zero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7261085Z copying torch\include\ATen\ops\zero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7267918Z copying torch\include\ATen\ops\_adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7274888Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7282111Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7295405Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7303119Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7310119Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7317389Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7324861Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7331651Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7338613Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7345938Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7352937Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7359700Z copying torch\include\ATen\ops\_adaptive_avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7366869Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7374293Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7381250Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7388361Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7395473Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7402751Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7410471Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7417838Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7425670Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7432408Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7439617Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7446535Z copying torch\include\ATen\ops\_addmm_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7454441Z copying torch\include\ATen\ops\_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7460842Z copying torch\include\ATen\ops\_addmm_activation_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7467796Z copying torch\include\ATen\ops\_addmm_activation_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7475358Z copying torch\include\ATen\ops\_addmm_activation_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7482428Z copying torch\include\ATen\ops\_addmm_activation_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7489513Z copying torch\include\ATen\ops\_addmm_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7496929Z copying torch\include\ATen\ops\_addmm_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7504230Z copying torch\include\ATen\ops\_add_batch_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7511855Z copying torch\include\ATen\ops\_add_batch_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7534435Z copying torch\include\ATen\ops\_add_batch_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7535194Z copying torch\include\ATen\ops\_add_batch_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7538734Z copying torch\include\ATen\ops\_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7546660Z copying torch\include\ATen\ops\_add_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7553397Z copying torch\include\ATen\ops\_add_relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7564328Z copying torch\include\ATen\ops\_add_relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7571367Z copying torch\include\ATen\ops\_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7578186Z copying torch\include\ATen\ops\_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7585653Z copying torch\include\ATen\ops\_aminmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7592103Z copying torch\include\ATen\ops\_aminmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7603358Z copying torch\include\ATen\ops\_aminmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7610150Z copying torch\include\ATen\ops\_aminmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7617236Z copying torch\include\ATen\ops\_aminmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7623914Z copying torch\include\ATen\ops\_aminmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7630958Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7642834Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7649879Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7656966Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7664072Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7671047Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7682306Z copying torch\include\ATen\ops\_amp_update_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7689114Z copying torch\include\ATen\ops\_amp_update_scale_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7696154Z copying torch\include\ATen\ops\_amp_update_scale_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7703506Z copying torch\include\ATen\ops\_amp_update_scale_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7710367Z copying torch\include\ATen\ops\_amp_update_scale_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7722006Z copying torch\include\ATen\ops\_amp_update_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7728787Z copying torch\include\ATen\ops\_amp_update_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7735820Z copying torch\include\ATen\ops\_assert_async.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7742601Z copying torch\include\ATen\ops\_assert_async_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7749452Z copying torch\include\ATen\ops\_assert_async_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7756006Z copying torch\include\ATen\ops\_assert_async_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7762951Z copying torch\include\ATen\ops\_assert_async_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7769818Z copying torch\include\ATen\ops\_assert_scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7777714Z copying torch\include\ATen\ops\_assert_scalar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7784515Z copying torch\include\ATen\ops\_assert_scalar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7795753Z copying torch\include\ATen\ops\_assert_scalar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7802999Z copying torch\include\ATen\ops\_assert_tensor_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7810311Z copying torch\include\ATen\ops\_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7817721Z copying torch\include\ATen\ops\_assert_tensor_metadata_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7824435Z copying torch\include\ATen\ops\_assert_tensor_metadata_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7835712Z copying torch\include\ATen\ops\_assert_tensor_metadata_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7842614Z copying torch\include\ATen\ops\_autocast_to_full_precision.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7849617Z copying torch\include\ATen\ops\_autocast_to_full_precision_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7856582Z copying torch\include\ATen\ops\_autocast_to_full_precision_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7863418Z copying torch\include\ATen\ops\_autocast_to_full_precision_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7870285Z copying torch\include\ATen\ops\_autocast_to_reduced_precision.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7877426Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7884464Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7892075Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7898410Z copying torch\include\ATen\ops\_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7905294Z copying torch\include\ATen\ops\_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7912230Z copying torch\include\ATen\ops\_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7919002Z copying torch\include\ATen\ops\_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7925990Z copying torch\include\ATen\ops\_batch_norm_impl_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7932918Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7944794Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7951670Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7958582Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7986368Z copying torch\include\ATen\ops\_batch_norm_impl_index_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.7993408Z copying torch\include\ATen\ops\_batch_norm_impl_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.8005968Z copying torch\include\ATen\ops\_batch_norm_impl_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.8012928Z copying torch\include\ATen\ops\_batch_norm_no_update.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.8039211Z copying torch\include\ATen\ops\_batch_norm_no_update_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.8040193Z copying torch\include\ATen\ops\_batch_norm_no_update_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.8040542Z copying torch\include\ATen\ops\_batch_norm_no_update_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.8046526Z copying torch\include\ATen\ops\_batch_norm_with_update.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.8054090Z copying torch\include\ATen\ops\_batch_norm_with_update_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9183199Z copying torch\include\ATen\ops\_batch_norm_with_update_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9190823Z copying torch\include\ATen\ops\_batch_norm_with_update_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9198168Z copying torch\include\ATen\ops\_batch_norm_with_update_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9209887Z copying torch\include\ATen\ops\_batch_norm_with_update_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9216741Z copying torch\include\ATen\ops\_cast_Byte.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9223638Z copying torch\include\ATen\ops\_cast_Byte_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9230528Z copying torch\include\ATen\ops\_cast_Byte_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9236851Z copying torch\include\ATen\ops\_cast_Byte_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9243465Z copying torch\include\ATen\ops\_cast_Char.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9250419Z copying torch\include\ATen\ops\_cast_Char_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9258347Z copying torch\include\ATen\ops\_cast_Char_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9265258Z copying torch\include\ATen\ops\_cast_Char_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9271936Z copying torch\include\ATen\ops\_cast_Double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9278928Z copying torch\include\ATen\ops\_cast_Double_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9285822Z copying torch\include\ATen\ops\_cast_Double_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9292286Z copying torch\include\ATen\ops\_cast_Double_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9298987Z copying torch\include\ATen\ops\_cast_Float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9307008Z copying torch\include\ATen\ops\_cast_Float_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9313300Z copying torch\include\ATen\ops\_cast_Float_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9320027Z copying torch\include\ATen\ops\_cast_Float_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9326857Z copying torch\include\ATen\ops\_cast_Half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9334003Z copying torch\include\ATen\ops\_cast_Half_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9340713Z copying torch\include\ATen\ops\_cast_Half_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9347072Z copying torch\include\ATen\ops\_cast_Half_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9354143Z copying torch\include\ATen\ops\_cast_Int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9361033Z copying torch\include\ATen\ops\_cast_Int_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9367837Z copying torch\include\ATen\ops\_cast_Int_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9374219Z copying torch\include\ATen\ops\_cast_Int_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9385231Z copying torch\include\ATen\ops\_cast_Long.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9392341Z copying torch\include\ATen\ops\_cast_Long_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9399220Z copying torch\include\ATen\ops\_cast_Long_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9406506Z copying torch\include\ATen\ops\_cast_Long_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9412931Z copying torch\include\ATen\ops\_cast_Short.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9434910Z copying torch\include\ATen\ops\_cast_Short_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9441642Z copying torch\include\ATen\ops\_cast_Short_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9448229Z copying torch\include\ATen\ops\_cast_Short_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9455353Z copying torch\include\ATen\ops\_cdist_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9462387Z copying torch\include\ATen\ops\_cdist_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9469663Z copying torch\include\ATen\ops\_cdist_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9476457Z copying torch\include\ATen\ops\_cdist_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9484200Z copying torch\include\ATen\ops\_cdist_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9491299Z copying torch\include\ATen\ops\_cdist_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9498273Z copying torch\include\ATen\ops\_cdist_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9510816Z copying torch\include\ATen\ops\_cdist_forward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9517730Z copying torch\include\ATen\ops\_cdist_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9524868Z copying torch\include\ATen\ops\_cdist_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9531448Z copying torch\include\ATen\ops\_cdist_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9561453Z copying torch\include\ATen\ops\_cdist_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9562220Z copying torch\include\ATen\ops\_cholesky_solve_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9563128Z copying torch\include\ATen\ops\_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9564238Z copying torch\include\ATen\ops\_cholesky_solve_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9569558Z copying torch\include\ATen\ops\_cholesky_solve_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9576473Z copying torch\include\ATen\ops\_cholesky_solve_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9622730Z copying torch\include\ATen\ops\_cholesky_solve_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9630038Z copying torch\include\ATen\ops\_choose_qparams_per_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9637124Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9644269Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9651128Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9662616Z copying torch\include\ATen\ops\_chunk_cat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9669946Z copying torch\include\ATen\ops\_chunk_cat_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9676823Z copying torch\include\ATen\ops\_chunk_cat_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9683685Z copying torch\include\ATen\ops\_chunk_cat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9690697Z copying torch\include\ATen\ops\_chunk_cat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9697762Z copying torch\include\ATen\ops\_coalesce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9704557Z copying torch\include\ATen\ops\_coalesced.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9711931Z copying torch\include\ATen\ops\_coalesced_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9718868Z copying torch\include\ATen\ops\_coalesced_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9725906Z copying torch\include\ATen\ops\_coalesced_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9737042Z copying torch\include\ATen\ops\_coalesced_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9744702Z copying torch\include\ATen\ops\_coalesce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9751513Z copying torch\include\ATen\ops\_coalesce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9758524Z copying torch\include\ATen\ops\_coalesce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9765607Z copying torch\include\ATen\ops\_compute_linear_combination.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9773164Z copying torch\include\ATen\ops\_compute_linear_combination_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9779838Z copying torch\include\ATen\ops\_compute_linear_combination_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9787006Z copying torch\include\ATen\ops\_compute_linear_combination_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9793956Z copying torch\include\ATen\ops\_compute_linear_combination_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9800906Z copying torch\include\ATen\ops\_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9813143Z copying torch\include\ATen\ops\_conj_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9819985Z copying torch\include\ATen\ops\_conj_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9827760Z copying torch\include\ATen\ops\_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9834814Z copying torch\include\ATen\ops\_conj_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9842099Z copying torch\include\ATen\ops\_conj_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9848751Z copying torch\include\ATen\ops\_conj_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9855703Z copying torch\include\ATen\ops\_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9862393Z copying torch\include\ATen\ops\_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9869731Z copying torch\include\ATen\ops\_conj_physical.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9877172Z copying torch\include\ATen\ops\_conj_physical_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9889174Z copying torch\include\ATen\ops\_conj_physical_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9896277Z copying torch\include\ATen\ops\_conj_physical_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9903379Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9910962Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9918046Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9936516Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9943816Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9950914Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9957934Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9965148Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:38.9972680Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0014047Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0021160Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0028413Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0047542Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0048428Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0051993Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0059551Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0066503Z copying torch\include\ATen\ops\_convert_weight_to_int4pack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0073679Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0089509Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0096702Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0103926Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0111142Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0122515Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0129751Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0136550Z copying torch\include\ATen\ops\_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0143623Z copying torch\include\ATen\ops\_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0150755Z copying torch\include\ATen\ops\_convolution_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0157384Z copying torch\include\ATen\ops\_convolution_double_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0172992Z copying torch\include\ATen\ops\_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0179848Z copying torch\include\ATen\ops\_convolution_double_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0186856Z copying torch\include\ATen\ops\_convolution_double_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0193792Z copying torch\include\ATen\ops\_convolution_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0200901Z copying torch\include\ATen\ops\_convolution_mode_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0211959Z copying torch\include\ATen\ops\_convolution_mode_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0219051Z copying torch\include\ATen\ops\_convolution_mode_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0225971Z copying torch\include\ATen\ops\_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0232927Z copying torch\include\ATen\ops\_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0239682Z copying torch\include\ATen\ops\_conv_depthwise2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0246773Z copying torch\include\ATen\ops\_conv_depthwise2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0253418Z copying torch\include\ATen\ops\_conv_depthwise2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0260332Z copying torch\include\ATen\ops\_conv_depthwise2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0266956Z copying torch\include\ATen\ops\_copy_from.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0273618Z copying torch\include\ATen\ops\_copy_from_and_resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0281035Z copying torch\include\ATen\ops\_copy_from_and_resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0287928Z copying torch\include\ATen\ops\_copy_from_and_resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0294798Z copying torch\include\ATen\ops\_copy_from_and_resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0302041Z copying torch\include\ATen\ops\_copy_from_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0308967Z copying torch\include\ATen\ops\_copy_from_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0315860Z copying torch\include\ATen\ops\_copy_from_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0322631Z copying torch\include\ATen\ops\_cslt_compress.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0329787Z copying torch\include\ATen\ops\_cslt_compress_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0336458Z copying torch\include\ATen\ops\_cslt_compress_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0342827Z copying torch\include\ATen\ops\_cslt_compress_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0355291Z copying torch\include\ATen\ops\_cslt_sparse_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0362597Z copying torch\include\ATen\ops\_cslt_sparse_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0369464Z copying torch\include\ATen\ops\_cslt_sparse_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0376473Z copying torch\include\ATen\ops\_cslt_sparse_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0383643Z copying torch\include\ATen\ops\_cslt_sparse_mm_search.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0395564Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0402822Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0410317Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0417592Z copying torch\include\ATen\ops\_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0423856Z copying torch\include\ATen\ops\_ctc_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0438174Z copying torch\include\ATen\ops\_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0445318Z copying torch\include\ATen\ops\_ctc_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0452298Z copying torch\include\ATen\ops\_ctc_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0459445Z copying torch\include\ATen\ops\_ctc_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0466666Z copying torch\include\ATen\ops\_ctc_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0474480Z copying torch\include\ATen\ops\_ctc_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0481518Z copying torch\include\ATen\ops\_ctc_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0488777Z copying torch\include\ATen\ops\_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0496379Z copying torch\include\ATen\ops\_ctc_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0503121Z copying torch\include\ATen\ops\_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0510257Z copying torch\include\ATen\ops\_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0517439Z copying torch\include\ATen\ops\_cudnn_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0524434Z copying torch\include\ATen\ops\_cudnn_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0531432Z copying torch\include\ATen\ops\_cudnn_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0538698Z copying torch\include\ATen\ops\_cudnn_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0565089Z copying torch\include\ATen\ops\_cudnn_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0565955Z copying torch\include\ATen\ops\_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0566880Z copying torch\include\ATen\ops\_cudnn_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0574138Z copying torch\include\ATen\ops\_cudnn_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0581395Z copying torch\include\ATen\ops\_cudnn_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0589313Z copying torch\include\ATen\ops\_cudnn_init_dropout_state.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0596285Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0603421Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0610526Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0617448Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0629649Z copying torch\include\ATen\ops\_cudnn_rnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0637031Z copying torch\include\ATen\ops\_cudnn_rnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0645558Z copying torch\include\ATen\ops\_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0652631Z copying torch\include\ATen\ops\_cudnn_rnn_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0659787Z copying torch\include\ATen\ops\_cudnn_rnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0680093Z copying torch\include\ATen\ops\_cudnn_rnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0687314Z copying torch\include\ATen\ops\_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0694434Z copying torch\include\ATen\ops\_cudnn_rnn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0701311Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0708924Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0720210Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0727357Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0734343Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0741371Z copying torch\include\ATen\ops\_cudnn_rnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0748574Z copying torch\include\ATen\ops\_cudnn_rnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0755634Z copying torch\include\ATen\ops\_cufft_clear_plan_cache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0762623Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0796284Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0803053Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0809954Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0817107Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0824407Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0831200Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0838176Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0845256Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0852450Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0859448Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0866443Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0874322Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0881413Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0892822Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0900746Z copying torch\include\ATen\ops\_cummax_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0907247Z copying torch\include\ATen\ops\_cummax_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0914401Z copying torch\include\ATen\ops\_cummax_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0921531Z copying torch\include\ATen\ops\_cummax_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0933125Z copying torch\include\ATen\ops\_cummax_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0940779Z copying torch\include\ATen\ops\_cummin_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0947248Z copying torch\include\ATen\ops\_cummin_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0954182Z copying torch\include\ATen\ops\_cummin_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0961328Z copying torch\include\ATen\ops\_cummin_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0968961Z copying torch\include\ATen\ops\_cummin_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0975964Z copying torch\include\ATen\ops\_debug_has_internal_overlap.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0983077Z copying torch\include\ATen\ops\_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0990052Z copying torch\include\ATen\ops\_debug_has_internal_overlap_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.0996687Z copying torch\include\ATen\ops\_debug_has_internal_overlap_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1003645Z copying torch\include\ATen\ops\_dimI.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1009864Z copying torch\include\ATen\ops\_dimI_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1016485Z copying torch\include\ATen\ops\_dimI_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1023153Z copying torch\include\ATen\ops\_dimV.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1029461Z copying torch\include\ATen\ops\_dimV_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1045201Z copying torch\include\ATen\ops\_dimV_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1062105Z copying torch\include\ATen\ops\_dim_arange.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1063014Z copying torch\include\ATen\ops\_dim_arange_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1069388Z copying torch\include\ATen\ops\_dim_arange_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1076650Z copying torch\include\ATen\ops\_dim_arange_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1083620Z copying torch\include\ATen\ops\_dirichlet_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1090711Z copying torch\include\ATen\ops\_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1097821Z copying torch\include\ATen\ops\_dirichlet_grad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1104432Z copying torch\include\ATen\ops\_dirichlet_grad_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1111511Z copying torch\include\ATen\ops\_dirichlet_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1118588Z copying torch\include\ATen\ops\_dirichlet_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1125393Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1132242Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1138834Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1145899Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1152874Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1159744Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1166718Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1173749Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1180512Z copying torch\include\ATen\ops\_efficientzerotensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1192448Z copying torch\include\ATen\ops\_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1199204Z copying torch\include\ATen\ops\_efficientzerotensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1214428Z copying torch\include\ATen\ops\_efficientzerotensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1216144Z copying torch\include\ATen\ops\_efficientzerotensor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1223051Z copying torch\include\ATen\ops\_efficientzerotensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1239348Z copying torch\include\ATen\ops\_efficientzerotensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1246421Z copying torch\include\ATen\ops\_efficient_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1253445Z copying torch\include\ATen\ops\_efficient_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1260734Z copying torch\include\ATen\ops\_efficient_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1267978Z copying torch\include\ATen\ops\_efficient_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1279397Z copying torch\include\ATen\ops\_efficient_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1286576Z copying torch\include\ATen\ops\_efficient_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1293491Z copying torch\include\ATen\ops\_efficient_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1300669Z copying torch\include\ATen\ops\_efficient_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1307759Z copying torch\include\ATen\ops\_embedding_bag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1319696Z copying torch\include\ATen\ops\_embedding_bag_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1326966Z copying torch\include\ATen\ops\_embedding_bag_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1333918Z copying torch\include\ATen\ops\_embedding_bag_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1340678Z copying torch\include\ATen\ops\_embedding_bag_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1347791Z copying torch\include\ATen\ops\_embedding_bag_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1355006Z copying torch\include\ATen\ops\_embedding_bag_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1362165Z copying torch\include\ATen\ops\_embedding_bag_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1369028Z copying torch\include\ATen\ops\_embedding_bag_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1375930Z copying torch\include\ATen\ops\_embedding_bag_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1383039Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1390153Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1397386Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1404815Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1411876Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1418878Z copying torch\include\ATen\ops\_embedding_bag_forward_only.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1431760Z copying torch\include\ATen\ops\_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1438767Z copying torch\include\ATen\ops\_embedding_bag_forward_only_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1445983Z copying torch\include\ATen\ops\_embedding_bag_forward_only_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1461827Z copying torch\include\ATen\ops\_embedding_bag_forward_only_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1462680Z copying torch\include\ATen\ops\_embedding_bag_forward_only_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1505783Z copying torch\include\ATen\ops\_embedding_bag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1506551Z copying torch\include\ATen\ops\_embedding_bag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1507380Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1508491Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1509609Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1514311Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1521825Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1530028Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1536532Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1543946Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1551145Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1558682Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1565668Z copying torch\include\ATen\ops\_empty_affine_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1572918Z copying torch\include\ATen\ops\_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1579915Z copying torch\include\ATen\ops\_empty_affine_quantized_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1587162Z copying torch\include\ATen\ops\_empty_affine_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1594165Z copying torch\include\ATen\ops\_empty_affine_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1601166Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1608376Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1615818Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1640048Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1647168Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1654254Z copying torch\include\ATen\ops\_euclidean_dist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1661642Z copying torch\include\ATen\ops\_euclidean_dist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1669024Z copying torch\include\ATen\ops\_euclidean_dist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1681599Z copying torch\include\ATen\ops\_euclidean_dist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1688772Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1695956Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1703178Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1710416Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1718064Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1725155Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1733259Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1740479Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1747942Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1770171Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1777428Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1784694Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1791997Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1799500Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1811549Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1819166Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1826372Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1834385Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1841865Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1849336Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1857560Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1864644Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1871838Z copying torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1879153Z copying torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1886571Z copying torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1894071Z copying torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1901352Z copying torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1908458Z copying torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1915721Z copying torch\include\ATen\ops\_fft_c2c.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1927120Z copying torch\include\ATen\ops\_fft_c2c_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1934183Z copying torch\include\ATen\ops\_fft_c2c_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1941303Z copying torch\include\ATen\ops\_fft_c2c_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1948409Z copying torch\include\ATen\ops\_fft_c2c_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1955086Z copying torch\include\ATen\ops\_fft_c2r.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1961838Z copying torch\include\ATen\ops\_fft_c2r_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1968883Z copying torch\include\ATen\ops\_fft_c2r_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1976082Z copying torch\include\ATen\ops\_fft_c2r_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1983262Z copying torch\include\ATen\ops\_fft_c2r_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.1990291Z copying torch\include\ATen\ops\_fft_r2c.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2002618Z copying torch\include\ATen\ops\_fft_r2c_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2009371Z copying torch\include\ATen\ops\_fft_r2c_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2016657Z copying torch\include\ATen\ops\_fft_r2c_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2023960Z copying torch\include\ATen\ops\_fft_r2c_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2030869Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2060233Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2061129Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2085995Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2092793Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2099804Z copying torch\include\ATen\ops\_flash_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2106765Z copying torch\include\ATen\ops\_flash_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2114121Z copying torch\include\ATen\ops\_flash_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2135084Z copying torch\include\ATen\ops\_flash_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2142285Z copying torch\include\ATen\ops\_flash_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2149309Z copying torch\include\ATen\ops\_flash_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2160555Z copying torch\include\ATen\ops\_flash_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2167572Z copying torch\include\ATen\ops\_flash_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2174199Z copying torch\include\ATen\ops\_foobar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2180938Z copying torch\include\ATen\ops\_foobar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2187430Z copying torch\include\ATen\ops\_foobar_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2199148Z copying torch\include\ATen\ops\_foobar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2206441Z copying torch\include\ATen\ops\_foobar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2213197Z copying torch\include\ATen\ops\_foreach_abs.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2220034Z copying torch\include\ATen\ops\_foreach_abs_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2226550Z copying torch\include\ATen\ops\_foreach_abs_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2233312Z copying torch\include\ATen\ops\_foreach_abs_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2240157Z copying torch\include\ATen\ops\_foreach_abs_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2247080Z copying torch\include\ATen\ops\_foreach_acos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2254184Z copying torch\include\ATen\ops\_foreach_acos_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2261058Z copying torch\include\ATen\ops\_foreach_acos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2273478Z copying torch\include\ATen\ops\_foreach_acos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2280379Z copying torch\include\ATen\ops\_foreach_acos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2287169Z copying torch\include\ATen\ops\_foreach_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2294322Z copying torch\include\ATen\ops\_foreach_addcdiv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2302050Z copying torch\include\ATen\ops\_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2317624Z copying torch\include\ATen\ops\_foreach_addcdiv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2324810Z copying torch\include\ATen\ops\_foreach_addcdiv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2331895Z copying torch\include\ATen\ops\_foreach_addcdiv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2338991Z copying torch\include\ATen\ops\_foreach_addcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2346491Z copying torch\include\ATen\ops\_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2358007Z copying torch\include\ATen\ops\_foreach_addcmul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2365363Z copying torch\include\ATen\ops\_foreach_addcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2372932Z copying torch\include\ATen\ops\_foreach_addcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2380136Z copying torch\include\ATen\ops\_foreach_add_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2386971Z copying torch\include\ATen\ops\_foreach_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2398851Z copying torch\include\ATen\ops\_foreach_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2405761Z copying torch\include\ATen\ops\_foreach_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2412949Z copying torch\include\ATen\ops\_foreach_asin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2420804Z copying torch\include\ATen\ops\_foreach_asin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2427816Z copying torch\include\ATen\ops\_foreach_asin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2439059Z copying torch\include\ATen\ops\_foreach_asin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2446179Z copying torch\include\ATen\ops\_foreach_asin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2453186Z copying torch\include\ATen\ops\_foreach_atan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2460582Z copying torch\include\ATen\ops\_foreach_atan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2467911Z copying torch\include\ATen\ops\_foreach_atan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2474830Z copying torch\include\ATen\ops\_foreach_atan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2482244Z copying torch\include\ATen\ops\_foreach_atan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2488776Z copying torch\include\ATen\ops\_foreach_ceil.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2495917Z copying torch\include\ATen\ops\_foreach_ceil_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2503194Z copying torch\include\ATen\ops\_foreach_ceil_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2510372Z copying torch\include\ATen\ops\_foreach_ceil_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2517389Z copying torch\include\ATen\ops\_foreach_ceil_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2524337Z copying torch\include\ATen\ops\_foreach_clamp_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2531651Z copying torch\include\ATen\ops\_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2538974Z copying torch\include\ATen\ops\_foreach_clamp_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2551723Z copying torch\include\ATen\ops\_foreach_clamp_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2558156Z copying torch\include\ATen\ops\_foreach_clamp_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2565143Z copying torch\include\ATen\ops\_foreach_clamp_min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2572593Z copying torch\include\ATen\ops\_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2579752Z copying torch\include\ATen\ops\_foreach_clamp_min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2586808Z copying torch\include\ATen\ops\_foreach_clamp_min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2593675Z copying torch\include\ATen\ops\_foreach_clamp_min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2600682Z copying torch\include\ATen\ops\_foreach_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2608152Z copying torch\include\ATen\ops\_foreach_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2615313Z copying torch\include\ATen\ops\_foreach_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2622329Z copying torch\include\ATen\ops\_foreach_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2629225Z copying torch\include\ATen\ops\_foreach_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2636515Z copying torch\include\ATen\ops\_foreach_cos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2643412Z copying torch\include\ATen\ops\_foreach_cosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2650540Z copying torch\include\ATen\ops\_foreach_cosh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2662500Z copying torch\include\ATen\ops\_foreach_cosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2669594Z copying torch\include\ATen\ops\_foreach_cosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2676665Z copying torch\include\ATen\ops\_foreach_cosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2683862Z copying torch\include\ATen\ops\_foreach_cos_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2690832Z copying torch\include\ATen\ops\_foreach_cos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2705718Z copying torch\include\ATen\ops\_foreach_cos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2712713Z copying torch\include\ATen\ops\_foreach_cos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2719927Z copying torch\include\ATen\ops\_foreach_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2728439Z copying torch\include\ATen\ops\_foreach_div_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2735397Z copying torch\include\ATen\ops\_foreach_div_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2742744Z copying torch\include\ATen\ops\_foreach_div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2749692Z copying torch\include\ATen\ops\_foreach_div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2756901Z copying torch\include\ATen\ops\_foreach_erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2763784Z copying torch\include\ATen\ops\_foreach_erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2770864Z copying torch\include\ATen\ops\_foreach_erfc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2778087Z copying torch\include\ATen\ops\_foreach_erfc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2784957Z copying torch\include\ATen\ops\_foreach_erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2792261Z copying torch\include\ATen\ops\_foreach_erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2799791Z copying torch\include\ATen\ops\_foreach_erf_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2807047Z copying torch\include\ATen\ops\_foreach_erf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2814598Z copying torch\include\ATen\ops\_foreach_erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2822263Z copying torch\include\ATen\ops\_foreach_erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2829706Z copying torch\include\ATen\ops\_foreach_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2837106Z copying torch\include\ATen\ops\_foreach_expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2844481Z copying torch\include\ATen\ops\_foreach_expm1_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2857129Z copying torch\include\ATen\ops\_foreach_expm1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2864382Z copying torch\include\ATen\ops\_foreach_expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2871801Z copying torch\include\ATen\ops\_foreach_expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2879514Z copying torch\include\ATen\ops\_foreach_exp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2886891Z copying torch\include\ATen\ops\_foreach_exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2894423Z copying torch\include\ATen\ops\_foreach_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2901050Z copying torch\include\ATen\ops\_foreach_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2908206Z copying torch\include\ATen\ops\_foreach_floor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2915631Z copying torch\include\ATen\ops\_foreach_floor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2922590Z copying torch\include\ATen\ops\_foreach_floor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2929625Z copying torch\include\ATen\ops\_foreach_floor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2936848Z copying torch\include\ATen\ops\_foreach_floor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2943736Z copying torch\include\ATen\ops\_foreach_frac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2951337Z copying torch\include\ATen\ops\_foreach_frac_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2958464Z copying torch\include\ATen\ops\_foreach_frac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2965817Z copying torch\include\ATen\ops\_foreach_frac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2972949Z copying torch\include\ATen\ops\_foreach_frac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2980344Z copying torch\include\ATen\ops\_foreach_lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2987576Z copying torch\include\ATen\ops\_foreach_lerp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.2994826Z copying torch\include\ATen\ops\_foreach_lerp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3007000Z copying torch\include\ATen\ops\_foreach_lerp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3014288Z copying torch\include\ATen\ops\_foreach_lerp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3021199Z copying torch\include\ATen\ops\_foreach_lgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3028715Z copying torch\include\ATen\ops\_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3036051Z copying torch\include\ATen\ops\_foreach_lgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3047515Z copying torch\include\ATen\ops\_foreach_lgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3059505Z copying torch\include\ATen\ops\_foreach_lgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3062879Z copying torch\include\ATen\ops\_foreach_log.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3070232Z copying torch\include\ATen\ops\_foreach_log10.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3077772Z copying torch\include\ATen\ops\_foreach_log10_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3085069Z copying torch\include\ATen\ops\_foreach_log10_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3092454Z copying torch\include\ATen\ops\_foreach_log10_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3099868Z copying torch\include\ATen\ops\_foreach_log10_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3106885Z copying torch\include\ATen\ops\_foreach_log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3114439Z copying torch\include\ATen\ops\_foreach_log1p_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3178222Z copying torch\include\ATen\ops\_foreach_log1p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3185400Z copying torch\include\ATen\ops\_foreach_log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3192799Z copying torch\include\ATen\ops\_foreach_log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3201464Z copying torch\include\ATen\ops\_foreach_log2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3210086Z copying torch\include\ATen\ops\_foreach_log2_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3216987Z copying torch\include\ATen\ops\_foreach_log2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3223840Z copying torch\include\ATen\ops\_foreach_log2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3231026Z copying torch\include\ATen\ops\_foreach_log2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3238184Z copying torch\include\ATen\ops\_foreach_log_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3245250Z copying torch\include\ATen\ops\_foreach_log_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3252328Z copying torch\include\ATen\ops\_foreach_log_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3259266Z copying torch\include\ATen\ops\_foreach_log_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3266455Z copying torch\include\ATen\ops\_foreach_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3273622Z copying torch\include\ATen\ops\_foreach_maximum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3281045Z copying torch\include\ATen\ops\_foreach_maximum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3293394Z copying torch\include\ATen\ops\_foreach_maximum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3302047Z copying torch\include\ATen\ops\_foreach_maximum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3309492Z copying torch\include\ATen\ops\_foreach_maximum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3316681Z copying torch\include\ATen\ops\_foreach_max_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3323335Z copying torch\include\ATen\ops\_foreach_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3330180Z copying torch\include\ATen\ops\_foreach_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3337560Z copying torch\include\ATen\ops\_foreach_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3344610Z copying torch\include\ATen\ops\_foreach_minimum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3352123Z copying torch\include\ATen\ops\_foreach_minimum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3359161Z copying torch\include\ATen\ops\_foreach_minimum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3365934Z copying torch\include\ATen\ops\_foreach_minimum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3372987Z copying torch\include\ATen\ops\_foreach_minimum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3379959Z copying torch\include\ATen\ops\_foreach_mul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3387357Z copying torch\include\ATen\ops\_foreach_mul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3394080Z copying torch\include\ATen\ops\_foreach_mul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3402652Z copying torch\include\ATen\ops\_foreach_mul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3411083Z copying torch\include\ATen\ops\_foreach_mul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3420257Z copying torch\include\ATen\ops\_foreach_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3427928Z copying torch\include\ATen\ops\_foreach_neg_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3435270Z copying torch\include\ATen\ops\_foreach_neg_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3442268Z copying torch\include\ATen\ops\_foreach_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3449230Z copying torch\include\ATen\ops\_foreach_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3456694Z copying torch\include\ATen\ops\_foreach_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3469103Z copying torch\include\ATen\ops\_foreach_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3476083Z copying torch\include\ATen\ops\_foreach_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3483342Z copying torch\include\ATen\ops\_foreach_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3490156Z copying torch\include\ATen\ops\_foreach_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3497200Z copying torch\include\ATen\ops\_foreach_pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3508905Z copying torch\include\ATen\ops\_foreach_pow_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3516148Z copying torch\include\ATen\ops\_foreach_pow_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3523118Z copying torch\include\ATen\ops\_foreach_pow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3530017Z copying torch\include\ATen\ops\_foreach_pow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3537093Z copying torch\include\ATen\ops\_foreach_reciprocal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3544764Z copying torch\include\ATen\ops\_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3570812Z copying torch\include\ATen\ops\_foreach_reciprocal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3571176Z copying torch\include\ATen\ops\_foreach_reciprocal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3571514Z copying torch\include\ATen\ops\_foreach_reciprocal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3583637Z copying torch\include\ATen\ops\_foreach_round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3584102Z copying torch\include\ATen\ops\_foreach_round_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3590887Z copying torch\include\ATen\ops\_foreach_round_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3597873Z copying torch\include\ATen\ops\_foreach_round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3604975Z copying torch\include\ATen\ops\_foreach_round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3612415Z copying torch\include\ATen\ops\_foreach_rsqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3619899Z copying torch\include\ATen\ops\_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3626676Z copying torch\include\ATen\ops\_foreach_rsqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3634934Z copying torch\include\ATen\ops\_foreach_rsqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3640769Z copying torch\include\ATen\ops\_foreach_rsqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3647515Z copying torch\include\ATen\ops\_foreach_sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3654797Z copying torch\include\ATen\ops\_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3661942Z copying torch\include\ATen\ops\_foreach_sigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3675295Z copying torch\include\ATen\ops\_foreach_sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3682220Z copying torch\include\ATen\ops\_foreach_sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3689846Z copying torch\include\ATen\ops\_foreach_sign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3723868Z copying torch\include\ATen\ops\_foreach_sign_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3731009Z copying torch\include\ATen\ops\_foreach_sign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3738071Z copying torch\include\ATen\ops\_foreach_sign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3745745Z copying torch\include\ATen\ops\_foreach_sign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3752865Z copying torch\include\ATen\ops\_foreach_sin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3759597Z copying torch\include\ATen\ops\_foreach_sinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3766658Z copying torch\include\ATen\ops\_foreach_sinh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3784713Z copying torch\include\ATen\ops\_foreach_sinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3792026Z copying torch\include\ATen\ops\_foreach_sinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3798891Z copying torch\include\ATen\ops\_foreach_sinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3806478Z copying torch\include\ATen\ops\_foreach_sin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3813481Z copying torch\include\ATen\ops\_foreach_sin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3825437Z copying torch\include\ATen\ops\_foreach_sin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3833085Z copying torch\include\ATen\ops\_foreach_sin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3840279Z copying torch\include\ATen\ops\_foreach_sqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3847886Z copying torch\include\ATen\ops\_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3855193Z copying torch\include\ATen\ops\_foreach_sqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3863047Z copying torch\include\ATen\ops\_foreach_sqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3870063Z copying torch\include\ATen\ops\_foreach_sqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3877636Z copying torch\include\ATen\ops\_foreach_sub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3885661Z copying torch\include\ATen\ops\_foreach_sub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3892251Z copying torch\include\ATen\ops\_foreach_sub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3899472Z copying torch\include\ATen\ops\_foreach_sub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3906652Z copying torch\include\ATen\ops\_foreach_sub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3914237Z copying torch\include\ATen\ops\_foreach_tan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3921494Z copying torch\include\ATen\ops\_foreach_tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3928961Z copying torch\include\ATen\ops\_foreach_tanh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3936421Z copying torch\include\ATen\ops\_foreach_tanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3943606Z copying torch\include\ATen\ops\_foreach_tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3950867Z copying torch\include\ATen\ops\_foreach_tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3958236Z copying torch\include\ATen\ops\_foreach_tan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3966082Z copying torch\include\ATen\ops\_foreach_tan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3972652Z copying torch\include\ATen\ops\_foreach_tan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3979744Z copying torch\include\ATen\ops\_foreach_tan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3986594Z copying torch\include\ATen\ops\_foreach_trunc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.3993840Z copying torch\include\ATen\ops\_foreach_trunc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4001014Z copying torch\include\ATen\ops\_foreach_trunc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4008760Z copying torch\include\ATen\ops\_foreach_trunc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4015766Z copying torch\include\ATen\ops\_foreach_trunc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4023308Z copying torch\include\ATen\ops\_foreach_zero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4030490Z copying torch\include\ATen\ops\_foreach_zero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4037416Z copying torch\include\ATen\ops\_foreach_zero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4049746Z copying torch\include\ATen\ops\_foreach_zero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4057380Z copying torch\include\ATen\ops\_foreach_zero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4067281Z copying torch\include\ATen\ops\_functional_assert_async.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4073412Z copying torch\include\ATen\ops\_functional_assert_async_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4079398Z copying torch\include\ATen\ops\_functional_assert_async_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4086427Z copying torch\include\ATen\ops\_functional_assert_async_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4093297Z copying torch\include\ATen\ops\_functional_assert_scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4100728Z copying torch\include\ATen\ops\_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4107617Z copying torch\include\ATen\ops\_functional_assert_scalar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4114639Z copying torch\include\ATen\ops\_functional_assert_scalar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4121721Z copying torch\include\ATen\ops\_functional_sym_constrain_range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4128947Z copying torch\include\ATen\ops\_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4135751Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4172729Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4180103Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4187400Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4195180Z copying torch\include\ATen\ops\_functional_sym_constrain_range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4208817Z copying torch\include\ATen\ops\_functional_sym_constrain_range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4217954Z copying torch\include\ATen\ops\_fused_adagrad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4224982Z copying torch\include\ATen\ops\_fused_adagrad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4232621Z copying torch\include\ATen\ops\_fused_adagrad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4239662Z copying torch\include\ATen\ops\_fused_adagrad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4246669Z copying torch\include\ATen\ops\_fused_adagrad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4253686Z copying torch\include\ATen\ops\_fused_adam.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4260510Z copying torch\include\ATen\ops\_fused_adamw.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4268216Z copying torch\include\ATen\ops\_fused_adamw_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4275512Z copying torch\include\ATen\ops\_fused_adamw_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4282397Z copying torch\include\ATen\ops\_fused_adamw_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4289110Z copying torch\include\ATen\ops\_fused_adamw_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4296973Z copying torch\include\ATen\ops\_fused_adamw_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4304111Z copying torch\include\ATen\ops\_fused_adam_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4310952Z copying torch\include\ATen\ops\_fused_adam_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4318897Z copying torch\include\ATen\ops\_fused_adam_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4326019Z copying torch\include\ATen\ops\_fused_adam_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4332820Z copying torch\include\ATen\ops\_fused_adam_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4339845Z copying torch\include\ATen\ops\_fused_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4347014Z copying torch\include\ATen\ops\_fused_dropout_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4354079Z copying torch\include\ATen\ops\_fused_dropout_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4361298Z copying torch\include\ATen\ops\_fused_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4367934Z copying torch\include\ATen\ops\_fused_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4380427Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4388226Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4395016Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4402032Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4408782Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4416082Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4423007Z copying torch\include\ATen\ops\_fused_rms_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4430224Z copying torch\include\ATen\ops\_fused_rms_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4437750Z copying torch\include\ATen\ops\_fused_rms_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4444668Z copying torch\include\ATen\ops\_fused_rms_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4451557Z copying torch\include\ATen\ops\_fused_rms_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4458747Z copying torch\include\ATen\ops\_fused_rms_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4466373Z copying torch\include\ATen\ops\_fused_rms_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4473567Z copying torch\include\ATen\ops\_fused_rms_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4480653Z copying torch\include\ATen\ops\_fused_rms_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4487640Z copying torch\include\ATen\ops\_fused_sdp_choice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4495022Z copying torch\include\ATen\ops\_fused_sdp_choice_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4502135Z copying torch\include\ATen\ops\_fused_sdp_choice_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4509716Z copying torch\include\ATen\ops\_fused_sdp_choice_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4517143Z copying torch\include\ATen\ops\_fused_sdp_choice_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4523572Z copying torch\include\ATen\ops\_fused_sdp_choice_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4530449Z copying torch\include\ATen\ops\_fused_sgd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4537938Z copying torch\include\ATen\ops\_fused_sgd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4545671Z copying torch\include\ATen\ops\_fused_sgd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4552188Z copying torch\include\ATen\ops\_fused_sgd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4559576Z copying torch\include\ATen\ops\_fused_sgd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4567171Z copying torch\include\ATen\ops\_fused_sgd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4574926Z copying torch\include\ATen\ops\_fw_primal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4582544Z copying torch\include\ATen\ops\_fw_primal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4589549Z copying torch\include\ATen\ops\_fw_primal_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4597480Z copying torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4604062Z copying torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4611484Z copying torch\include\ATen\ops\_fw_primal_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4618318Z copying torch\include\ATen\ops\_fw_primal_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4625197Z copying torch\include\ATen\ops\_fw_primal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4641434Z copying torch\include\ATen\ops\_fw_primal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4648359Z copying torch\include\ATen\ops\_gather_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4655328Z copying torch\include\ATen\ops\_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4662285Z copying torch\include\ATen\ops\_gather_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4697164Z copying torch\include\ATen\ops\_gather_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4704207Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4711181Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4718483Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4725514Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4732865Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4740623Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4747700Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4754689Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4761663Z copying torch\include\ATen\ops\_grouped_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4768853Z copying torch\include\ATen\ops\_grouped_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4775561Z copying torch\include\ATen\ops\_grouped_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4782444Z copying torch\include\ATen\ops\_grouped_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4789517Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4797215Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4803941Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4810701Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4817834Z copying torch\include\ATen\ops\_has_same_storage_numel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4825262Z copying torch\include\ATen\ops\_has_same_storage_numel_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4834418Z copying torch\include\ATen\ops\_has_same_storage_numel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4842108Z copying torch\include\ATen\ops\_has_same_storage_numel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4849519Z copying torch\include\ATen\ops\_histogramdd_bin_edges.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4856736Z copying torch\include\ATen\ops\_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4864184Z copying torch\include\ATen\ops\_histogramdd_bin_edges_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4871493Z copying torch\include\ATen\ops\_histogramdd_bin_edges_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4878368Z copying torch\include\ATen\ops\_histogramdd_bin_edges_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4889926Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4897714Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4904888Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4912066Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4919167Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4926253Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4933743Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4941249Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4949118Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4956225Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4967611Z copying torch\include\ATen\ops\_index_put_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4974715Z copying torch\include\ATen\ops\_index_put_impl_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4981975Z copying torch\include\ATen\ops\_index_put_impl_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4989118Z copying torch\include\ATen\ops\_index_put_impl_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.4997030Z copying torch\include\ATen\ops\_index_put_impl_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5008474Z copying torch\include\ATen\ops\_index_put_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5015503Z copying torch\include\ATen\ops\_index_put_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5022620Z copying torch\include\ATen\ops\_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5029461Z copying torch\include\ATen\ops\_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5036897Z copying torch\include\ATen\ops\_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5048396Z copying torch\include\ATen\ops\_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5055432Z copying torch\include\ATen\ops\_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5062173Z copying torch\include\ATen\ops\_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5074502Z copying torch\include\ATen\ops\_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5077610Z copying torch\include\ATen\ops\_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5088933Z copying torch\include\ATen\ops\_int_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5095633Z copying torch\include\ATen\ops\_int_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5102628Z copying torch\include\ATen\ops\_int_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5109943Z copying torch\include\ATen\ops\_int_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5116789Z copying torch\include\ATen\ops\_int_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5127783Z copying torch\include\ATen\ops\_is_all_true.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5134742Z copying torch\include\ATen\ops\_is_all_true_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5141738Z copying torch\include\ATen\ops\_is_all_true_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5148447Z copying torch\include\ATen\ops\_is_all_true_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5156721Z copying torch\include\ATen\ops\_is_any_true.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5166938Z copying torch\include\ATen\ops\_is_any_true_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5173685Z copying torch\include\ATen\ops\_is_any_true_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5180180Z copying torch\include\ATen\ops\_is_any_true_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5186864Z copying torch\include\ATen\ops\_is_zerotensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5194073Z copying torch\include\ATen\ops\_is_zerotensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5200760Z copying torch\include\ATen\ops\_is_zerotensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5207286Z copying torch\include\ATen\ops\_is_zerotensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5214659Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5221970Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5229142Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5236429Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5243434Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5250350Z copying torch\include\ATen\ops\_lazy_clone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5257295Z copying torch\include\ATen\ops\_lazy_clone_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5265206Z copying torch\include\ATen\ops\_lazy_clone_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5276181Z copying torch\include\ATen\ops\_lazy_clone_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5283122Z copying torch\include\ATen\ops\_linalg_check_errors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5291214Z copying torch\include\ATen\ops\_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5298596Z copying torch\include\ATen\ops\_linalg_check_errors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5304865Z copying torch\include\ATen\ops\_linalg_check_errors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5312478Z copying torch\include\ATen\ops\_linalg_det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5319857Z copying torch\include\ATen\ops\_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5327220Z copying torch\include\ATen\ops\_linalg_det_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5334581Z copying torch\include\ATen\ops\_linalg_det_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5341899Z copying torch\include\ATen\ops\_linalg_det_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5353371Z copying torch\include\ATen\ops\_linalg_det_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5360528Z copying torch\include\ATen\ops\_linalg_det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5369033Z copying torch\include\ATen\ops\_linalg_det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5375970Z copying torch\include\ATen\ops\_linalg_eigh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5383618Z copying torch\include\ATen\ops\_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5391017Z copying torch\include\ATen\ops\_linalg_eigh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5399001Z copying torch\include\ATen\ops\_linalg_eigh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5406082Z copying torch\include\ATen\ops\_linalg_eigh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5414203Z copying torch\include\ATen\ops\_linalg_eigh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5421671Z copying torch\include\ATen\ops\_linalg_eigh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5429319Z copying torch\include\ATen\ops\_linalg_eigh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5437179Z copying torch\include\ATen\ops\_linalg_eigvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5444678Z copying torch\include\ATen\ops\_linalg_eigvals_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5456033Z copying torch\include\ATen\ops\_linalg_eigvals_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5464300Z copying torch\include\ATen\ops\_linalg_eigvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5474924Z copying torch\include\ATen\ops\_linalg_eigvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5483176Z copying torch\include\ATen\ops\_linalg_slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5494193Z copying torch\include\ATen\ops\_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5502168Z copying torch\include\ATen\ops\_linalg_slogdet_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5508883Z copying torch\include\ATen\ops\_linalg_slogdet_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5526004Z copying torch\include\ATen\ops\_linalg_slogdet_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5532724Z copying torch\include\ATen\ops\_linalg_slogdet_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5539797Z copying torch\include\ATen\ops\_linalg_slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5546762Z copying torch\include\ATen\ops\_linalg_slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5553718Z copying torch\include\ATen\ops\_linalg_solve_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5560916Z copying torch\include\ATen\ops\_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5567672Z copying torch\include\ATen\ops\_linalg_solve_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5574640Z copying torch\include\ATen\ops\_linalg_solve_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5582614Z copying torch\include\ATen\ops\_linalg_solve_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5589247Z copying torch\include\ATen\ops\_linalg_solve_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5595955Z copying torch\include\ATen\ops\_linalg_solve_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5602586Z copying torch\include\ATen\ops\_linalg_solve_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5609258Z copying torch\include\ATen\ops\_linalg_svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5616280Z copying torch\include\ATen\ops\_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5622769Z copying torch\include\ATen\ops\_linalg_svd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5629644Z copying torch\include\ATen\ops\_linalg_svd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5641005Z copying torch\include\ATen\ops\_linalg_svd_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5647828Z copying torch\include\ATen\ops\_linalg_svd_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5658439Z copying torch\include\ATen\ops\_linalg_svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5665029Z copying torch\include\ATen\ops\_linalg_svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5671945Z copying torch\include\ATen\ops\_local_scalar_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5678807Z copying torch\include\ATen\ops\_local_scalar_dense_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5685610Z copying torch\include\ATen\ops\_local_scalar_dense_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5692500Z copying torch\include\ATen\ops\_local_scalar_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5699140Z copying torch\include\ATen\ops\_local_scalar_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5711759Z copying torch\include\ATen\ops\_logcumsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5718350Z copying torch\include\ATen\ops\_logcumsumexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5725380Z copying torch\include\ATen\ops\_logcumsumexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5732060Z copying torch\include\ATen\ops\_logcumsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5738582Z copying torch\include\ATen\ops\_logcumsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5753113Z copying torch\include\ATen\ops\_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5759776Z copying torch\include\ATen\ops\_log_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5767317Z copying torch\include\ATen\ops\_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5778187Z copying torch\include\ATen\ops\_log_softmax_backward_data_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5786227Z copying torch\include\ATen\ops\_log_softmax_backward_data_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5797445Z copying torch\include\ATen\ops\_log_softmax_backward_data_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5804615Z copying torch\include\ATen\ops\_log_softmax_backward_data_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5811537Z copying torch\include\ATen\ops\_log_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5818456Z copying torch\include\ATen\ops\_log_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5825575Z copying torch\include\ATen\ops\_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5837784Z copying torch\include\ATen\ops\_log_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5845000Z copying torch\include\ATen\ops\_log_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5852021Z copying torch\include\ATen\ops\_log_softmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5859037Z copying torch\include\ATen\ops\_log_softmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5865746Z copying torch\include\ATen\ops\_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5872647Z copying torch\include\ATen\ops\_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5880201Z copying torch\include\ATen\ops\_lstm_mps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5886808Z copying torch\include\ATen\ops\_lstm_mps_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5893571Z copying torch\include\ATen\ops\_lstm_mps_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5900565Z copying torch\include\ATen\ops\_lstm_mps_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5912282Z copying torch\include\ATen\ops\_lu_with_info.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5919261Z copying torch\include\ATen\ops\_lu_with_info_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5926151Z copying torch\include\ATen\ops\_lu_with_info_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5933097Z copying torch\include\ATen\ops\_lu_with_info_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5974714Z copying torch\include\ATen\ops\_make_dep_token.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5975539Z copying torch\include\ATen\ops\_make_dep_token_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5976325Z copying torch\include\ATen\ops\_make_dep_token_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5977082Z copying torch\include\ATen\ops\_make_dep_token_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5977785Z copying torch\include\ATen\ops\_make_dual.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5978980Z copying torch\include\ATen\ops\_make_dual_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5986821Z copying torch\include\ATen\ops\_make_dual_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.5993612Z copying torch\include\ATen\ops\_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6000837Z copying torch\include\ATen\ops\_make_dual_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6018303Z copying torch\include\ATen\ops\_make_dual_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6019095Z copying torch\include\ATen\ops\_make_dual_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6027639Z copying torch\include\ATen\ops\_make_dual_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6034191Z copying torch\include\ATen\ops\_make_dual_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6041098Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6048361Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6055606Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6062807Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6069638Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6119980Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6126753Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6134194Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6141334Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6148426Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6155529Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6162329Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6168999Z copying torch\include\ATen\ops\_masked_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6176812Z copying torch\include\ATen\ops\_masked_scale_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6183561Z copying torch\include\ATen\ops\_masked_scale_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6190216Z copying torch\include\ATen\ops\_masked_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6196940Z copying torch\include\ATen\ops\_masked_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6218693Z copying torch\include\ATen\ops\_masked_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6238001Z copying torch\include\ATen\ops\_masked_softmax_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6245452Z copying torch\include\ATen\ops\_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6252936Z copying torch\include\ATen\ops\_masked_softmax_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6260074Z copying torch\include\ATen\ops\_masked_softmax_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6267103Z copying torch\include\ATen\ops\_masked_softmax_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6275193Z copying torch\include\ATen\ops\_masked_softmax_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6282119Z copying torch\include\ATen\ops\_masked_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6289175Z copying torch\include\ATen\ops\_masked_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6296116Z copying torch\include\ATen\ops\_masked_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6303548Z copying torch\include\ATen\ops\_masked_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6310286Z copying torch\include\ATen\ops\_masked_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6317329Z copying torch\include\ATen\ops\_mixed_dtypes_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6324630Z copying torch\include\ATen\ops\_mixed_dtypes_linear_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6332149Z copying torch\include\ATen\ops\_mixed_dtypes_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6339381Z copying torch\include\ATen\ops\_mixed_dtypes_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6351072Z copying torch\include\ATen\ops\_mkldnn_reshape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6358154Z copying torch\include\ATen\ops\_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6364844Z copying torch\include\ATen\ops\_mkldnn_reshape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6372221Z copying torch\include\ATen\ops\_mkldnn_reshape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6379132Z copying torch\include\ATen\ops\_mkldnn_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6390548Z copying torch\include\ATen\ops\_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6397645Z copying torch\include\ATen\ops\_mkldnn_transpose_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6404838Z copying torch\include\ATen\ops\_mkldnn_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6411765Z copying torch\include\ATen\ops\_mkldnn_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6418785Z copying torch\include\ATen\ops\_mps_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6426352Z copying torch\include\ATen\ops\_mps_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6433043Z copying torch\include\ATen\ops\_mps_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6440065Z copying torch\include\ATen\ops\_mps_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6447207Z copying torch\include\ATen\ops\_mps_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6454344Z copying torch\include\ATen\ops\_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6461442Z copying torch\include\ATen\ops\_mps_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6468947Z copying torch\include\ATen\ops\_mps_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6475914Z copying torch\include\ATen\ops\_native_batch_norm_legit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6482970Z copying torch\include\ATen\ops\_native_batch_norm_legit_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6489864Z copying torch\include\ATen\ops\_native_batch_norm_legit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6501975Z copying torch\include\ATen\ops\_native_batch_norm_legit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6509091Z copying torch\include\ATen\ops\_native_batch_norm_legit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6516339Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6524108Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6531409Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6538953Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6545829Z copying torch\include\ATen\ops\_native_batch_norm_legit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6553273Z copying torch\include\ATen\ops\_native_multi_head_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6560443Z copying torch\include\ATen\ops\_native_multi_head_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6567639Z copying torch\include\ATen\ops\_native_multi_head_attention_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6579086Z copying torch\include\ATen\ops\_native_multi_head_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6585830Z copying torch\include\ATen\ops\_native_multi_head_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6592845Z copying torch\include\ATen\ops\_native_multi_head_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6599977Z copying torch\include\ATen\ops\_neg_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6606861Z copying torch\include\ATen\ops\_neg_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6618692Z copying torch\include\ATen\ops\_neg_view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6625820Z copying torch\include\ATen\ops\_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6632909Z copying torch\include\ATen\ops\_neg_view_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6639561Z copying torch\include\ATen\ops\_neg_view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6646382Z copying torch\include\ATen\ops\_neg_view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6653486Z copying torch\include\ATen\ops\_neg_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6659921Z copying torch\include\ATen\ops\_neg_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6666960Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6673853Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6680721Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6699611Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6706809Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6713698Z copying torch\include\ATen\ops\_nested_from_padded.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6721633Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6728767Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6736051Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6743054Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6750344Z copying torch\include\ATen\ops\_nested_from_padded_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6757334Z copying torch\include\ATen\ops\_nested_from_padded_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6765029Z copying torch\include\ATen\ops\_nested_from_padded_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6771890Z copying torch\include\ATen\ops\_nested_from_padded_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6779096Z copying torch\include\ATen\ops\_nested_from_padded_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6786260Z copying torch\include\ATen\ops\_nested_from_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6793812Z copying torch\include\ATen\ops\_nested_from_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6800169Z copying torch\include\ATen\ops\_nested_from_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6812282Z copying torch\include\ATen\ops\_nested_get_jagged_dummy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6819439Z copying torch\include\ATen\ops\_nested_get_jagged_dummy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6826095Z copying torch\include\ATen\ops\_nested_get_jagged_dummy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6833955Z copying torch\include\ATen\ops\_nested_get_lengths.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6840800Z copying torch\include\ATen\ops\_nested_get_lengths_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6847468Z copying torch\include\ATen\ops\_nested_get_lengths_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6854443Z copying torch\include\ATen\ops\_nested_get_max_seqlen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6861925Z copying torch\include\ATen\ops\_nested_get_max_seqlen_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6868671Z copying torch\include\ATen\ops\_nested_get_max_seqlen_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6875658Z copying torch\include\ATen\ops\_nested_get_min_seqlen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6887557Z copying torch\include\ATen\ops\_nested_get_min_seqlen_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6894388Z copying torch\include\ATen\ops\_nested_get_min_seqlen_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6901395Z copying torch\include\ATen\ops\_nested_get_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6909004Z copying torch\include\ATen\ops\_nested_get_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6915969Z copying torch\include\ATen\ops\_nested_get_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6927795Z copying torch\include\ATen\ops\_nested_get_ragged_idx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6934915Z copying torch\include\ATen\ops\_nested_get_ragged_idx_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6942067Z copying torch\include\ATen\ops\_nested_get_ragged_idx_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6949044Z copying torch\include\ATen\ops\_nested_get_values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6956142Z copying torch\include\ATen\ops\_nested_get_values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6963483Z copying torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6970797Z copying torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6977571Z copying torch\include\ATen\ops\_nested_get_values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6985046Z copying torch\include\ATen\ops\_nested_get_values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.6991932Z copying torch\include\ATen\ops\_nested_get_values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7004306Z copying torch\include\ATen\ops\_nested_get_values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7011297Z copying torch\include\ATen\ops\_nested_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7018240Z copying torch\include\ATen\ops\_nested_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7025228Z copying torch\include\ATen\ops\_nested_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7032198Z copying torch\include\ATen\ops\_nested_sum_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7043939Z copying torch\include\ATen\ops\_nested_sum_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7051092Z copying torch\include\ATen\ops\_nested_sum_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7058039Z copying torch\include\ATen\ops\_nested_tensor_from_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7065245Z copying torch\include\ATen\ops\_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7072275Z copying torch\include\ATen\ops\_nested_tensor_from_mask_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7080305Z copying torch\include\ATen\ops\_nested_tensor_from_mask_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7086897Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7094016Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7101028Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7108602Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7120355Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7127412Z copying torch\include\ATen\ops\_nested_tensor_from_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7134834Z copying torch\include\ATen\ops\_nested_tensor_from_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7141666Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7148943Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7155785Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7162667Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7169554Z copying torch\include\ATen\ops\_nested_tensor_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7176693Z copying torch\include\ATen\ops\_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7183369Z copying torch\include\ATen\ops\_nested_tensor_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7190142Z copying torch\include\ATen\ops\_nested_tensor_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7197117Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7204029Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7212719Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7226233Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7231931Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7238251Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7245425Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7252518Z copying torch\include\ATen\ops\_nested_tensor_strides.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7259517Z copying torch\include\ATen\ops\_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7274298Z copying torch\include\ATen\ops\_nested_tensor_strides_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7281125Z copying torch\include\ATen\ops\_nested_tensor_strides_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7287951Z copying torch\include\ATen\ops\_nested_view_from_buffer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7294950Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7302549Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7309994Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7317395Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7324390Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7331475Z copying torch\include\ATen\ops\_nested_view_from_buffer_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7338717Z copying torch\include\ATen\ops\_nested_view_from_buffer_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7351541Z copying torch\include\ATen\ops\_nested_view_from_buffer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7357988Z copying torch\include\ATen\ops\_nested_view_from_buffer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7364868Z copying torch\include\ATen\ops\_nested_view_from_jagged.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7371895Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7389179Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7397138Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7403878Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7410878Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7417940Z copying torch\include\ATen\ops\_nested_view_from_jagged_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7424744Z copying torch\include\ATen\ops\_nested_view_from_jagged_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7431974Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7439740Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7446456Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7453410Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7460093Z copying torch\include\ATen\ops\_nnpack_available.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7467198Z copying torch\include\ATen\ops\_nnpack_available_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7510609Z copying torch\include\ATen\ops\_nnpack_available_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7517189Z copying torch\include\ATen\ops\_nnpack_available_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7524083Z copying torch\include\ATen\ops\_nnpack_spatial_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7532448Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7540854Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7547612Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7554522Z copying torch\include\ATen\ops\_nnz.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7560709Z copying torch\include\ATen\ops\_nnz_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7566843Z copying torch\include\ATen\ops\_nnz_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7573307Z copying torch\include\ATen\ops\_pack_padded_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7580100Z copying torch\include\ATen\ops\_pack_padded_sequence_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7587436Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7594335Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7602061Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7619213Z copying torch\include\ATen\ops\_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7626712Z copying torch\include\ATen\ops\_pack_padded_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7633739Z copying torch\include\ATen\ops\_pack_padded_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7640612Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7647798Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7655655Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7662968Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7670291Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7678016Z copying torch\include\ATen\ops\_pad_circular.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7685493Z copying torch\include\ATen\ops\_pad_circular_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7692909Z copying torch\include\ATen\ops\_pad_circular_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7699655Z copying torch\include\ATen\ops\_pad_circular_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7706375Z copying torch\include\ATen\ops\_pad_enum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7714233Z copying torch\include\ATen\ops\_pad_enum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7720514Z copying torch\include\ATen\ops\_pad_enum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7727016Z copying torch\include\ATen\ops\_pad_enum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7734457Z copying torch\include\ATen\ops\_pad_packed_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7741346Z copying torch\include\ATen\ops\_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7748646Z copying torch\include\ATen\ops\_pad_packed_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7755240Z copying torch\include\ATen\ops\_pad_packed_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7762008Z copying torch\include\ATen\ops\_pdist_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7768754Z copying torch\include\ATen\ops\_pdist_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7775302Z copying torch\include\ATen\ops\_pdist_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7782075Z copying torch\include\ATen\ops\_pdist_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7788970Z copying torch\include\ATen\ops\_pdist_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7795675Z copying torch\include\ATen\ops\_pdist_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7802388Z copying torch\include\ATen\ops\_pdist_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7809518Z copying torch\include\ATen\ops\_pdist_forward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7816153Z copying torch\include\ATen\ops\_pdist_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7822908Z copying torch\include\ATen\ops\_pdist_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7829808Z copying torch\include\ATen\ops\_pdist_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7836881Z copying torch\include\ATen\ops\_pdist_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7843556Z copying torch\include\ATen\ops\_pin_memory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7850298Z copying torch\include\ATen\ops\_pin_memory_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7857368Z copying torch\include\ATen\ops\_pin_memory_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7863687Z copying torch\include\ATen\ops\_pin_memory_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7870511Z copying torch\include\ATen\ops\_prelu_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7878325Z copying torch\include\ATen\ops\_prelu_kernel_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7885194Z copying torch\include\ATen\ops\_prelu_kernel_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7891867Z copying torch\include\ATen\ops\_prelu_kernel_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7899102Z copying torch\include\ATen\ops\_prelu_kernel_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7905632Z copying torch\include\ATen\ops\_prelu_kernel_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7912535Z copying torch\include\ATen\ops\_prelu_kernel_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7919588Z copying torch\include\ATen\ops\_prelu_kernel_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7926341Z copying torch\include\ATen\ops\_prelu_kernel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7933417Z copying torch\include\ATen\ops\_prelu_kernel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7940231Z copying torch\include\ATen\ops\_print.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7946772Z copying torch\include\ATen\ops\_print_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7970088Z copying torch\include\ATen\ops\_print_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7976273Z copying torch\include\ATen\ops\_print_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7983104Z copying torch\include\ATen\ops\_propagate_xla_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7990400Z copying torch\include\ATen\ops\_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.7997121Z copying torch\include\ATen\ops\_propagate_xla_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8003635Z copying torch\include\ATen\ops\_propagate_xla_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8010306Z copying torch\include\ATen\ops\_remove_batch_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8017133Z copying torch\include\ATen\ops\_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8023815Z copying torch\include\ATen\ops\_remove_batch_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8030352Z copying torch\include\ATen\ops\_remove_batch_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8037019Z copying torch\include\ATen\ops\_reshape_alias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8043547Z copying torch\include\ATen\ops\_reshape_alias_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8050795Z copying torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8057518Z copying torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8064707Z copying torch\include\ATen\ops\_reshape_alias_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8071848Z copying torch\include\ATen\ops\_reshape_alias_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8078843Z copying torch\include\ATen\ops\_reshape_alias_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8086219Z copying torch\include\ATen\ops\_reshape_alias_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8093013Z copying torch\include\ATen\ops\_reshape_alias_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8099949Z copying torch\include\ATen\ops\_reshape_alias_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8106893Z copying torch\include\ATen\ops\_reshape_alias_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8113765Z copying torch\include\ATen\ops\_reshape_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8121068Z copying torch\include\ATen\ops\_reshape_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8128535Z copying torch\include\ATen\ops\_reshape_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8135703Z copying torch\include\ATen\ops\_reshape_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8143204Z copying torch\include\ATen\ops\_reshape_from_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8150756Z copying torch\include\ATen\ops\_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8158183Z copying torch\include\ATen\ops\_reshape_from_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8165013Z copying torch\include\ATen\ops\_reshape_from_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8172510Z copying torch\include\ATen\ops\_resize_output.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8180696Z copying torch\include\ATen\ops\_resize_output_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8187366Z copying torch\include\ATen\ops\_resize_output_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8215530Z copying torch\include\ATen\ops\_resize_output_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8222208Z copying torch\include\ATen\ops\_resize_output_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8275220Z copying torch\include\ATen\ops\_rowwise_prune.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8283180Z copying torch\include\ATen\ops\_rowwise_prune_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8290765Z copying torch\include\ATen\ops\_rowwise_prune_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8298127Z copying torch\include\ATen\ops\_rowwise_prune_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8304771Z copying torch\include\ATen\ops\_safe_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8312007Z copying torch\include\ATen\ops\_safe_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8318543Z copying torch\include\ATen\ops\_safe_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8324960Z copying torch\include\ATen\ops\_safe_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8331756Z copying torch\include\ATen\ops\_sample_dirichlet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8338704Z copying torch\include\ATen\ops\_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8345510Z copying torch\include\ATen\ops\_sample_dirichlet_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8352374Z copying torch\include\ATen\ops\_sample_dirichlet_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8359206Z copying torch\include\ATen\ops\_sample_dirichlet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8365921Z copying torch\include\ATen\ops\_sample_dirichlet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8372634Z copying torch\include\ATen\ops\_saturate_weight_to_fp16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8379676Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8386512Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8393350Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8400221Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8407589Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8414475Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8422750Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8430140Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8437150Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8444209Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8451274Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8458666Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8465828Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8473215Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8480276Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8487665Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8494710Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8501928Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8509488Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8516740Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8524051Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8531624Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8539117Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8546200Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8553445Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8560488Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8568079Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8574865Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8582462Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8589732Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8597238Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8604791Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8612730Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8620267Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8627903Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8635417Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8643005Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8650697Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8657623Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8664758Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8672158Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8679222Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8686534Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8693454Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8701192Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8708210Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8715231Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8722505Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8729749Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8736995Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8743734Z copying torch\include\ATen\ops\_scaled_grouped_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8751053Z copying torch\include\ATen\ops\_scaled_grouped_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8757791Z copying torch\include\ATen\ops\_scaled_grouped_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8764509Z copying torch\include\ATen\ops\_scaled_grouped_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8771166Z copying torch\include\ATen\ops\_scaled_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8778269Z copying torch\include\ATen\ops\_scaled_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8784943Z copying torch\include\ATen\ops\_scaled_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8793030Z copying torch\include\ATen\ops\_scaled_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8836891Z copying torch\include\ATen\ops\_scaled_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8837248Z copying torch\include\ATen\ops\_segment_reduce_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8837746Z copying torch\include\ATen\ops\_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8838139Z copying torch\include\ATen\ops\_segment_reduce_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8838537Z copying torch\include\ATen\ops\_segment_reduce_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8838970Z copying torch\include\ATen\ops\_segment_reduce_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8845217Z copying torch\include\ATen\ops\_segment_reduce_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8851982Z copying torch\include\ATen\ops\_shape_as_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8859250Z copying torch\include\ATen\ops\_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8865877Z copying torch\include\ATen\ops\_shape_as_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8872833Z copying torch\include\ATen\ops\_shape_as_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8879393Z copying torch\include\ATen\ops\_slow_conv2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8886590Z copying torch\include\ATen\ops\_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8893777Z copying torch\include\ATen\ops\_slow_conv2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8900582Z copying torch\include\ATen\ops\_slow_conv2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8907255Z copying torch\include\ATen\ops\_slow_conv2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8914334Z copying torch\include\ATen\ops\_slow_conv2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8921140Z copying torch\include\ATen\ops\_slow_conv2d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8928704Z copying torch\include\ATen\ops\_slow_conv2d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8935211Z copying torch\include\ATen\ops\_slow_conv2d_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8941969Z copying torch\include\ATen\ops\_slow_conv2d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8948785Z copying torch\include\ATen\ops\_slow_conv2d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8955465Z copying torch\include\ATen\ops\_sobol_engine_draw.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8962598Z copying torch\include\ATen\ops\_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8969469Z copying torch\include\ATen\ops\_sobol_engine_draw_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8976433Z copying torch\include\ATen\ops\_sobol_engine_draw_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8983070Z copying torch\include\ATen\ops\_sobol_engine_ff.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8990283Z copying torch\include\ATen\ops\_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.8996846Z copying torch\include\ATen\ops\_sobol_engine_ff_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9003750Z copying torch\include\ATen\ops\_sobol_engine_ff_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9010690Z copying torch\include\ATen\ops\_sobol_engine_initialize_state.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9017722Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9024264Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9030774Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9037408Z copying torch\include\ATen\ops\_sobol_engine_scramble.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9044723Z copying torch\include\ATen\ops\_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9051382Z copying torch\include\ATen\ops\_sobol_engine_scramble_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9058030Z copying torch\include\ATen\ops\_sobol_engine_scramble_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9064838Z copying torch\include\ATen\ops\_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9071305Z copying torch\include\ATen\ops\_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9078827Z copying torch\include\ATen\ops\_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9086028Z copying torch\include\ATen\ops\_softmax_backward_data_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9093519Z copying torch\include\ATen\ops\_softmax_backward_data_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9100438Z copying torch\include\ATen\ops\_softmax_backward_data_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9108293Z copying torch\include\ATen\ops\_softmax_backward_data_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9115118Z copying torch\include\ATen\ops\_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9121924Z copying torch\include\ATen\ops\_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9129634Z copying torch\include\ATen\ops\_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9136219Z copying torch\include\ATen\ops\_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9143042Z copying torch\include\ATen\ops\_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9149911Z copying torch\include\ATen\ops\_softmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9156569Z copying torch\include\ATen\ops\_softmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9163269Z copying torch\include\ATen\ops\_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9169962Z copying torch\include\ATen\ops\_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9186180Z copying torch\include\ATen\ops\_sparse_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9187041Z copying torch\include\ATen\ops\_sparse_addmm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9230069Z copying torch\include\ATen\ops\_sparse_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9230845Z copying torch\include\ATen\ops\_sparse_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9231584Z copying torch\include\ATen\ops\_sparse_broadcast_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9232420Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9233436Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9234649Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9237719Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9244559Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9252154Z copying torch\include\ATen\ops\_sparse_broadcast_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9258309Z copying torch\include\ATen\ops\_sparse_broadcast_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9265046Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9272784Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9279431Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9286474Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9293354Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9300425Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9307370Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9314955Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9321401Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9328572Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9335315Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9342183Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9349374Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9356441Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9363302Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9371202Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9377156Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9384562Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9391545Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9398472Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9405331Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9412306Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9419387Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9426809Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9434171Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9441067Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9448192Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9455212Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9462008Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9468904Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9475893Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9483524Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9490268Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9497349Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9504140Z copying torch\include\ATen\ops\_sparse_csr_prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9511929Z copying torch\include\ATen\ops\_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9518438Z copying torch\include\ATen\ops\_sparse_csr_prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9525299Z copying torch\include\ATen\ops\_sparse_csr_prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9532243Z copying torch\include\ATen\ops\_sparse_csr_sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9539698Z copying torch\include\ATen\ops\_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9546587Z copying torch\include\ATen\ops\_sparse_csr_sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9553668Z copying torch\include\ATen\ops\_sparse_csr_sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9560587Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9567760Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9575539Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9582013Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9589065Z copying torch\include\ATen\ops\_sparse_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9596051Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9621674Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9622782Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9623682Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9627822Z copying torch\include\ATen\ops\_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9634784Z copying torch\include\ATen\ops\_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9641641Z copying torch\include\ATen\ops\_sparse_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9648533Z copying torch\include\ATen\ops\_sparse_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9656728Z copying torch\include\ATen\ops\_sparse_mask_projection.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9662674Z copying torch\include\ATen\ops\_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9669662Z copying torch\include\ATen\ops\_sparse_mask_projection_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9676738Z copying torch\include\ATen\ops\_sparse_mask_projection_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9683319Z copying torch\include\ATen\ops\_sparse_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9690269Z copying torch\include\ATen\ops\_sparse_mm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9696883Z copying torch\include\ATen\ops\_sparse_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9703636Z copying torch\include\ATen\ops\_sparse_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9710633Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9717476Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9724447Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9731258Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9738046Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9744824Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9751828Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9759480Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9766311Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9773070Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9780169Z copying torch\include\ATen\ops\_sparse_semi_structured_apply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9787094Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9794876Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9801882Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9808674Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9815627Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9822500Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9829485Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9858434Z copying torch\include\ATen\ops\_sparse_semi_structured_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9865965Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9872751Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9879877Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9887037Z copying torch\include\ATen\ops\_sparse_semi_structured_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9894754Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9901637Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9908663Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9915615Z copying torch\include\ATen\ops\_sparse_semi_structured_tile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9923302Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9929995Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9936992Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9944048Z copying torch\include\ATen\ops\_sparse_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9951858Z copying torch\include\ATen\ops\_sparse_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9958755Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9965805Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9973003Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9980515Z copying torch\include\ATen\ops\_sparse_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9987713Z copying torch\include\ATen\ops\_sparse_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:39.9994726Z copying torch\include\ATen\ops\_sparse_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0001625Z copying torch\include\ATen\ops\_sparse_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0008593Z copying torch\include\ATen\ops\_sparse_sparse_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0016047Z copying torch\include\ATen\ops\_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0023169Z copying torch\include\ATen\ops\_sparse_sparse_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0030212Z copying torch\include\ATen\ops\_sparse_sparse_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0037729Z copying torch\include\ATen\ops\_sparse_sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0044272Z copying torch\include\ATen\ops\_sparse_sum_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0051471Z copying torch\include\ATen\ops\_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0058387Z copying torch\include\ATen\ops\_sparse_sum_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0065374Z copying torch\include\ATen\ops\_sparse_sum_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0072976Z copying torch\include\ATen\ops\_sparse_sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0080036Z copying torch\include\ATen\ops\_sparse_sum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0086926Z copying torch\include\ATen\ops\_sparse_sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0093803Z copying torch\include\ATen\ops\_sparse_sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0116864Z copying torch\include\ATen\ops\_spdiags.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0123738Z copying torch\include\ATen\ops\_spdiags_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0130478Z copying torch\include\ATen\ops\_spdiags_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0138528Z copying torch\include\ATen\ops\_spdiags_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0144329Z copying torch\include\ATen\ops\_spdiags_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0151300Z copying torch\include\ATen\ops\_spsolve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0157687Z copying torch\include\ATen\ops\_spsolve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0164013Z copying torch\include\ATen\ops\_spsolve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0170873Z copying torch\include\ATen\ops\_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0177624Z copying torch\include\ATen\ops\_stack_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0184285Z copying torch\include\ATen\ops\_stack_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0191090Z copying torch\include\ATen\ops\_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0197897Z copying torch\include\ATen\ops\_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0204448Z copying torch\include\ATen\ops\_standard_gamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0211735Z copying torch\include\ATen\ops\_standard_gamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0218366Z copying torch\include\ATen\ops\_standard_gamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0225003Z copying torch\include\ATen\ops\_standard_gamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0231796Z copying torch\include\ATen\ops\_standard_gamma_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0239143Z copying torch\include\ATen\ops\_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0246660Z copying torch\include\ATen\ops\_standard_gamma_grad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0253961Z copying torch\include\ATen\ops\_standard_gamma_grad_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0261222Z copying torch\include\ATen\ops\_standard_gamma_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0268077Z copying torch\include\ATen\ops\_standard_gamma_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0274795Z copying torch\include\ATen\ops\_standard_gamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0282033Z copying torch\include\ATen\ops\_standard_gamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0288706Z copying torch\include\ATen\ops\_test_ambiguous_defaults.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0295603Z copying torch\include\ATen\ops\_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0302232Z copying torch\include\ATen\ops\_test_ambiguous_defaults_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0309026Z copying torch\include\ATen\ops\_test_ambiguous_defaults_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0315969Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0323222Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0330345Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0337217Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0344002Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0351037Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0358622Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0366015Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0373347Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0380404Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0387537Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0394839Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0401974Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0408762Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0415693Z copying torch\include\ATen\ops\_test_check_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0433593Z copying torch\include\ATen\ops\_test_check_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0440560Z copying torch\include\ATen\ops\_test_check_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0447903Z copying torch\include\ATen\ops\_test_check_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0454678Z copying torch\include\ATen\ops\_test_functorch_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0461865Z copying torch\include\ATen\ops\_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0468955Z copying torch\include\ATen\ops\_test_functorch_fallback_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0476634Z copying torch\include\ATen\ops\_test_functorch_fallback_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0483268Z copying torch\include\ATen\ops\_test_functorch_fallback_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0490215Z copying torch\include\ATen\ops\_test_optional_filled_intlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0497483Z copying torch\include\ATen\ops\_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0509491Z copying torch\include\ATen\ops\_test_optional_filled_intlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0516581Z copying torch\include\ATen\ops\_test_optional_filled_intlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0523860Z copying torch\include\ATen\ops\_test_optional_filled_intlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0531388Z copying torch\include\ATen\ops\_test_optional_floatlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0539273Z copying torch\include\ATen\ops\_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0546585Z copying torch\include\ATen\ops\_test_optional_floatlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0553850Z copying torch\include\ATen\ops\_test_optional_floatlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0560896Z copying torch\include\ATen\ops\_test_optional_floatlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0568013Z copying torch\include\ATen\ops\_test_optional_intlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0575490Z copying torch\include\ATen\ops\_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0582257Z copying torch\include\ATen\ops\_test_optional_intlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0589353Z copying torch\include\ATen\ops\_test_optional_intlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0596482Z copying torch\include\ATen\ops\_test_optional_intlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0616615Z copying torch\include\ATen\ops\_test_parallel_materialize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0617571Z copying torch\include\ATen\ops\_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0619498Z copying torch\include\ATen\ops\_test_parallel_materialize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0626332Z copying torch\include\ATen\ops\_test_parallel_materialize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0634693Z copying torch\include\ATen\ops\_test_serialization_subcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0641750Z copying torch\include\ATen\ops\_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0648626Z copying torch\include\ATen\ops\_test_serialization_subcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0655534Z copying torch\include\ATen\ops\_test_serialization_subcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0662375Z copying torch\include\ATen\ops\_test_string_default.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0669753Z copying torch\include\ATen\ops\_test_string_default_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0676381Z copying torch\include\ATen\ops\_test_string_default_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0682873Z copying torch\include\ATen\ops\_test_string_default_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0689788Z copying torch\include\ATen\ops\_test_warn_in_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0696810Z copying torch\include\ATen\ops\_test_warn_in_autograd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0703637Z copying torch\include\ATen\ops\_test_warn_in_autograd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0710810Z copying torch\include\ATen\ops\_test_warn_in_autograd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0717653Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0724759Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0731584Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0738349Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0745235Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0752778Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0759905Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0766908Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0773584Z copying torch\include\ATen\ops\_thnn_fused_gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0780811Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0787570Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0794421Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0801705Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0808187Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0815185Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0821866Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0828822Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0835555Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0842521Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0849763Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0856836Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0863648Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0871083Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0878027Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0884834Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0891581Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0898421Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0905248Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0912611Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0920082Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0926906Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0933699Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0940367Z copying torch\include\ATen\ops\_to_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0947093Z copying torch\include\ATen\ops\_to_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0953782Z copying torch\include\ATen\ops\_to_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0960883Z copying torch\include\ATen\ops\_to_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0967171Z copying torch\include\ATen\ops\_to_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0973561Z copying torch\include\ATen\ops\_to_cpu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0979978Z copying torch\include\ATen\ops\_to_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0986623Z copying torch\include\ATen\ops\_to_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.0993322Z copying torch\include\ATen\ops\_to_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1000231Z copying torch\include\ATen\ops\_to_dense_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1007075Z copying torch\include\ATen\ops\_to_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1041729Z copying torch\include\ATen\ops\_to_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1048548Z copying torch\include\ATen\ops\_to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1055070Z copying torch\include\ATen\ops\_to_sparse_bsc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1062043Z copying torch\include\ATen\ops\_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1068731Z copying torch\include\ATen\ops\_to_sparse_bsc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1075456Z copying torch\include\ATen\ops\_to_sparse_bsc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1082559Z copying torch\include\ATen\ops\_to_sparse_bsc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1089450Z copying torch\include\ATen\ops\_to_sparse_bsc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1096092Z copying torch\include\ATen\ops\_to_sparse_bsr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1103086Z copying torch\include\ATen\ops\_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1109891Z copying torch\include\ATen\ops\_to_sparse_bsr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1116722Z copying torch\include\ATen\ops\_to_sparse_bsr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1123834Z copying torch\include\ATen\ops\_to_sparse_bsr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1130972Z copying torch\include\ATen\ops\_to_sparse_bsr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1138169Z copying torch\include\ATen\ops\_to_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1144913Z copying torch\include\ATen\ops\_to_sparse_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1151602Z copying torch\include\ATen\ops\_to_sparse_csc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1158527Z copying torch\include\ATen\ops\_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1165240Z copying torch\include\ATen\ops\_to_sparse_csc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1171990Z copying torch\include\ATen\ops\_to_sparse_csc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1179406Z copying torch\include\ATen\ops\_to_sparse_csc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1186213Z copying torch\include\ATen\ops\_to_sparse_csc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1193039Z copying torch\include\ATen\ops\_to_sparse_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1200163Z copying torch\include\ATen\ops\_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1206892Z copying torch\include\ATen\ops\_to_sparse_csr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1213772Z copying torch\include\ATen\ops\_to_sparse_csr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1220737Z copying torch\include\ATen\ops\_to_sparse_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1227564Z copying torch\include\ATen\ops\_to_sparse_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1234403Z copying torch\include\ATen\ops\_to_sparse_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1241028Z copying torch\include\ATen\ops\_to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1247721Z copying torch\include\ATen\ops\_to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1254430Z copying torch\include\ATen\ops\_to_sparse_semi_structured.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1261238Z copying torch\include\ATen\ops\_to_sparse_semi_structured_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1268340Z copying torch\include\ATen\ops\_to_sparse_semi_structured_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1275325Z copying torch\include\ATen\ops\_to_sparse_semi_structured_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1282120Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1289087Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1295904Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1303085Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1310406Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1317532Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1324487Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1331905Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1339261Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1346003Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1353287Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1360718Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1367292Z copying torch\include\ATen\ops\_trilinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1374829Z copying torch\include\ATen\ops\_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1381675Z copying torch\include\ATen\ops\_trilinear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1389051Z copying torch\include\ATen\ops\_trilinear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1395469Z copying torch\include\ATen\ops\_trilinear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1402481Z copying torch\include\ATen\ops\_triton_multi_head_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1409596Z copying torch\include\ATen\ops\_triton_multi_head_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1416427Z copying torch\include\ATen\ops\_triton_multi_head_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1423797Z copying torch\include\ATen\ops\_triton_multi_head_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1430849Z copying torch\include\ATen\ops\_triton_multi_head_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1437768Z copying torch\include\ATen\ops\_triton_scaled_dot_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1445012Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1453145Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1460171Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1467346Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1474717Z copying torch\include\ATen\ops\_unique.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1481479Z copying torch\include\ATen\ops\_unique2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1488529Z copying torch\include\ATen\ops\_unique2_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1495223Z copying torch\include\ATen\ops\_unique2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1502116Z copying torch\include\ATen\ops\_unique2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1509938Z copying torch\include\ATen\ops\_unique2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1516619Z copying torch\include\ATen\ops\_unique2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1523724Z copying torch\include\ATen\ops\_unique_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1530788Z copying torch\include\ATen\ops\_unique_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1537756Z copying torch\include\ATen\ops\_unique_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1544570Z copying torch\include\ATen\ops\_unique_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1551477Z copying torch\include\ATen\ops\_unique_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1558474Z copying torch\include\ATen\ops\_unpack_dual.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1565656Z copying torch\include\ATen\ops\_unpack_dual_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1572671Z copying torch\include\ATen\ops\_unpack_dual_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1580001Z copying torch\include\ATen\ops\_unpack_dual_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1586799Z copying torch\include\ATen\ops\_unsafe_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1595126Z copying torch\include\ATen\ops\_unsafe_index_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1602137Z copying torch\include\ATen\ops\_unsafe_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1608879Z copying torch\include\ATen\ops\_unsafe_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1617027Z copying torch\include\ATen\ops\_unsafe_index_put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1624048Z copying torch\include\ATen\ops\_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1631441Z copying torch\include\ATen\ops\_unsafe_index_put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1638711Z copying torch\include\ATen\ops\_unsafe_index_put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1646785Z copying torch\include\ATen\ops\_unsafe_masked_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1654076Z copying torch\include\ATen\ops\_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1660671Z copying torch\include\ATen\ops\_unsafe_masked_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1668445Z copying torch\include\ATen\ops\_unsafe_masked_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1674789Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1682145Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1688903Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1695691Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1702708Z copying torch\include\ATen\ops\_unsafe_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1710105Z copying torch\include\ATen\ops\_unsafe_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1717038Z copying torch\include\ATen\ops\_unsafe_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1723941Z copying torch\include\ATen\ops\_unsafe_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1730838Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1737767Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1745021Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1752332Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1759505Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1766360Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1773415Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1780420Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1787800Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1811778Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1818749Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1825675Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1832774Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1839929Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1846659Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1853427Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1860644Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1867855Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1875309Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1882481Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1890611Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1897518Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1904672Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1912649Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1919850Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1927175Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1934501Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1942145Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1949300Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1956233Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1963604Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1971058Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.1996199Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2003218Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2010564Z copying torch\include\ATen\ops\_upsample_nearest_exact1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2017586Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2025900Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2033528Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2040421Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2047437Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2054634Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2062315Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2090156Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2097787Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2105167Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2113007Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2125615Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2128097Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2135413Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2143698Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2150227Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2157397Z copying torch\include\ATen\ops\_upsample_nearest_exact2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2164896Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2172302Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2179175Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2186552Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2193993Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2200992Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2208152Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2215252Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2222782Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2229978Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2236999Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2243840Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2250855Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2258324Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2265894Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2272984Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2279954Z copying torch\include\ATen\ops\_upsample_nearest_exact3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2287775Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2295297Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2302529Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2310698Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2317850Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2324945Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2332313Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2339690Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2347078Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2354994Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2362235Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2369263Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2376643Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2384291Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2391557Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2398754Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2405771Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2412747Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2419993Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2427197Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2434180Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2441746Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2448910Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2455927Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2463057Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2470461Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2477591Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2484787Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2492163Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2499673Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2506744Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2513832Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2520860Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2528142Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2535402Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2542644Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2549836Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2557219Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2564627Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2572630Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2580198Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2587504Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2594973Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2601947Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2608984Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2615746Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2623349Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2630323Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2637257Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2644325Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2651753Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2658755Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2665634Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2672390Z copying torch\include\ATen\ops\_values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2678778Z copying torch\include\ATen\ops\_values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2686255Z copying torch\include\ATen\ops\_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2692698Z copying torch\include\ATen\ops\_values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2699934Z copying torch\include\ATen\ops\_values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2706683Z copying torch\include\ATen\ops\_values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2713585Z copying torch\include\ATen\ops\_values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2720227Z copying torch\include\ATen\ops\_values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2726790Z copying torch\include\ATen\ops\_version.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2733234Z copying torch\include\ATen\ops\_version_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2740255Z copying torch\include\ATen\ops\_version_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2747023Z copying torch\include\ATen\ops\_version_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2754191Z copying torch\include\ATen\ops\_weight_int4pack_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2761071Z copying torch\include\ATen\ops\_weight_int4pack_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2767986Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2774845Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2801525Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2802126Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2802489Z copying torch\include\ATen\ops\_weight_int4pack_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2802999Z copying torch\include\ATen\ops\_weight_int4pack_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2810208Z copying torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2817385Z copying torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2823983Z copying torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2831278Z copying torch\include\ATen\ops\_weight_int8pack_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2838302Z copying torch\include\ATen\ops\_weight_int8pack_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2845033Z copying torch\include\ATen\ops\_weight_int8pack_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2851858Z copying torch\include\ATen\ops\_weight_int8pack_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2859151Z copying torch\include\ATen\ops\_weight_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2866639Z copying torch\include\ATen\ops\_weight_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2873779Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2881058Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2888089Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2895318Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2902235Z copying torch\include\ATen\ops\_weight_norm_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2909613Z copying torch\include\ATen\ops\_weight_norm_interface_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2916809Z copying torch\include\ATen\ops\_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2924573Z copying torch\include\ATen\ops\_weight_norm_interface_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2931889Z copying torch\include\ATen\ops\_weight_norm_interface_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2938897Z copying torch\include\ATen\ops\_weight_norm_interface_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.2945972Z copying torch\include\ATen\ops\_weight_norm_interface_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.3016276Z copying torch\include\ATen\ops\_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.3023552Z copying torch\include\ATen\ops\_weight_norm_interface_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.3030964Z copying torch\include\ATen\ops\_weight_norm_interface_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.3038385Z copying torch\include\ATen\ops\_weight_norm_interface_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.3045757Z copying torch\include\ATen\ops\_weight_norm_interface_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.3052867Z copying torch\include\ATen\ops\_weight_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.3059549Z copying torch\include\ATen\ops\_weight_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.3067061Z copying torch\include\ATen\ops\_wrapped_linear_prepack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.3074448Z copying torch\include\ATen\ops\_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.3081258Z copying torch\include\ATen\ops\_wrapped_linear_prepack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.3088094Z copying torch\include\ATen\ops\_wrapped_linear_prepack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.3095226Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.3102618Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.3110261Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.3117187Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:18:40.3123668Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-07-24T05:18:40.3150488Z copying torch\include\ATen\quantized\QTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-07-24T05:18:40.3150836Z copying torch\include\ATen\quantized\Quantizer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-07-24T05:18:40.3151015Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-07-24T05:18:40.3151372Z copying torch\include\ATen\xpu\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-07-24T05:18:40.3151721Z copying torch\include\ATen\xpu\PinnedMemoryAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-07-24T05:18:40.3157663Z copying torch\include\ATen\xpu\XPUContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-07-24T05:18:40.3163890Z copying torch\include\ATen\xpu\XPUDevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-07-24T05:18:40.3174835Z copying torch\include\ATen\xpu\XPUEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-07-24T05:18:40.3181152Z copying torch\include\ATen\xpu\XPUGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-07-24T05:18:40.3187062Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\detail 2025-07-24T05:18:40.3190056Z copying torch\include\ATen\xpu\detail\XPUHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\detail 2025-07-24T05:18:40.3195530Z creating build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3199688Z copying torch\include\c10\core\alignment.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3205976Z copying torch\include\c10\core\Allocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3213118Z copying torch\include\c10\core\AutogradState.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3220209Z copying torch\include\c10\core\Backend.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3232333Z copying torch\include\c10\core\CachingDeviceAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3238570Z copying torch\include\c10\core\CompileTimeFunctionPointer.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3244985Z copying torch\include\c10\core\ConstantSymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3251180Z copying torch\include\c10\core\Contiguity.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3257653Z copying torch\include\c10\core\CopyBytes.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3263933Z copying torch\include\c10\core\CPUAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3270489Z copying torch\include\c10\core\DefaultDtype.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3276724Z copying torch\include\c10\core\DefaultTensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3282987Z copying torch\include\c10\core\Device.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3289444Z copying torch\include\c10\core\DeviceArray.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3295957Z copying torch\include\c10\core\DeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3302641Z copying torch\include\c10\core\DeviceType.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3309054Z copying torch\include\c10\core\DispatchKey.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3316301Z copying torch\include\c10\core\DispatchKeySet.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3323160Z copying torch\include\c10\core\DynamicCast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3329789Z copying torch\include\c10\core\Event.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3341049Z copying torch\include\c10\core\GeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3347368Z copying torch\include\c10\core\GradMode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3354069Z copying torch\include\c10\core\InferenceMode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3360503Z copying torch\include\c10\core\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3366795Z copying torch\include\c10\core\MemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3373570Z copying torch\include\c10\core\OptionalRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3379868Z copying torch\include\c10\core\PyHandleCache.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3386165Z copying torch\include\c10\core\QEngine.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3392606Z copying torch\include\c10\core\QScheme.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3399462Z copying torch\include\c10\core\RefcountedDeleter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3405786Z copying torch\include\c10\core\SafePyObject.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3412169Z copying torch\include\c10\core\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3418443Z copying torch\include\c10\core\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3429383Z copying torch\include\c10\core\ScalarTypeToTypeMeta.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3435783Z copying torch\include\c10\core\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3442135Z copying torch\include\c10\core\StorageImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3449028Z copying torch\include\c10\core\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3455412Z copying torch\include\c10\core\StreamGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3461817Z copying torch\include\c10\core\SymbolicShapeMeta.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3468759Z copying torch\include\c10\core\SymBool.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3475248Z copying torch\include\c10\core\SymFloat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3481580Z copying torch\include\c10\core\SymInt.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3488100Z copying torch\include\c10\core\SymIntArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3494562Z copying torch\include\c10\core\SymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3501070Z copying torch\include\c10\core\TensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3513121Z copying torch\include\c10\core\TensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3520198Z copying torch\include\c10\core\thread_pool.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3526952Z copying torch\include\c10\core\UndefinedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3533739Z copying torch\include\c10\core\WrapDimMinimal.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:18:40.3540211Z creating build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:18:40.3542934Z copying torch\include\c10\core\impl\alloc_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:18:40.3549150Z copying torch\include\c10\core\impl\COW.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:18:40.3555255Z copying torch\include\c10\core\impl\COWDeleter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:18:40.3561898Z copying torch\include\c10\core\impl\DeviceGuardImplInterface.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:18:40.3573560Z copying torch\include\c10\core\impl\FakeGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:18:40.3586784Z copying torch\include\c10\core\impl\GPUTrace.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:18:40.3589910Z copying torch\include\c10\core\impl\HermeticPyObjectTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:18:40.3596660Z copying torch\include\c10\core\impl\InlineDeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:18:40.3603030Z copying torch\include\c10\core\impl\InlineEvent.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:18:40.3609337Z copying torch\include\c10\core\impl\InlineStreamGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:18:40.3615985Z copying torch\include\c10\core\impl\LocalDispatchKeySet.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:18:40.3622333Z copying torch\include\c10\core\impl\PyInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:18:40.3629014Z copying torch\include\c10\core\impl\PyObjectSlot.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:18:40.3635745Z copying torch\include\c10\core\impl\PythonDispatcherTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:18:40.3642537Z copying torch\include\c10\core\impl\SizesAndStrides.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:18:40.3649176Z copying torch\include\c10\core\impl\TorchDispatchModeTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:18:40.3655658Z copying torch\include\c10\core\impl\VirtualGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:18:40.3661159Z creating build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:18:40.3663949Z copying torch\include\c10\cuda\CUDAAlgorithm.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:18:40.3670436Z copying torch\include\c10\cuda\CUDAAllocatorConfig.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:18:40.3676785Z copying torch\include\c10\cuda\CUDACachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:18:40.3683441Z copying torch\include\c10\cuda\CUDADeviceAssertion.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:18:40.3695685Z copying torch\include\c10\cuda\CUDADeviceAssertionHost.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:18:40.3701945Z copying torch\include\c10\cuda\CUDAException.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:18:40.3708638Z copying torch\include\c10\cuda\CUDAFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:18:40.3715113Z copying torch\include\c10\cuda\CUDAGraphsC10Utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:18:40.3721248Z copying torch\include\c10\cuda\CUDAGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:18:40.3727661Z copying torch\include\c10\cuda\CUDAMacros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:18:40.3734016Z copying torch\include\c10\cuda\CUDAMathCompat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:18:40.3740482Z copying torch\include\c10\cuda\CUDAMiscFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:18:40.3748544Z copying torch\include\c10\cuda\CUDAStream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:18:40.3777819Z copying torch\include\c10\cuda\driver_api.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:18:40.3778074Z creating build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-07-24T05:18:40.3778427Z copying torch\include\c10\cuda\impl\CUDAGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-07-24T05:18:40.3778754Z copying torch\include\c10\cuda\impl\CUDATest.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-07-24T05:18:40.3779845Z creating build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-07-24T05:18:40.3783346Z copying torch\include\c10\macros\cmake_macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-07-24T05:18:40.3789445Z copying torch\include\c10\macros\Export.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-07-24T05:18:40.3795791Z copying torch\include\c10\macros\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-07-24T05:18:40.3801218Z creating build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-24T05:18:40.3804149Z copying torch\include\c10\metal\atomic.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-24T05:18:40.3810669Z copying torch\include\c10\metal\common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-24T05:18:40.3817623Z copying torch\include\c10\metal\expm1f.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-24T05:18:40.3824146Z copying torch\include\c10\metal\indexing.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-24T05:18:40.3831483Z copying torch\include\c10\metal\random.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-24T05:18:40.3838871Z copying torch\include\c10\metal\reduction_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-24T05:18:40.3850450Z copying torch\include\c10\metal\special_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-24T05:18:40.3871852Z copying torch\include\c10\metal\utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-24T05:18:40.3877471Z creating build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-07-24T05:18:40.3881039Z copying torch\include\c10\mobile\CPUCachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-07-24T05:18:40.3887149Z copying torch\include\c10\mobile\CPUProfilingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-07-24T05:18:40.3893690Z creating build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-07-24T05:18:40.3898561Z copying torch\include\c10\test\util\complex_math_test_common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-07-24T05:18:40.3905278Z copying torch\include\c10\test\util\complex_test_common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-07-24T05:18:40.3912819Z copying torch\include\c10\test\util\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-07-24T05:18:40.3917798Z creating build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.3920885Z copying torch\include\c10\util\AbortHandler.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.3927587Z copying torch\include\c10\util\accumulate.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.3934044Z copying torch\include\c10\util\AlignOf.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.3940548Z copying torch\include\c10\util\ApproximateClock.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.3951152Z copying torch\include\c10\util\Array.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.3957155Z copying torch\include\c10\util\ArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.3963280Z copying torch\include\c10\util\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.3969570Z copying torch\include\c10\util\BFloat16-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.3976130Z copying torch\include\c10\util\BFloat16-math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.3982570Z copying torch\include\c10\util\BFloat16.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.3988817Z copying torch\include\c10\util\bits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.3995456Z copying torch\include\c10\util\Bitset.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4001416Z copying torch\include\c10\util\bit_cast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4007514Z copying torch\include\c10\util\C++17.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4040503Z copying torch\include\c10\util\CallOnce.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4046888Z copying torch\include\c10\util\complex.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4053473Z copying torch\include\c10\util\complex_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4059891Z copying torch\include\c10\util\complex_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4066338Z copying torch\include\c10\util\ConstexprCrc.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4072905Z copying torch\include\c10\util\copysign.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4079141Z copying torch\include\c10\util\DeadlockDetection.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4085427Z copying torch\include\c10\util\Deprecated.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4091890Z copying torch\include\c10\util\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4098034Z copying torch\include\c10\util\DynamicCounter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4110218Z copying torch\include\c10\util\Enumerate.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4116652Z copying torch\include\c10\util\env.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4123204Z copying torch\include\c10\util\error.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4131754Z copying torch\include\c10\util\Exception.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4175651Z copying torch\include\c10\util\ExclusivelyOwned.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4176551Z copying torch\include\c10\util\ExclusivelyOwnedTensorTraits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4177449Z copying torch\include\c10\util\FbcodeMaps.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4178114Z copying torch\include\c10\util\Flags.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4178787Z copying torch\include\c10\util\flat_hash_map.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4179504Z copying torch\include\c10\util\Float4_e2m1fn_x2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4183135Z copying torch\include\c10\util\Float8_e4m3fn-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4195391Z copying torch\include\c10\util\Float8_e4m3fn.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4202675Z copying torch\include\c10\util\Float8_e4m3fnuz-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4210674Z copying torch\include\c10\util\Float8_e4m3fnuz.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4216156Z copying torch\include\c10\util\Float8_e5m2-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4222768Z copying torch\include\c10\util\Float8_e5m2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4229769Z copying torch\include\c10\util\Float8_e5m2fnuz-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4236780Z copying torch\include\c10\util\Float8_e5m2fnuz.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4244029Z copying torch\include\c10\util\Float8_e8m0fnu-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4250371Z copying torch\include\c10\util\Float8_e8m0fnu.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4261678Z copying torch\include\c10\util\Float8_fnuz_cvt.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4268166Z copying torch\include\c10\util\floating_point_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4274838Z copying torch\include\c10\util\FunctionRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4281365Z copying torch\include\c10\util\Gauge.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4287754Z copying torch\include\c10\util\generic_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4294090Z copying torch\include\c10\util\Half-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4300565Z copying torch\include\c10\util\Half.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4307375Z copying torch\include\c10\util\hash.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4313983Z copying torch\include\c10\util\IdWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4320614Z copying torch\include\c10\util\int128.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4327235Z copying torch\include\c10\util\IntrusiveList.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4333798Z copying torch\include\c10\util\intrusive_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4340710Z copying torch\include\c10\util\irange.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4352212Z copying torch\include\c10\util\Lazy.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4358547Z copying torch\include\c10\util\LeftRight.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4364792Z copying torch\include\c10\util\llvmMathExtras.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4371496Z copying torch\include\c10\util\Load.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4377935Z copying torch\include\c10\util\Logging.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4384515Z copying torch\include\c10\util\logging_is_google_glog.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4391252Z copying torch\include\c10\util\logging_is_not_google_glog.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4397462Z copying torch\include\c10\util\MathConstants.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4403818Z copying torch\include\c10\util\MaybeOwned.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4410307Z copying torch\include\c10\util\Metaprogramming.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4416716Z copying torch\include\c10\util\NetworkFlow.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4433092Z copying torch\include\c10\util\numa.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4439201Z copying torch\include\c10\util\Optional.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4445632Z copying torch\include\c10\util\OptionalArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4453111Z copying torch\include\c10\util\order_preserving_flat_hash_map.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4460420Z copying torch\include\c10\util\overflows.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4467161Z copying torch\include\c10\util\overloaded.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4473750Z copying torch\include\c10\util\ParallelGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4480925Z copying torch\include\c10\util\python_stub.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4487061Z copying torch\include\c10\util\qint32.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4493061Z copying torch\include\c10\util\qint8.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4499547Z copying torch\include\c10\util\quint2x4.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4505294Z copying torch\include\c10\util\quint4x2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4515889Z copying torch\include\c10\util\quint8.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4522070Z copying torch\include\c10\util\Registry.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4528548Z copying torch\include\c10\util\safe_numerics.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4535866Z copying torch\include\c10\util\ScopeExit.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4541981Z copying torch\include\c10\util\Semaphore.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4548440Z copying torch\include\c10\util\signal_handler.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4555369Z copying torch\include\c10\util\SmallBuffer.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4561911Z copying torch\include\c10\util\SmallVector.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4569247Z copying torch\include\c10\util\sparse_bitset.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4576466Z copying torch\include\c10\util\ssize.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4582947Z copying torch\include\c10\util\static_tracepoint.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4589869Z copying torch\include\c10\util\static_tracepoint_elfx86.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4602411Z copying torch\include\c10\util\strides.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4608631Z copying torch\include\c10\util\StringUtil.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4615107Z copying torch\include\c10\util\string_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4621701Z copying torch\include\c10\util\string_view.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4628709Z copying torch\include\c10\util\strong_type.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4636319Z copying torch\include\c10\util\Synchronized.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4661633Z copying torch\include\c10\util\tempfile.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4662349Z copying torch\include\c10\util\ThreadLocal.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4663105Z copying torch\include\c10\util\ThreadLocalDebugInfo.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4664652Z copying torch\include\c10\util\thread_name.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4671411Z copying torch\include\c10\util\Type.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4677454Z copying torch\include\c10\util\TypeCast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4684008Z copying torch\include\c10\util\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4690957Z copying torch\include\c10\util\TypeIndex.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4697705Z copying torch\include\c10\util\TypeList.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4704285Z copying torch\include\c10\util\TypeSafeSignMath.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4710914Z copying torch\include\c10\util\TypeTraits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4717323Z copying torch\include\c10\util\Unicode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4723564Z copying torch\include\c10\util\UniqueVoidPtr.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4729868Z copying torch\include\c10\util\Unroll.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4736119Z copying torch\include\c10\util\WaitCounter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4743444Z copying torch\include\c10\util\WaitCounterDynamicBackend.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4749419Z copying torch\include\c10\util\win32-headers.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:18:40.4761209Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-07-24T05:18:40.4768102Z copying torch\include\c10\xpu\XPUCachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-07-24T05:18:40.4775280Z copying torch\include\c10\xpu\XPUDeviceProp.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-07-24T05:18:40.4781820Z copying torch\include\c10\xpu\XPUException.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-07-24T05:18:40.4787757Z copying torch\include\c10\xpu\XPUFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-07-24T05:18:40.4798686Z copying torch\include\c10\xpu\XPUMacros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-07-24T05:18:40.4805104Z copying torch\include\c10\xpu\XPUStream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-07-24T05:18:40.4810430Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu\impl 2025-07-24T05:18:40.4813282Z copying torch\include\c10\xpu\impl\XPUGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu\impl 2025-07-24T05:18:40.4818733Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu\test\impl 2025-07-24T05:18:40.4822775Z copying torch\include\c10\xpu\test\impl\XPUTest.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu\test\impl 2025-07-24T05:18:40.4828188Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-07-24T05:18:40.4833013Z copying torch\include\caffe2\core\common.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-07-24T05:18:40.4839616Z copying torch\include\caffe2\core\macros.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-07-24T05:18:40.4846390Z copying torch\include\caffe2\core\timer.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-07-24T05:18:40.4851990Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-07-24T05:18:40.4854815Z copying torch\include\caffe2\perfkernels\batch_box_cox_vec.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-07-24T05:18:40.4861388Z copying torch\include\caffe2\perfkernels\common.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-07-24T05:18:40.4867633Z copying torch\include\caffe2\perfkernels\embedding_lookup_idx.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-07-24T05:18:40.4873208Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-24T05:18:40.4876081Z copying torch\include\caffe2\serialize\crc_alt.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-24T05:18:40.4883520Z copying torch\include\caffe2\serialize\file_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-24T05:18:40.4889683Z copying torch\include\caffe2\serialize\inline_container.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-24T05:18:40.4896709Z copying torch\include\caffe2\serialize\in_memory_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-24T05:18:40.4907272Z copying torch\include\caffe2\serialize\istream_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-24T05:18:40.4914168Z copying torch\include\caffe2\serialize\read_adapter_interface.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-24T05:18:40.4920366Z copying torch\include\caffe2\serialize\versions.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-24T05:18:40.4925665Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-07-24T05:18:40.4928565Z copying torch\include\caffe2\utils\fixed_divisor.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-07-24T05:18:40.4934889Z copying torch\include\caffe2\utils\proto_wrap.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-07-24T05:18:40.4941029Z copying torch\include\caffe2\utils\string_utils.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-07-24T05:18:40.4947072Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-07-24T05:18:40.4955239Z copying torch\include\caffe2\utils\threadpool\pthreadpool-cpp.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-07-24T05:18:40.4963471Z copying torch\include\caffe2\utils\threadpool\pthreadpool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-07-24T05:18:40.4969846Z copying torch\include\caffe2\utils\threadpool\ThreadPool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-07-24T05:18:40.4980819Z copying torch\include\caffe2\utils\threadpool\ThreadPoolCommon.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-07-24T05:18:40.4987574Z copying torch\include\caffe2\utils\threadpool\thread_pool_guard.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-07-24T05:18:40.4993911Z copying torch\include\caffe2\utils\threadpool\WorkersPool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-07-24T05:18:40.4999622Z creating build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5002979Z copying torch\include\fbgemm\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5009125Z copying torch\include\fbgemm\Fbgemm.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5015908Z copying torch\include\fbgemm\FbgemmBuild.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5022377Z copying torch\include\fbgemm\FbgemmConvert.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5033005Z copying torch\include\fbgemm\FbgemmEmbedding.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5040104Z copying torch\include\fbgemm\FbgemmFP16.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5046484Z copying torch\include\fbgemm\FbgemmFP32.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5053199Z copying torch\include\fbgemm\FbgemmFPCommon.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5059613Z copying torch\include\fbgemm\FbgemmI64.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5066440Z copying torch\include\fbgemm\FbgemmI8DepthwiseAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5073207Z copying torch\include\fbgemm\FbgemmI8DirectconvAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5079767Z copying torch\include\fbgemm\FbgemmI8Spmdm.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5086603Z copying torch\include\fbgemm\FbgemmPackMatrixB.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5093259Z copying torch\include\fbgemm\FbgemmSparse.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5099783Z copying torch\include\fbgemm\FloatConversion.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5106786Z copying torch\include\fbgemm\OutputProcessing-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5113169Z copying torch\include\fbgemm\PackingTraits-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5120213Z copying torch\include\fbgemm\QuantUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5126553Z copying torch\include\fbgemm\QuantUtilsAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5181836Z copying torch\include\fbgemm\QuantUtilsAvx512.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5188279Z copying torch\include\fbgemm\QuantUtilsNeon.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5195064Z copying torch\include\fbgemm\SimdUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5202566Z copying torch\include\fbgemm\spmmUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5208249Z copying torch\include\fbgemm\spmmUtilsAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5214766Z copying torch\include\fbgemm\Types.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5220745Z copying torch\include\fbgemm\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5227169Z copying torch\include\fbgemm\UtilsAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:18:40.5233105Z creating build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:18:40.5235720Z copying torch\include\fmt\args.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:18:40.5241825Z copying torch\include\fmt\base.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:18:40.5249056Z copying torch\include\fmt\chrono.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:18:40.5256278Z copying torch\include\fmt\color.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:18:40.5262960Z copying torch\include\fmt\compile.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:18:40.5269773Z copying torch\include\fmt\core.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:18:40.5275633Z copying torch\include\fmt\format-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:18:40.5288318Z copying torch\include\fmt\format.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:18:40.5296157Z copying torch\include\fmt\os.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:18:40.5302346Z copying torch\include\fmt\ostream.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:18:40.5308716Z copying torch\include\fmt\printf.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:18:40.5315785Z copying torch\include\fmt\ranges.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:18:40.5322865Z copying torch\include\fmt\std.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:18:40.5329882Z copying torch\include\fmt\xchar.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:18:40.5335128Z creating build\lib.win-amd64-cpython-39\torch\include\fp16 2025-07-24T05:18:40.5337685Z copying torch\include\fp16\bitcasts.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-07-24T05:18:40.5343841Z copying torch\include\fp16\fp16.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-07-24T05:18:40.5350588Z copying torch\include\fp16\psimd.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-07-24T05:18:40.5356725Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5360667Z copying torch\include\google\protobuf\any.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5367012Z copying torch\include\google\protobuf\any.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5373450Z copying torch\include\google\protobuf\api.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5381522Z copying torch\include\google\protobuf\arena.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5388444Z copying torch\include\google\protobuf\arenastring.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5399358Z copying torch\include\google\protobuf\arena_impl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5406439Z copying torch\include\google\protobuf\descriptor.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5414746Z copying torch\include\google\protobuf\descriptor.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5427336Z copying torch\include\google\protobuf\descriptor_database.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5434064Z copying torch\include\google\protobuf\duration.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5441006Z copying torch\include\google\protobuf\dynamic_message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5447794Z copying torch\include\google\protobuf\empty.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5455466Z copying torch\include\google\protobuf\extension_set.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5462592Z copying torch\include\google\protobuf\extension_set_inl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5470818Z copying torch\include\google\protobuf\field_mask.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5477652Z copying torch\include\google\protobuf\generated_enum_reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5484278Z copying torch\include\google\protobuf\generated_enum_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5490695Z copying torch\include\google\protobuf\generated_message_reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5497396Z copying torch\include\google\protobuf\generated_message_table_driven.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5504230Z copying torch\include\google\protobuf\generated_message_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5515474Z copying torch\include\google\protobuf\has_bits.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5521903Z copying torch\include\google\protobuf\implicit_weak_message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5528685Z copying torch\include\google\protobuf\inlined_string_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5535713Z copying torch\include\google\protobuf\map.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5542380Z copying torch\include\google\protobuf\map_entry.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5549066Z copying torch\include\google\protobuf\map_entry_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5556084Z copying torch\include\google\protobuf\map_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5562986Z copying torch\include\google\protobuf\map_field_inl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5570105Z copying torch\include\google\protobuf\map_field_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5576521Z copying torch\include\google\protobuf\map_type_handler.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5588597Z copying torch\include\google\protobuf\message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5596402Z copying torch\include\google\protobuf\message_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5603550Z copying torch\include\google\protobuf\metadata.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5610493Z copying torch\include\google\protobuf\metadata_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5616849Z copying torch\include\google\protobuf\parse_context.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5623971Z copying torch\include\google\protobuf\port.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5630541Z copying torch\include\google\protobuf\reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5638066Z copying torch\include\google\protobuf\reflection_ops.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5644826Z copying torch\include\google\protobuf\repeated_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5652963Z copying torch\include\google\protobuf\service.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5659551Z copying torch\include\google\protobuf\source_context.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5666354Z copying torch\include\google\protobuf\struct.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5716797Z copying torch\include\google\protobuf\text_format.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5717620Z copying torch\include\google\protobuf\timestamp.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5718412Z copying torch\include\google\protobuf\type.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5719609Z copying torch\include\google\protobuf\unknown_field_set.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5726650Z copying torch\include\google\protobuf\wire_format.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5735078Z copying torch\include\google\protobuf\wire_format_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5742221Z copying torch\include\google\protobuf\wrappers.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:18:40.5748657Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-07-24T05:18:40.5752114Z copying torch\include\google\protobuf\compiler\code_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-07-24T05:18:40.5758035Z copying torch\include\google\protobuf\compiler\command_line_interface.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-07-24T05:18:40.5764612Z copying torch\include\google\protobuf\compiler\importer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-07-24T05:18:40.5770804Z copying torch\include\google\protobuf\compiler\parser.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-07-24T05:18:40.5777434Z copying torch\include\google\protobuf\compiler\plugin.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-07-24T05:18:40.5789437Z copying torch\include\google\protobuf\compiler\plugin.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-07-24T05:18:40.5795727Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\cpp 2025-07-24T05:18:40.5798838Z copying torch\include\google\protobuf\compiler\cpp\cpp_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\cpp 2025-07-24T05:18:40.5804224Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-07-24T05:18:40.5807380Z copying torch\include\google\protobuf\compiler\csharp\csharp_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-07-24T05:18:40.5813591Z copying torch\include\google\protobuf\compiler\csharp\csharp_names.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-07-24T05:18:40.5818836Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-07-24T05:18:40.5821762Z copying torch\include\google\protobuf\compiler\java\java_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-07-24T05:18:40.5828154Z copying torch\include\google\protobuf\compiler\java\java_names.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-07-24T05:18:40.5833363Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js 2025-07-24T05:18:40.5836251Z copying torch\include\google\protobuf\compiler\js\js_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js 2025-07-24T05:18:40.5842738Z copying torch\include\google\protobuf\compiler\js\well_known_types_embed.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js 2025-07-24T05:18:40.5848384Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-07-24T05:18:40.5851461Z copying torch\include\google\protobuf\compiler\objectivec\objectivec_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-07-24T05:18:40.5858067Z copying torch\include\google\protobuf\compiler\objectivec\objectivec_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-07-24T05:18:40.5863554Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\php 2025-07-24T05:18:40.5866504Z copying torch\include\google\protobuf\compiler\php\php_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\php 2025-07-24T05:18:40.5871864Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\python 2025-07-24T05:18:40.5874791Z copying torch\include\google\protobuf\compiler\python\python_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\python 2025-07-24T05:18:40.5880034Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\ruby 2025-07-24T05:18:40.5883032Z copying torch\include\google\protobuf\compiler\ruby\ruby_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\ruby 2025-07-24T05:18:40.5888254Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-24T05:18:40.5891110Z copying torch\include\google\protobuf\io\coded_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-24T05:18:40.5898297Z copying torch\include\google\protobuf\io\gzip_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-24T05:18:40.5904422Z copying torch\include\google\protobuf\io\io_win32.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-24T05:18:40.5910644Z copying torch\include\google\protobuf\io\printer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-24T05:18:40.5917245Z copying torch\include\google\protobuf\io\strtod.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-24T05:18:40.5928145Z copying torch\include\google\protobuf\io\tokenizer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-24T05:18:40.5934851Z copying torch\include\google\protobuf\io\zero_copy_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-24T05:18:40.5941466Z copying torch\include\google\protobuf\io\zero_copy_stream_impl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-24T05:18:40.5947839Z copying torch\include\google\protobuf\io\zero_copy_stream_impl_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-24T05:18:40.5958274Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:18:40.5959107Z copying torch\include\google\protobuf\stubs\bytestream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:18:40.6002653Z copying torch\include\google\protobuf\stubs\callback.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:18:40.6003554Z copying torch\include\google\protobuf\stubs\casts.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:18:40.6004468Z copying torch\include\google\protobuf\stubs\common.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:18:40.6005346Z copying torch\include\google\protobuf\stubs\fastmem.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:18:40.6006261Z copying torch\include\google\protobuf\stubs\hash.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:18:40.6007168Z copying torch\include\google\protobuf\stubs\logging.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:18:40.6010752Z copying torch\include\google\protobuf\stubs\macros.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:18:40.6016982Z copying torch\include\google\protobuf\stubs\map_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:18:40.6023754Z copying torch\include\google\protobuf\stubs\mutex.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:18:40.6030441Z copying torch\include\google\protobuf\stubs\once.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:18:40.6037813Z copying torch\include\google\protobuf\stubs\platform_macros.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:18:40.6043459Z copying torch\include\google\protobuf\stubs\port.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:18:40.6049479Z copying torch\include\google\protobuf\stubs\status.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:18:40.6056265Z copying torch\include\google\protobuf\stubs\stl_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:18:40.6062911Z copying torch\include\google\protobuf\stubs\stringpiece.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:18:40.6069281Z copying torch\include\google\protobuf\stubs\strutil.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:18:40.6075955Z copying torch\include\google\protobuf\stubs\template_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:18:40.6081557Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-24T05:18:40.6084711Z copying torch\include\google\protobuf\util\delimited_message_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-24T05:18:40.6091080Z copying torch\include\google\protobuf\util\field_comparator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-24T05:18:40.6097924Z copying torch\include\google\protobuf\util\field_mask_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-24T05:18:40.6108513Z copying torch\include\google\protobuf\util\json_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-24T05:18:40.6115179Z copying torch\include\google\protobuf\util\message_differencer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-24T05:18:40.6122211Z copying torch\include\google\protobuf\util\time_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-24T05:18:40.6128772Z copying torch\include\google\protobuf\util\type_resolver.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-24T05:18:40.6135301Z copying torch\include\google\protobuf\util\type_resolver_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-24T05:18:40.6140645Z creating build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:18:40.6143593Z copying torch\include\kineto\AbstractConfig.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:18:40.6150050Z copying torch\include\kineto\ActivityProfilerInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:18:40.6156291Z copying torch\include\kineto\ActivityTraceInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:18:40.6167092Z copying torch\include\kineto\ActivityType.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:18:40.6173237Z copying torch\include\kineto\ClientInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:18:40.6179636Z copying torch\include\kineto\Config.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:18:40.6186129Z copying torch\include\kineto\GenericTraceActivity.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:18:40.6192553Z copying torch\include\kineto\IActivityProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:18:40.6199258Z copying torch\include\kineto\ILoggerObserver.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:18:40.6205463Z copying torch\include\kineto\ITraceActivity.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:18:40.6212006Z copying torch\include\kineto\libkineto.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:18:40.6218598Z copying torch\include\kineto\LoggingAPI.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:18:40.6224711Z copying torch\include\kineto\output_base.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:18:40.6231612Z copying torch\include\kineto\ThreadUtil.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:18:40.6238107Z copying torch\include\kineto\time_since_epoch.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:18:40.6244425Z copying torch\include\kineto\TraceSpan.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:18:40.6250041Z creating build\lib.win-amd64-cpython-39\torch\include\legacy 2025-07-24T05:18:40.6293997Z copying torch\include\legacy\ittnotify.h -> build\lib.win-amd64-cpython-39\torch\include\legacy 2025-07-24T05:18:40.6294605Z creating build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-07-24T05:18:40.6295262Z copying torch\include\mimalloc-2.2\mimalloc-new-delete.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-07-24T05:18:40.6296107Z copying torch\include\mimalloc-2.2\mimalloc-override.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-07-24T05:18:40.6296919Z copying torch\include\mimalloc-2.2\mimalloc-stats.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-07-24T05:18:40.6297668Z copying torch\include\mimalloc-2.2\mimalloc.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-07-24T05:18:40.6298324Z creating build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:40.6301581Z copying torch\include\oneapi\dnnl\dnnl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:40.6310947Z copying torch\include\oneapi\dnnl\dnnl_common.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:40.6316917Z copying torch\include\oneapi\dnnl\dnnl_common_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:40.6323599Z copying torch\include\oneapi\dnnl\dnnl_config.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:40.6334682Z copying torch\include\oneapi\dnnl\dnnl_debug.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:40.6341075Z copying torch\include\oneapi\dnnl\dnnl_graph.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:40.6348360Z copying torch\include\oneapi\dnnl\dnnl_graph_ocl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:40.6354834Z copying torch\include\oneapi\dnnl\dnnl_graph_sycl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:40.6362295Z copying torch\include\oneapi\dnnl\dnnl_graph_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:40.6368962Z copying torch\include\oneapi\dnnl\dnnl_ocl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:40.6375647Z copying torch\include\oneapi\dnnl\dnnl_ocl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:40.6382175Z copying torch\include\oneapi\dnnl\dnnl_sycl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:40.6388954Z copying torch\include\oneapi\dnnl\dnnl_sycl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:40.6395863Z copying torch\include\oneapi\dnnl\dnnl_threadpool.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:40.6402360Z copying torch\include\oneapi\dnnl\dnnl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:40.6414281Z copying torch\include\oneapi\dnnl\dnnl_ukernel.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:40.6420653Z copying torch\include\oneapi\dnnl\dnnl_ukernel_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:40.6427679Z copying torch\include\oneapi\dnnl\dnnl_version.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:40.6434321Z copying torch\include\oneapi\dnnl\dnnl_version_hash.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:40.6439962Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6442924Z copying torch\include\pybind11\attr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6449366Z copying torch\include\pybind11\buffer_info.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6455637Z copying torch\include\pybind11\cast.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6462579Z copying torch\include\pybind11\chrono.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6468814Z copying torch\include\pybind11\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6474840Z copying torch\include\pybind11\complex.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6485791Z copying torch\include\pybind11\eigen.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6491635Z copying torch\include\pybind11\embed.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6498224Z copying torch\include\pybind11\eval.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6504214Z copying torch\include\pybind11\functional.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6510738Z copying torch\include\pybind11\gil.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6517212Z copying torch\include\pybind11\gil_safe_call_once.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6523761Z copying torch\include\pybind11\iostream.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6529822Z copying torch\include\pybind11\numpy.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6537034Z copying torch\include\pybind11\operators.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6543647Z copying torch\include\pybind11\options.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6549760Z copying torch\include\pybind11\pybind11.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6557579Z copying torch\include\pybind11\pytypes.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6564957Z copying torch\include\pybind11\stl.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6571358Z copying torch\include\pybind11\stl_bind.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6582771Z copying torch\include\pybind11\type_caster_pyobject_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6588091Z copying torch\include\pybind11\typing.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:18:40.6593346Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-24T05:18:40.6596136Z copying torch\include\pybind11\detail\class.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-24T05:18:40.6602970Z copying torch\include\pybind11\detail\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-24T05:18:40.6609937Z copying torch\include\pybind11\detail\cpp_conduit.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-24T05:18:40.6616247Z copying torch\include\pybind11\detail\descr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-24T05:18:40.6622735Z copying torch\include\pybind11\detail\exception_translation.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-24T05:18:40.6634726Z copying torch\include\pybind11\detail\init.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-24T05:18:40.6641305Z copying torch\include\pybind11\detail\internals.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-24T05:18:40.6648663Z copying torch\include\pybind11\detail\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-24T05:18:40.6655142Z copying torch\include\pybind11\detail\type_caster_base.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-24T05:18:40.6662195Z copying torch\include\pybind11\detail\value_and_holder.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-24T05:18:40.6667583Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-07-24T05:18:40.6670616Z copying torch\include\pybind11\eigen\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-07-24T05:18:40.6676627Z copying torch\include\pybind11\eigen\matrix.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-07-24T05:18:40.6683363Z copying torch\include\pybind11\eigen\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-07-24T05:18:40.6689062Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\stl 2025-07-24T05:18:40.6691908Z copying torch\include\pybind11\stl\filesystem.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\stl 2025-07-24T05:18:40.6697825Z creating build\lib.win-amd64-cpython-39\torch\include\torch 2025-07-24T05:18:40.6740658Z copying torch\include\torch\custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-07-24T05:18:40.6741444Z copying torch\include\torch\custom_class_detail.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-07-24T05:18:40.6742144Z copying torch\include\torch\extension.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-07-24T05:18:40.6742786Z copying torch\include\torch\library.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-07-24T05:18:40.6743425Z copying torch\include\torch\script.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-07-24T05:18:40.6743973Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6744572Z copying torch\include\torch\csrc\copy_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6751300Z copying torch\include\torch\csrc\CudaIPCTypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6758760Z copying torch\include\torch\csrc\DataLoader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6764797Z copying torch\include\torch\csrc\Device.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6775974Z copying torch\include\torch\csrc\DeviceAccelerator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6780865Z copying torch\include\torch\csrc\Dtype.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6786955Z copying torch\include\torch\csrc\DynamicTypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6793313Z copying torch\include\torch\csrc\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6799316Z copying torch\include\torch\csrc\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6805780Z copying torch\include\torch\csrc\Export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6811814Z copying torch\include\torch\csrc\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6818120Z copying torch\include\torch\csrc\itt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6824335Z copying torch\include\torch\csrc\itt_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6830833Z copying torch\include\torch\csrc\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6836978Z copying torch\include\torch\csrc\MemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6843364Z copying torch\include\torch\csrc\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6849444Z copying torch\include\torch\csrc\PyInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6855422Z copying torch\include\torch\csrc\python_dimname.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6861586Z copying torch\include\torch\csrc\python_headers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6868036Z copying torch\include\torch\csrc\QScheme.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6878447Z copying torch\include\torch\csrc\serialization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6884769Z copying torch\include\torch\csrc\Size.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6890940Z copying torch\include\torch\csrc\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6897124Z copying torch\include\torch\csrc\StorageMethods.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6917402Z copying torch\include\torch\csrc\StorageSharing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6923321Z copying torch\include\torch\csrc\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6929558Z copying torch\include\torch\csrc\THConcat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6935610Z copying torch\include\torch\csrc\THP.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6941937Z copying torch\include\torch\csrc\TypeInfo.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6948011Z copying torch\include\torch\csrc\Types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6954138Z copying torch\include\torch\csrc\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:18:40.6960220Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.6965585Z copying torch\include\torch\csrc\api\include\torch\all.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.6971585Z copying torch\include\torch\csrc\api\include\torch\arg.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.6978492Z copying torch\include\torch\csrc\api\include\torch\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.6984801Z copying torch\include\torch\csrc\api\include\torch\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.6991096Z copying torch\include\torch\csrc\api\include\torch\data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.7051786Z copying torch\include\torch\csrc\api\include\torch\enum.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.7058280Z copying torch\include\torch\csrc\api\include\torch\expanding_array.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.7069697Z copying torch\include\torch\csrc\api\include\torch\fft.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.7076225Z copying torch\include\torch\csrc\api\include\torch\imethod.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.7082537Z copying torch\include\torch\csrc\api\include\torch\jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.7090108Z copying torch\include\torch\csrc\api\include\torch\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.7096261Z copying torch\include\torch\csrc\api\include\torch\nested.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.7102243Z copying torch\include\torch\csrc\api\include\torch\nn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.7108420Z copying torch\include\torch\csrc\api\include\torch\optim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.7114705Z copying torch\include\torch\csrc\api\include\torch\ordered_dict.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.7121660Z copying torch\include\torch\csrc\api\include\torch\python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.7127881Z copying torch\include\torch\csrc\api\include\torch\serialize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.7134455Z copying torch\include\torch\csrc\api\include\torch\sparse.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.7141129Z copying torch\include\torch\csrc\api\include\torch\special.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.7165005Z copying torch\include\torch\csrc\api\include\torch\torch.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.7166076Z copying torch\include\torch\csrc\api\include\torch\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.7167073Z copying torch\include\torch\csrc\api\include\torch\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.7170840Z copying torch\include\torch\csrc\api\include\torch\version.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.7176830Z copying torch\include\torch\csrc\api\include\torch\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:18:40.7182726Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:18:40.7184662Z copying torch\include\torch\csrc\api\include\torch\data\dataloader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:18:40.7191827Z copying torch\include\torch\csrc\api\include\torch\data\dataloader_options.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:18:40.7198210Z copying torch\include\torch\csrc\api\include\torch\data\datasets.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:18:40.7204915Z copying torch\include\torch\csrc\api\include\torch\data\example.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:18:40.7211418Z copying torch\include\torch\csrc\api\include\torch\data\iterator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:18:40.7223980Z copying torch\include\torch\csrc\api\include\torch\data\samplers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:18:40.7230826Z copying torch\include\torch\csrc\api\include\torch\data\transforms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:18:40.7237710Z copying torch\include\torch\csrc\api\include\torch\data\worker_exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:18:40.7243067Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-07-24T05:18:40.7246921Z copying torch\include\torch\csrc\api\include\torch\data\dataloader\base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-07-24T05:18:40.7252513Z copying torch\include\torch\csrc\api\include\torch\data\dataloader\stateful.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-07-24T05:18:40.7258836Z copying torch\include\torch\csrc\api\include\torch\data\dataloader\stateless.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-07-24T05:18:40.7264055Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:18:40.7267072Z copying torch\include\torch\csrc\api\include\torch\data\datasets\base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:18:40.7273915Z copying torch\include\torch\csrc\api\include\torch\data\datasets\chunk.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:18:40.7280532Z copying torch\include\torch\csrc\api\include\torch\data\datasets\map.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:18:40.7286949Z copying torch\include\torch\csrc\api\include\torch\data\datasets\mnist.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:18:40.7293363Z copying torch\include\torch\csrc\api\include\torch\data\datasets\shared.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:18:40.7299532Z copying torch\include\torch\csrc\api\include\torch\data\datasets\stateful.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:18:40.7305974Z copying torch\include\torch\csrc\api\include\torch\data\datasets\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:18:40.7315414Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail 2025-07-24T05:18:40.7318435Z copying torch\include\torch\csrc\api\include\torch\data\detail\data_shuttle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail 2025-07-24T05:18:40.7324794Z copying torch\include\torch\csrc\api\include\torch\data\detail\queue.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail 2025-07-24T05:18:40.7331206Z copying torch\include\torch\csrc\api\include\torch\data\detail\sequencers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail 2025-07-24T05:18:40.7336764Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:18:40.7339765Z copying torch\include\torch\csrc\api\include\torch\data\samplers\base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:18:40.7346251Z copying torch\include\torch\csrc\api\include\torch\data\samplers\custom_batch_request.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:18:40.7352420Z copying torch\include\torch\csrc\api\include\torch\data\samplers\distributed.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:18:40.7359270Z copying torch\include\torch\csrc\api\include\torch\data\samplers\random.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:18:40.7365809Z copying torch\include\torch\csrc\api\include\torch\data\samplers\sequential.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:18:40.7376912Z copying torch\include\torch\csrc\api\include\torch\data\samplers\serialize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:18:40.7383890Z copying torch\include\torch\csrc\api\include\torch\data\samplers\stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:18:40.7389795Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:18:40.7410463Z copying torch\include\torch\csrc\api\include\torch\data\transforms\base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:18:40.7417610Z copying torch\include\torch\csrc\api\include\torch\data\transforms\collate.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:18:40.7423886Z copying torch\include\torch\csrc\api\include\torch\data\transforms\lambda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:18:40.7430303Z copying torch\include\torch\csrc\api\include\torch\data\transforms\stack.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:18:40.7436796Z copying torch\include\torch\csrc\api\include\torch\data\transforms\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:18:40.7442368Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\detail 2025-07-24T05:18:40.7445433Z copying torch\include\torch\csrc\api\include\torch\detail\static.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\detail 2025-07-24T05:18:40.7452627Z copying torch\include\torch\csrc\api\include\torch\detail\TensorDataContainer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\detail 2025-07-24T05:18:40.7458335Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:18:40.7461431Z copying torch\include\torch\csrc\api\include\torch\nn\cloneable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:18:40.7468114Z copying torch\include\torch\csrc\api\include\torch\nn\functional.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:18:40.7474621Z copying torch\include\torch\csrc\api\include\torch\nn\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:18:40.7481561Z copying torch\include\torch\csrc\api\include\torch\nn\module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:18:40.7488746Z copying torch\include\torch\csrc\api\include\torch\nn\modules.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:18:40.7500359Z copying torch\include\torch\csrc\api\include\torch\nn\options.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:18:40.7507204Z copying torch\include\torch\csrc\api\include\torch\nn\pimpl-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:18:40.7514312Z copying torch\include\torch\csrc\api\include\torch\nn\pimpl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:18:40.7520931Z copying torch\include\torch\csrc\api\include\torch\nn\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:18:40.7526376Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:18:40.7530150Z copying torch\include\torch\csrc\api\include\torch\nn\functional\activation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:18:40.7537187Z copying torch\include\torch\csrc\api\include\torch\nn\functional\batchnorm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:18:40.7543823Z copying torch\include\torch\csrc\api\include\torch\nn\functional\conv.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:18:40.7550517Z copying torch\include\torch\csrc\api\include\torch\nn\functional\distance.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:18:40.7560833Z copying torch\include\torch\csrc\api\include\torch\nn\functional\dropout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:18:40.7567509Z copying torch\include\torch\csrc\api\include\torch\nn\functional\embedding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:18:40.7574242Z copying torch\include\torch\csrc\api\include\torch\nn\functional\fold.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:18:40.7580981Z copying torch\include\torch\csrc\api\include\torch\nn\functional\instancenorm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:18:40.7587467Z copying torch\include\torch\csrc\api\include\torch\nn\functional\linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:18:40.7594047Z copying torch\include\torch\csrc\api\include\torch\nn\functional\loss.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:18:40.7601304Z copying torch\include\torch\csrc\api\include\torch\nn\functional\normalization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:18:40.7608623Z copying torch\include\torch\csrc\api\include\torch\nn\functional\padding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:18:40.7614844Z copying torch\include\torch\csrc\api\include\torch\nn\functional\pixelshuffle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:18:40.7621663Z copying torch\include\torch\csrc\api\include\torch\nn\functional\pooling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:18:40.7628734Z copying torch\include\torch\csrc\api\include\torch\nn\functional\upsampling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:18:40.7635538Z copying torch\include\torch\csrc\api\include\torch\nn\functional\vision.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:18:40.7641153Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7644325Z copying torch\include\torch\csrc\api\include\torch\nn\modules\activation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7651624Z copying torch\include\torch\csrc\api\include\torch\nn\modules\adaptive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7664756Z copying torch\include\torch\csrc\api\include\torch\nn\modules\batchnorm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7665921Z copying torch\include\torch\csrc\api\include\torch\nn\modules\common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7672725Z copying torch\include\torch\csrc\api\include\torch\nn\modules\conv.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7683590Z copying torch\include\torch\csrc\api\include\torch\nn\modules\distance.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7690150Z copying torch\include\torch\csrc\api\include\torch\nn\modules\dropout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7696406Z copying torch\include\torch\csrc\api\include\torch\nn\modules\embedding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7703004Z copying torch\include\torch\csrc\api\include\torch\nn\modules\fold.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7709923Z copying torch\include\torch\csrc\api\include\torch\nn\modules\instancenorm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7716504Z copying torch\include\torch\csrc\api\include\torch\nn\modules\linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7722692Z copying torch\include\torch\csrc\api\include\torch\nn\modules\loss.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7730102Z copying torch\include\torch\csrc\api\include\torch\nn\modules\normalization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7736548Z copying torch\include\torch\csrc\api\include\torch\nn\modules\padding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7742916Z copying torch\include\torch\csrc\api\include\torch\nn\modules\pixelshuffle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7750237Z copying torch\include\torch\csrc\api\include\torch\nn\modules\pooling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7756968Z copying torch\include\torch\csrc\api\include\torch\nn\modules\rnn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7763277Z copying torch\include\torch\csrc\api\include\torch\nn\modules\transformer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7770202Z copying torch\include\torch\csrc\api\include\torch\nn\modules\transformercoder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7777138Z copying torch\include\torch\csrc\api\include\torch\nn\modules\transformerlayer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7783655Z copying torch\include\torch\csrc\api\include\torch\nn\modules\upsampling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7790457Z copying torch\include\torch\csrc\api\include\torch\nn\modules\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7797073Z copying torch\include\torch\csrc\api\include\torch\nn\modules\_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:18:40.7803253Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:18:40.7806208Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\any.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:18:40.7813506Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\any_module_holder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:18:40.7819666Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\any_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:18:40.7826200Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\functional.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:18:40.7837957Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\moduledict.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:18:40.7845484Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\modulelist.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:18:40.7852373Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\named_any.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:18:40.7859127Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterdict.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:18:40.7866113Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterlist.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:18:40.7872586Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\sequential.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:18:40.7878001Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:18:40.7881105Z copying torch\include\torch\csrc\api\include\torch\nn\options\activation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:18:40.7888129Z copying torch\include\torch\csrc\api\include\torch\nn\options\adaptive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:18:40.7894557Z copying torch\include\torch\csrc\api\include\torch\nn\options\batchnorm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:18:40.7900915Z copying torch\include\torch\csrc\api\include\torch\nn\options\conv.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:18:40.7907345Z copying torch\include\torch\csrc\api\include\torch\nn\options\distance.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:18:40.7918587Z copying torch\include\torch\csrc\api\include\torch\nn\options\dropout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:18:40.7925246Z copying torch\include\torch\csrc\api\include\torch\nn\options\embedding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:18:40.7931675Z copying torch\include\torch\csrc\api\include\torch\nn\options\fold.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:18:40.7938491Z copying torch\include\torch\csrc\api\include\torch\nn\options\instancenorm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:18:40.7944831Z copying torch\include\torch\csrc\api\include\torch\nn\options\linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:18:40.7951532Z copying torch\include\torch\csrc\api\include\torch\nn\options\loss.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:18:40.7958582Z copying torch\include\torch\csrc\api\include\torch\nn\options\normalization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:18:40.7964690Z copying torch\include\torch\csrc\api\include\torch\nn\options\padding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:18:40.7971329Z copying torch\include\torch\csrc\api\include\torch\nn\options\pixelshuffle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:18:40.7977735Z copying torch\include\torch\csrc\api\include\torch\nn\options\pooling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:18:40.7984762Z copying torch\include\torch\csrc\api\include\torch\nn\options\rnn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:18:40.7991351Z copying torch\include\torch\csrc\api\include\torch\nn\options\transformer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:18:40.7997995Z copying torch\include\torch\csrc\api\include\torch\nn\options\transformercoder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:18:40.8004984Z copying torch\include\torch\csrc\api\include\torch\nn\options\transformerlayer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:18:40.8011674Z copying torch\include\torch\csrc\api\include\torch\nn\options\upsampling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:18:40.8018583Z copying torch\include\torch\csrc\api\include\torch\nn\options\vision.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:18:40.8024638Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-07-24T05:18:40.8027803Z copying torch\include\torch\csrc\api\include\torch\nn\parallel\data_parallel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-07-24T05:18:40.8033669Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils 2025-07-24T05:18:40.8037143Z copying torch\include\torch\csrc\api\include\torch\nn\utils\clip_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils 2025-07-24T05:18:40.8043721Z copying torch\include\torch\csrc\api\include\torch\nn\utils\convert_parameters.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils 2025-07-24T05:18:40.8050407Z copying torch\include\torch\csrc\api\include\torch\nn\utils\rnn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils 2025-07-24T05:18:40.8056445Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:18:40.8059244Z copying torch\include\torch\csrc\api\include\torch\optim\adagrad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:18:40.8065624Z copying torch\include\torch\csrc\api\include\torch\optim\adam.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:18:40.8072162Z copying torch\include\torch\csrc\api\include\torch\optim\adamw.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:18:40.8078969Z copying torch\include\torch\csrc\api\include\torch\optim\lbfgs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:18:40.8085236Z copying torch\include\torch\csrc\api\include\torch\optim\optimizer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:18:40.8091708Z copying torch\include\torch\csrc\api\include\torch\optim\rmsprop.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:18:40.8104392Z copying torch\include\torch\csrc\api\include\torch\optim\serialize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:18:40.8111380Z copying torch\include\torch\csrc\api\include\torch\optim\sgd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:18:40.8117051Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-07-24T05:18:40.8120391Z copying torch\include\torch\csrc\api\include\torch\optim\schedulers\lr_scheduler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-07-24T05:18:40.8127229Z copying torch\include\torch\csrc\api\include\torch\optim\schedulers\reduce_on_plateau_scheduler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-07-24T05:18:40.8134371Z copying torch\include\torch\csrc\api\include\torch\optim\schedulers\step_lr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-07-24T05:18:40.8143953Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\python 2025-07-24T05:18:40.8146946Z copying torch\include\torch\csrc\api\include\torch\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\python 2025-07-24T05:18:40.8153165Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize 2025-07-24T05:18:40.8155810Z copying torch\include\torch\csrc\api\include\torch\serialize\archive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize 2025-07-24T05:18:40.8162368Z copying torch\include\torch\csrc\api\include\torch\serialize\input-archive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize 2025-07-24T05:18:40.8169813Z copying torch\include\torch\csrc\api\include\torch\serialize\output-archive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize 2025-07-24T05:18:40.8176547Z copying torch\include\torch\csrc\api\include\torch\serialize\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize 2025-07-24T05:18:40.8186725Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8189837Z copying torch\include\torch\csrc\autograd\anomaly_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8196358Z copying torch\include\torch\csrc\autograd\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8203091Z copying torch\include\torch\csrc\autograd\autograd_not_implemented_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8209678Z copying torch\include\torch\csrc\autograd\cpp_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8221718Z copying torch\include\torch\csrc\autograd\custom_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8228510Z copying torch\include\torch\csrc\autograd\edge.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8234941Z copying torch\include\torch\csrc\autograd\engine.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8241239Z copying torch\include\torch\csrc\autograd\forward_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8247703Z copying torch\include\torch\csrc\autograd\function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8270851Z copying torch\include\torch\csrc\autograd\FunctionsManual.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8277818Z copying torch\include\torch\csrc\autograd\function_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8283756Z copying torch\include\torch\csrc\autograd\grad_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8289556Z copying torch\include\torch\csrc\autograd\graph_task.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8295760Z copying torch\include\torch\csrc\autograd\InferenceMode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8302319Z copying torch\include\torch\csrc\autograd\input_buffer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8309078Z copying torch\include\torch\csrc\autograd\input_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8315558Z copying torch\include\torch\csrc\autograd\jit_decomp_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8322738Z copying torch\include\torch\csrc\autograd\profiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8328653Z copying torch\include\torch\csrc\autograd\profiler_kineto.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8335653Z copying torch\include\torch\csrc\autograd\profiler_legacy.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8342395Z copying torch\include\torch\csrc\autograd\profiler_python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8349524Z copying torch\include\torch\csrc\autograd\python_anomaly_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8360314Z copying torch\include\torch\csrc\autograd\python_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8366495Z copying torch\include\torch\csrc\autograd\python_cpp_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8372987Z copying torch\include\torch\csrc\autograd\python_engine.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8379526Z copying torch\include\torch\csrc\autograd\python_enum_tag.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8385733Z copying torch\include\torch\csrc\autograd\python_fft_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8392247Z copying torch\include\torch\csrc\autograd\python_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8399294Z copying torch\include\torch\csrc\autograd\python_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8406222Z copying torch\include\torch\csrc\autograd\python_legacy_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8412717Z copying torch\include\torch\csrc\autograd\python_linalg_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8423898Z copying torch\include\torch\csrc\autograd\python_nested_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8430347Z copying torch\include\torch\csrc\autograd\python_nn_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8436753Z copying torch\include\torch\csrc\autograd\python_saved_variable_hooks.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8443331Z copying torch\include\torch\csrc\autograd\python_sparse_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8450122Z copying torch\include\torch\csrc\autograd\python_special_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8456859Z copying torch\include\torch\csrc\autograd\python_torch_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8463002Z copying torch\include\torch\csrc\autograd\python_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8469609Z copying torch\include\torch\csrc\autograd\python_variable_indexing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8477079Z copying torch\include\torch\csrc\autograd\record_function_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8483417Z copying torch\include\torch\csrc\autograd\saved_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8489914Z copying torch\include\torch\csrc\autograd\saved_variable_hooks.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8501239Z copying torch\include\torch\csrc\autograd\symbolic.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8507527Z copying torch\include\torch\csrc\autograd\variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8514861Z copying torch\include\torch\csrc\autograd\VariableTypeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8521537Z copying torch\include\torch\csrc\autograd\variable_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:18:40.8527650Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-07-24T05:18:40.8530615Z copying torch\include\torch\csrc\autograd\functions\accumulate_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-07-24T05:18:40.8537571Z copying torch\include\torch\csrc\autograd\functions\basic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-07-24T05:18:40.8544502Z copying torch\include\torch\csrc\autograd\functions\comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-07-24T05:18:40.8551321Z copying torch\include\torch\csrc\autograd\functions\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-07-24T05:18:40.8561776Z copying torch\include\torch\csrc\autograd\functions\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-07-24T05:18:40.8568325Z copying torch\include\torch\csrc\autograd\functions\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-07-24T05:18:40.8573907Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-07-24T05:18:40.8577576Z copying torch\include\torch\csrc\autograd\generated\Functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-07-24T05:18:40.8589090Z copying torch\include\torch\csrc\autograd\generated\python_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-07-24T05:18:40.8595856Z copying torch\include\torch\csrc\autograd\generated\python_return_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-07-24T05:18:40.8607871Z copying torch\include\torch\csrc\autograd\generated\VariableType.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-07-24T05:18:40.8614584Z copying torch\include\torch\csrc\autograd\generated\variable_factories.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-07-24T05:18:40.8622302Z copying torch\include\torch\csrc\autograd\generated\ViewFuncs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-07-24T05:18:40.8628996Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-07-24T05:18:40.8632334Z copying torch\include\torch\csrc\autograd\utils\error_messages.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-07-24T05:18:40.8638985Z copying torch\include\torch\csrc\autograd\utils\grad_layout_contract.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-07-24T05:18:40.8646897Z copying torch\include\torch\csrc\autograd\utils\lambda_post_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-07-24T05:18:40.8652662Z copying torch\include\torch\csrc\autograd\utils\python_arg_parsing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-07-24T05:18:40.8673146Z copying torch\include\torch\csrc\autograd\utils\warnings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-07-24T05:18:40.8673579Z copying torch\include\torch\csrc\autograd\utils\wrap_outputs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-07-24T05:18:40.8678955Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cpu 2025-07-24T05:18:40.8680658Z copying torch\include\torch\csrc\cpu\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cpu 2025-07-24T05:18:40.8686283Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:18:40.8689096Z copying torch\include\torch\csrc\cuda\comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:18:40.8695636Z copying torch\include\torch\csrc\cuda\CUDAPluggableAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:18:40.8702151Z copying torch\include\torch\csrc\cuda\device_set.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:18:40.8708641Z copying torch\include\torch\csrc\cuda\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:18:40.8714511Z copying torch\include\torch\csrc\cuda\GdsFile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:18:40.8726637Z copying torch\include\torch\csrc\cuda\memory_snapshot.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:18:40.8732779Z copying torch\include\torch\csrc\cuda\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:18:40.8738655Z copying torch\include\torch\csrc\cuda\nccl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:18:40.8745130Z copying torch\include\torch\csrc\cuda\python_comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:18:40.8751231Z copying torch\include\torch\csrc\cuda\python_nccl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:18:40.8757641Z copying torch\include\torch\csrc\cuda\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:18:40.8763542Z copying torch\include\torch\csrc\cuda\THCP.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:18:40.8769586Z copying torch\include\torch\csrc\cuda\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:18:40.8774861Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-07-24T05:18:40.8778934Z copying torch\include\torch\csrc\distributed\autograd\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-07-24T05:18:40.8785356Z copying torch\include\torch\csrc\distributed\autograd\python_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-07-24T05:18:40.8791657Z copying torch\include\torch\csrc\distributed\autograd\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-07-24T05:18:40.8796902Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-07-24T05:18:40.8799895Z copying torch\include\torch\csrc\distributed\autograd\context\container.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-07-24T05:18:40.8806349Z copying torch\include\torch\csrc\distributed\autograd\context\context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-07-24T05:18:40.8811811Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\engine 2025-07-24T05:18:40.8814784Z copying torch\include\torch\csrc\distributed\autograd\engine\dist_engine.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\engine 2025-07-24T05:18:40.8820082Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\functions 2025-07-24T05:18:40.8827659Z copying torch\include\torch\csrc\distributed\autograd\functions\recvrpc_backward.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\functions 2025-07-24T05:18:40.8834305Z copying torch\include\torch\csrc\distributed\autograd\functions\sendrpc_backward.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\functions 2025-07-24T05:18:40.8839548Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:18:40.8842754Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\autograd_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:18:40.8849208Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_req.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:18:40.8856236Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:18:40.8867472Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_req.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:18:40.8873889Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:18:40.8880390Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:18:40.8886997Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_req.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:18:40.8893655Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:18:40.8900153Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_req.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:18:40.8906539Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:18:40.8912008Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:40.8914873Z copying torch\include\torch\csrc\distributed\c10d\c10d.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:40.8921387Z copying torch\include\torch\csrc\distributed\c10d\debug.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:40.8927370Z copying torch\include\torch\csrc\distributed\c10d\error.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:40.8933418Z copying torch\include\torch\csrc\distributed\c10d\exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:40.8939928Z copying torch\include\torch\csrc\distributed\c10d\logging.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:40.8946199Z copying torch\include\torch\csrc\distributed\c10d\python_comm_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:40.8957618Z copying torch\include\torch\csrc\distributed\c10d\socket.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:40.8963893Z copying torch\include\torch\csrc\distributed\c10d\socket_fmt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:40.8970267Z copying torch\include\torch\csrc\distributed\c10d\TraceUtils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:40.8976020Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-07-24T05:18:40.8979060Z copying torch\include\torch\csrc\distributed\c10d\quantization\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-07-24T05:18:40.8985425Z copying torch\include\torch\csrc\distributed\c10d\quantization\quantization_gpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-07-24T05:18:40.8991687Z copying torch\include\torch\csrc\distributed\c10d\quantization\quantization_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-07-24T05:18:40.9001804Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:18:40.9004991Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:18:40.9010665Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9013646Z copying torch\include\torch\csrc\distributed\rpc\agent_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9019722Z copying torch\include\torch\csrc\distributed\rpc\message.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9026229Z copying torch\include\torch\csrc\distributed\rpc\python_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9032521Z copying torch\include\torch\csrc\distributed\rpc\python_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9043694Z copying torch\include\torch\csrc\distributed\rpc\python_remote_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9050112Z copying torch\include\torch\csrc\distributed\rpc\python_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9056444Z copying torch\include\torch\csrc\distributed\rpc\python_rpc_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9163158Z copying torch\include\torch\csrc\distributed\rpc\py_rref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9207446Z copying torch\include\torch\csrc\distributed\rpc\request_callback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9208577Z copying torch\include\torch\csrc\distributed\rpc\request_callback_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9209708Z copying torch\include\torch\csrc\distributed\rpc\request_callback_no_python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9210693Z copying torch\include\torch\csrc\distributed\rpc\rpc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9211618Z copying torch\include\torch\csrc\distributed\rpc\rpc_agent.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9226380Z copying torch\include\torch\csrc\distributed\rpc\rpc_command_base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9233149Z copying torch\include\torch\csrc\distributed\rpc\rref_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9240071Z copying torch\include\torch\csrc\distributed\rpc\rref_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9247296Z copying torch\include\torch\csrc\distributed\rpc\rref_proto.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9253930Z copying torch\include\torch\csrc\distributed\rpc\script_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9260519Z copying torch\include\torch\csrc\distributed\rpc\script_remote_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9267230Z copying torch\include\torch\csrc\distributed\rpc\script_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9279066Z copying torch\include\torch\csrc\distributed\rpc\tensorpipe_agent.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9286046Z copying torch\include\torch\csrc\distributed\rpc\tensorpipe_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9292837Z copying torch\include\torch\csrc\distributed\rpc\torchscript_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9299404Z copying torch\include\torch\csrc\distributed\rpc\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9305924Z copying torch\include\torch\csrc\distributed\rpc\unpickled_python_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9312744Z copying torch\include\torch\csrc\distributed\rpc\unpickled_python_remote_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9319483Z copying torch\include\torch\csrc\distributed\rpc\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:18:40.9325530Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\metrics 2025-07-24T05:18:40.9328562Z copying torch\include\torch\csrc\distributed\rpc\metrics\RpcMetricsHandler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\metrics 2025-07-24T05:18:40.9334034Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\profiler 2025-07-24T05:18:40.9337131Z copying torch\include\torch\csrc\distributed\rpc\profiler\remote_profiler_manager.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\profiler 2025-07-24T05:18:40.9343832Z copying torch\include\torch\csrc\distributed\rpc\profiler\server_process_global_profiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\profiler 2025-07-24T05:18:40.9349396Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing 2025-07-24T05:18:40.9352493Z copying torch\include\torch\csrc\distributed\rpc\testing\faulty_tensorpipe_agent.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing 2025-07-24T05:18:40.9359121Z copying torch\include\torch\csrc\distributed\rpc\testing\testing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing 2025-07-24T05:18:40.9364659Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:18:40.9367534Z copying torch\include\torch\csrc\dynamo\cache_entry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:18:40.9374296Z copying torch\include\torch\csrc\dynamo\compiled_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:18:40.9381475Z copying torch\include\torch\csrc\dynamo\cpp_shim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:18:40.9387452Z copying torch\include\torch\csrc\dynamo\cpython_defs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:18:40.9398967Z copying torch\include\torch\csrc\dynamo\cpython_includes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:18:40.9405208Z copying torch\include\torch\csrc\dynamo\debug_macros.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:18:40.9411562Z copying torch\include\torch\csrc\dynamo\eval_frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:18:40.9418143Z copying torch\include\torch\csrc\dynamo\eval_frame_cpp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:18:40.9424360Z copying torch\include\torch\csrc\dynamo\extra_state.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:18:40.9431152Z copying torch\include\torch\csrc\dynamo\framelocals_mapping.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:18:40.9437466Z copying torch\include\torch\csrc\dynamo\guards.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:18:40.9443784Z copying torch\include\torch\csrc\dynamo\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:18:40.9449979Z copying torch\include\torch\csrc\dynamo\python_compiled_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:18:40.9455979Z copying torch\include\torch\csrc\dynamo\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:18:40.9461217Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-07-24T05:18:40.9464121Z copying torch\include\torch\csrc\export\example_upgraders.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-07-24T05:18:40.9470517Z copying torch\include\torch\csrc\export\pt2_archive_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-07-24T05:18:40.9476940Z copying torch\include\torch\csrc\export\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-07-24T05:18:40.9483233Z copying torch\include\torch\csrc\export\upgrader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-07-24T05:18:40.9488811Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\functorch 2025-07-24T05:18:40.9491740Z copying torch\include\torch\csrc\functorch\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\functorch 2025-07-24T05:18:40.9497026Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\fx 2025-07-24T05:18:40.9500045Z copying torch\include\torch\csrc\fx\node.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\fx 2025-07-24T05:18:40.9505208Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-07-24T05:18:40.9508168Z copying torch\include\torch\csrc\inductor\array_ref_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-07-24T05:18:40.9515118Z copying torch\include\torch\csrc\inductor\cpp_prefix.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-07-24T05:18:40.9522385Z copying torch\include\torch\csrc\inductor\inductor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-07-24T05:18:40.9528998Z copying torch\include\torch\csrc\inductor\static_cuda_launcher.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-07-24T05:18:40.9547934Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_eager 2025-07-24T05:18:40.9551080Z copying torch\include\torch\csrc\inductor\aoti_eager\kernel_holder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_eager 2025-07-24T05:18:40.9558184Z copying torch\include\torch\csrc\inductor\aoti_eager\kernel_meta_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_eager 2025-07-24T05:18:40.9563677Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:18:40.9566500Z copying torch\include\torch\csrc\inductor\aoti_include\array_ref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:18:40.9572854Z copying torch\include\torch\csrc\inductor\aoti_include\common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:18:40.9578899Z copying torch\include\torch\csrc\inductor\aoti_include\cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:18:40.9585020Z copying torch\include\torch\csrc\inductor\aoti_include\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:18:40.9592015Z copying torch\include\torch\csrc\inductor\aoti_include\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:18:40.9601967Z copying torch\include\torch\csrc\inductor\aoti_include\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:18:40.9607135Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package 2025-07-24T05:18:40.9610505Z copying torch\include\torch\csrc\inductor\aoti_package\model_package_loader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package 2025-07-24T05:18:40.9617622Z copying torch\include\torch\csrc\inductor\aoti_package\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package 2025-07-24T05:18:40.9622864Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:18:40.9626876Z copying torch\include\torch\csrc\inductor\aoti_runner\model_container_runner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:18:40.9633443Z copying torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:18:40.9640235Z copying torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:18:40.9651067Z copying torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:18:40.9657509Z copying torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:18:40.9664123Z copying torch\include\torch\csrc\inductor\aoti_runner\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:18:40.9669720Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:18:40.9686220Z copying torch\include\torch\csrc\inductor\aoti_runtime\arrayref_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:18:40.9688212Z copying torch\include\torch\csrc\inductor\aoti_runtime\constant_type.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:18:40.9689286Z copying torch\include\torch\csrc\inductor\aoti_runtime\device_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:18:40.9706510Z copying torch\include\torch\csrc\inductor\aoti_runtime\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:18:40.9712551Z copying torch\include\torch\csrc\inductor\aoti_runtime\mini_array_ref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:18:40.9718508Z copying torch\include\torch\csrc\inductor\aoti_runtime\model.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:18:40.9724947Z copying torch\include\torch\csrc\inductor\aoti_runtime\model_base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:18:40.9732018Z copying torch\include\torch\csrc\inductor\aoti_runtime\model_container.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:18:40.9739191Z copying torch\include\torch\csrc\inductor\aoti_runtime\scalar_to_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:18:40.9745888Z copying torch\include\torch\csrc\inductor\aoti_runtime\sycl_runtime_wrappers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:18:40.9753000Z copying torch\include\torch\csrc\inductor\aoti_runtime\thread_local.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:18:40.9759664Z copying torch\include\torch\csrc\inductor\aoti_runtime\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:18:40.9766191Z copying torch\include\torch\csrc\inductor\aoti_runtime\utils_cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:18:40.9772580Z copying torch\include\torch\csrc\inductor\aoti_runtime\utils_xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:18:40.9778334Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:18:40.9781481Z copying torch\include\torch\csrc\inductor\aoti_torch\mkldnn_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:18:40.9795317Z copying torch\include\torch\csrc\inductor\aoti_torch\oss_proxy_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:18:40.9796411Z copying torch\include\torch\csrc\inductor\aoti_torch\proxy_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:18:40.9806154Z copying torch\include\torch\csrc\inductor\aoti_torch\tensor_converter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:18:40.9812190Z copying torch\include\torch\csrc\inductor\aoti_torch\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:18:40.9817629Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:18:40.9820515Z copying torch\include\torch\csrc\inductor\aoti_torch\c\macros.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:18:40.9826698Z copying torch\include\torch\csrc\inductor\aoti_torch\c\shim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:18:40.9833626Z copying torch\include\torch\csrc\inductor\aoti_torch\c\shim_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:18:40.9839945Z copying torch\include\torch\csrc\inductor\aoti_torch\c\shim_deprecated.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:18:40.9846391Z copying torch\include\torch\csrc\inductor\aoti_torch\c\shim_mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:18:40.9852944Z copying torch\include\torch\csrc\inductor\aoti_torch\c\shim_xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:18:40.9862966Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-24T05:18:40.9865952Z copying torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-24T05:18:40.9873039Z copying torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-24T05:18:40.9880103Z copying torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-24T05:18:40.9892064Z copying torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-24T05:18:40.9897671Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:18:40.9900729Z copying torch\include\torch\csrc\inductor\cpp_wrapper\array_ref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:18:40.9914055Z copying torch\include\torch\csrc\inductor\cpp_wrapper\common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:18:40.9917706Z copying torch\include\torch\csrc\inductor\cpp_wrapper\cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:18:40.9924254Z copying torch\include\torch\csrc\inductor\cpp_wrapper\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:18:40.9930826Z copying torch\include\torch\csrc\inductor\cpp_wrapper\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:18:40.9941691Z copying torch\include\torch\csrc\inductor\cpp_wrapper\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:18:40.9947048Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-24T05:18:40.9950203Z copying torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-24T05:18:40.9956894Z copying torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-24T05:18:40.9963110Z copying torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-24T05:18:40.9969020Z copying torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-24T05:18:40.9974278Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\instruction_counter 2025-07-24T05:18:40.9977296Z copying torch\include\torch\csrc\instruction_counter\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\instruction_counter 2025-07-24T05:18:40.9982465Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-07-24T05:18:40.9985750Z copying torch\include\torch\csrc\jit\jit_log.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-07-24T05:18:40.9991882Z copying torch\include\torch\csrc\jit\jit_opt_limit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-07-24T05:18:40.9998514Z copying torch\include\torch\csrc\jit\resource_guard.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-07-24T05:18:41.0004230Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-07-24T05:18:41.0007219Z copying torch\include\torch\csrc\jit\api\compilation_unit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-07-24T05:18:41.0013865Z copying torch\include\torch\csrc\jit\api\function_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-07-24T05:18:41.0020266Z copying torch\include\torch\csrc\jit\api\method.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-07-24T05:18:41.0026484Z copying torch\include\torch\csrc\jit\api\module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-07-24T05:18:41.0033601Z copying torch\include\torch\csrc\jit\api\object.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-07-24T05:18:41.0045091Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-24T05:18:41.0052060Z copying torch\include\torch\csrc\jit\backends\backend.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-24T05:18:41.0058585Z copying torch\include\torch\csrc\jit\backends\backend_debug_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-24T05:18:41.0064992Z copying torch\include\torch\csrc\jit\backends\backend_debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-24T05:18:41.0071387Z copying torch\include\torch\csrc\jit\backends\backend_detail.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-24T05:18:41.0081899Z copying torch\include\torch\csrc\jit\backends\backend_exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-24T05:18:41.0088325Z copying torch\include\torch\csrc\jit\backends\backend_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-24T05:18:41.0094681Z copying torch\include\torch\csrc\jit\backends\backend_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-24T05:18:41.0101733Z copying torch\include\torch\csrc\jit\backends\backend_preprocess.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-24T05:18:41.0107993Z copying torch\include\torch\csrc\jit\backends\backend_resolver.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-24T05:18:41.0113612Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-07-24T05:18:41.0118133Z copying torch\include\torch\csrc\jit\backends\coreml\cpp\context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-07-24T05:18:41.0123230Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:18:41.0127282Z copying torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLCompiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:18:41.0132994Z copying torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLExecutor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:18:41.0139312Z copying torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLFeatureProvider.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:18:41.0150598Z copying torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLModelWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:18:41.0157079Z copying torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLTensorSpec.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:18:41.0162660Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack 2025-07-24T05:18:41.0165858Z copying torch\include\torch\csrc\jit\backends\xnnpack\xnnpack_graph_builder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack 2025-07-24T05:18:41.0172148Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-07-24T05:18:41.0174712Z copying torch\include\torch\csrc\jit\backends\xnnpack\compiler\xnn_compiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-07-24T05:18:41.0208937Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-07-24T05:18:41.0209886Z copying torch\include\torch\csrc\jit\backends\xnnpack\executor\xnn_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-07-24T05:18:41.0210837Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-07-24T05:18:41.0211846Z copying torch\include\torch\csrc\jit\backends\xnnpack\serialization\serializer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-07-24T05:18:41.0212766Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\cuda 2025-07-24T05:18:41.0213595Z copying torch\include\torch\csrc\jit\codegen\cuda\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\cuda 2025-07-24T05:18:41.0214463Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:18:41.0215233Z copying torch\include\torch\csrc\jit\codegen\fuser\arg_spec.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:18:41.0221112Z copying torch\include\torch\csrc\jit\codegen\fuser\codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:18:41.0227568Z copying torch\include\torch\csrc\jit\codegen\fuser\compiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:18:41.0233998Z copying torch\include\torch\csrc\jit\codegen\fuser\executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:18:41.0240043Z copying torch\include\torch\csrc\jit\codegen\fuser\fallback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:18:41.0246640Z copying torch\include\torch\csrc\jit\codegen\fuser\fused_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:18:41.0258105Z copying torch\include\torch\csrc\jit\codegen\fuser\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:18:41.0264497Z copying torch\include\torch\csrc\jit\codegen\fuser\kernel_cache.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:18:41.0271438Z copying torch\include\torch\csrc\jit\codegen\fuser\kernel_spec.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:18:41.0277769Z copying torch\include\torch\csrc\jit\codegen\fuser\partition_desc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:18:41.0284133Z copying torch\include\torch\csrc\jit\codegen\fuser\tensor_desc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:18:41.0290956Z copying torch\include\torch\csrc\jit\codegen\fuser\tensor_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:18:41.0296733Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-07-24T05:18:41.0299742Z copying torch\include\torch\csrc\jit\codegen\fuser\cpu\fused_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-07-24T05:18:41.0306367Z copying torch\include\torch\csrc\jit\codegen\fuser\cpu\resource_strings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-07-24T05:18:41.0313107Z copying torch\include\torch\csrc\jit\codegen\fuser\cpu\temp_file.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-07-24T05:18:41.0318681Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-07-24T05:18:41.0321721Z copying torch\include\torch\csrc\jit\codegen\fuser\cuda\fused_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-07-24T05:18:41.0328232Z copying torch\include\torch\csrc\jit\codegen\fuser\cuda\resource_strings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-07-24T05:18:41.0333739Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:18:41.0336685Z copying torch\include\torch\csrc\jit\codegen\onednn\decompose_silu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:18:41.0343449Z copying torch\include\torch\csrc\jit\codegen\onednn\defer_size_check.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:18:41.0349843Z copying torch\include\torch\csrc\jit\codegen\onednn\graph_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:18:41.0356271Z copying torch\include\torch\csrc\jit\codegen\onednn\graph_helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:18:41.0367534Z copying torch\include\torch\csrc\jit\codegen\onednn\guard_shape.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:18:41.0373847Z copying torch\include\torch\csrc\jit\codegen\onednn\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:18:41.0380292Z copying torch\include\torch\csrc\jit\codegen\onednn\kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:18:41.0386853Z copying torch\include\torch\csrc\jit\codegen\onednn\layout_propagation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:18:41.0393611Z copying torch\include\torch\csrc\jit\codegen\onednn\LlgaTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:18:41.0404734Z copying torch\include\torch\csrc\jit\codegen\onednn\operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:18:41.0410901Z copying torch\include\torch\csrc\jit\codegen\onednn\prepare_binary.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:18:41.0416313Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\cuda 2025-07-24T05:18:41.0419203Z copying torch\include\torch\csrc\jit\cuda\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\cuda 2025-07-24T05:18:41.0424645Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0427597Z copying torch\include\torch\csrc\jit\frontend\builtin_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0433818Z copying torch\include\torch\csrc\jit\frontend\canonicalize_modified_loop.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0440346Z copying torch\include\torch\csrc\jit\frontend\concrete_module_type.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0451851Z copying torch\include\torch\csrc\jit\frontend\convert_to_ssa.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0458396Z copying torch\include\torch\csrc\jit\frontend\edit_distance.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0465488Z copying torch\include\torch\csrc\jit\frontend\error_report.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0471622Z copying torch\include\torch\csrc\jit\frontend\exit_transforms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0478250Z copying torch\include\torch\csrc\jit\frontend\function_schema_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0485255Z copying torch\include\torch\csrc\jit\frontend\inline_loop_condition.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0491728Z copying torch\include\torch\csrc\jit\frontend\ir_emitter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0498641Z copying torch\include\torch\csrc\jit\frontend\lexer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0505934Z copying torch\include\torch\csrc\jit\frontend\mini_environment.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0512719Z copying torch\include\torch\csrc\jit\frontend\name_mangler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0523633Z copying torch\include\torch\csrc\jit\frontend\parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0556024Z copying torch\include\torch\csrc\jit\frontend\parser_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0562810Z copying torch\include\torch\csrc\jit\frontend\parse_string_literal.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0570498Z copying torch\include\torch\csrc\jit\frontend\resolver.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0577492Z copying torch\include\torch\csrc\jit\frontend\schema_matching.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0583883Z copying torch\include\torch\csrc\jit\frontend\schema_type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0591620Z copying torch\include\torch\csrc\jit\frontend\script_type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0601595Z copying torch\include\torch\csrc\jit\frontend\source_range.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0612900Z copying torch\include\torch\csrc\jit\frontend\source_ref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0619871Z copying torch\include\torch\csrc\jit\frontend\strtod.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0625618Z copying torch\include\torch\csrc\jit\frontend\sugared_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0632822Z copying torch\include\torch\csrc\jit\frontend\tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0639159Z copying torch\include\torch\csrc\jit\frontend\tree.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0645709Z copying torch\include\torch\csrc\jit\frontend\tree_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0652890Z copying torch\include\torch\csrc\jit\frontend\versioned_symbols.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:18:41.0659153Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:18:41.0662127Z copying torch\include\torch\csrc\jit\ir\alias_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:18:41.0668669Z copying torch\include\torch\csrc\jit\ir\attributes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:18:41.0675452Z copying torch\include\torch\csrc\jit\ir\constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:18:41.0686428Z copying torch\include\torch\csrc\jit\ir\graph_node_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:18:41.0698467Z copying torch\include\torch\csrc\jit\ir\graph_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:18:41.0704413Z copying torch\include\torch\csrc\jit\ir\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:18:41.0711766Z copying torch\include\torch\csrc\jit\ir\irparser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:18:41.0717971Z copying torch\include\torch\csrc\jit\ir\ir_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:18:41.0724365Z copying torch\include\torch\csrc\jit\ir\named_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:18:41.0731130Z copying torch\include\torch\csrc\jit\ir\node_hashing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:18:41.0737533Z copying torch\include\torch\csrc\jit\ir\scope.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:18:41.0743857Z copying torch\include\torch\csrc\jit\ir\subgraph_matcher.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:18:41.0750619Z copying torch\include\torch\csrc\jit\ir\type_hashing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:18:41.0756127Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0758960Z copying torch\include\torch\csrc\jit\mobile\code.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0765159Z copying torch\include\torch\csrc\jit\mobile\debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0771652Z copying torch\include\torch\csrc\jit\mobile\file_format.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0778243Z copying torch\include\torch\csrc\jit\mobile\flatbuffer_loader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0791219Z copying torch\include\torch\csrc\jit\mobile\frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0797658Z copying torch\include\torch\csrc\jit\mobile\function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0803777Z copying torch\include\torch\csrc\jit\mobile\import.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0810236Z copying torch\include\torch\csrc\jit\mobile\import_data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0817047Z copying torch\include\torch\csrc\jit\mobile\import_export_common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0824375Z copying torch\include\torch\csrc\jit\mobile\interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0835089Z copying torch\include\torch\csrc\jit\mobile\method.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0840554Z copying torch\include\torch\csrc\jit\mobile\module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0846781Z copying torch\include\torch\csrc\jit\mobile\observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0853416Z copying torch\include\torch\csrc\jit\mobile\parse_bytecode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0860432Z copying torch\include\torch\csrc\jit\mobile\parse_operators.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0867335Z copying torch\include\torch\csrc\jit\mobile\prim_ops_registery.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0873903Z copying torch\include\torch\csrc\jit\mobile\profiler_edge.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0880645Z copying torch\include\torch\csrc\jit\mobile\promoted_prim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0887299Z copying torch\include\torch\csrc\jit\mobile\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0914381Z copying torch\include\torch\csrc\jit\mobile\register_ops_common_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0920818Z copying torch\include\torch\csrc\jit\mobile\type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0927751Z copying torch\include\torch\csrc\jit\mobile\upgrader_mobile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:18:41.0938323Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-24T05:18:41.0941737Z copying torch\include\torch\csrc\jit\mobile\compatibility\backport.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-24T05:18:41.0948267Z copying torch\include\torch\csrc\jit\mobile\compatibility\backport_manager.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-24T05:18:41.0955062Z copying torch\include\torch\csrc\jit\mobile\compatibility\model_compatibility.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-24T05:18:41.0965570Z copying torch\include\torch\csrc\jit\mobile\compatibility\runtime_compatibility.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-24T05:18:41.0971044Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:18:41.0974185Z copying torch\include\torch\csrc\jit\mobile\model_tracer\BuildFeatureTracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:18:41.0981215Z copying torch\include\torch\csrc\jit\mobile\model_tracer\CustomClassTracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:18:41.0987719Z copying torch\include\torch\csrc\jit\mobile\model_tracer\KernelDTypeTracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:18:41.0999095Z copying torch\include\torch\csrc\jit\mobile\model_tracer\MobileModelRunner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:18:41.1005995Z copying torch\include\torch\csrc\jit\mobile\model_tracer\OperatorCallTracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:18:41.1012527Z copying torch\include\torch\csrc\jit\mobile\model_tracer\TensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:18:41.1018776Z copying torch\include\torch\csrc\jit\mobile\model_tracer\TracerRunner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:18:41.1024185Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-07-24T05:18:41.1027280Z copying torch\include\torch\csrc\jit\mobile\nnc\aot_compiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-07-24T05:18:41.1034218Z copying torch\include\torch\csrc\jit\mobile\nnc\context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-07-24T05:18:41.1040740Z copying torch\include\torch\csrc\jit\mobile\nnc\registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-07-24T05:18:41.1046165Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-07-24T05:18:41.1050048Z copying torch\include\torch\csrc\jit\mobile\train\export_data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-07-24T05:18:41.1056950Z copying torch\include\torch\csrc\jit\mobile\train\random.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-07-24T05:18:41.1063461Z copying torch\include\torch\csrc\jit\mobile\train\sequential.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-07-24T05:18:41.1069690Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\optim 2025-07-24T05:18:41.1072796Z copying torch\include\torch\csrc\jit\mobile\train\optim\sgd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\optim 2025-07-24T05:18:41.1078390Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-07-24T05:18:41.1081422Z copying torch\include\torch\csrc\jit\operator_upgraders\upgraders.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-07-24T05:18:41.1087936Z copying torch\include\torch\csrc\jit\operator_upgraders\upgraders_entry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-07-24T05:18:41.1094888Z copying torch\include\torch\csrc\jit\operator_upgraders\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-07-24T05:18:41.1100785Z copying torch\include\torch\csrc\jit\operator_upgraders\version_map.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-07-24T05:18:41.1110733Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1113829Z copying torch\include\torch\csrc\jit\passes\add_if_then_else.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1120056Z copying torch\include\torch\csrc\jit\passes\annotate_warns.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1126379Z copying torch\include\torch\csrc\jit\passes\autocast.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1133133Z copying torch\include\torch\csrc\jit\passes\bailout_graph.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1144747Z copying torch\include\torch\csrc\jit\passes\batch_mm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1151235Z copying torch\include\torch\csrc\jit\passes\canonicalize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1158015Z copying torch\include\torch\csrc\jit\passes\canonicalize_graph_fuser_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1164115Z copying torch\include\torch\csrc\jit\passes\check_strict_fusion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1170020Z copying torch\include\torch\csrc\jit\passes\clear_profiling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1176344Z copying torch\include\torch\csrc\jit\passes\clear_undefinedness.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1207931Z copying torch\include\torch\csrc\jit\passes\common_subexpression_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1208912Z copying torch\include\torch\csrc\jit\passes\concat_opt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1209809Z copying torch\include\torch\csrc\jit\passes\constant_pooling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1210759Z copying torch\include\torch\csrc\jit\passes\constant_propagation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1211741Z copying torch\include\torch\csrc\jit\passes\create_autodiff_subgraphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1218034Z copying torch\include\torch\csrc\jit\passes\create_functional_graphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1224882Z copying torch\include\torch\csrc\jit\passes\dead_code_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1232814Z copying torch\include\torch\csrc\jit\passes\decompose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1238826Z copying torch\include\torch\csrc\jit\passes\device_type_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1248566Z copying torch\include\torch\csrc\jit\passes\dtype_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1254907Z copying torch\include\torch\csrc\jit\passes\eliminate_no_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1260992Z copying torch\include\torch\csrc\jit\passes\erase_number_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1267959Z copying torch\include\torch\csrc\jit\passes\fixup_trace_scope_blocks.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1274556Z copying torch\include\torch\csrc\jit\passes\fold_conv_bn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1280904Z copying torch\include\torch\csrc\jit\passes\fold_linear_bn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1287385Z copying torch\include\torch\csrc\jit\passes\freeze_module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1294095Z copying torch\include\torch\csrc\jit\passes\frozen_concat_linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1300738Z copying torch\include\torch\csrc\jit\passes\frozen_conv_add_relu_fusion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1311224Z copying torch\include\torch\csrc\jit\passes\frozen_conv_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1317970Z copying torch\include\torch\csrc\jit\passes\frozen_graph_optimizations.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1323916Z copying torch\include\torch\csrc\jit\passes\frozen_linear_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1330454Z copying torch\include\torch\csrc\jit\passes\frozen_linear_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1337166Z copying torch\include\torch\csrc\jit\passes\frozen_ops_to_mkldnn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1343203Z copying torch\include\torch\csrc\jit\passes\fuse_linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1350090Z copying torch\include\torch\csrc\jit\passes\fuse_relu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1356216Z copying torch\include\torch\csrc\jit\passes\graph_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1362975Z copying torch\include\torch\csrc\jit\passes\graph_rewrite_helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1373295Z copying torch\include\torch\csrc\jit\passes\guard_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1379529Z copying torch\include\torch\csrc\jit\passes\hoist_conv_packed_params.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1386122Z copying torch\include\torch\csrc\jit\passes\inliner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1392421Z copying torch\include\torch\csrc\jit\passes\inline_autodiff_subgraphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1398584Z copying torch\include\torch\csrc\jit\passes\inline_forked_closures.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1405199Z copying torch\include\torch\csrc\jit\passes\inline_fork_wait.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1411794Z copying torch\include\torch\csrc\jit\passes\inplace_check.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1418672Z copying torch\include\torch\csrc\jit\passes\insert_guards.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1425331Z copying torch\include\torch\csrc\jit\passes\integer_value_refinement.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1435733Z copying torch\include\torch\csrc\jit\passes\lift_closures.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1441785Z copying torch\include\torch\csrc\jit\passes\liveness.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1447921Z copying torch\include\torch\csrc\jit\passes\loop_unrolling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1454492Z copying torch\include\torch\csrc\jit\passes\lower_grad_of.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1460620Z copying torch\include\torch\csrc\jit\passes\lower_graph.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1467118Z copying torch\include\torch\csrc\jit\passes\lower_tuples.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1473755Z copying torch\include\torch\csrc\jit\passes\metal_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1480064Z copying torch\include\torch\csrc\jit\passes\mkldnn_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1486631Z copying torch\include\torch\csrc\jit\passes\mobile_optimizer_type.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1492741Z copying torch\include\torch\csrc\jit\passes\normalize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1507408Z copying torch\include\torch\csrc\jit\passes\onednn_graph_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1518374Z copying torch\include\torch\csrc\jit\passes\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1524836Z copying torch\include\torch\csrc\jit\passes\pass_manager.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1531507Z copying torch\include\torch\csrc\jit\passes\peephole.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1538009Z copying torch\include\torch\csrc\jit\passes\peephole_alias_sensitive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1544386Z copying torch\include\torch\csrc\jit\passes\peephole_dict_idioms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1551931Z copying torch\include\torch\csrc\jit\passes\peephole_list_idioms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1558905Z copying torch\include\torch\csrc\jit\passes\peephole_non_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1565406Z copying torch\include\torch\csrc\jit\passes\prepack_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1572014Z copying torch\include\torch\csrc\jit\passes\refine_tuple_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1578616Z copying torch\include\torch\csrc\jit\passes\remove_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1589385Z copying torch\include\torch\csrc\jit\passes\remove_exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1687157Z copying torch\include\torch\csrc\jit\passes\remove_expands.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1706398Z copying torch\include\torch\csrc\jit\passes\remove_inplace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1707450Z copying torch\include\torch\csrc\jit\passes\remove_mutation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1708496Z copying torch\include\torch\csrc\jit\passes\remove_redundant_profiles.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1713815Z copying torch\include\torch\csrc\jit\passes\replacement_of_old_operators.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1720162Z copying torch\include\torch\csrc\jit\passes\requires_grad_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1726732Z copying torch\include\torch\csrc\jit\passes\restore_mutation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1733581Z copying torch\include\torch\csrc\jit\passes\shape_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1744835Z copying torch\include\torch\csrc\jit\passes\specialize_autogradzero.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1752135Z copying torch\include\torch\csrc\jit\passes\subgraph_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1759772Z copying torch\include\torch\csrc\jit\passes\symbolic_shape_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1766415Z copying torch\include\torch\csrc\jit\passes\symbolic_shape_cache.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1773033Z copying torch\include\torch\csrc\jit\passes\symbolic_shape_runtime_fusion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1779490Z copying torch\include\torch\csrc\jit\passes\tensorexpr_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1786355Z copying torch\include\torch\csrc\jit\passes\update_differentiable_graph_requires_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1793803Z copying torch\include\torch\csrc\jit\passes\value_refinement_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1800335Z copying torch\include\torch\csrc\jit\passes\variadic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1807017Z copying torch\include\torch\csrc\jit\passes\vulkan_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1813712Z copying torch\include\torch\csrc\jit\passes\xnnpack_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:18:41.1819522Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-07-24T05:18:41.1830670Z copying torch\include\torch\csrc\jit\passes\dbr_quantization\remove_redundant_aliases.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-07-24T05:18:41.1835902Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:18:41.1846410Z copying torch\include\torch\csrc\jit\passes\onnx\cast_all_constant_to_floating.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:18:41.1852517Z copying torch\include\torch\csrc\jit\passes\onnx\constant_fold.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:18:41.1863345Z copying torch\include\torch\csrc\jit\passes\onnx\constant_map.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:18:41.1869716Z copying torch\include\torch\csrc\jit\passes\onnx\deduplicate_initializers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:18:41.1881347Z copying torch\include\torch\csrc\jit\passes\onnx\eliminate_unused_items.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:18:41.1887668Z copying torch\include\torch\csrc\jit\passes\onnx\eval_peephole.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:18:41.1893920Z copying torch\include\torch\csrc\jit\passes\onnx\fixup_onnx_controlflow.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:18:41.1900250Z copying torch\include\torch\csrc\jit\passes\onnx\function_extraction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:18:41.1906948Z copying torch\include\torch\csrc\jit\passes\onnx\function_substitution.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:18:41.1913303Z copying torch\include\torch\csrc\jit\passes\onnx\helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:18:41.1919768Z copying torch\include\torch\csrc\jit\passes\onnx\list_model_parameters.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:18:41.1926465Z copying torch\include\torch\csrc\jit\passes\onnx\naming.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:18:41.1932747Z copying torch\include\torch\csrc\jit\passes\onnx\onnx_log.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:18:41.1938843Z copying torch\include\torch\csrc\jit\passes\onnx\peephole.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:18:41.1944973Z copying torch\include\torch\csrc\jit\passes\onnx\prepare_division_for_onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:18:41.1951370Z copying torch\include\torch\csrc\jit\passes\onnx\preprocess_for_onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:18:41.1957951Z copying torch\include\torch\csrc\jit\passes\onnx\remove_inplace_ops_for_onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:18:41.1964260Z copying torch\include\torch\csrc\jit\passes\onnx\scalar_type_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:18:41.1981667Z copying torch\include\torch\csrc\jit\passes\onnx\shape_type_inference.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:18:41.1992651Z copying torch\include\torch\csrc\jit\passes\onnx\unpack_quantized_weights.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:18:41.2002781Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-07-24T05:18:41.2006540Z copying torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\autograd_function_process.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-07-24T05:18:41.2012176Z copying torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-07-24T05:18:41.2019008Z copying torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_conversion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-07-24T05:18:41.2030768Z copying torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_encapsulation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-07-24T05:18:41.2036423Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:18:41.2039754Z copying torch\include\torch\csrc\jit\passes\quantization\dedup_module_uses.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:18:41.2047062Z copying torch\include\torch\csrc\jit\passes\quantization\finalize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:18:41.2053698Z copying torch\include\torch\csrc\jit\passes\quantization\fusion_passes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:18:41.2060075Z copying torch\include\torch\csrc\jit\passes\quantization\helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:18:41.2071477Z copying torch\include\torch\csrc\jit\passes\quantization\insert_observers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:18:41.2078220Z copying torch\include\torch\csrc\jit\passes\quantization\insert_quant_dequant.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:18:41.2084743Z copying torch\include\torch\csrc\jit\passes\quantization\quantization_patterns.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:18:41.2092770Z copying torch\include\torch\csrc\jit\passes\quantization\quantization_type.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:18:41.2098774Z copying torch\include\torch\csrc\jit\passes\quantization\register_packed_params.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:18:41.2104589Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:18:41.2108146Z copying torch\include\torch\csrc\jit\passes\utils\check_alias_annotation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:18:41.2115163Z copying torch\include\torch\csrc\jit\passes\utils\memory_dag.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:18:41.2121344Z copying torch\include\torch\csrc\jit\passes\utils\optimization_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:18:41.2132858Z copying torch\include\torch\csrc\jit\passes\utils\op_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:18:41.2139212Z copying torch\include\torch\csrc\jit\passes\utils\subgraph_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:18:41.2144819Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:18:41.2147689Z copying torch\include\torch\csrc\jit\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:18:41.2153926Z copying torch\include\torch\csrc\jit\python\module_python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:18:41.2165484Z copying torch\include\torch\csrc\jit\python\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:18:41.2172121Z copying torch\include\torch\csrc\jit\python\pybind_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:18:41.2179363Z copying torch\include\torch\csrc\jit\python\python_arg_flatten.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:18:41.2201461Z copying torch\include\torch\csrc\jit\python\python_custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:18:41.2202487Z copying torch\include\torch\csrc\jit\python\python_dict.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:18:41.2207347Z copying torch\include\torch\csrc\jit\python\python_ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:18:41.2214109Z copying torch\include\torch\csrc\jit\python\python_ivalue.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:18:41.2221038Z copying torch\include\torch\csrc\jit\python\python_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:18:41.2227832Z copying torch\include\torch\csrc\jit\python\python_sugared_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:18:41.2235122Z copying torch\include\torch\csrc\jit\python\python_tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:18:41.2241925Z copying torch\include\torch\csrc\jit\python\python_tree_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:18:41.2248218Z copying torch\include\torch\csrc\jit\python\script_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:18:41.2255145Z copying torch\include\torch\csrc\jit\python\update_graph_executor_opt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:18:41.2261249Z copying torch\include\torch\csrc\jit\python\utf8_decoding_ignore.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:18:41.2266516Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2269622Z copying torch\include\torch\csrc\jit\runtime\argument_spec.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2276776Z copying torch\include\torch\csrc\jit\runtime\autodiff.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2283361Z copying torch\include\torch\csrc\jit\runtime\calculate_necessary_args.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2289904Z copying torch\include\torch\csrc\jit\runtime\custom_operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2301041Z copying torch\include\torch\csrc\jit\runtime\decomposition_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2308154Z copying torch\include\torch\csrc\jit\runtime\decomposition_registry_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2314610Z copying torch\include\torch\csrc\jit\runtime\exception_message.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2320872Z copying torch\include\torch\csrc\jit\runtime\graph_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2327407Z copying torch\include\torch\csrc\jit\runtime\graph_executor_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2333957Z copying torch\include\torch\csrc\jit\runtime\graph_iterator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2340312Z copying torch\include\torch\csrc\jit\runtime\instruction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2347180Z copying torch\include\torch\csrc\jit\runtime\interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2353818Z copying torch\include\torch\csrc\jit\runtime\jit_exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2360744Z copying torch\include\torch\csrc\jit\runtime\jit_trace.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2366893Z copying torch\include\torch\csrc\jit\runtime\logging.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2373101Z copying torch\include\torch\csrc\jit\runtime\operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2379777Z copying torch\include\torch\csrc\jit\runtime\operator_options.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2386018Z copying torch\include\torch\csrc\jit\runtime\print_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2392604Z copying torch\include\torch\csrc\jit\runtime\profiling_graph_executor_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2399087Z copying torch\include\torch\csrc\jit\runtime\profiling_record.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2412704Z copying torch\include\torch\csrc\jit\runtime\register_ops_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2419803Z copying torch\include\torch\csrc\jit\runtime\script_profile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2426497Z copying torch\include\torch\csrc\jit\runtime\serialized_shape_function_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2433008Z copying torch\include\torch\csrc\jit\runtime\shape_function_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2444903Z copying torch\include\torch\csrc\jit\runtime\simple_graph_executor_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2451581Z copying torch\include\torch\csrc\jit\runtime\slice_indices_adjust.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2458644Z copying torch\include\torch\csrc\jit\runtime\symbolic_script.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2464769Z copying torch\include\torch\csrc\jit\runtime\symbolic_shape_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2471850Z copying torch\include\torch\csrc\jit\runtime\symbolic_shape_registry_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2486933Z copying torch\include\torch\csrc\jit\runtime\vararg_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2493465Z copying torch\include\torch\csrc\jit\runtime\variable_tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:18:41.2499460Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-24T05:18:41.2502638Z copying torch\include\torch\csrc\jit\runtime\interpreter\can_emit_inline.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-24T05:18:41.2509676Z copying torch\include\torch\csrc\jit\runtime\interpreter\code_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-24T05:18:41.2516177Z copying torch\include\torch\csrc\jit\runtime\interpreter\frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-24T05:18:41.2522671Z copying torch\include\torch\csrc\jit\runtime\interpreter\preprocess_graph.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-24T05:18:41.2533057Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:18:41.2535972Z copying torch\include\torch\csrc\jit\runtime\static\fusion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:18:41.2542634Z copying torch\include\torch\csrc\jit\runtime\static\impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:18:41.2550160Z copying torch\include\torch\csrc\jit\runtime\static\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:18:41.2556135Z copying torch\include\torch\csrc\jit\runtime\static\memory_planner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:18:41.2562304Z copying torch\include\torch\csrc\jit\runtime\static\ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:18:41.2568719Z copying torch\include\torch\csrc\jit\runtime\static\passes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:18:41.2580167Z copying torch\include\torch\csrc\jit\runtime\static\ProcessedNodeInputs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:18:41.2586792Z copying torch\include\torch\csrc\jit\runtime\static\processed_node_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:18:41.2593573Z copying torch\include\torch\csrc\jit\runtime\static\static_method.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:18:41.2600545Z copying torch\include\torch\csrc\jit\runtime\static\te_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:18:41.2606971Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2609723Z copying torch\include\torch\csrc\jit\serialization\callstack_debug_info_serialization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2616216Z copying torch\include\torch\csrc\jit\serialization\export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2622809Z copying torch\include\torch\csrc\jit\serialization\export_bytecode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2635103Z copying torch\include\torch\csrc\jit\serialization\flatbuffer_serializer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2641996Z copying torch\include\torch\csrc\jit\serialization\flatbuffer_serializer_jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2648156Z copying torch\include\torch\csrc\jit\serialization\import.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2654910Z copying torch\include\torch\csrc\jit\serialization\import_export_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2661668Z copying torch\include\torch\csrc\jit\serialization\import_export_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2668401Z copying torch\include\torch\csrc\jit\serialization\import_export_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2675103Z copying torch\include\torch\csrc\jit\serialization\import_read.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2681796Z copying torch\include\torch\csrc\jit\serialization\import_source.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2688676Z copying torch\include\torch\csrc\jit\serialization\mobile_bytecode_generated.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2697817Z copying torch\include\torch\csrc\jit\serialization\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2703829Z copying torch\include\torch\csrc\jit\serialization\pickle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2710093Z copying torch\include\torch\csrc\jit\serialization\pickler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2717000Z copying torch\include\torch\csrc\jit\serialization\pickler_helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2723577Z copying torch\include\torch\csrc\jit\serialization\python_print.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2730216Z copying torch\include\torch\csrc\jit\serialization\source_range_serialization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2737142Z copying torch\include\torch\csrc\jit\serialization\source_range_serialization_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2743740Z copying torch\include\torch\csrc\jit\serialization\storage_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2755405Z copying torch\include\torch\csrc\jit\serialization\type_name_uniquer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2761887Z copying torch\include\torch\csrc\jit\serialization\unpickler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:18:41.2767396Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2770546Z copying torch\include\torch\csrc\jit\tensorexpr\analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2776993Z copying torch\include\torch\csrc\jit\tensorexpr\block_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2783876Z copying torch\include\torch\csrc\jit\tensorexpr\bounds_inference.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2791202Z copying torch\include\torch\csrc\jit\tensorexpr\bounds_overlap.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2827628Z copying torch\include\torch\csrc\jit\tensorexpr\codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2857069Z copying torch\include\torch\csrc\jit\tensorexpr\cpp_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2863796Z copying torch\include\torch\csrc\jit\tensorexpr\cpp_intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2870907Z copying torch\include\torch\csrc\jit\tensorexpr\cuda_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2877579Z copying torch\include\torch\csrc\jit\tensorexpr\cuda_random.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2884424Z copying torch\include\torch\csrc\jit\tensorexpr\eval.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2891031Z copying torch\include\torch\csrc\jit\tensorexpr\exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2897349Z copying torch\include\torch\csrc\jit\tensorexpr\expr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2904336Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2911030Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions_core.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2917603Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2924040Z copying torch\include\torch\csrc\jit\tensorexpr\fwd_decls.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2930517Z copying torch\include\torch\csrc\jit\tensorexpr\graph_opt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2936961Z copying torch\include\torch\csrc\jit\tensorexpr\half_support.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2943908Z copying torch\include\torch\csrc\jit\tensorexpr\hash_provider.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2950655Z copying torch\include\torch\csrc\jit\tensorexpr\intrinsic_symbols.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2956765Z copying torch\include\torch\csrc\jit\tensorexpr\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2968190Z copying torch\include\torch\csrc\jit\tensorexpr\ir_cloner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2974559Z copying torch\include\torch\csrc\jit\tensorexpr\ir_mutator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2980854Z copying torch\include\torch\csrc\jit\tensorexpr\ir_printer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2987318Z copying torch\include\torch\csrc\jit\tensorexpr\ir_simplifier.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.2994011Z copying torch\include\torch\csrc\jit\tensorexpr\ir_verifier.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.3000300Z copying torch\include\torch\csrc\jit\tensorexpr\ir_visitor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.3006950Z copying torch\include\torch\csrc\jit\tensorexpr\kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.3019963Z copying torch\include\torch\csrc\jit\tensorexpr\llvm_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.3026921Z copying torch\include\torch\csrc\jit\tensorexpr\llvm_jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.3033362Z copying torch\include\torch\csrc\jit\tensorexpr\loopnest.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.3040505Z copying torch\include\torch\csrc\jit\tensorexpr\loopnest_randomization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.3051983Z copying torch\include\torch\csrc\jit\tensorexpr\lowerings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.3058730Z copying torch\include\torch\csrc\jit\tensorexpr\mem_dependency_checker.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.3066216Z copying torch\include\torch\csrc\jit\tensorexpr\reduction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.3072908Z copying torch\include\torch\csrc\jit\tensorexpr\registerizer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.3079710Z copying torch\include\torch\csrc\jit\tensorexpr\stmt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.3086906Z copying torch\include\torch\csrc\jit\tensorexpr\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.3094732Z copying torch\include\torch\csrc\jit\tensorexpr\tensorexpr_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.3100776Z copying torch\include\torch\csrc\jit\tensorexpr\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.3107264Z copying torch\include\torch\csrc\jit\tensorexpr\unique_name_manager.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.3114074Z copying torch\include\torch\csrc\jit\tensorexpr\var_substitutor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:18:41.3119676Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:18:41.3123125Z copying torch\include\torch\csrc\jit\tensorexpr\operators\conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:18:41.3129283Z copying torch\include\torch\csrc\jit\tensorexpr\operators\matmul.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:18:41.3135376Z copying torch\include\torch\csrc\jit\tensorexpr\operators\misc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:18:41.3142092Z copying torch\include\torch\csrc\jit\tensorexpr\operators\norm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:18:41.3148255Z copying torch\include\torch\csrc\jit\tensorexpr\operators\operators.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:18:41.3158965Z copying torch\include\torch\csrc\jit\tensorexpr\operators\pointwise.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:18:41.3165405Z copying torch\include\torch\csrc\jit\tensorexpr\operators\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:18:41.3172026Z copying torch\include\torch\csrc\jit\tensorexpr\operators\reduction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:18:41.3178350Z copying torch\include\torch\csrc\jit\tensorexpr\operators\softmax.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:18:41.3183517Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-07-24T05:18:41.3186589Z copying torch\include\torch\csrc\jit\testing\file_check.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-07-24T05:18:41.3209377Z copying torch\include\torch\csrc\jit\testing\hooks_for_testing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-07-24T05:18:41.3209781Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-07-24T05:18:41.3218220Z copying torch\include\torch\csrc\lazy\backend\backend_data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-07-24T05:18:41.3221018Z copying torch\include\torch\csrc\lazy\backend\backend_device.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-07-24T05:18:41.3230111Z copying torch\include\torch\csrc\lazy\backend\backend_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-07-24T05:18:41.3237545Z copying torch\include\torch\csrc\lazy\backend\lowering_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-07-24T05:18:41.3265061Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3265439Z copying torch\include\torch\csrc\lazy\core\cache.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3265804Z copying torch\include\torch\csrc\lazy\core\config.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3266784Z copying torch\include\torch\csrc\lazy\core\debug_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3273434Z copying torch\include\torch\csrc\lazy\core\dynamic_ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3284611Z copying torch\include\torch\csrc\lazy\core\hash.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3296071Z copying torch\include\torch\csrc\lazy\core\helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3302483Z copying torch\include\torch\csrc\lazy\core\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3308824Z copying torch\include\torch\csrc\lazy\core\ir_builder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3316111Z copying torch\include\torch\csrc\lazy\core\ir_dump_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3321661Z copying torch\include\torch\csrc\lazy\core\ir_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3329189Z copying torch\include\torch\csrc\lazy\core\ir_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3335719Z copying torch\include\torch\csrc\lazy\core\lazy_graph_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3342505Z copying torch\include\torch\csrc\lazy\core\metrics.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3349422Z copying torch\include\torch\csrc\lazy\core\multi_wait.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3356121Z copying torch\include\torch\csrc\lazy\core\permutation_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3362646Z copying torch\include\torch\csrc\lazy\core\shape.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3368995Z copying torch\include\torch\csrc\lazy\core\shape_inference.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3375641Z copying torch\include\torch\csrc\lazy\core\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3382104Z copying torch\include\torch\csrc\lazy\core\tensor_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3388484Z copying torch\include\torch\csrc\lazy\core\tensor_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3395351Z copying torch\include\torch\csrc\lazy\core\thread_pool.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3401707Z copying torch\include\torch\csrc\lazy\core\trie.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3408309Z copying torch\include\torch\csrc\lazy\core\unique.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3414633Z copying torch\include\torch\csrc\lazy\core\util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:18:41.3420912Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\internal_ops 2025-07-24T05:18:41.3429077Z copying torch\include\torch\csrc\lazy\core\internal_ops\ltc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\internal_ops 2025-07-24T05:18:41.3435625Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops 2025-07-24T05:18:41.3438735Z copying torch\include\torch\csrc\lazy\core\ops\arithmetic_ir_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops 2025-07-24T05:18:41.3444986Z copying torch\include\torch\csrc\lazy\core\ops\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops 2025-07-24T05:18:41.3450508Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-07-24T05:18:41.3453687Z copying torch\include\torch\csrc\lazy\generated\LazyIr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-07-24T05:18:41.3463378Z copying torch\include\torch\csrc\lazy\generated\LazyNativeFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-07-24T05:18:41.3470382Z copying torch\include\torch\csrc\lazy\generated\LazyNonNativeIr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-07-24T05:18:41.3475899Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-07-24T05:18:41.3478819Z copying torch\include\torch\csrc\lazy\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-07-24T05:18:41.3484752Z copying torch\include\torch\csrc\lazy\python\python_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-07-24T05:18:41.3490042Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:18:41.3506825Z copying torch\include\torch\csrc\lazy\ts_backend\config.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:18:41.3513561Z copying torch\include\torch\csrc\lazy\ts_backend\dynamic_ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:18:41.3519914Z copying torch\include\torch\csrc\lazy\ts_backend\ir_builder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:18:41.3526239Z copying torch\include\torch\csrc\lazy\ts_backend\tensor_aten_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:18:41.3539209Z copying torch\include\torch\csrc\lazy\ts_backend\ts_autograd_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:18:41.3545602Z copying torch\include\torch\csrc\lazy\ts_backend\ts_backend_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:18:41.3552387Z copying torch\include\torch\csrc\lazy\ts_backend\ts_eager_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:18:41.3559205Z copying torch\include\torch\csrc\lazy\ts_backend\ts_lowering_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:18:41.3565896Z copying torch\include\torch\csrc\lazy\ts_backend\ts_node.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:18:41.3572443Z copying torch\include\torch\csrc\lazy\ts_backend\ts_node_lowering.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:18:41.3577835Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops 2025-07-24T05:18:41.3580766Z copying torch\include\torch\csrc\lazy\ts_backend\ops\device_data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops 2025-07-24T05:18:41.3591805Z copying torch\include\torch\csrc\lazy\ts_backend\ops\generic.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops 2025-07-24T05:18:41.3598086Z copying torch\include\torch\csrc\lazy\ts_backend\ops\to_copy.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops 2025-07-24T05:18:41.3603508Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-07-24T05:18:41.3606511Z copying torch\include\torch\csrc\monitor\counters.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-07-24T05:18:41.3612933Z copying torch\include\torch\csrc\monitor\events.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-07-24T05:18:41.3619423Z copying torch\include\torch\csrc\monitor\python_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-07-24T05:18:41.3624771Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mps 2025-07-24T05:18:41.3627557Z copying torch\include\torch\csrc\mps\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mps 2025-07-24T05:18:41.3633413Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia 2025-07-24T05:18:41.3636391Z copying torch\include\torch\csrc\mtia\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia 2025-07-24T05:18:41.3641994Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia\profiler 2025-07-24T05:18:41.3644959Z copying torch\include\torch\csrc\mtia\profiler\MTIAMemoryProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia\profiler 2025-07-24T05:18:41.3650342Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\multiprocessing 2025-07-24T05:18:41.3653634Z copying torch\include\torch\csrc\multiprocessing\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\multiprocessing 2025-07-24T05:18:41.3658724Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-07-24T05:18:41.3661512Z copying torch\include\torch\csrc\onnx\back_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-07-24T05:18:41.3667850Z copying torch\include\torch\csrc\onnx\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-07-24T05:18:41.3673916Z copying torch\include\torch\csrc\onnx\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-07-24T05:18:41.3679587Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:18:41.3682571Z copying torch\include\torch\csrc\profiler\api.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:18:41.3688639Z copying torch\include\torch\csrc\profiler\collection.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:18:41.3695938Z copying torch\include\torch\csrc\profiler\combined_traceback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:18:41.3708821Z copying torch\include\torch\csrc\profiler\containers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:18:41.3720972Z copying torch\include\torch\csrc\profiler\data_flow.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:18:41.3721693Z copying torch\include\torch\csrc\profiler\events.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:18:41.3728341Z copying torch\include\torch\csrc\profiler\kineto_client_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:18:41.3734564Z copying torch\include\torch\csrc\profiler\kineto_shim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:18:41.3741135Z copying torch\include\torch\csrc\profiler\perf-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:18:41.3747680Z copying torch\include\torch\csrc\profiler\perf.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:18:41.3754088Z copying torch\include\torch\csrc\profiler\util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:18:41.3759900Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-07-24T05:18:41.3763037Z copying torch\include\torch\csrc\profiler\orchestration\observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-07-24T05:18:41.3769524Z copying torch\include\torch\csrc\profiler\orchestration\python_tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-07-24T05:18:41.3775922Z copying torch\include\torch\csrc\profiler\orchestration\vulkan.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-07-24T05:18:41.3781414Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-07-24T05:18:41.3784406Z copying torch\include\torch\csrc\profiler\python\combined_traceback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-07-24T05:18:41.3790895Z copying torch\include\torch\csrc\profiler\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-07-24T05:18:41.3797110Z copying torch\include\torch\csrc\profiler\python\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-07-24T05:18:41.3802716Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-07-24T05:18:41.3805831Z copying torch\include\torch\csrc\profiler\standalone\execution_trace_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-07-24T05:18:41.3812335Z copying torch\include\torch\csrc\profiler\standalone\itt_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-07-24T05:18:41.3818726Z copying torch\include\torch\csrc\profiler\standalone\nvtx_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-07-24T05:18:41.3830563Z copying torch\include\torch\csrc\profiler\standalone\privateuse1_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-07-24T05:18:41.3835877Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\stubs 2025-07-24T05:18:41.3838769Z copying torch\include\torch\csrc\profiler\stubs\base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\stubs 2025-07-24T05:18:41.3844285Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:18:41.3847528Z copying torch\include\torch\csrc\profiler\unwind\action.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:18:41.3854071Z copying torch\include\torch\csrc\profiler\unwind\communicate.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:18:41.3860471Z copying torch\include\torch\csrc\profiler\unwind\debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:18:41.3866939Z copying torch\include\torch\csrc\profiler\unwind\dwarf_enums.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:18:41.3879634Z copying torch\include\torch\csrc\profiler\unwind\dwarf_symbolize_enums.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:18:41.3885934Z copying torch\include\torch\csrc\profiler\unwind\eh_frame_hdr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:18:41.3896663Z copying torch\include\torch\csrc\profiler\unwind\fast_symbolizer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:18:41.3902958Z copying torch\include\torch\csrc\profiler\unwind\fde.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:18:41.3909240Z copying torch\include\torch\csrc\profiler\unwind\lexer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:18:41.3915785Z copying torch\include\torch\csrc\profiler\unwind\line_number_program.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:18:41.3922142Z copying torch\include\torch\csrc\profiler\unwind\mem_file.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:18:41.3928357Z copying torch\include\torch\csrc\profiler\unwind\range_table.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:18:41.3935006Z copying torch\include\torch\csrc\profiler\unwind\sections.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:18:41.3941505Z copying torch\include\torch\csrc\profiler\unwind\unwind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:18:41.3947929Z copying torch\include\torch\csrc\profiler\unwind\unwinder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:18:41.3954560Z copying torch\include\torch\csrc\profiler\unwind\unwind_error.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:18:41.3960299Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-07-24T05:18:41.3963085Z copying torch\include\torch\csrc\stable\library.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-07-24T05:18:41.3969438Z copying torch\include\torch\csrc\stable\ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-07-24T05:18:41.3975642Z copying torch\include\torch\csrc\stable\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-07-24T05:18:41.3980991Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\tensor 2025-07-24T05:18:41.3984838Z copying torch\include\torch\csrc\tensor\python_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\tensor 2025-07-24T05:18:41.3990282Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.3999291Z copying torch\include\torch\csrc\utils\byte_order.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4014890Z copying torch\include\torch\csrc\utils\cpp_stacktraces.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4020631Z copying torch\include\torch\csrc\utils\cuda_enabled.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4027013Z copying torch\include\torch\csrc\utils\device_lazy_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4040046Z copying torch\include\torch\csrc\utils\disable_torch_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4046670Z copying torch\include\torch\csrc\utils\generated_serialization_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4054805Z copying torch\include\torch\csrc\utils\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4060911Z copying torch\include\torch\csrc\utils\invalid_arguments.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4067266Z copying torch\include\torch\csrc\utils\nested.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4073770Z copying torch\include\torch\csrc\utils\numpy_stub.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4081184Z copying torch\include\torch\csrc\utils\object_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4086948Z copying torch\include\torch\csrc\utils\out_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4093410Z copying torch\include\torch\csrc\utils\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4100494Z copying torch\include\torch\csrc\utils\pycfunction_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4106836Z copying torch\include\torch\csrc\utils\pyobject_preservation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4113421Z copying torch\include\torch\csrc\utils\pythoncapi_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4121407Z copying torch\include\torch\csrc\utils\python_arg_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4128401Z copying torch\include\torch\csrc\utils\python_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4135093Z copying torch\include\torch\csrc\utils\python_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4141346Z copying torch\include\torch\csrc\utils\python_numbers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4154340Z copying torch\include\torch\csrc\utils\python_raii.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4161405Z copying torch\include\torch\csrc\utils\python_scalars.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4167849Z copying torch\include\torch\csrc\utils\python_strings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4174959Z copying torch\include\torch\csrc\utils\python_stub.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4181436Z copying torch\include\torch\csrc\utils\python_symnode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4195897Z copying torch\include\torch\csrc\utils\python_torch_function_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4219053Z copying torch\include\torch\csrc\utils\python_tuples.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4267851Z copying torch\include\torch\csrc\utils\schema_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4276108Z copying torch\include\torch\csrc\utils\six.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4282578Z copying torch\include\torch\csrc\utils\structseq.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4295881Z copying torch\include\torch\csrc\utils\tensor_apply.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4302829Z copying torch\include\torch\csrc\utils\tensor_dtypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4309285Z copying torch\include\torch\csrc\utils\tensor_flatten.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4316020Z copying torch\include\torch\csrc\utils\tensor_layouts.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4322236Z copying torch\include\torch\csrc\utils\tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4328807Z copying torch\include\torch\csrc\utils\tensor_memoryformats.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4335503Z copying torch\include\torch\csrc\utils\tensor_new.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4341886Z copying torch\include\torch\csrc\utils\tensor_numpy.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4348561Z copying torch\include\torch\csrc\utils\tensor_qschemes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4362535Z copying torch\include\torch\csrc\utils\tensor_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4368787Z copying torch\include\torch\csrc\utils\throughput_benchmark-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4375590Z copying torch\include\torch\csrc\utils\throughput_benchmark.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4382184Z copying torch\include\torch\csrc\utils\torch_dispatch_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4388913Z copying torch\include\torch\csrc\utils\variadic.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4395225Z copying torch\include\torch\csrc\utils\verbose.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:18:41.4400467Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-07-24T05:18:41.4403663Z copying torch\include\torch\csrc\xpu\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-07-24T05:18:41.4409898Z copying torch\include\torch\csrc\xpu\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-07-24T05:18:41.4415851Z copying torch\include\torch\csrc\xpu\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-07-24T05:18:41.4421194Z creating build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros 2025-07-24T05:18:41.4426042Z copying torch\include\torch\headeronly\macros\cmake_macros.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros 2025-07-24T05:18:41.4431814Z copying torch\include\torch\headeronly\macros\Export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros 2025-07-24T05:18:41.4443237Z copying torch\include\torch\headeronly\macros\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros 2025-07-24T05:18:41.4448740Z creating build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-07-24T05:18:41.4454293Z copying torch\include\torch\headeronly\util\Exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-07-24T05:18:41.4460331Z copying torch\include\dnnl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:41.4466635Z copying torch\include\dnnl_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:41.4473243Z copying torch\include\dnnl_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:41.4479896Z copying torch\include\dnnl_threadpool.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:41.4486430Z copying torch\include\dnnl_threadpool_iface.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:18:41.4493220Z copying torch\include\oneapi\dnnl\dnnl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:41.4512503Z copying torch\include\oneapi\dnnl\dnnl_common.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:41.4519282Z copying torch\include\oneapi\dnnl\dnnl_graph.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:41.4526857Z copying torch\include\oneapi\dnnl\dnnl_graph_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:41.4533453Z copying torch\include\oneapi\dnnl\dnnl_graph_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:41.4539915Z copying torch\include\oneapi\dnnl\dnnl_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:41.4547267Z copying torch\include\oneapi\dnnl\dnnl_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:41.4554075Z copying torch\include\oneapi\dnnl\dnnl_threadpool.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:41.4560766Z copying torch\include\oneapi\dnnl\dnnl_threadpool_iface.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:41.4567213Z copying torch\include\oneapi\dnnl\dnnl_ukernel.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:18:41.4574374Z copying torch\include\torch\csrc\distributed\c10d\Backend.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4580832Z copying torch\include\torch\csrc\distributed\c10d\Backoff.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4587373Z copying torch\include\torch\csrc\distributed\c10d\comm.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4594450Z copying torch\include\torch\csrc\distributed\c10d\default_comm_hooks.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4601198Z copying torch\include\torch\csrc\distributed\c10d\FakeProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4607900Z copying torch\include\torch\csrc\distributed\c10d\FileStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4614420Z copying torch\include\torch\csrc\distributed\c10d\FlightRecorder.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4621101Z copying torch\include\torch\csrc\distributed\c10d\FlightRecorderDetail.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4628394Z copying torch\include\torch\csrc\distributed\c10d\Functional.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4665484Z copying torch\include\torch\csrc\distributed\c10d\GlooDeviceFactory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4672058Z copying torch\include\torch\csrc\distributed\c10d\GroupRegistry.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4678322Z copying torch\include\torch\csrc\distributed\c10d\HashStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4691045Z copying torch\include\torch\csrc\distributed\c10d\logger.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4701623Z copying torch\include\torch\csrc\distributed\c10d\NanCheck.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4707807Z copying torch\include\torch\csrc\distributed\c10d\NCCLUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4714953Z copying torch\include\torch\csrc\distributed\c10d\ParamCommsUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4721356Z copying torch\include\torch\csrc\distributed\c10d\PrefixStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4728130Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4735410Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupGloo.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4742347Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupGlooDetail.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4749783Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupMPI.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4756110Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupNCCL.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4771753Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupUCC.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4778439Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupWrapper.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4784934Z copying torch\include\torch\csrc\distributed\c10d\PyProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4791479Z copying torch\include\torch\csrc\distributed\c10d\RankLocal.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4798021Z copying torch\include\torch\csrc\distributed\c10d\reducer.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4804687Z copying torch\include\torch\csrc\distributed\c10d\reducer_timer.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4816162Z copying torch\include\torch\csrc\distributed\c10d\sequence_num.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4822909Z copying torch\include\torch\csrc\distributed\c10d\Store.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4829458Z copying torch\include\torch\csrc\distributed\c10d\TCPStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4835825Z copying torch\include\torch\csrc\distributed\c10d\TCPStoreBackend.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4842314Z copying torch\include\torch\csrc\distributed\c10d\Types.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4848723Z copying torch\include\torch\csrc\distributed\c10d\UCCTracing.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4855073Z copying torch\include\torch\csrc\distributed\c10d\UCCUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4869543Z copying torch\include\torch\csrc\distributed\c10d\UnixSockUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4875547Z copying torch\include\torch\csrc\distributed\c10d\Utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4882734Z copying torch\include\torch\csrc\distributed\c10d\WinSockUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4889001Z copying torch\include\torch\csrc\distributed\c10d\Work.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:18:41.4895049Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-07-24T05:18:41.4898237Z copying torch\include\torch\csrc\distributed\c10d\control_collectives\ControlCollectives.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-07-24T05:18:41.4904726Z copying torch\include\torch\csrc\distributed\c10d\control_collectives\StoreCollectives.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-07-24T05:18:41.4911065Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_plane 2025-07-24T05:18:41.4914131Z copying torch\include\torch\csrc\distributed\c10d\control_plane\Handlers.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_plane 2025-07-24T05:18:41.4920461Z copying torch\include\torch\csrc\distributed\c10d\control_plane\WorkerServer.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_plane 2025-07-24T05:18:41.4925964Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-07-24T05:18:41.4929070Z copying torch\include\torch\csrc\distributed\c10d\cuda\CUDAEventCache.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-07-24T05:18:41.4935231Z copying torch\include\torch\csrc\distributed\c10d\cuda\StreamBlock.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-07-24T05:18:41.4941589Z copying torch\include\torch\csrc\distributed\c10d\cuda\utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-07-24T05:18:41.4947834Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:18:41.4954813Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryTypes.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:18:41.4968432Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:18:41.4974832Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\DMAConnectivity.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:18:41.4981637Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\intra_node_comm.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:18:41.4988071Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\SymmetricMemory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:18:41.4994573Z copying torch\include\torch\csrc\jit\testing\catch_utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-07-24T05:18:41.5000675Z copying torch\include\ATen\cuda\ApplyGridUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:41.5007709Z copying torch\include\ATen\cuda\AsmUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:41.5013840Z copying torch\include\ATen\cuda\Atomic.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:41.5020747Z copying torch\include\ATen\cuda\cub-RadixSortPairs.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:41.5027384Z copying torch\include\ATen\cuda\cub.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:41.5034484Z copying torch\include\ATen\cuda\cub_definitions.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:41.5040865Z copying torch\include\ATen\cuda\CUDAApplyUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:41.5047825Z copying torch\include\ATen\cuda\CUDAGraphsUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:41.5055203Z copying torch\include\ATen\cuda\CUDATensorMethods.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:41.5066519Z copying torch\include\ATen\cuda\DeviceUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:41.5073272Z copying torch\include\ATen\cuda\NumericLimits.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:41.5087211Z copying torch\include\ATen\cuda\PhiloxUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:41.5093342Z copying torch\include\ATen\cuda\ScanUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:18:41.5100850Z copying torch\include\ATen\cuda\detail\IndexUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-24T05:18:41.5107045Z copying torch\include\ATen\cuda\detail\IntegerDivider.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-24T05:18:41.5113808Z copying torch\include\ATen\cuda\detail\OffsetCalculator.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-24T05:18:41.5120318Z copying torch\include\ATen\cuda\detail\PhiloxCudaStateRaw.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-24T05:18:41.5127076Z copying torch\include\ATen\cuda\detail\TensorInfo.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-24T05:18:41.5133916Z copying torch\include\ATen\cuda\detail\UnpackRaw.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-24T05:18:41.5146601Z copying torch\include\ATen\native\cuda\block_reduce.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.5153707Z copying torch\include\ATen\native\cuda\CUDAJitLoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.5160281Z copying torch\include\ATen\native\cuda\CUDALoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.5167341Z copying torch\include\ATen\native\cuda\cutlass_common.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.5173767Z copying torch\include\ATen\native\cuda\DeviceSqrt.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.5180553Z copying torch\include\ATen\native\cuda\EmbeddingBackwardKernel.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.5187434Z copying torch\include\ATen\native\cuda\ForeachFunctors.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.5194716Z copying torch\include\ATen\native\cuda\ForeachMinMaxFunctors.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.5201770Z copying torch\include\ATen\native\cuda\fused_adamw_amsgrad_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.5527764Z copying torch\include\ATen\native\cuda\fused_adamw_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.5534751Z copying torch\include\ATen\native\cuda\fused_adam_amsgrad_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.5541104Z copying torch\include\ATen\native\cuda\fused_adam_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.5548498Z copying torch\include\ATen\native\cuda\fused_adam_utils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.5554827Z copying torch\include\ATen\native\cuda\GridSampler.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.5561536Z copying torch\include\ATen\native\cuda\GroupMMCommon.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.5568335Z copying torch\include\ATen\native\cuda\im2col.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.5575733Z copying torch\include\ATen\native\cuda\JitLoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.5582175Z copying torch\include\ATen\native\cuda\KernelUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.5588695Z copying torch\include\ATen\native\cuda\Loops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.5595690Z copying torch\include\ATen\native\cuda\Math.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.5603787Z copying torch\include\ATen\native\cuda\MemoryAccess.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.5610739Z copying torch\include\ATen\native\cuda\MultiTensorApply.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.6270227Z copying torch\include\ATen\native\cuda\Normalization.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.6278657Z copying torch\include\ATen\native\cuda\PersistentSoftmax.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.6285918Z copying torch\include\ATen\native\cuda\Pow.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.6297394Z copying torch\include\ATen\native\cuda\Randperm.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.6304459Z copying torch\include\ATen\native\cuda\Reduce.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.6312468Z copying torch\include\ATen\native\cuda\reduction_template.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.6320319Z copying torch\include\ATen\native\cuda\ScanUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.6327539Z copying torch\include\ATen\native\cuda\SortingCommon.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.6334273Z copying torch\include\ATen\native\cuda\SortingRadixSelect.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.6340846Z copying torch\include\ATen\native\cuda\SortUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.6347620Z copying torch\include\ATen\native\cuda\TensorModeKernel.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.6354530Z copying torch\include\ATen\native\cuda\UniqueCub.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.6361053Z copying torch\include\ATen\native\cuda\UpSample.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.6372609Z copying torch\include\ATen\native\cuda\vol2col.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:18:41.6378158Z creating build\lib.win-amd64-cpython-39\torch\csrc\inductor\aoti_runtime 2025-07-24T05:18:41.6383281Z copying torch\csrc\inductor\aoti_runtime\model.h -> build\lib.win-amd64-cpython-39\torch\csrc\inductor\aoti_runtime 2025-07-24T05:18:41.6388907Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_runtime 2025-07-24T05:18:41.6392266Z copying torch\_inductor\codegen\aoti_runtime\interface.cpp -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_runtime 2025-07-24T05:18:41.6478688Z copying torch\_inductor\script.ld -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:18:41.6495356Z copying torch\_export\serde\schema.yaml -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-24T05:18:41.6517953Z copying torch\_export\serde\export_schema.thrift -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-24T05:18:41.6530309Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\ATen 2025-07-24T05:18:41.6540161Z copying torch\share\cmake\ATen\ATenConfig.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\ATen 2025-07-24T05:18:41.6545505Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-24T05:18:41.6548464Z copying torch\share\cmake\Caffe2\Caffe2Config.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-24T05:18:41.6555019Z copying torch\share\cmake\Caffe2\Caffe2Targets-release.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-24T05:18:41.6561844Z copying torch\share\cmake\Caffe2\Caffe2Targets.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-24T05:18:41.6576341Z copying torch\share\cmake\Caffe2\FindCUDAToolkit.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-24T05:18:41.6583501Z copying torch\share\cmake\Caffe2\FindCUDSS.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-24T05:18:41.6590591Z copying torch\share\cmake\Caffe2\FindCUSPARSELT.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-24T05:18:41.6597128Z copying torch\share\cmake\Caffe2\FindSYCLToolkit.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-24T05:18:41.6602588Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-24T05:18:41.6605411Z copying torch\share\cmake\Caffe2\public\cuda.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-24T05:18:41.6611828Z copying torch\share\cmake\Caffe2\public\gflags.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-24T05:18:41.6618239Z copying torch\share\cmake\Caffe2\public\glog.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-24T05:18:41.6624794Z copying torch\share\cmake\Caffe2\public\LoadHIP.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-24T05:18:41.6637717Z copying torch\share\cmake\Caffe2\public\mkl.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-24T05:18:41.6643727Z copying torch\share\cmake\Caffe2\public\mkldnn.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-24T05:18:41.6654709Z copying torch\share\cmake\Caffe2\public\protobuf.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-24T05:18:41.6661391Z copying torch\share\cmake\Caffe2\public\utils.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-24T05:18:41.6668815Z copying torch\share\cmake\Caffe2\public\xpu.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-24T05:18:41.6674830Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-07-24T05:18:41.6678048Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDA.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-07-24T05:18:41.6684349Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDNN.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-07-24T05:18:41.6690835Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-07-24T05:18:41.6700633Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\CMakeInitializeConfigs.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-07-24T05:18:41.6706260Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-07-24T05:18:41.6720391Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindPackageHandleStandardArgs.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-07-24T05:18:41.6800148Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindPackageMessage.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-07-24T05:18:41.6805690Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-07-24T05:18:41.6808719Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\make2cmake.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-07-24T05:18:41.6815550Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\parse_cubin.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-07-24T05:18:41.6821966Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\run_nvcc.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-07-24T05:18:41.6835247Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\select_compute_arch.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-07-24T05:18:41.6840635Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-07-24T05:18:41.6843429Z copying torch\share\cmake\Torch\TorchConfig.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-07-24T05:18:41.6849730Z copying torch\share\cmake\Torch\TorchConfigVersion.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-07-24T05:18:41.6856148Z copying torch\utils\benchmark\utils\timeit_template.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-24T05:18:41.6867489Z copying torch\utils\benchmark\utils\valgrind_wrapper\compat_bindings.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:18:41.6887761Z copying torch\utils\benchmark\utils\valgrind_wrapper\timer_callgrind_template.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:18:41.6898791Z copying torch\utils\benchmark\utils\valgrind_wrapper\callgrind.h -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:18:41.6905194Z copying torch\utils\benchmark\utils\valgrind_wrapper\valgrind.h -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:18:41.6915675Z copying torch\utils\model_dump\skeleton.html -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-07-24T05:18:41.6922333Z copying torch\utils\model_dump\code.js -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-07-24T05:18:41.6941613Z copying torch\utils\model_dump\htm.mjs -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-07-24T05:18:41.6963314Z copying torch\utils\model_dump\preact.mjs -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-07-24T05:18:41.6982100Z copying torch\_dynamo\graph_break_registry.json -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:18:41.7040990Z copying torch\lib\aoti_custom_ops.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:41.7107217Z copying torch\lib\asmjit.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:41.7122191Z copying torch\lib\backend_with_compiler.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:41.7130818Z copying torch\lib\c10.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:41.7147346Z copying torch\lib\fbgemm.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:41.7205328Z copying torch\lib\jitbackend_test.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:41.7213651Z copying torch\lib\torch.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:41.7227088Z copying torch\lib\torchbind_test.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:41.7249232Z copying torch\lib\torch_cpu.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:41.9405455Z copying torch\lib\torch_global_deps.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:41.9412710Z copying torch\lib\torch_python.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:41.9559585Z copying torch\lib\aoti_custom_ops.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:41.9566279Z copying torch\lib\asmjit.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:41.9574273Z copying torch\lib\backend_with_compiler.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:41.9581092Z copying torch\lib\c10.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:41.9594224Z copying torch\lib\cpuinfo.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:41.9605594Z copying torch\lib\dnnl.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:43.9792879Z copying torch\lib\fbgemm.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:43.9812724Z copying torch\lib\fmt.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:43.9848823Z copying torch\lib\jitbackend_test.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:43.9855757Z copying torch\lib\kineto.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:44.0353821Z copying torch\lib\libittnotify.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:44.5397504Z copying torch\lib\libprotobuf-lite.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:44.5563446Z copying torch\lib\libprotobuf.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:44.6712347Z copying torch\lib\libprotoc.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:44.8039712Z copying torch\lib\microkernels-prod.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:44.8210598Z copying torch\lib\pthreadpool.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:44.8264505Z copying torch\lib\sleef.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:44.8493315Z copying torch\lib\torch.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:44.8499538Z copying torch\lib\torchbind_test.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:44.8506338Z copying torch\lib\torch_cpu.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:44.8750894Z copying torch\lib\torch_python.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:45.3865773Z copying torch\lib\XNNPACK.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:18:45.3992825Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-07-24T05:18:45.3998416Z copying torchgen\packaged\ATen\native\native_functions.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-07-24T05:18:57.2246390Z copying torchgen\packaged\ATen\native\tags.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-07-24T05:18:57.2257545Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2261028Z copying torchgen\packaged\ATen\templates\ATenOpList.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2272538Z copying torchgen\packaged\ATen\templates\aten_interned_strings.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2283103Z copying torchgen\packaged\ATen\templates\CompositeViewCopyKernels.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2598287Z copying torchgen\packaged\ATen\templates\DispatchKeyFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2610640Z copying torchgen\packaged\ATen\templates\DispatchKeyFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2621824Z copying torchgen\packaged\ATen\templates\DispatchKeyFunctions_inl.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2637219Z copying torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2643859Z copying torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2650443Z copying torchgen\packaged\ATen\templates\enum_tag.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2656945Z copying torchgen\packaged\ATen\templates\Function.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2663177Z copying torchgen\packaged\ATen\templates\FunctionalInverses.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2674723Z copying torchgen\packaged\ATen\templates\Functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2690184Z copying torchgen\packaged\ATen\templates\Functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2701709Z copying torchgen\packaged\ATen\templates\LazyIr.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2708517Z copying torchgen\packaged\ATen\templates\LazyNonNativeIr.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2715230Z copying torchgen\packaged\ATen\templates\MethodOperators.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2726983Z copying torchgen\packaged\ATen\templates\NativeFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2733459Z copying torchgen\packaged\ATen\templates\NativeFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2744470Z copying torchgen\packaged\ATen\templates\NativeMetaFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2763283Z copying torchgen\packaged\ATen\templates\NativeMetaFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2769283Z copying torchgen\packaged\ATen\templates\Operator.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2775658Z copying torchgen\packaged\ATen\templates\Operators.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.2782057Z copying torchgen\packaged\ATen\templates\Operators.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.3792095Z copying torchgen\packaged\ATen\templates\RedispatchFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.3799027Z copying torchgen\packaged\ATen\templates\RedispatchFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.3810518Z copying torchgen\packaged\ATen\templates\RegisterBackendSelect.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.3822170Z copying torchgen\packaged\ATen\templates\RegisterCodegenUnboxedKernels.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.3833251Z copying torchgen\packaged\ATen\templates\RegisterDispatchDefinitions.ini -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.3840735Z copying torchgen\packaged\ATen\templates\RegisterDispatchKey.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.4963941Z copying torchgen\packaged\ATen\templates\RegisterFunctionalization.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.4976898Z copying torchgen\packaged\ATen\templates\RegisterSchema.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.4984128Z copying torchgen\packaged\ATen\templates\RegistrationDeclarations.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.4990872Z copying torchgen\packaged\ATen\templates\TensorBody.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.6004942Z copying torchgen\packaged\ATen\templates\TensorMethods.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.6016389Z copying torchgen\packaged\ATen\templates\UfuncCPU.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.6022956Z copying torchgen\packaged\ATen\templates\UfuncCPUKernel.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.6029701Z copying torchgen\packaged\ATen\templates\UfuncCUDA.cu -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.6036492Z copying torchgen\packaged\ATen\templates\UnboxingFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.6599990Z copying torchgen\packaged\ATen\templates\UnboxingFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:18:57.6611489Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:18:57.6614959Z copying torchgen\packaged\autograd\BUILD.bazel -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:18:57.6621377Z copying torchgen\packaged\autograd\build.bzl -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:18:57.6627845Z copying torchgen\packaged\autograd\context.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:18:57.6638604Z copying torchgen\packaged\autograd\deprecated.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:18:57.6649493Z copying torchgen\packaged\autograd\derivatives.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:18:57.7132723Z copying torchgen\packaged\autograd\gen_annotated_fn_args.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:18:57.7146597Z copying torchgen\packaged\autograd\gen_autograd.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:18:57.7160515Z copying torchgen\packaged\autograd\gen_autograd_functions.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:18:57.7560356Z copying torchgen\packaged\autograd\gen_inplace_or_view_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:18:57.7989605Z copying torchgen\packaged\autograd\gen_python_functions.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:18:57.8014986Z copying torchgen\packaged\autograd\gen_trace_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:18:57.8030506Z copying torchgen\packaged\autograd\gen_variable_factories.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:18:57.8041387Z copying torchgen\packaged\autograd\gen_variable_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:18:57.9176284Z copying torchgen\packaged\autograd\gen_view_funcs.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:18:57.9189587Z copying torchgen\packaged\autograd\load_derivatives.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:18:57.9930338Z copying torchgen\packaged\autograd\README.md -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:18:57.9941302Z copying torchgen\packaged\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:18:57.9945875Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:57.9949175Z copying torchgen\packaged\autograd\templates\ADInplaceOrViewType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:57.9961101Z copying torchgen\packaged\autograd\templates\annotated_fn_args.py.in -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:58.0003512Z copying torchgen\packaged\autograd\templates\Functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:58.0021431Z copying torchgen\packaged\autograd\templates\Functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:58.0036335Z copying torchgen\packaged\autograd\templates\python_enum_tag.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:58.0042892Z copying torchgen\packaged\autograd\templates\python_fft_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:58.0054042Z copying torchgen\packaged\autograd\templates\python_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:58.0070857Z copying torchgen\packaged\autograd\templates\python_functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:58.0077481Z copying torchgen\packaged\autograd\templates\python_linalg_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:58.0768367Z copying torchgen\packaged\autograd\templates\python_nested_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:58.0779578Z copying torchgen\packaged\autograd\templates\python_nn_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:58.0790504Z copying torchgen\packaged\autograd\templates\python_return_types.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:58.0806845Z copying torchgen\packaged\autograd\templates\python_return_types.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:58.0813597Z copying torchgen\packaged\autograd\templates\python_sparse_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:58.0833648Z copying torchgen\packaged\autograd\templates\python_special_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:58.0844843Z copying torchgen\packaged\autograd\templates\python_torch_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:58.0856076Z copying torchgen\packaged\autograd\templates\python_variable_methods.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:58.1244373Z copying torchgen\packaged\autograd\templates\TraceType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:58.2402322Z copying torchgen\packaged\autograd\templates\VariableType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:58.2433197Z copying torchgen\packaged\autograd\templates\VariableType.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:58.2452705Z copying torchgen\packaged\autograd\templates\variable_factories.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:58.2463808Z copying torchgen\packaged\autograd\templates\ViewFuncs.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:58.2470524Z copying torchgen\packaged\autograd\templates\ViewFuncs.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:18:58.2477153Z copying torch\jit\_script.pyi -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:18:58.2484867Z copying torch\nn\functional.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:18:58.2492941Z copying torch\nn\parameter.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:18:58.2500840Z copying torch\utils\_config_typing.pyi -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:18:58.2509003Z copying torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:18:58.2517718Z copying torch\optim\_multi_tensor\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-07-24T05:18:58.2525264Z copying torch\utils\data\datapipes\datapipe.pyi -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-24T05:18:58.3426867Z running build_ext 2025-07-24T05:18:58.3477646Z -- Building with NumPy bindings 2025-07-24T05:18:58.3478365Z -- Not using cuDNN 2025-07-24T05:18:58.3478562Z -- Not using CUDA 2025-07-24T05:18:58.3478761Z -- Not using XPU 2025-07-24T05:18:58.3478936Z -- Using MKLDNN 2025-07-24T05:18:58.3479229Z -- Not using Compute Library for the Arm architecture with MKLDNN 2025-07-24T05:18:58.3479584Z -- Not using CBLAS in MKLDNN 2025-07-24T05:18:58.3479814Z -- Not using NCCL 2025-07-24T05:18:58.3480022Z -- Building without distributed package 2025-07-24T05:18:58.3480286Z -- Using ITT 2025-07-24T05:19:04.9041710Z Copying functorch._C from functorch\functorch.pyd to C:\actions-runner\_work\pytorch\pytorch\build\lib.win-amd64-cpython-39\functorch\_C.cp39-win_amd64.pyd 2025-07-24T05:19:04.9043085Z copying functorch\functorch.pyd -> C:\actions-runner\_work\pytorch\pytorch\build\lib.win-amd64-cpython-39\functorch\_C.cp39-win_amd64.pyd 2025-07-24T05:19:04.9063875Z building 'torch._C' extension 2025-07-24T05:19:04.9079123Z creating build\temp.win-amd64-cpython-39\Release\torch\csrc 2025-07-24T05:19:04.9091123Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\Jenkins\Miniconda3\include -IC:\Jenkins\Miniconda3\Include "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /Tctorch/csrc/stub.c /Fobuild\temp.win-amd64-cpython-39\Release\torch\csrc\stub.obj /MD /FS /EHsc 2025-07-24T05:19:04.9424785Z stub.c 2025-07-24T05:19:05.4128001Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\torch\lib /LIBPATH:C:\Jenkins\Miniconda3\libs /LIBPATH:C:\Jenkins\Miniconda3 /LIBPATH:C:\Jenkins\Miniconda3\PCbuild\amd64 "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" torch_python.lib /EXPORT:PyInit__C build\temp.win-amd64-cpython-39\Release\torch\csrc\stub.obj /OUT:build\lib.win-amd64-cpython-39\torch\_C.cp39-win_amd64.pyd /IMPLIB:build\temp.win-amd64-cpython-39\Release\torch\csrc\_C.cp39-win_amd64.lib /NODEFAULTLIB:LIBCMT.LIB 2025-07-24T05:19:05.4485310Z Creating library build\temp.win-amd64-cpython-39\Release\torch\csrc\_C.cp39-win_amd64.lib and object build\temp.win-amd64-cpython-39\Release\torch\csrc\_C.cp39-win_amd64.exp 2025-07-24T05:19:05.4584675Z Generating code 2025-07-24T05:19:05.5055466Z Finished generating code 2025-07-24T05:19:05.5405635Z copying build\temp.win-amd64-cpython-39\Release\torch\csrc\_C.cp39-win_amd64.lib -> build\lib.win-amd64-cpython-39\torch\lib\_C.lib 2025-07-24T05:19:05.5409516Z The specified environment variable does not exist. 2025-07-24T05:19:05.5524460Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-07-24T05:19:05.5525077Z !! 2025-07-24T05:19:05.5525196Z 2025-07-24T05:19:05.5525303Z ******************************************************************************** 2025-07-24T05:19:05.5525625Z Please avoid running ``setup.py`` directly. 2025-07-24T05:19:05.5525985Z Instead, use pypa/build, pypa/installer or other 2025-07-24T05:19:05.5526313Z standards-based tools. 2025-07-24T05:19:05.5526476Z 2025-07-24T05:19:05.5526748Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-07-24T05:19:05.5527210Z ******************************************************************************** 2025-07-24T05:19:05.5527424Z 2025-07-24T05:19:05.5527487Z !! 2025-07-24T05:19:05.5527661Z self.initialize_options() 2025-07-24T05:19:05.5603896Z installing to build\bdist.win-amd64\wheel 2025-07-24T05:19:05.5604210Z running install 2025-07-24T05:19:05.5624480Z running install_lib 2025-07-24T05:19:05.5706327Z creating build\bdist.win-amd64\wheel 2025-07-24T05:19:05.5711093Z creating build\bdist.win-amd64\wheel\functorch 2025-07-24T05:19:05.5714474Z creating build\bdist.win-amd64\wheel\functorch\compile 2025-07-24T05:19:05.5735093Z copying build\lib.win-amd64-cpython-39\functorch\compile\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\compile 2025-07-24T05:19:05.5735722Z creating build\bdist.win-amd64\wheel\functorch\dim 2025-07-24T05:19:05.5736312Z copying build\lib.win-amd64-cpython-39\functorch\dim\batch_tensor.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-24T05:19:05.5737156Z copying build\lib.win-amd64-cpython-39\functorch\dim\delayed_mul_tensor.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-24T05:19:05.5739540Z copying build\lib.win-amd64-cpython-39\functorch\dim\dim.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-24T05:19:05.5744779Z copying build\lib.win-amd64-cpython-39\functorch\dim\magic_trace.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-24T05:19:05.5761090Z copying build\lib.win-amd64-cpython-39\functorch\dim\op_properties.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-24T05:19:05.5766223Z copying build\lib.win-amd64-cpython-39\functorch\dim\reference.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-24T05:19:05.5772265Z copying build\lib.win-amd64-cpython-39\functorch\dim\tree_map.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-24T05:19:05.5777165Z copying build\lib.win-amd64-cpython-39\functorch\dim\wrap_type.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-24T05:19:05.5782436Z copying build\lib.win-amd64-cpython-39\functorch\dim\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-24T05:19:05.5788016Z creating build\bdist.win-amd64\wheel\functorch\einops 2025-07-24T05:19:05.5791176Z copying build\lib.win-amd64-cpython-39\functorch\einops\rearrange.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-07-24T05:19:05.5797135Z copying build\lib.win-amd64-cpython-39\functorch\einops\_parsing.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-07-24T05:19:05.5803027Z copying build\lib.win-amd64-cpython-39\functorch\einops\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-07-24T05:19:05.5808135Z creating build\bdist.win-amd64\wheel\functorch\experimental 2025-07-24T05:19:05.5811416Z copying build\lib.win-amd64-cpython-39\functorch\experimental\control_flow.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-07-24T05:19:05.5816849Z copying build\lib.win-amd64-cpython-39\functorch\experimental\ops.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-07-24T05:19:05.5821463Z copying build\lib.win-amd64-cpython-39\functorch\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-07-24T05:19:05.5826264Z copying build\lib.win-amd64-cpython-39\functorch\_C.cp39-win_amd64.pyd -> build\bdist.win-amd64\wheel\.\functorch 2025-07-24T05:19:05.5845321Z creating build\bdist.win-amd64\wheel\functorch\_src 2025-07-24T05:19:05.5848462Z creating build\bdist.win-amd64\wheel\functorch\_src\aot_autograd 2025-07-24T05:19:05.5851642Z copying build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\aot_autograd 2025-07-24T05:19:05.5856783Z creating build\bdist.win-amd64\wheel\functorch\_src\eager_transforms 2025-07-24T05:19:05.5860011Z copying build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\eager_transforms 2025-07-24T05:19:05.5865341Z creating build\bdist.win-amd64\wheel\functorch\_src\make_functional 2025-07-24T05:19:05.5868506Z copying build\lib.win-amd64-cpython-39\functorch\_src\make_functional\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\make_functional 2025-07-24T05:19:05.5873614Z creating build\bdist.win-amd64\wheel\functorch\_src\vmap 2025-07-24T05:19:05.5887061Z copying build\lib.win-amd64-cpython-39\functorch\_src\vmap\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\vmap 2025-07-24T05:19:05.5892142Z copying build\lib.win-amd64-cpython-39\functorch\_src\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src 2025-07-24T05:19:05.5896415Z copying build\lib.win-amd64-cpython-39\functorch\__init__.py -> build\bdist.win-amd64\wheel\.\functorch 2025-07-24T05:19:05.5902869Z creating build\bdist.win-amd64\wheel\torch 2025-07-24T05:19:05.5905954Z creating build\bdist.win-amd64\wheel\torch\accelerator 2025-07-24T05:19:05.5909044Z copying build\lib.win-amd64-cpython-39\torch\accelerator\_utils.py -> build\bdist.win-amd64\wheel\.\torch\accelerator 2025-07-24T05:19:05.5914361Z copying build\lib.win-amd64-cpython-39\torch\accelerator\__init__.py -> build\bdist.win-amd64\wheel\.\torch\accelerator 2025-07-24T05:19:05.5919671Z creating build\bdist.win-amd64\wheel\torch\amp 2025-07-24T05:19:05.5922826Z copying build\lib.win-amd64-cpython-39\torch\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-07-24T05:19:05.5928801Z copying build\lib.win-amd64-cpython-39\torch\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-07-24T05:19:05.5934820Z copying build\lib.win-amd64-cpython-39\torch\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-07-24T05:19:05.5939946Z creating build\bdist.win-amd64\wheel\torch\ao 2025-07-24T05:19:05.5943170Z creating build\bdist.win-amd64\wheel\torch\ao\nn 2025-07-24T05:19:05.5946308Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic 2025-07-24T05:19:05.5949462Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\modules 2025-07-24T05:19:05.5953775Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules\fused.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\modules 2025-07-24T05:19:05.5959843Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\modules 2025-07-24T05:19:05.5965041Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\qat 2025-07-24T05:19:05.5968301Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\qat\modules 2025-07-24T05:19:05.5971554Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules\conv_fused.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\qat\modules 2025-07-24T05:19:05.5979180Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules\linear_fused.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\qat\modules 2025-07-24T05:19:05.5984371Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules\linear_relu.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\qat\modules 2025-07-24T05:19:05.5990055Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\qat\modules 2025-07-24T05:19:05.6084077Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\qat 2025-07-24T05:19:05.6089433Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized 2025-07-24T05:19:05.6093618Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\dynamic 2025-07-24T05:19:05.6096068Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:19:05.6099772Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules\linear_relu.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:19:05.6105448Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:19:05.6115063Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\dynamic 2025-07-24T05:19:05.6120285Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:19:05.6123945Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules\bn_relu.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:19:05.6129461Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules\conv_add.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:19:05.6134722Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules\conv_relu.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:19:05.6140372Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:19:05.6146040Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:19:05.6237954Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized 2025-07-24T05:19:05.6247246Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic 2025-07-24T05:19:05.6249066Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat 2025-07-24T05:19:05.6253016Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\dynamic 2025-07-24T05:19:05.6255633Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\dynamic\modules 2025-07-24T05:19:05.6259321Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat\dynamic\modules 2025-07-24T05:19:05.6269614Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat\dynamic\modules 2025-07-24T05:19:05.6275749Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat\dynamic 2025-07-24T05:19:05.6282161Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\modules 2025-07-24T05:19:05.6284227Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat\modules 2025-07-24T05:19:05.6289795Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules\embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat\modules 2025-07-24T05:19:05.6295101Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat\modules 2025-07-24T05:19:05.6306948Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat\modules 2025-07-24T05:19:05.6311798Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat 2025-07-24T05:19:05.6317015Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantizable 2025-07-24T05:19:05.6320502Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantizable\modules 2025-07-24T05:19:05.6323766Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantizable\modules 2025-07-24T05:19:05.6329572Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantizable\modules 2025-07-24T05:19:05.6335103Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantizable\modules 2025-07-24T05:19:05.6343985Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantizable 2025-07-24T05:19:05.6349130Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized 2025-07-24T05:19:05.7050578Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\dynamic 2025-07-24T05:19:05.7053633Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\dynamic\modules 2025-07-24T05:19:05.7057039Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\dynamic\modules 2025-07-24T05:19:05.7063057Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\dynamic\modules 2025-07-24T05:19:05.7068543Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\dynamic\modules 2025-07-24T05:19:05.7081587Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\dynamic\modules 2025-07-24T05:19:05.7086652Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\dynamic 2025-07-24T05:19:05.7091996Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\functional.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized 2025-07-24T05:19:05.7097929Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\modules 2025-07-24T05:19:05.7101145Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-07-24T05:19:05.7106797Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\batchnorm.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-07-24T05:19:05.7119841Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-07-24T05:19:05.7126089Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\dropout.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-07-24T05:19:05.7131476Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-07-24T05:19:05.7207766Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\functional_modules.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-07-24T05:19:05.7217069Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-07-24T05:19:05.7222640Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\normalization.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-07-24T05:19:05.7228302Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-07-24T05:19:05.7233378Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-07-24T05:19:05.7239336Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-07-24T05:19:05.7248263Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\reference 2025-07-24T05:19:05.7259830Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\reference\modules 2025-07-24T05:19:05.7263080Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\reference\modules 2025-07-24T05:19:05.7268655Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\reference\modules 2025-07-24T05:19:05.7273893Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\reference\modules 2025-07-24T05:19:05.7279464Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules\sparse.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\reference\modules 2025-07-24T05:19:05.7289233Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\reference\modules 2025-07-24T05:19:05.7294879Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\reference\modules 2025-07-24T05:19:05.7299899Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\reference 2025-07-24T05:19:05.7312749Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized 2025-07-24T05:19:05.7318214Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse 2025-07-24T05:19:05.7321604Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse\quantized 2025-07-24T05:19:05.7324868Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse\quantized\dynamic 2025-07-24T05:19:05.7328125Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic\linear.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse\quantized\dynamic 2025-07-24T05:19:05.7349139Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse\quantized\dynamic 2025-07-24T05:19:05.7354432Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\linear.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse\quantized 2025-07-24T05:19:05.7359625Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse\quantized 2025-07-24T05:19:05.7365187Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse\quantized 2025-07-24T05:19:05.7370021Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse 2025-07-24T05:19:05.7389161Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn 2025-07-24T05:19:05.7394645Z creating build\bdist.win-amd64\wheel\torch\ao\ns 2025-07-24T05:19:05.7397821Z creating build\bdist.win-amd64\wheel\torch\ao\ns\fx 2025-07-24T05:19:05.7400948Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\graph_matcher.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-24T05:19:05.7407067Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\graph_passes.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-24T05:19:05.7412847Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-24T05:19:05.7418615Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\ns_types.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-24T05:19:05.7428329Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\n_shadows_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-24T05:19:05.7509227Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-24T05:19:05.7514847Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\qconfig_multi_mapping.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-24T05:19:05.7520289Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-24T05:19:05.7533777Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\weight_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-24T05:19:05.7539290Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-24T05:19:05.7543812Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\_numeric_suite.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-07-24T05:19:05.7549809Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\_numeric_suite_fx.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-07-24T05:19:05.7556277Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-07-24T05:19:05.7561024Z creating build\bdist.win-amd64\wheel\torch\ao\pruning 2025-07-24T05:19:05.7564363Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\scheduler 2025-07-24T05:19:05.7568262Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\base_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-07-24T05:19:05.7573285Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\cubic_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-07-24T05:19:05.7582949Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\lambda_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-07-24T05:19:05.7692124Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-07-24T05:19:05.7696586Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\sparsifier 2025-07-24T05:19:05.7699750Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\base_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-07-24T05:19:05.7705825Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\nearly_diagonal_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-07-24T05:19:05.7711070Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-07-24T05:19:05.7828438Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\weight_norm_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-07-24T05:19:05.7833767Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-07-24T05:19:05.7838427Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental 2025-07-24T05:19:05.7841704Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\activation_sparsifier 2025-07-24T05:19:05.7845323Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier\activation_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\activation_sparsifier 2025-07-24T05:19:05.7851215Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\activation_sparsifier 2025-07-24T05:19:05.7855537Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_scheduler 2025-07-24T05:19:05.7858915Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler\base_data_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_scheduler 2025-07-24T05:19:05.7864262Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_scheduler 2025-07-24T05:19:05.7874035Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier 2025-07-24T05:19:05.7885504Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\base_data_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier 2025-07-24T05:19:05.7891988Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\data_norm_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier 2025-07-24T05:19:05.7897073Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-07-24T05:19:05.7912356Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-07-24T05:19:05.7916115Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\data_sparsity.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-07-24T05:19:05.7926904Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\_data_sparstity_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-07-24T05:19:05.7932552Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-07-24T05:19:05.7948449Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-07-24T05:19:05.7953534Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\quantization_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier 2025-07-24T05:19:05.7958507Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier 2025-07-24T05:19:05.7963995Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\pruner 2025-07-24T05:19:05.7967659Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\base_structured_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-07-24T05:19:05.7978152Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\FPGM_pruner.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-07-24T05:19:05.7983518Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\lstm_saliency_pruner.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-07-24T05:19:05.8000860Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\match_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-07-24T05:19:05.8006155Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\parametrization.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-07-24T05:19:05.8016147Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\prune_functions.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-07-24T05:19:05.8022104Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\saliency_pruner.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-07-24T05:19:05.8027637Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-07-24T05:19:05.8033021Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental 2025-07-24T05:19:05.8037671Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning 2025-07-24T05:19:05.8060042Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning 2025-07-24T05:19:05.8065514Z creating build\bdist.win-amd64\wheel\torch\ao\quantization 2025-07-24T05:19:05.8069058Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\backend_config 2025-07-24T05:19:05.8072514Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\backend_config.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:19:05.8078780Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\executorch.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:19:05.8084544Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\fbgemm.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:19:05.8090175Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\native.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:19:05.8110979Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\observation_type.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:19:05.8115841Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\onednn.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:19:05.8121799Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\qnnpack.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:19:05.8127165Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\tensorrt.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:19:05.8133478Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:19:05.8146496Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\x86.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:19:05.8152082Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\_common_operator_config_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:19:05.8157996Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\_qnnpack_pt2e.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:19:05.8163839Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:19:05.8169103Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:19:05.8179546Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fuser_method_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:19:05.8196645Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fuse_modules.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:19:05.8202465Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\fx 2025-07-24T05:19:05.8206434Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\convert.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:19:05.8212378Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\custom_config.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:19:05.8222652Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\fuse.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:19:05.8227932Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\fuse_handler.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:19:05.8233582Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:19:05.8250652Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\lower_to_fbgemm.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:19:05.8264970Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\lower_to_qnnpack.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:19:05.8270950Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\lstm_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:19:05.8275747Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\match_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:19:05.8282011Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:19:05.8286972Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\prepare.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:19:05.8298327Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\qconfig_mapping_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:19:05.8303766Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\quantize_handler.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:19:05.8309103Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\tracer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:19:05.8314335Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:19:05.8320239Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_decomposed.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:19:05.8331776Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:19:05.8338030Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_lower_to_native_backend.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:19:05.8344452Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\fx\_model_report 2025-07-24T05:19:05.8382499Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report\detector.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx\_model_report 2025-07-24T05:19:05.8389274Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report\model_report.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx\_model_report 2025-07-24T05:19:05.8395228Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report\model_report_observer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx\_model_report 2025-07-24T05:19:05.8407619Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report\model_report_visualizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx\_model_report 2025-07-24T05:19:05.8413669Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx\_model_report 2025-07-24T05:19:05.8418328Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:19:05.8423334Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\observer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:19:05.8430110Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\pt2e 2025-07-24T05:19:05.8433606Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\duplicate_dq_pass.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-24T05:19:05.8443250Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\export_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-24T05:19:05.8448504Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\graph_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-24T05:19:05.8453758Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\lowering.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-24T05:19:05.8469958Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\port_metadata_pass.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-24T05:19:05.8475401Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\prepare.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-24T05:19:05.8481051Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\qat_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-24T05:19:05.8487206Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\pt2e\representation 2025-07-24T05:19:05.8490619Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation\rewrite.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e\representation 2025-07-24T05:19:05.8496418Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e\representation 2025-07-24T05:19:05.8501258Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-24T05:19:05.8512465Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\_affine_quantization.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-24T05:19:05.8518923Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\_numeric_debugger.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-24T05:19:05.8524375Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-24T05:19:05.8528684Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\qconfig.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:19:05.8534304Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\qconfig_mapping.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:19:05.8539795Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantization_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:19:05.8545182Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:19:05.8552081Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\quantizer 2025-07-24T05:19:05.8556215Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\composable_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-24T05:19:05.8561819Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\embedding_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-24T05:19:05.8567121Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-24T05:19:05.8688231Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-24T05:19:05.8693840Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\x86_inductor_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-24T05:19:05.8700308Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\xnnpack_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-24T05:19:05.8706339Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\xnnpack_quantizer_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-24T05:19:05.8713342Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\xpu_inductor_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-24T05:19:05.8718788Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-24T05:19:05.8723947Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_fx.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:19:05.8730148Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_jit.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:19:05.8765054Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_pt2e.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:19:05.8766068Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quant_type.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:19:05.8766949Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\stubs.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:19:05.8767817Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:19:05.8768714Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_correct_bias.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:19:05.8769677Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:19:05.8773277Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_learnable_fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:19:05.8778803Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:19:05.8784622Z copying build\lib.win-amd64-cpython-39\torch\ao\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao 2025-07-24T05:19:05.8790273Z creating build\bdist.win-amd64\wheel\torch\autograd 2025-07-24T05:19:05.8793589Z copying build\lib.win-amd64-cpython-39\torch\autograd\anomaly_mode.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:19:05.8800152Z copying build\lib.win-amd64-cpython-39\torch\autograd\forward_ad.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:19:05.8804280Z copying build\lib.win-amd64-cpython-39\torch\autograd\function.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:19:05.8809978Z copying build\lib.win-amd64-cpython-39\torch\autograd\functional.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:19:05.8827111Z copying build\lib.win-amd64-cpython-39\torch\autograd\gradcheck.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:19:05.8833855Z copying build\lib.win-amd64-cpython-39\torch\autograd\grad_mode.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:19:05.8839962Z copying build\lib.win-amd64-cpython-39\torch\autograd\graph.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:19:05.8846812Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:19:05.8852220Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler_legacy.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:19:05.8857564Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler_util.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:19:05.8863531Z copying build\lib.win-amd64-cpython-39\torch\autograd\variable.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:19:05.8869444Z creating build\bdist.win-amd64\wheel\torch\autograd\_functions 2025-07-24T05:19:05.8872924Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\tensor.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-07-24T05:19:05.8878161Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\utils.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-07-24T05:19:05.8883291Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-07-24T05:19:05.8888547Z copying build\lib.win-amd64-cpython-39\torch\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:19:05.8894490Z creating build\bdist.win-amd64\wheel\torch\backends 2025-07-24T05:19:05.8897689Z creating build\bdist.win-amd64\wheel\torch\backends\cpu 2025-07-24T05:19:05.8900807Z copying build\lib.win-amd64-cpython-39\torch\backends\cpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cpu 2025-07-24T05:19:05.8905935Z creating build\bdist.win-amd64\wheel\torch\backends\cuda 2025-07-24T05:19:05.8909032Z copying build\lib.win-amd64-cpython-39\torch\backends\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cuda 2025-07-24T05:19:05.8919769Z creating build\bdist.win-amd64\wheel\torch\backends\cudnn 2025-07-24T05:19:05.8922741Z copying build\lib.win-amd64-cpython-39\torch\backends\cudnn\rnn.py -> build\bdist.win-amd64\wheel\.\torch\backends\cudnn 2025-07-24T05:19:05.8927960Z copying build\lib.win-amd64-cpython-39\torch\backends\cudnn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cudnn 2025-07-24T05:19:05.8933350Z creating build\bdist.win-amd64\wheel\torch\backends\cusparselt 2025-07-24T05:19:05.8936520Z copying build\lib.win-amd64-cpython-39\torch\backends\cusparselt\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cusparselt 2025-07-24T05:19:05.8942328Z creating build\bdist.win-amd64\wheel\torch\backends\kleidiai 2025-07-24T05:19:05.8945521Z copying build\lib.win-amd64-cpython-39\torch\backends\kleidiai\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\kleidiai 2025-07-24T05:19:05.8950879Z creating build\bdist.win-amd64\wheel\torch\backends\mha 2025-07-24T05:19:05.8969716Z copying build\lib.win-amd64-cpython-39\torch\backends\mha\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mha 2025-07-24T05:19:05.8975036Z creating build\bdist.win-amd64\wheel\torch\backends\mkl 2025-07-24T05:19:05.8978186Z copying build\lib.win-amd64-cpython-39\torch\backends\mkl\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mkl 2025-07-24T05:19:05.8983505Z creating build\bdist.win-amd64\wheel\torch\backends\mkldnn 2025-07-24T05:19:05.8986864Z copying build\lib.win-amd64-cpython-39\torch\backends\mkldnn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mkldnn 2025-07-24T05:19:05.8992423Z creating build\bdist.win-amd64\wheel\torch\backends\mps 2025-07-24T05:19:05.8995544Z copying build\lib.win-amd64-cpython-39\torch\backends\mps\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mps 2025-07-24T05:19:05.9001224Z creating build\bdist.win-amd64\wheel\torch\backends\nnpack 2025-07-24T05:19:05.9004299Z copying build\lib.win-amd64-cpython-39\torch\backends\nnpack\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\nnpack 2025-07-24T05:19:05.9011098Z creating build\bdist.win-amd64\wheel\torch\backends\openmp 2025-07-24T05:19:05.9014245Z copying build\lib.win-amd64-cpython-39\torch\backends\openmp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\openmp 2025-07-24T05:19:05.9019419Z creating build\bdist.win-amd64\wheel\torch\backends\opt_einsum 2025-07-24T05:19:05.9022607Z copying build\lib.win-amd64-cpython-39\torch\backends\opt_einsum\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\opt_einsum 2025-07-24T05:19:05.9028146Z creating build\bdist.win-amd64\wheel\torch\backends\quantized 2025-07-24T05:19:05.9031385Z copying build\lib.win-amd64-cpython-39\torch\backends\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\quantized 2025-07-24T05:19:05.9036909Z creating build\bdist.win-amd64\wheel\torch\backends\xeon 2025-07-24T05:19:05.9040068Z copying build\lib.win-amd64-cpython-39\torch\backends\xeon\run_cpu.py -> build\bdist.win-amd64\wheel\.\torch\backends\xeon 2025-07-24T05:19:05.9046030Z copying build\lib.win-amd64-cpython-39\torch\backends\xeon\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\xeon 2025-07-24T05:19:05.9050402Z creating build\bdist.win-amd64\wheel\torch\backends\xnnpack 2025-07-24T05:19:05.9054368Z copying build\lib.win-amd64-cpython-39\torch\backends\xnnpack\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\xnnpack 2025-07-24T05:19:05.9059667Z creating build\bdist.win-amd64\wheel\torch\backends\_coreml 2025-07-24T05:19:05.9062836Z copying build\lib.win-amd64-cpython-39\torch\backends\_coreml\preprocess.py -> build\bdist.win-amd64\wheel\.\torch\backends\_coreml 2025-07-24T05:19:05.9068217Z copying build\lib.win-amd64-cpython-39\torch\backends\_coreml\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\_coreml 2025-07-24T05:19:05.9072715Z creating build\bdist.win-amd64\wheel\torch\backends\_nnapi 2025-07-24T05:19:05.9076005Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\prepare.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-07-24T05:19:05.9081194Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\serializer.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-07-24T05:19:05.9087976Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-07-24T05:19:05.9092240Z copying build\lib.win-amd64-cpython-39\torch\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends 2025-07-24T05:19:05.9097679Z creating build\bdist.win-amd64\wheel\torch\bin 2025-07-24T05:19:05.9100794Z copying build\lib.win-amd64-cpython-39\torch\bin\asmjit.dll -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:19:05.9110346Z copying build\lib.win-amd64-cpython-39\torch\bin\fbgemm.dll -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:19:05.9162840Z copying build\lib.win-amd64-cpython-39\torch\bin\FileStoreTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:19:05.9172431Z copying build\lib.win-amd64-cpython-39\torch\bin\protoc.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:19:05.9201060Z copying build\lib.win-amd64-cpython-39\torch\bin\TCPStoreTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:19:05.9221903Z copying build\lib.win-amd64-cpython-39\torch\bin\test_api.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:19:05.9306724Z copying build\lib.win-amd64-cpython-39\torch\bin\test_jit.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:19:05.9367183Z copying build\lib.win-amd64-cpython-39\torch\bin\test_lazy.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:19:05.9392437Z copying build\lib.win-amd64-cpython-39\torch\bin\test_nativert.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:19:05.9415489Z copying build\lib.win-amd64-cpython-39\torch\bin\test_tensorexpr.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:19:05.9475183Z copying build\lib.win-amd64-cpython-39\torch\bin\tutorial_tensorexpr.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:19:05.9482482Z creating build\bdist.win-amd64\wheel\torch\compiler 2025-07-24T05:19:05.9496745Z copying build\lib.win-amd64-cpython-39\torch\compiler\config.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-07-24T05:19:05.9501868Z copying build\lib.win-amd64-cpython-39\torch\compiler\_cache.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-07-24T05:19:05.9507154Z copying build\lib.win-amd64-cpython-39\torch\compiler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-07-24T05:19:05.9513097Z creating build\bdist.win-amd64\wheel\torch\contrib 2025-07-24T05:19:05.9516255Z copying build\lib.win-amd64-cpython-39\torch\contrib\_tensorboard_vis.py -> build\bdist.win-amd64\wheel\.\torch\contrib 2025-07-24T05:19:05.9522000Z copying build\lib.win-amd64-cpython-39\torch\contrib\__init__.py -> build\bdist.win-amd64\wheel\.\torch\contrib 2025-07-24T05:19:05.9526490Z creating build\bdist.win-amd64\wheel\torch\cpu 2025-07-24T05:19:05.9529614Z creating build\bdist.win-amd64\wheel\torch\cpu\amp 2025-07-24T05:19:05.9532875Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-07-24T05:19:05.9538125Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-07-24T05:19:05.9543279Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-07-24T05:19:05.9548260Z copying build\lib.win-amd64-cpython-39\torch\cpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cpu 2025-07-24T05:19:05.9553748Z creating build\bdist.win-amd64\wheel\torch\csrc 2025-07-24T05:19:05.9556869Z creating build\bdist.win-amd64\wheel\torch\csrc\inductor 2025-07-24T05:19:05.9560092Z creating build\bdist.win-amd64\wheel\torch\csrc\inductor\aoti_runtime 2025-07-24T05:19:05.9563347Z copying build\lib.win-amd64-cpython-39\torch\csrc\inductor\aoti_runtime\model.h -> build\bdist.win-amd64\wheel\.\torch\csrc\inductor\aoti_runtime 2025-07-24T05:19:05.9568950Z creating build\bdist.win-amd64\wheel\torch\cuda 2025-07-24T05:19:05.9572220Z creating build\bdist.win-amd64\wheel\torch\cuda\amp 2025-07-24T05:19:05.9575388Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-07-24T05:19:05.9580980Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\common.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-07-24T05:19:05.9585996Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-07-24T05:19:05.9591889Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-07-24T05:19:05.9596983Z copying build\lib.win-amd64-cpython-39\torch\cuda\comm.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:19:05.9602065Z copying build\lib.win-amd64-cpython-39\torch\cuda\error.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:19:05.9606361Z copying build\lib.win-amd64-cpython-39\torch\cuda\gds.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:19:05.9611841Z copying build\lib.win-amd64-cpython-39\torch\cuda\graphs.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:19:05.9617593Z copying build\lib.win-amd64-cpython-39\torch\cuda\jiterator.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:19:05.9634529Z copying build\lib.win-amd64-cpython-39\torch\cuda\memory.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:19:05.9640009Z copying build\lib.win-amd64-cpython-39\torch\cuda\nccl.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:19:05.9648720Z copying build\lib.win-amd64-cpython-39\torch\cuda\nvtx.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:19:05.9655491Z copying build\lib.win-amd64-cpython-39\torch\cuda\profiler.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:19:05.9661197Z copying build\lib.win-amd64-cpython-39\torch\cuda\random.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:19:05.9666952Z copying build\lib.win-amd64-cpython-39\torch\cuda\sparse.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:19:05.9671803Z copying build\lib.win-amd64-cpython-39\torch\cuda\streams.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:19:05.9682495Z copying build\lib.win-amd64-cpython-39\torch\cuda\tunable.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:19:05.9688212Z copying build\lib.win-amd64-cpython-39\torch\cuda\_gpu_trace.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:19:05.9693745Z copying build\lib.win-amd64-cpython-39\torch\cuda\_memory_viz.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:19:05.9700039Z copying build\lib.win-amd64-cpython-39\torch\cuda\_pin_memory_utils.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:19:05.9706227Z copying build\lib.win-amd64-cpython-39\torch\cuda\_sanitizer.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:19:05.9712467Z copying build\lib.win-amd64-cpython-39\torch\cuda\_utils.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:19:05.9717984Z copying build\lib.win-amd64-cpython-39\torch\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:19:05.9725829Z creating build\bdist.win-amd64\wheel\torch\distributed 2025-07-24T05:19:05.9728916Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms 2025-07-24T05:19:05.9732401Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:19:05.9735781Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\ddp_zero_hook.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:19:05.9741950Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\debugging_hooks.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:19:05.9747351Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:19:05.9766148Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\mixed_precision_hooks.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:19:05.9769837Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\optimizer_overlap_hooks.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:19:05.9775674Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\post_localSGD_hook.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:19:05.9781715Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:19:05.9788004Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:19:05.9793612Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:19:05.9798736Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\join.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms 2025-07-24T05:19:05.9804395Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\model_averaging 2025-07-24T05:19:05.9807852Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging\averagers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\model_averaging 2025-07-24T05:19:05.9813393Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\model_averaging 2025-07-24T05:19:05.9818766Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\model_averaging 2025-07-24T05:19:05.9835189Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\model_averaging 2025-07-24T05:19:05.9839602Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_checkpoint 2025-07-24T05:19:05.9853735Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_checkpoint 2025-07-24T05:19:05.9859157Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_checkpoint 2025-07-24T05:19:05.9863581Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_comm_hooks 2025-07-24T05:19:05.9866891Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks\default_hooks.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_comm_hooks 2025-07-24T05:19:05.9872552Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_comm_hooks 2025-07-24T05:19:05.9877671Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_optimizer_overlap 2025-07-24T05:19:05.9881098Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap\optimizer_overlap.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_optimizer_overlap 2025-07-24T05:19:05.9886463Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_optimizer_overlap 2025-07-24T05:19:05.9891753Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_quantization 2025-07-24T05:19:05.9895348Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization\quantization.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_quantization 2025-07-24T05:19:05.9900788Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_quantization 2025-07-24T05:19:05.9904999Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms 2025-07-24T05:19:05.9910157Z copying build\lib.win-amd64-cpython-39\torch\distributed\argparse_util.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:19:05.9915540Z creating build\bdist.win-amd64\wheel\torch\distributed\autograd 2025-07-24T05:19:05.9918710Z copying build\lib.win-amd64-cpython-39\torch\distributed\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\autograd 2025-07-24T05:19:05.9923874Z copying build\lib.win-amd64-cpython-39\torch\distributed\c10d_logger.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:19:05.9940932Z creating build\bdist.win-amd64\wheel\torch\distributed\checkpoint 2025-07-24T05:19:05.9944241Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:05.9949852Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\default_planner.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:05.9955883Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\filesystem.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:05.9962027Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\format_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:05.9978024Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\hf_storage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:05.9983455Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\logger.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:05.9988795Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\logging_handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:05.9994095Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\metadata.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:05.9999389Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0004937Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\planner.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0010817Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\planner_helpers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0017001Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\resharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0022564Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\staging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0040247Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\stateful.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0045526Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0051965Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict_loader.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0057363Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict_saver.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0063156Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\storage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0068414Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0074234Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0079999Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_process_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0085715Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_thread_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0091080Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_checkpointer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0106519Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_consolidate_hf_safetensors.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0112937Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_dedup_save_plans.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0118568Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_dedup_tensors.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0124352Z creating build\bdist.win-amd64\wheel\torch\distributed\checkpoint\_experimental 2025-07-24T05:19:06.0127829Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\barriers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-24T05:19:06.0133243Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\builder.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-24T05:19:06.0143535Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\checkpointer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-24T05:19:06.0149057Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\checkpoint_process.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-24T05:19:06.0166298Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\checkpoint_reader.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-24T05:19:06.0171791Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\checkpoint_writer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-24T05:19:06.0177220Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\config.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-24T05:19:06.0182540Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\staging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-24T05:19:06.0188699Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-24T05:19:06.0194083Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-24T05:19:06.0199440Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-24T05:19:06.0210464Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_extension.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0216074Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_fsspec_filesystem.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0221530Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_hf_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0227112Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_nested_dict.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0232618Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_pg_transport.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0248769Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_sharded_tensor_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0254291Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_state_dict_stager.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0288305Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_storage_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0289346Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_traverse.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0290375Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_version.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0291445Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:19:06.0292448Z copying build\lib.win-amd64-cpython-39\torch\distributed\collective_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:19:06.0295142Z copying build\lib.win-amd64-cpython-39\torch\distributed\constants.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:19:06.0300606Z copying build\lib.win-amd64-cpython-39\torch\distributed\device_mesh.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:19:06.0306886Z copying build\lib.win-amd64-cpython-39\torch\distributed\distributed_c10d.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:19:06.0314984Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic 2025-07-24T05:19:06.0318123Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\agent 2025-07-24T05:19:06.0321267Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\agent\server 2025-07-24T05:19:06.0324658Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\agent\server 2025-07-24T05:19:06.0330731Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server\health_check_server.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\agent\server 2025-07-24T05:19:06.0336217Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server\local_elastic_agent.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\agent\server 2025-07-24T05:19:06.0342002Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\agent\server 2025-07-24T05:19:06.0347282Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\agent 2025-07-24T05:19:06.0385727Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\control_plane.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic 2025-07-24T05:19:06.0396112Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\events 2025-07-24T05:19:06.0399233Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-07-24T05:19:06.0404489Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-07-24T05:19:06.0409477Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-07-24T05:19:06.0415182Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\metrics 2025-07-24T05:19:06.0418286Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\metrics 2025-07-24T05:19:06.0423733Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\metrics 2025-07-24T05:19:06.0429297Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing 2025-07-24T05:19:06.0440548Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-07-24T05:19:06.0446515Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing\errors 2025-07-24T05:19:06.0449820Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors\error_handler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing\errors 2025-07-24T05:19:06.0455194Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors\handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing\errors 2025-07-24T05:19:06.0460184Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing\errors 2025-07-24T05:19:06.0470977Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\redirects.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-07-24T05:19:06.0476672Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-07-24T05:19:06.0491133Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler\handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-07-24T05:19:06.0496521Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler\subprocess_handler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-07-24T05:19:06.0501947Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-07-24T05:19:06.0511315Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\tail_log.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-07-24T05:19:06.0516632Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-07-24T05:19:06.0521999Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\rendezvous 2025-07-24T05:19:06.0525302Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:19:06.0530887Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\c10d_rendezvous_backend.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:19:06.0536709Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\dynamic_rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:19:06.0552834Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:19:06.0559436Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_rendezvous_backend.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:19:06.0564925Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_server.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:19:06.0570564Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_store.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:19:06.0576026Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\registry.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:19:06.0581782Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\static_tcp_rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:19:06.0587213Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:19:06.0592689Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\_etcd_stub.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:19:06.0598394Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:19:06.0608522Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\timer 2025-07-24T05:19:06.0611699Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-07-24T05:19:06.0617392Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\debug_info_logging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-07-24T05:19:06.0623003Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\file_based_local_timer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-07-24T05:19:06.0628756Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\local_timer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-07-24T05:19:06.0648849Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-07-24T05:19:06.0654303Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\utils 2025-07-24T05:19:06.0657443Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-07-24T05:19:06.0662924Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\utils\data 2025-07-24T05:19:06.0666378Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data\cycling_iterator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils\data 2025-07-24T05:19:06.0672233Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data\elastic_distributed_sampler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils\data 2025-07-24T05:19:06.0677604Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils\data 2025-07-24T05:19:06.0682774Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\distributed.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-07-24T05:19:06.0688738Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\logging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-07-24T05:19:06.0694001Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\log_level.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-07-24T05:19:06.0709438Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\store.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-07-24T05:19:06.0714764Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-07-24T05:19:06.0720402Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic 2025-07-24T05:19:06.0726026Z creating build\bdist.win-amd64\wheel\torch\distributed\fsdp 2025-07-24T05:19:06.0729323Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:19:06.0735378Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\fully_sharded_data_parallel.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:19:06.0741888Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\sharded_grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:19:06.0747764Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\wrap.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:19:06.0753912Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_common_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:19:06.0771238Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:19:06.0777218Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_dynamo_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:19:06.0781440Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_exec_order_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:19:06.0787313Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_flat_param.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:19:06.0794383Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fsdp_extensions.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:19:06.0800128Z creating build\bdist.win-amd64\wheel\torch\distributed\fsdp\_fully_shard 2025-07-24T05:19:06.0803492Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fsdp_api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-07-24T05:19:06.0808872Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fsdp_collectives.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-07-24T05:19:06.0814843Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fsdp_common.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-07-24T05:19:06.0830544Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fsdp_init.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-07-24T05:19:06.0836050Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fsdp_param.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-07-24T05:19:06.0842317Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fsdp_param_group.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-07-24T05:19:06.0848725Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fsdp_state.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-07-24T05:19:06.0854794Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fully_shard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-07-24T05:19:06.0860190Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-07-24T05:19:06.0865145Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_init_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:19:06.0871505Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_limiter_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:19:06.0881663Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_optim_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:19:06.0887950Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_runtime_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:19:06.0894216Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_shard_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:19:06.0899593Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_state_dict_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:19:06.0905831Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_trace_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:19:06.0911262Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_traversal_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:19:06.0916808Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_unshard_param_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:19:06.0932482Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_wrap_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:19:06.0937718Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:19:06.0942963Z copying build\lib.win-amd64-cpython-39\torch\distributed\launch.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:19:06.0948359Z creating build\bdist.win-amd64\wheel\torch\distributed\launcher 2025-07-24T05:19:06.0951505Z copying build\lib.win-amd64-cpython-39\torch\distributed\launcher\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\launcher 2025-07-24T05:19:06.0957396Z copying build\lib.win-amd64-cpython-39\torch\distributed\launcher\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\launcher 2025-07-24T05:19:06.0963004Z copying build\lib.win-amd64-cpython-39\torch\distributed\logging_handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:19:06.0967887Z creating build\bdist.win-amd64\wheel\torch\distributed\nn 2025-07-24T05:19:06.0971040Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\api 2025-07-24T05:19:06.0974224Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\api\remote_module.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\api 2025-07-24T05:19:06.0980215Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\api\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\api 2025-07-24T05:19:06.0984475Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\functional.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn 2025-07-24T05:19:06.0989869Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\jit 2025-07-24T05:19:06.0993455Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\instantiator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\jit 2025-07-24T05:19:06.0998942Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\jit\templates 2025-07-24T05:19:06.1002433Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates\remote_module_template.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\jit\templates 2025-07-24T05:19:06.1007655Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\jit\templates 2025-07-24T05:19:06.1012013Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\jit 2025-07-24T05:19:06.1016256Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn 2025-07-24T05:19:06.1021853Z creating build\bdist.win-amd64\wheel\torch\distributed\optim 2025-07-24T05:19:06.1025055Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\apply_optimizer_in_backward.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:19:06.1030257Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adadelta.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:19:06.1035680Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adagrad.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:19:06.1051307Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adam.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:19:06.1056656Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adamax.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:19:06.1062030Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adamw.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:19:06.1072243Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_rmsprop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:19:06.1077773Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_rprop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:19:06.1083283Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_sgd.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:19:06.1088800Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\named_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:19:06.1094616Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:19:06.1100181Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\post_localSGD_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:19:06.1105561Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:19:06.1111682Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\zero_redundancy_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:19:06.1118798Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:19:06.1124411Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\_deprecation_warning.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:19:06.1134566Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:19:06.1140639Z creating build\bdist.win-amd64\wheel\torch\distributed\pipelining 2025-07-24T05:19:06.1144508Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\microbatch.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-24T05:19:06.1150215Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\schedules.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-24T05:19:06.1157474Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\stage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-24T05:19:06.1163536Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_backward.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-24T05:19:06.1178791Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_debug.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-24T05:19:06.1183752Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_IR.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-24T05:19:06.1190263Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_schedule_visualizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-24T05:19:06.1196449Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_unflatten.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-24T05:19:06.1202079Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-24T05:19:06.1207369Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-24T05:19:06.1213048Z copying build\lib.win-amd64-cpython-39\torch\distributed\remote_device.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:19:06.1218773Z copying build\lib.win-amd64-cpython-39\torch\distributed\rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:19:06.1224789Z creating build\bdist.win-amd64\wheel\torch\distributed\rpc 2025-07-24T05:19:06.1227986Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-24T05:19:06.1238943Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\backend_registry.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-24T05:19:06.1244702Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\constants.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-24T05:19:06.1250024Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\functions.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-24T05:19:06.1265774Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\internal.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-24T05:19:06.1284953Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\options.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-24T05:19:06.1285872Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\rref_proxy.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-24T05:19:06.1286852Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\server_process_global_profiler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-24T05:19:06.1290722Z creating build\bdist.win-amd64\wheel\torch\distributed\rpc\_testing 2025-07-24T05:19:06.1294261Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing\faulty_agent_backend_registry.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc\_testing 2025-07-24T05:19:06.1299753Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc\_testing 2025-07-24T05:19:06.1305038Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-24T05:19:06.1310500Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-24T05:19:06.1315917Z copying build\lib.win-amd64-cpython-39\torch\distributed\run.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:19:06.1322490Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor 2025-07-24T05:19:06.1325723Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\debug 2025-07-24T05:19:06.1328976Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_comm_mode.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-07-24T05:19:06.1336136Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_op_coverage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-07-24T05:19:06.1340401Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_visualize_sharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-07-24T05:19:06.1345802Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-07-24T05:19:06.1361188Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\device_mesh.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:19:06.1366554Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\experimental 2025-07-24T05:19:06.1369741Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_attention.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-07-24T05:19:06.1375902Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_func_map.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-07-24T05:19:06.1381702Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_register_sharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-07-24T05:19:06.1397103Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_tp_transform.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-07-24T05:19:06.1402808Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-07-24T05:19:06.1408474Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\parallel 2025-07-24T05:19:06.1411646Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-24T05:19:06.1417138Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\ddp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-24T05:19:06.1422231Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\fsdp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-24T05:19:06.1427465Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\input_reshard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-24T05:19:06.1432645Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\loss.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-24T05:19:06.1442396Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\style.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-24T05:19:06.1457514Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\_data_parallel_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-24T05:19:06.1462631Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-24T05:19:06.1467580Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\placement_types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:19:06.1482706Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:19:06.1488966Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_collective_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:19:06.1496802Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_dispatch.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:19:06.1502397Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_dtensor_spec.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:19:06.1508189Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\_ops 2025-07-24T05:19:06.1511375Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:19:06.1517292Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_common_rules.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:19:06.1522617Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_conv_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:19:06.1527874Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_einsum_strategy.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:19:06.1543403Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:19:06.1548844Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_math_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:19:06.1554764Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_matrix_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:19:06.1560648Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_pointwise_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:19:06.1566581Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_random_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:19:06.1571999Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_tensor_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:19:06.1578000Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_view_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:19:06.1583888Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:19:06.1589387Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_op_schema.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:19:06.1595028Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_random.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:19:06.1601000Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_redistribute.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:19:06.1607254Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_sharding_prop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:19:06.1613042Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_shards_wrapper.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:19:06.1618366Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_tp_conv.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:19:06.1623571Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:19:06.1629231Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:19:06.1634592Z copying build\lib.win-amd64-cpython-39\torch\distributed\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:19:06.1639876Z copying build\lib.win-amd64-cpython-39\torch\distributed\_checkpointable.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:19:06.1645453Z creating build\bdist.win-amd64\wheel\torch\distributed\_composable 2025-07-24T05:19:06.1659264Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\checkpoint_activation.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-07-24T05:19:06.1665031Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\contract.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-07-24T05:19:06.1674979Z creating build\bdist.win-amd64\wheel\torch\distributed\_composable\fsdp 2025-07-24T05:19:06.1678032Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp\fully_shard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable\fsdp 2025-07-24T05:19:06.1683134Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable\fsdp 2025-07-24T05:19:06.1687965Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\replicate.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-07-24T05:19:06.1703179Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-07-24T05:19:06.1708173Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable_state.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:19:06.1713578Z copying build\lib.win-amd64-cpython-39\torch\distributed\_dist2.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:19:06.1727303Z copying build\lib.win-amd64-cpython-39\torch\distributed\_functional_collectives.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:19:06.1728413Z copying build\lib.win-amd64-cpython-39\torch\distributed\_functional_collectives_impl.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:19:06.1730914Z copying build\lib.win-amd64-cpython-39\torch\distributed\_serialization.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:19:06.1736532Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard 2025-07-24T05:19:06.1739640Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-07-24T05:19:06.1745242Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\checkpoint 2025-07-24T05:19:06.1748443Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\checkpoint 2025-07-24T05:19:06.1753533Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\common_op_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-07-24T05:19:06.1758885Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\metadata.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-07-24T05:19:06.1764056Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\op_registry_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-07-24T05:19:06.1780231Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_optim 2025-07-24T05:19:06.1783688Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_optim 2025-07-24T05:19:06.1789677Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_optim 2025-07-24T05:19:06.1829289Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_tensor 2025-07-24T05:19:06.1830147Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-07-24T05:19:06.1831293Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\logger.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-07-24T05:19:06.1832610Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\logging_handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-07-24T05:19:06.1833852Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\metadata.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-07-24T05:19:06.1835103Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\reshard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-07-24T05:19:06.1841735Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\shard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-07-24T05:19:06.1845812Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-07-24T05:19:06.1851506Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:19:06.1855179Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops\binary_cmp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:19:06.1861035Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops\init.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:19:06.1866817Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops\misc_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:19:06.1871860Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops\tensor_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:19:06.1877324Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops\_common.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:19:06.1892457Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:19:06.1897491Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-07-24T05:19:06.1903185Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharder.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-07-24T05:19:06.1914532Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_plan 2025-07-24T05:19:06.1917793Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_plan 2025-07-24T05:19:06.1923215Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_plan 2025-07-24T05:19:06.1928844Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_spec 2025-07-24T05:19:06.1932124Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec 2025-07-24T05:19:06.1937472Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec 2025-07-24T05:19:06.1942882Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-07-24T05:19:06.1961891Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-07-24T05:19:06.1967692Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding_bag.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-07-24T05:19:06.1973192Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\_common.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-07-24T05:19:06.1988261Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-07-24T05:19:06.1993045Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\_internals.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec 2025-07-24T05:19:06.1998027Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec 2025-07-24T05:19:06.2002828Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-07-24T05:19:06.2008125Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-07-24T05:19:06.2022143Z creating build\bdist.win-amd64\wheel\torch\distributed\_sharded_tensor 2025-07-24T05:19:06.2025292Z copying build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_sharded_tensor 2025-07-24T05:19:06.2036704Z creating build\bdist.win-amd64\wheel\torch\distributed\_sharding_spec 2025-07-24T05:19:06.2039875Z copying build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_sharding_spec 2025-07-24T05:19:06.2078197Z copying build\lib.win-amd64-cpython-39\torch\distributed\_state_dict_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:19:06.2084373Z creating build\bdist.win-amd64\wheel\torch\distributed\_symmetric_memory 2025-07-24T05:19:06.2092529Z copying build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory\_nvshmem_triton.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_symmetric_memory 2025-07-24T05:19:06.2098063Z copying build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_symmetric_memory 2025-07-24T05:19:06.2104452Z creating build\bdist.win-amd64\wheel\torch\distributed\_tensor 2025-07-24T05:19:06.2107554Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-07-24T05:19:06.2113018Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\placement_types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-07-24T05:19:06.2118135Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-07-24T05:19:06.2123647Z creating build\bdist.win-amd64\wheel\torch\distributed\_tools 2025-07-24T05:19:06.2127007Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\common_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-24T05:19:06.2132446Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\fake_collectives.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-24T05:19:06.2138224Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\fsdp2_mem_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-24T05:19:06.2144138Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\ilp_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-24T05:19:06.2160277Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\memory_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-24T05:19:06.2165620Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\mem_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-24T05:19:06.2171714Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\mod_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-24T05:19:06.2177001Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\runtime_estimator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-24T05:19:06.2187605Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\sac_estimator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-24T05:19:06.2194178Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\sac_ilp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-24T05:19:06.2199001Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-24T05:19:06.2204086Z copying build\lib.win-amd64-cpython-39\torch\distributed\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:19:06.2210564Z creating build\bdist.win-amd64\wheel\torch\distributions 2025-07-24T05:19:06.2213709Z copying build\lib.win-amd64-cpython-39\torch\distributions\bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2219102Z copying build\lib.win-amd64-cpython-39\torch\distributions\beta.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2224374Z copying build\lib.win-amd64-cpython-39\torch\distributions\binomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2229822Z copying build\lib.win-amd64-cpython-39\torch\distributions\categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2245601Z copying build\lib.win-amd64-cpython-39\torch\distributions\cauchy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2251210Z copying build\lib.win-amd64-cpython-39\torch\distributions\chi2.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2255938Z copying build\lib.win-amd64-cpython-39\torch\distributions\constraints.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2261869Z copying build\lib.win-amd64-cpython-39\torch\distributions\constraint_registry.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2267361Z copying build\lib.win-amd64-cpython-39\torch\distributions\continuous_bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2273044Z copying build\lib.win-amd64-cpython-39\torch\distributions\dirichlet.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2288482Z copying build\lib.win-amd64-cpython-39\torch\distributions\distribution.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2290205Z copying build\lib.win-amd64-cpython-39\torch\distributions\exponential.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2296124Z copying build\lib.win-amd64-cpython-39\torch\distributions\exp_family.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2301596Z copying build\lib.win-amd64-cpython-39\torch\distributions\fishersnedecor.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2306986Z copying build\lib.win-amd64-cpython-39\torch\distributions\gamma.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2316574Z copying build\lib.win-amd64-cpython-39\torch\distributions\generalized_pareto.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2323635Z copying build\lib.win-amd64-cpython-39\torch\distributions\geometric.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2328260Z copying build\lib.win-amd64-cpython-39\torch\distributions\gumbel.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2333718Z copying build\lib.win-amd64-cpython-39\torch\distributions\half_cauchy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2340176Z copying build\lib.win-amd64-cpython-39\torch\distributions\half_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2345660Z copying build\lib.win-amd64-cpython-39\torch\distributions\independent.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2351512Z copying build\lib.win-amd64-cpython-39\torch\distributions\inverse_gamma.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2366501Z copying build\lib.win-amd64-cpython-39\torch\distributions\kl.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2372356Z copying build\lib.win-amd64-cpython-39\torch\distributions\kumaraswamy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2377536Z copying build\lib.win-amd64-cpython-39\torch\distributions\laplace.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2387063Z copying build\lib.win-amd64-cpython-39\torch\distributions\lkj_cholesky.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2392466Z copying build\lib.win-amd64-cpython-39\torch\distributions\logistic_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2397768Z copying build\lib.win-amd64-cpython-39\torch\distributions\log_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2403112Z copying build\lib.win-amd64-cpython-39\torch\distributions\lowrank_multivariate_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2409083Z copying build\lib.win-amd64-cpython-39\torch\distributions\mixture_same_family.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2414689Z copying build\lib.win-amd64-cpython-39\torch\distributions\multinomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2420051Z copying build\lib.win-amd64-cpython-39\torch\distributions\multivariate_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2435929Z copying build\lib.win-amd64-cpython-39\torch\distributions\negative_binomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2441313Z copying build\lib.win-amd64-cpython-39\torch\distributions\normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2449820Z copying build\lib.win-amd64-cpython-39\torch\distributions\one_hot_categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2460942Z copying build\lib.win-amd64-cpython-39\torch\distributions\pareto.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2466435Z copying build\lib.win-amd64-cpython-39\torch\distributions\poisson.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2471854Z copying build\lib.win-amd64-cpython-39\torch\distributions\relaxed_bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2477507Z copying build\lib.win-amd64-cpython-39\torch\distributions\relaxed_categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2483210Z copying build\lib.win-amd64-cpython-39\torch\distributions\studentT.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2488778Z copying build\lib.win-amd64-cpython-39\torch\distributions\transformed_distribution.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2494375Z copying build\lib.win-amd64-cpython-39\torch\distributions\transforms.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2500534Z copying build\lib.win-amd64-cpython-39\torch\distributions\uniform.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2505813Z copying build\lib.win-amd64-cpython-39\torch\distributions\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2511283Z copying build\lib.win-amd64-cpython-39\torch\distributions\von_mises.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2527416Z copying build\lib.win-amd64-cpython-39\torch\distributions\weibull.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2532723Z copying build\lib.win-amd64-cpython-39\torch\distributions\wishart.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2538121Z copying build\lib.win-amd64-cpython-39\torch\distributions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:19:06.2544059Z creating build\bdist.win-amd64\wheel\torch\export 2025-07-24T05:19:06.2547284Z copying build\lib.win-amd64-cpython-39\torch\export\custom_obj.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:19:06.2552507Z copying build\lib.win-amd64-cpython-39\torch\export\custom_ops.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:19:06.2557872Z copying build\lib.win-amd64-cpython-39\torch\export\decomp_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:19:06.2563305Z copying build\lib.win-amd64-cpython-39\torch\export\dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:19:06.2579559Z creating build\bdist.win-amd64\wheel\torch\export\experimental 2025-07-24T05:19:06.2583033Z copying build\lib.win-amd64-cpython-39\torch\export\experimental\_utils.py -> build\bdist.win-amd64\wheel\.\torch\export\experimental 2025-07-24T05:19:06.2588645Z copying build\lib.win-amd64-cpython-39\torch\export\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\experimental 2025-07-24T05:19:06.2594336Z copying build\lib.win-amd64-cpython-39\torch\export\exported_program.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:19:06.2600722Z copying build\lib.win-amd64-cpython-39\torch\export\graph_signature.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:19:06.2606774Z creating build\bdist.win-amd64\wheel\torch\export\passes 2025-07-24T05:19:06.2609908Z copying build\lib.win-amd64-cpython-39\torch\export\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\passes 2025-07-24T05:19:06.2615749Z creating build\bdist.win-amd64\wheel\torch\export\pt2_archive 2025-07-24T05:19:06.2619159Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\constants.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-07-24T05:19:06.2624605Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\_package.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-07-24T05:19:06.2630469Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\_package_weights.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-07-24T05:19:06.2636181Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-07-24T05:19:06.2652165Z copying build\lib.win-amd64-cpython-39\torch\export\unflatten.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:19:06.2658343Z copying build\lib.win-amd64-cpython-39\torch\export\_draft_export.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:19:06.2664498Z copying build\lib.win-amd64-cpython-39\torch\export\_remove_auto_functionalized_pass.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:19:06.2670260Z copying build\lib.win-amd64-cpython-39\torch\export\_remove_effect_tokens_pass.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:19:06.2675820Z copying build\lib.win-amd64-cpython-39\torch\export\_safeguard.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:19:06.2681610Z copying build\lib.win-amd64-cpython-39\torch\export\_swap.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:19:06.2687481Z copying build\lib.win-amd64-cpython-39\torch\export\_trace.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:19:06.2693967Z copying build\lib.win-amd64-cpython-39\torch\export\_tree_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:19:06.2699388Z copying build\lib.win-amd64-cpython-39\torch\export\_unlift.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:19:06.2705231Z copying build\lib.win-amd64-cpython-39\torch\export\_wrapper_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:19:06.2710540Z copying build\lib.win-amd64-cpython-39\torch\export\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:19:06.2716613Z creating build\bdist.win-amd64\wheel\torch\fft 2025-07-24T05:19:06.2720439Z copying build\lib.win-amd64-cpython-39\torch\fft\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fft 2025-07-24T05:19:06.2726486Z creating build\bdist.win-amd64\wheel\torch\func 2025-07-24T05:19:06.2729583Z copying build\lib.win-amd64-cpython-39\torch\func\__init__.py -> build\bdist.win-amd64\wheel\.\torch\func 2025-07-24T05:19:06.2735406Z copying build\lib.win-amd64-cpython-39\torch\functional.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:06.2742202Z creating build\bdist.win-amd64\wheel\torch\futures 2025-07-24T05:19:06.2745520Z copying build\lib.win-amd64-cpython-39\torch\futures\__init__.py -> build\bdist.win-amd64\wheel\.\torch\futures 2025-07-24T05:19:06.2751269Z creating build\bdist.win-amd64\wheel\torch\fx 2025-07-24T05:19:06.2754938Z copying build\lib.win-amd64-cpython-39\torch\fx\annotate.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:19:06.2760433Z copying build\lib.win-amd64-cpython-39\torch\fx\config.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:19:06.2765435Z creating build\bdist.win-amd64\wheel\torch\fx\experimental 2025-07-24T05:19:06.2768810Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\accelerator_partitioner.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.2774804Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\const_fold.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.2780594Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\debug.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.2796165Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\graph_gradual_typechecker.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.2802156Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\merge_matmul.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.2807445Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\meta_tracer.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.2813294Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:19:06.2816643Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\constraint.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:19:06.2822546Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\constraint_generator.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:19:06.2828928Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\constraint_transformation.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:19:06.2844693Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\operation.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:19:06.2851219Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\transform_to_z3.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:19:06.2856949Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\util.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:19:06.2862331Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\z3_types.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:19:06.2867674Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:19:06.2871873Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\normalize.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.2877350Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\optimization.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.2883225Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\partitioner_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.2888767Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\proxy_tensor.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.2895226Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\recording.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.2901368Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\refinement_types.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.2906451Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\rewriter.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.2911747Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\schema_type_annotation.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.2917186Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\symbolic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.2927208Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\sym_node.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.2932695Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\unification 2025-07-24T05:19:06.2936025Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\core.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-24T05:19:06.2941456Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\dispatch.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-24T05:19:06.2946774Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\match.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-24T05:19:06.2952125Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\more.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-24T05:19:06.2957488Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:19:06.2971019Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch\conflict.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:19:06.2976213Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch\core.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:19:06.2981629Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch\dispatcher.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:19:06.2986985Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch\utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:19:06.2992225Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch\variadic.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:19:06.3017269Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:19:06.3022176Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\unification_tools.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-24T05:19:06.3027457Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-24T05:19:06.3032960Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\variable.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-24T05:19:06.3038309Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-24T05:19:06.3043353Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unify_refinements.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.3048620Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\validator.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.3064397Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_backward_state.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.3070003Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_config.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.3075412Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_constant_symnode.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.3080692Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_dynamism.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.3086223Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:19:06.3091290Z copying build\lib.win-amd64-cpython-39\torch\fx\graph.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:19:06.3097954Z copying build\lib.win-amd64-cpython-39\torch\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:19:06.3114278Z copying build\lib.win-amd64-cpython-39\torch\fx\immutable_collections.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:19:06.3119715Z copying build\lib.win-amd64-cpython-39\torch\fx\interpreter.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:19:06.3125476Z copying build\lib.win-amd64-cpython-39\torch\fx\node.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:19:06.3131466Z copying build\lib.win-amd64-cpython-39\torch\fx\operator_schemas.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:19:06.3137795Z creating build\bdist.win-amd64\wheel\torch\fx\passes 2025-07-24T05:19:06.3141330Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\annotate_getitem_nodes.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:19:06.3146970Z creating build\bdist.win-amd64\wheel\torch\fx\passes\backends 2025-07-24T05:19:06.3150126Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\backends\cudagraphs.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\backends 2025-07-24T05:19:06.3156073Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\backends 2025-07-24T05:19:06.3160606Z creating build\bdist.win-amd64\wheel\torch\fx\passes\dialect 2025-07-24T05:19:06.3164261Z creating build\bdist.win-amd64\wheel\torch\fx\passes\dialect\common 2025-07-24T05:19:06.3167452Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common\cse_pass.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\dialect\common 2025-07-24T05:19:06.3173017Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\dialect\common 2025-07-24T05:19:06.3177536Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\dialect 2025-07-24T05:19:06.3181810Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\fake_tensor_prop.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:19:06.3187399Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_drawer.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:19:06.3203737Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_manipulation.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:19:06.3209356Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_transform_observer.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:19:06.3215512Z creating build\bdist.win-amd64\wheel\torch\fx\passes\infra 2025-07-24T05:19:06.3218742Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\partitioner.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-07-24T05:19:06.3224591Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\pass_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-07-24T05:19:06.3230004Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\pass_manager.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-07-24T05:19:06.3236349Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-07-24T05:19:06.3251236Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\net_min_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:19:06.3257363Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\operator_support.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:19:06.3263310Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\param_fetch.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:19:06.3268795Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\pass_manager.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:19:06.3274360Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\reinplace.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:19:06.3300036Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\runtime_assert.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:19:06.3300881Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\shape_prop.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:19:06.3301720Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\splitter_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:19:06.3302546Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\split_module.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:19:06.3306965Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\split_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:19:06.3313058Z creating build\bdist.win-amd64\wheel\torch\fx\passes\tests 2025-07-24T05:19:06.3316304Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\tests\test_pass_manager.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\tests 2025-07-24T05:19:06.3321782Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\tests\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\tests 2025-07-24T05:19:06.3326278Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\tools_common.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:19:06.3332015Z creating build\bdist.win-amd64\wheel\torch\fx\passes\utils 2025-07-24T05:19:06.3345597Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\common.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-07-24T05:19:06.3351159Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\fuser_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-07-24T05:19:06.3356337Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\matcher_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-07-24T05:19:06.3365019Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\matcher_with_name_node_map_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-07-24T05:19:06.3379660Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\source_matcher_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-07-24T05:19:06.3385389Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-07-24T05:19:06.3390467Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\_tensorify_python_scalars.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:19:06.3396605Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:19:06.3401868Z copying build\lib.win-amd64-cpython-39\torch\fx\proxy.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:19:06.3407442Z copying build\lib.win-amd64-cpython-39\torch\fx\subgraph_rewriter.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:19:06.3419545Z copying build\lib.win-amd64-cpython-39\torch\fx\tensor_type.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:19:06.3424841Z copying build\lib.win-amd64-cpython-39\torch\fx\traceback.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:19:06.3430250Z copying build\lib.win-amd64-cpython-39\torch\fx\_compatibility.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:19:06.3435772Z copying build\lib.win-amd64-cpython-39\torch\fx\_graph_pickler.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:19:06.3441604Z copying build\lib.win-amd64-cpython-39\torch\fx\_lazy_graph_module.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:19:06.3446909Z copying build\lib.win-amd64-cpython-39\torch\fx\_pytree.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:19:06.3452077Z copying build\lib.win-amd64-cpython-39\torch\fx\_symbolic_trace.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:19:06.3458582Z copying build\lib.win-amd64-cpython-39\torch\fx\_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:19:06.3463813Z copying build\lib.win-amd64-cpython-39\torch\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:19:06.3469124Z copying build\lib.win-amd64-cpython-39\torch\hub.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:06.3475597Z creating build\bdist.win-amd64\wheel\torch\include 2025-07-24T05:19:06.3478784Z copying build\lib.win-amd64-cpython-39\torch\include\advisor-annotate.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:06.3485456Z creating build\bdist.win-amd64\wheel\torch\include\asmjit 2025-07-24T05:19:06.3488592Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\a64.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-07-24T05:19:06.3494069Z creating build\bdist.win-amd64\wheel\torch\include\asmjit\arm 2025-07-24T05:19:06.3497278Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64assembler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-24T05:19:06.3502532Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64builder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-24T05:19:06.3511627Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-24T05:19:06.3517336Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64emitter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-24T05:19:06.3532819Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64globals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-24T05:19:06.3542025Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64instdb.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-24T05:19:06.3548403Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64operand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-24T05:19:06.3555044Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\armglobals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-24T05:19:06.3559739Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\armoperand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-24T05:19:06.3566416Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\armutils.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-24T05:19:06.3571801Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-07-24T05:19:06.3577393Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\asmjit-scope-begin.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-07-24T05:19:06.3582418Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\asmjit-scope-end.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-07-24T05:19:06.3598073Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\asmjit.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-07-24T05:19:06.3603755Z creating build\bdist.win-amd64\wheel\torch\include\asmjit\core 2025-07-24T05:19:06.3607062Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\api-config.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3613043Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\archcommons.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3618781Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\archtraits.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3624199Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\assembler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3639671Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\builder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3647214Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\codebuffer.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3652696Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\codeholder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3658705Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3664747Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\compilerdefs.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3670582Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\constpool.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3676139Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\cpuinfo.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3682500Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\emitter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3688588Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\environment.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3694601Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\errorhandler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3700141Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\formatter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3705690Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\func.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3712031Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\globals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3717817Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\inst.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3724039Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\jitallocator.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3764759Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\jitruntime.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3770216Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\logger.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3775631Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\operand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3795511Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\osutils.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3796450Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\string.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3797367Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\support.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3801752Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\target.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3813508Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\type.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3819505Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\virtmem.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3824569Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zone.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3830545Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonehash.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3835782Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonelist.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3845034Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonestack.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3850459Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonestring.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3855993Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonetree.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3861254Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonevector.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:19:06.3867034Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-07-24T05:19:06.3873956Z creating build\bdist.win-amd64\wheel\torch\include\asmjit\x86 2025-07-24T05:19:06.3877313Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86assembler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-07-24T05:19:06.3883483Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86builder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-07-24T05:19:06.3888869Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-07-24T05:19:06.3894625Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86emitter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-07-24T05:19:06.3912847Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86globals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-07-24T05:19:06.3919964Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86instdb.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-07-24T05:19:06.3926304Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86operand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-07-24T05:19:06.3932446Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-07-24T05:19:06.3939315Z creating build\bdist.win-amd64\wheel\torch\include\ATen 2025-07-24T05:19:06.3942599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\AccumulateType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.3948016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.3953265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ATen.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.3958367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\autocast_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.3964165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Backend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.3978886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.3983918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\BlasBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.3989158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CachedTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.3994462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ceil_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.3999778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\code_template.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.4005228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CollapseDims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.4010870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.4016624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.4022828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.4028360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.4034449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.4044212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.4050572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.4056306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.4071453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Config.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.4077010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Context.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.4083671Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core 2025-07-24T05:19:06.4087121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\alias_info.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4092396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Array.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4117634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATenGeneral.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4123373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATenOpList.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4138651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATen_fwd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4143882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\aten_interned_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4151241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATen_pch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4155786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4160870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\blob.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4166533Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\boxing 2025-07-24T05:19:06.4169942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\BoxedKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing 2025-07-24T05:19:06.4175882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\BoxedKernel_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing 2025-07-24T05:19:06.4181583Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\boxing\impl 2025-07-24T05:19:06.4184810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl\boxing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing\impl 2025-07-24T05:19:06.4190494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl\make_boxed_from_unboxed_functor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing\impl 2025-07-24T05:19:06.4196549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl\test_helpers.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing\impl 2025-07-24T05:19:06.4202291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl\WrapFunctionIntoFunctor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing\impl 2025-07-24T05:19:06.4218535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl\WrapFunctionIntoRuntimeFunctor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing\impl 2025-07-24T05:19:06.4224053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\KernelFunction.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing 2025-07-24T05:19:06.4240190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\KernelFunction_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing 2025-07-24T05:19:06.4245563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\OperatorKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing 2025-07-24T05:19:06.4251263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\builtin_function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4256713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4262627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\CheckMemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4267995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\class_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4273685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\custom_class.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4288373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DeprecatedTypeProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4294347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4300104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dict.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4305790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dict_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4311322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4316617Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4321827Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\dispatch 2025-07-24T05:19:06.4325327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch\CppSignature.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\dispatch 2025-07-24T05:19:06.4330606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch\Dispatcher.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\dispatch 2025-07-24T05:19:06.4336715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch\DispatchKeyExtractor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\dispatch 2025-07-24T05:19:06.4342037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch\ObservedOperators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\dispatch 2025-07-24T05:19:06.4361054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch\OperatorEntry.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\dispatch 2025-07-24T05:19:06.4371520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch\OperatorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\dispatch 2025-07-24T05:19:06.4377112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch\RegistrationHandleRAII.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\dispatch 2025-07-24T05:19:06.4382915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DistributionsHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4397890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dynamic_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4403216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\enum_tag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4408272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\enum_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4417217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Formatting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4422511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4427667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4433058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\function_schema.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4444757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\function_schema_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4450214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4455563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\GeneratorForPrivateuseone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4460920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\grad_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4482834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\IListRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4488916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\IListRef_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4494239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\interned_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4499695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\interned_strings_class.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4505593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4511740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4518394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4523812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\jit_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4530108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\jit_type_base.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4535994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\LegacyTypeDispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4551060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\List.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4557271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\List_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4562699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\MT19937RNGEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4568118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\NamedTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4575223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\NestedIntSymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4584699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\operator_name.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4590207Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\op_registration 2025-07-24T05:19:06.4593735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration\adaption.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\op_registration 2025-07-24T05:19:06.4602297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration\infer_schema.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\op_registration 2025-07-24T05:19:06.4607686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration\op_allowlist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\op_registration 2025-07-24T05:19:06.4618078Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration\op_registration.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\op_registration 2025-07-24T05:19:06.4634367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PhiloxRNGEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4639881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PythonFallbackKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4645796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PythonOpRegistrationTrampoline.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4651699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\qualified_name.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4668499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\QuantizerBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4673860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Range.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4678698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Reduction.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4684170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\rref_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4689566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4694660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4699862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4705501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\symbol.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4710816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4716248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4721854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4728028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorBody.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4755903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TorchDispatchUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4761912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TransformationHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4767476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4772623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\type_factory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4778281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\type_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4783936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\UndefinedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4789179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\UnsafeFromTH.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4794923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\VariableHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4800888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Variadic.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4807442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Vitals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:19:06.4814131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpp_custom_type_hack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.4821580Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu 2025-07-24T05:19:06.4826101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\FlushDenormal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-07-24T05:19:06.4832208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-07-24T05:19:06.4838516Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec 2025-07-24T05:19:06.4841493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-24T05:19:06.4846723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\functional_base.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-24T05:19:06.4853263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\functional_bfloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-24T05:19:06.4857858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\intrinsics.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-24T05:19:06.4873348Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\sve 2025-07-24T05:19:06.4876539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve\sve_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\sve 2025-07-24T05:19:06.4881916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve\vec_bfloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\sve 2025-07-24T05:19:06.4887659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve\vec_common_sve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\sve 2025-07-24T05:19:06.4893123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve\vec_double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\sve 2025-07-24T05:19:06.4908388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve\vec_float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\sve 2025-07-24T05:19:06.4914184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve\vec_int.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\sve 2025-07-24T05:19:06.4919938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve\vec_qint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\sve 2025-07-24T05:19:06.4925551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-24T05:19:06.4930935Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:19:06.4934156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128\vec128.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:19:06.4939352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128\vec128_bfloat16_neon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:19:06.4945686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128\vec128_convert.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:19:06.4950796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128\vec128_float_neon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:19:06.4966758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128\vec128_half_neon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:19:06.4972751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128\vec128_reduced_precision_common_neon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:19:06.4978330Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:19:06.4981629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\missing_vld1_neon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:19:06.4987139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\missing_vst1_neon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:19:06.4992206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:19:06.4997519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_16bit_float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:19:06.5013550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_bfloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:19:06.5018979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_complex_double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:19:06.5025080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_complex_float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:19:06.5031136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_convert.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:19:06.5037048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:19:06.5042561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:19:06.5048530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_half.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:19:06.5054030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_int.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:19:06.5060475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:19:06.5066201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_qint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:19:06.5073115Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:19:06.5076791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_bfloat16_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:19:06.5082253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_common_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:19:06.5087794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_double_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:19:06.5103671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_float_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:19:06.5129790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_double_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:19:06.5135648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_float_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:19:06.5141645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int16_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:19:06.5147282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int32_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:19:06.5153173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int64_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:19:06.5158944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint32_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:19:06.5164800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint8_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:19:06.5170887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_quint8_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:19:06.5177321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vsx_helpers.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:19:06.5183187Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256\zarch 2025-07-24T05:19:06.5186464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\zarch\vec256_zarch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\zarch 2025-07-24T05:19:06.5194197Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:19:06.5197084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:19:06.5202597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_bfloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:19:06.5209344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_complex_double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:19:06.5215913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_complex_float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:19:06.5231591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_convert.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:19:06.5237375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:19:06.5243626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:19:06.5250501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_float8.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:19:06.5256851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_int.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:19:06.5263729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:19:06.5269473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_qint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:19:06.5276329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec_base.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-24T05:19:06.5282763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec_convert.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-24T05:19:06.5288301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec_half.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-24T05:19:06.5301819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-24T05:19:06.5302731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec_n.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-24T05:19:06.5316390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec_quant.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-24T05:19:06.5322245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vml.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-07-24T05:19:06.5328153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUApplyUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.5344987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFixedAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.5350554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.5356272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.5362183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.5368154Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda 2025-07-24T05:19:06.5371520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ApplyGridUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5376804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\AsmUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5381971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ATenCUDAGeneral.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5387109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Atomic.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5392974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5408636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub-RadixSortPairs.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5414034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5425630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5430856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub_definitions.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5436239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAApplyUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5442116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDABlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5448026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAContext.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5453107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAContextLight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5458494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDADataType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5463823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDADevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5469157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5474690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5480107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGraph.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5485450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGraphsUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5490898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5496588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparseBlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5512984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparseDescriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5528703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDATensorMethods.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5534013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5539318Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda\detail 2025-07-24T05:19:06.5542681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\CUDAHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-07-24T05:19:06.5548203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\DeviceThreadHandles.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-07-24T05:19:06.5587007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\IndexUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-07-24T05:19:06.5592321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\IntegerDivider.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-07-24T05:19:06.5603430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\KernelUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-07-24T05:19:06.5608680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\LazyNVRTC.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-07-24T05:19:06.5613891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\OffsetCalculator.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-07-24T05:19:06.5619443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\PhiloxCudaStateRaw.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-07-24T05:19:06.5624785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\TensorInfo.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-07-24T05:19:06.5629919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\UnpackRaw.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-07-24T05:19:06.5643315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\DeviceUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5648700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5653990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5659312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\jiterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5665019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\jiterator_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5670577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\llvm_jit_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5686715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\NumericLimits.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5692104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PeerToPeerAccess.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5697172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PhiloxCudaState.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5702273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PhiloxUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5707394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PinnedMemoryAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5713479Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ScanUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5719061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Sleep.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5724169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ThrustAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:19:06.5729686Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda\tunable 2025-07-24T05:19:06.5733315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable\GemmCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\tunable 2025-07-24T05:19:06.5739290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable\GemmHipblaslt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\tunable 2025-07-24T05:19:06.5746089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable\GemmRocblas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\tunable 2025-07-24T05:19:06.5750617Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable\StreamTimer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\tunable 2025-07-24T05:19:06.5766341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable\Tunable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\tunable 2025-07-24T05:19:06.5771632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable\TunableGemm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\tunable 2025-07-24T05:19:06.5776912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable\TunableOp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\tunable 2025-07-24T05:19:06.5782761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CUDAFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.5798441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CUDAFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.5805214Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cudnn 2025-07-24T05:19:06.5808455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\cudnn-wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-07-24T05:19:06.5813441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Descriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-07-24T05:19:06.5826313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Handle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-07-24T05:19:06.5827394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Handles.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-07-24T05:19:06.5832497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-07-24T05:19:06.5847943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-07-24T05:19:06.5853258Z creating build\bdist.win-amd64\wheel\torch\include\ATen\detail 2025-07-24T05:19:06.5856800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\AcceleratorHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-24T05:19:06.5862115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\CUDAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-24T05:19:06.5867416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\FunctionTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-24T05:19:06.5882903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\HIPHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-24T05:19:06.5888506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\HPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-24T05:19:06.5893800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\IPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-24T05:19:06.5899144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MAIAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-24T05:19:06.5904536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MPSHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-24T05:19:06.5909866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MTIAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-24T05:19:06.5915451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\PrivateUse1HooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-24T05:19:06.5920945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\XPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-24T05:19:06.5926275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.5931341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DeviceAccelerator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.5936647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DeviceGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.5941984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.5947056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.5952816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.5958598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dispatch_v2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.5964702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\div_rtn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.5970020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DLConvertor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.5976206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\dlpack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.5991316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DynamicLibrary.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.5996940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6002762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ExpandBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6008173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ExpandUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6013966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Formatting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6019589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FunctionalStorageImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6024808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FunctionalTensorWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6030898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Functions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6037850Z creating build\bdist.win-amd64\wheel\torch\include\ATen\functorch 2025-07-24T05:19:06.6041214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\ADInterpreters.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:19:06.6046449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchedFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:19:06.6051641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:19:06.6066880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchingMetaprogramming.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:19:06.6073355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchRulesHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:19:06.6079076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\DynamicLayer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:19:06.6089550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\FunctionalizeInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:19:06.6104661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\Interpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:19:06.6110827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\LegacyVmapTransforms.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:19:06.6116508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:19:06.6121642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\PlumbingHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:19:06.6127419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\TensorWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:19:06.6137477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\VmapInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:19:06.6142768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FuncTorchTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6157764Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6163438Z creating build\bdist.win-amd64\wheel\torch\include\ATen\hip 2025-07-24T05:19:06.6167665Z creating build\bdist.win-amd64\wheel\torch\include\ATen\hip\impl 2025-07-24T05:19:06.6171818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl\HIPAllocatorMasqueradingAsCUDA.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\hip\impl 2025-07-24T05:19:06.6177341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl\HIPCachingAllocatorMasqueradingAsCUDA.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\hip\impl 2025-07-24T05:19:06.6182383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl\HIPGuardImplMasqueradingAsCUDA.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\hip\impl 2025-07-24T05:19:06.6198196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl\HIPStreamMasqueradingAsCUDA.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\hip\impl 2025-07-24T05:19:06.6203487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\InferSize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6208976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\InitialTensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6214212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\jiterator_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6219713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\jit_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6224819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6229878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyBatchedFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6235500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyBatchedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6240837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyVmapMode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6265906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyVmapTransforms.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6271442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LinalgBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6277048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MapAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6282462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MatrixRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6288787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MemoryOverlap.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6294241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MetaFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6299777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MetaFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6305740Z creating build\bdist.win-amd64\wheel\torch\include\ATen\metal 2025-07-24T05:19:06.6308993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\metal\Context.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\metal 2025-07-24T05:19:06.6322791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MethodOperators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6328675Z creating build\bdist.win-amd64\wheel\torch\include\ATen\miopen 2025-07-24T05:19:06.6342080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Descriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-07-24T05:19:06.6348202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-07-24T05:19:06.6354870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Handle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-07-24T05:19:06.6359547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\miopen-wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-07-24T05:19:06.6374671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-07-24T05:19:06.6380111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-07-24T05:19:06.6385517Z creating build\bdist.win-amd64\wheel\torch\include\ATen\mps 2025-07-24T05:19:06.6388797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-24T05:19:06.6394512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\IndexKernels.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-24T05:19:06.6399792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-24T05:19:06.6405637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSAllocatorInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-24T05:19:06.6422055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSDevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-24T05:19:06.6427397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-24T05:19:06.6433006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-24T05:19:06.6438329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSGuardImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-24T05:19:06.6443591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-24T05:19:06.6448775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSProfiler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-24T05:19:06.6454458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSStream.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-24T05:19:06.6459918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NamedTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6465402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NamedTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.6472287Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native 2025-07-24T05:19:06.6475583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.6480932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\AdaptivePooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.6486389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\AmpKernels.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.6491810Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse 2025-07-24T05:19:06.6505401Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse\quantized 2025-07-24T05:19:06.6508849Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-07-24T05:19:06.6512250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu\fbgemm_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-07-24T05:19:06.6517750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu\packed_params.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-07-24T05:19:06.6523064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu\qnnpack_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-07-24T05:19:06.6528227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BatchLinearAlgebra.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.6533259Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.6538293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BinaryOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.6543855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BucketizationUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.6549148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CanUse32BitIndexMath.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.6554261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ComplexHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.6559606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CompositeRandomAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.6565027Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CompositeRandomAccessorCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.6570764Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ConvolutionMM3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.6575802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ConvUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.6581555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.6586963Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6590815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\AtomicAddFloat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6596043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\avx_mathfun.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6601662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\CatKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6606803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\ChannelShuffleKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6622481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\CopyKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6627552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\DepthwiseConvKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6632578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\DistributionTemplates.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6644245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\Elu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6649468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\Gelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6654982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\GridSamplerKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6661333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\IndexKernelUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6666303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\Intrinsics.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6671979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\int_mm_kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6677570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\IsContiguous.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6682922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\LogAddExp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6688201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\LogSoftmaxKernelImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6693522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\Loops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6699219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\MaxUnpoolKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6704558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\mixed_data_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6709907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\moments_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6725282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\PixelShuffleKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6730388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\Reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6736473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6742120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\ReduceUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6747752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\SampledAddmmKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6753156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\SerialStackImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6758936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\SoftmaxKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6764407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\SpmmReduceKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6769793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\StackKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6775166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\UpSampleKernelAVXAntialias.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6791199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6796741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\WeightNormKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6802203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\zmath.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:19:06.6808025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CPUBlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.6813787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CPUFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.6819752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.6826092Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6829689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6840371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\BinaryInternal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6845974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\block_reduce.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6852013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\CompositeRandomAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6868260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6873549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\CUDAJitLoops.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6879227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\CUDALoops.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6885598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\CuFFTPlanCache.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6892925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\CuFFTUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6898276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\cutlass_common.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6903912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\DeviceSqrt.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6909584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Distributions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6915458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\DistributionTemplates.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6921493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\EmbeddingBackwardKernel.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6926612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\ForeachFunctors.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6932750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\ForeachMinMaxFunctors.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6937780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\fused_adamw_amsgrad_impl.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6949578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\fused_adamw_impl.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6965316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\fused_adam_amsgrad_impl.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6970710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\fused_adam_impl.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6976060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\fused_adam_utils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6981518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\GridSampler.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6987173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\GridSampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6992715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\GroupMM.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.6997755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\GroupMMCommon.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7003104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\im2col.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7020513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\IndexKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7025461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\IndexKernelUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7040328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\JitLoops.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7045502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\jit_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7050966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\KernelUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7056308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\LaunchUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7061669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Loops.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7066853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Math.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7073797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\MemoryAccess.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7079664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\MiscUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7085164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\MultiTensorApply.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7090632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Normalization.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7097133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\PersistentSoftmax.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7112924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Pow.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7118285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Randperm.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7123967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Reduce.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7130300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\ReduceOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7135694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\reduction_template.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7141545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7146807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\RowwiseScaledMM.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7152027Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\ScaledGroupMM.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7157274Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\ScanKernels.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7167407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\ScanUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7173275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Sort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7179015Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Sorting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7194752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\SortingCommon.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7200287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\SortingRadixSelect.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7206238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\SortStable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7211850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\SortUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7217595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\TensorModeKernel.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7223159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\TensorModeKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7228407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\TensorTopK.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7233916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\thread_constants.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7239664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\UniqueCub.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7269855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\UpSample.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7275523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\vol2col.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:19:06.7281311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DilatedConvolutionUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7296953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DispatchStub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7302953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Distance.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7321691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Distributions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7322724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DistributionTemplates.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7363110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\EmbeddingBag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7368556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7373756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ForeachUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7379217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FractionalMaxPooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7395222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FunctionOfAMatrixUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7396396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedAdagrad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7397363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedAdam.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7406496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedSGD.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7411405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Gelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7416681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\GridSampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7422305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\GridSamplerUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7433356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\group_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7438940Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\hip 2025-07-24T05:19:06.7442232Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\hip\bgemm_kernels 2025-07-24T05:19:06.7445664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_collection.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\hip\bgemm_kernels 2025-07-24T05:19:06.7451177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_template.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\hip\bgemm_kernels 2025-07-24T05:19:06.7456380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\ck_bgemm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\hip 2025-07-24T05:19:06.7461500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\ck_gemm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\hip 2025-07-24T05:19:06.7466619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\ck_gemm_template.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\hip 2025-07-24T05:19:06.7472225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\ck_types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\hip 2025-07-24T05:19:06.7488125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Histogram.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7492917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\im2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7498404Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\im2col_shape_check.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7504126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\IndexingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7509572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\IndexKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7515319Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\kleidiai 2025-07-24T05:19:06.7528823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai\kai_kernels.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\kleidiai 2025-07-24T05:19:06.7534641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai\kai_pack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\kleidiai 2025-07-24T05:19:06.7540020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai\kai_ukernel_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\kleidiai 2025-07-24T05:19:06.7545462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\layer_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7551121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7556891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LinearAlgebra.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7562237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LinearAlgebraUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7567898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LossMulti.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7573596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Math.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7580841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MathBitFallThroughLists.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7587055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MathBitsFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7597520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MaxPooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7603184Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn 2025-07-24T05:19:06.7606677Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn\xpu 2025-07-24T05:19:06.7610057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\Conv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu 2025-07-24T05:19:06.7615580Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:19:06.7619469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail\Attr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:19:06.7625172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail\DnnlExt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:19:06.7630935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail\LRUCache.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:19:06.7636241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail\oneDNN.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:19:06.7641604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail\oneDNNContext.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:19:06.7646957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:19:06.7662086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\FusionUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu 2025-07-24T05:19:06.7667675Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps 2025-07-24T05:19:06.7671397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\Copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps 2025-07-24T05:19:06.7677007Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps\kernels 2025-07-24T05:19:06.7680325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels\Pooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\kernels 2025-07-24T05:19:06.7689927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels\UpSample.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\kernels 2025-07-24T05:19:06.7695068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\MetalShaderLibrary.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps 2025-07-24T05:19:06.7700599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\MPSGraphSequoiaOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps 2025-07-24T05:19:06.7706011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\MPSGraphSonomaOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps 2025-07-24T05:19:06.7726437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\MPSGraphVenturaOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps 2025-07-24T05:19:06.7732151Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps\operations 2025-07-24T05:19:06.7735666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations\BinaryKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\operations 2025-07-24T05:19:06.7741076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations\FusedAdamAmsgradKernelImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\operations 2025-07-24T05:19:06.7746677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations\FusedAdamKernelImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\operations 2025-07-24T05:19:06.7761268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations\FusedAdamWAmsgradKernelImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\operations 2025-07-24T05:19:06.7766709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations\FusedAdamWKernelImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\operations 2025-07-24T05:19:06.7772234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations\MultiTensorApply.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\operations 2025-07-24T05:19:06.7778991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\OperationUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps 2025-07-24T05:19:06.7785142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\TensorFactory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps 2025-07-24T05:19:06.7791082Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mtia 2025-07-24T05:19:06.7804184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mtia\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mtia 2025-07-24T05:19:06.7809799Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\nested 2025-07-24T05:19:06.7813339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested\NestedTensorBinaryOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\nested 2025-07-24T05:19:06.7818404Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested\NestedTensorMath.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\nested 2025-07-24T05:19:06.7823844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested\NestedTensorTransformerFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\nested 2025-07-24T05:19:06.7839246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested\NestedTensorTransformerUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\nested 2025-07-24T05:19:06.7844662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested\NestedTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\nested 2025-07-24T05:19:06.7850088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\NonEmptyUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7864412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\NonSymbolicBC.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7874411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Normalization.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7879639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Padding.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7884929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\PixelShuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7890903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\PointwiseOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7934988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Pool.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7935916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.7936692Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized 2025-07-24T05:19:06.7937525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\AffineQuantizer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-07-24T05:19:06.7938718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\AffineQuantizerBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-07-24T05:19:06.7939963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\ConvUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-07-24T05:19:06.7941160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\Copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-07-24T05:19:06.7946814Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized\cpu 2025-07-24T05:19:06.7951788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\ACLUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:19:06.7957654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\BinaryOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:19:06.7962825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\conv_serialization.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:19:06.7968319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\EmbeddingPackedParams.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:19:06.7984163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\fbgemm_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:19:06.7989617Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\init_qnnpack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:19:06.7994748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\OnednnUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:19:06.8000041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\qconv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:19:06.8005400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\qembeddingbag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:19:06.8010914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\qembeddingbag_prepack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:19:06.8016065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\qlinear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:19:06.8021128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\QnnpackUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:19:06.8026790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\QuantizedOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:19:06.8032188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\QuantUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:19:06.8037602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\RuyUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:19:06.8042625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\XnnpackUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:19:06.8048153Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized\cudnn 2025-07-24T05:19:06.8051401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cudnn\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cudnn 2025-07-24T05:19:06.8056836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\FakeQuantAffine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-07-24T05:19:06.8066465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\IndexKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-07-24T05:19:06.8071805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\library.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-07-24T05:19:06.8077337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\PackedParams.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-07-24T05:19:06.8082626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RangeFactories.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8087791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RangeUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8112788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceAllOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8118005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8123460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8129472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReductionType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8134990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Repeat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8140284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8145623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ResizeCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8151029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RNN.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8156457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ScatterGatherChecks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8161869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SegmentReduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8171106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SharedReduceOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8186348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SobolEngineOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8191428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Sorting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8201234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SortingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8206666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SparseTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8212097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SpectralOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8217535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\StridedRandomAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8223128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorAdvancedIndexing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8228543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorAdvancedIndexingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8234078Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorCompare.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8249561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorConversions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8255207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorDimApply.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8260623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorFactories.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8266102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorIterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8271514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorIteratorDynamicCasting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8277386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8282405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorShape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8288177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorTransformations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8293633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TopKImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8299282Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers 2025-07-24T05:19:06.8302786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers 2025-07-24T05:19:06.8308243Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda 2025-07-24T05:19:06.8311882Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\flash_attn 2025-07-24T05:19:06.8315169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\flash_attn\flash_api.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\flash_attn 2025-07-24T05:19:06.8320512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\flash_attn\static_switch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\flash_attn 2025-07-24T05:19:06.8325970Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:19:06.8329356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\debug_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:19:06.8335033Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-07-24T05:19:06.8338526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_pipelined.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-07-24T05:19:06.8344750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_rescale_output.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-07-24T05:19:06.8350426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_thread_apply_logsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-07-24T05:19:06.8365794Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:19:06.8369136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:19:06.8374609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_base.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:19:06.8380504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_multistage.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:19:06.8387094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_pipelined.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:19:06.8404038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\find_default_mma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:19:06.8410244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_accum_lambda_iterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:19:06.8416439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_from_smem.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:19:06.8424223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm_kernel_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:19:06.8440211Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:19:06.8443958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\default_warp_iterator_from_smem.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:19:06.8450609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\epilogue_predicated_tile_iterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:19:06.8460671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\make_residual_last.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:19:06.8476303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_access_iterator_residual_last.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:19:06.8482911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_iterator_residual_last.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:19:06.8489614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\transpose_warp_iterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:19:06.8494997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\warp_iterator_from_smem.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:19:06.8500779Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-07-24T05:19:06.8504257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-07-24T05:19:06.8510980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-07-24T05:19:06.8517030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:19:06.8523712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:19:06.8530143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\pytorch_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:19:06.8535487Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-07-24T05:19:06.8539435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform\tile_smem_loader.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-07-24T05:19:06.8544682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\sdp_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda 2025-07-24T05:19:06.8550097Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip 2025-07-24T05:19:06.8553491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\aotriton_adapter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\hip 2025-07-24T05:19:06.8559077Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip\flash_attn 2025-07-24T05:19:06.8562924Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-07-24T05:19:06.8566185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn\ck\me_ck_api.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-07-24T05:19:06.8571544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn\flash_api.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\hip\flash_attn 2025-07-24T05:19:06.8577289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\sdp_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers 2025-07-24T05:19:06.8593029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\sdp_utils_cpp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers 2025-07-24T05:19:06.8598846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TransposeType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8604351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TriangularOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8610294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TypeProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8615628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UnaryOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8620823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Unfold2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8630703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Unfold3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8636048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UnfoldBackward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8641348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UpSample.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8647249Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\utils 2025-07-24T05:19:06.8651293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils\Factory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\utils 2025-07-24T05:19:06.8656530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils\ParamsHash.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\utils 2025-07-24T05:19:06.8662024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils\ParamUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\utils 2025-07-24T05:19:06.8672939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\verbose_wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8678302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\vol2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:19:06.8683947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NativeFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.8690537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NativeMetaFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.8697619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NestedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.8703224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NumericUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.8713984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\OpaqueTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.8768414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Operators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.8769286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\OpMathType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:06.8951418Z creating build\bdist.win-amd64\wheel\torch\include\ATen\ops 2025-07-24T05:19:06.8952100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.8953062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.8954222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.8955303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.8956391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.8963999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.8969551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.8975048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.8980643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.8985922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.8991255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.8996508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9002141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9007408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9019358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9023835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9030140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9036262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9042554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9053962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9068242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9073717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9079383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9084979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9090322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9095772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9101393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9107029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9112963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9127948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9133352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9138717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9144513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9164280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9169915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9175454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9181447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9196564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9202440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9208147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9214359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9220115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9226186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9232007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9242151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9247860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9287271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9293031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9312109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9318201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9323885Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9329347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9359977Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9361005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9362282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9363606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9364820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9367983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9373990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9389549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9395881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9401642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9407121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9412871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9418850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9424615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9440236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9445891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9451474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9457071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9463337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9478992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9484650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9490098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9500394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9506005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9511869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9518168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9524074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9529605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9535185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9540919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9546965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9552895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9558289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9563453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9568866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9574426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9579748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9585224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9590730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9596835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9602347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9607726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9613327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9628339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9634077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9639836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9658672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9664996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9673137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9679295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9686192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9691724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9697401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9702798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9708839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9714893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9720856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9725953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9731701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9737875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9743193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9749273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9755043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9760314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:06.9780193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1705379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1711677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1717963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1723942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1729638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1740254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1746167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1751929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1757735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1763402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1769943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1775933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1781805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1787912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1793369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1799038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1805012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1810508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1816323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1821844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1827721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1833287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1839256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1862417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1863402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1866735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1873000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1879319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1884915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1890972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1907050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1913667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1919141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1924871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1930013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1941417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1947423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1953266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1958626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1964625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1969880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1975609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1980875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_as_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1986311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_as_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1991616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_as_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.1997530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2009815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_tensors_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2015424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_tensors_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2021088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_tensors_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2026700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2031845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_to_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2037429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_to_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2042876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_to_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2048483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2054163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2060024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2065473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2070895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2076834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2087368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2093243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2102110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2112691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2118406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2123858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2130063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2135103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2140553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alpha_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2146446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alpha_dropout_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2152292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alpha_dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2169021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alpha_dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2174574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2181170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2187004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2192980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2198768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2204499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2210540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2216316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2221851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2227354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2233938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2239391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2245094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2250890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2257141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2262886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2269191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2275159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2280745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2286835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2293397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2299235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2305274Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2310720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2321096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2326928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2332499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2338193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2351225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2354947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2365930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2371599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2377895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2383462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2389955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2395640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2402498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2407339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2413157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2431357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2436990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2442370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2452412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2457656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2463193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2468635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2474520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2480431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2485965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2491668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2497339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2502675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2508126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2513612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2524186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2530008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2535433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2540926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2546450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2551708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2561915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2567919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2573467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2579068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2584425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2589838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2595579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2600926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2606690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2612308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2617844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2623445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2628958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2634979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2640473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2646311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2651767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2657934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2663306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2669048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2674591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2680160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2685673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2691295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2700328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2705695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2711272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2717002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2722774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2728308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2738246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2743958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2749625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2755951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2761619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2767269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2773972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2779117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2785593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2790508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2797492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2803168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2809276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2814798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2820770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2826384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2832368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2838051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2877863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2878818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2879824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2880920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2882060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2883250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2919585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2924959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2942164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2947754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2953346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2959724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2964813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2970833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2976760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2982568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.2995147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3001437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3011034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3016580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3022334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3027940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3034222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3040194Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3051083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_scatter_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3056982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3062631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3068691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3074313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3079975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3085577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3091237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3097165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3102819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3108402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3114293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3141683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3147767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3153829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3159555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3190571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3196225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3202004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3221786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3227861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3233571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3239239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3259121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3264631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3270570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3276168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3281788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3287653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3293176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3298586Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3304041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3309975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3315950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3321620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3327187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3338284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3344399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3363280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3364191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3365247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool1d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3369518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3375319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3381337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3387348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3392951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3399630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3405148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3419446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3425155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3430853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3436594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3442211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3456297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3461925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3467460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3472976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3478508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3484040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3489529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3495186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3500991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3507185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3512814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3518659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3524227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3530095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3535915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3553354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3559314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3564827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3570822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3581564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3586973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3593285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3598821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3604424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3610321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3615876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3621603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3627279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3633903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3639488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3645018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3650776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bartlett_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3656684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bartlett_window_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3662272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bartlett_window_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3667888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bartlett_window_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3673639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3679472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3690970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3696678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3702553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_elemt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3708887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3715171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_elemt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3720933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_elemt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3726584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_elemt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3732330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3738057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3743864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3750138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3756571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_reduce_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3762347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_reduce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3768108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_reduce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3774040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3780007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_elemt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3785898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_elemt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3791726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_elemt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3807590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_elemt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3813441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3819731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3825609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3831623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3837687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3843939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_with_counts.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3850314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3863311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3864519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3869552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3875693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3881501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3887336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_stats.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3892877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_stats_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3898519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_stats_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3903981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_stats_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3910165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_stats_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3917250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_update_stats.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3923348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_update_stats_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3929380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_update_stats_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3935287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_update_stats_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3941234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_update_stats_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3947128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_update_stats_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3952652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3958461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3963964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3969414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3974943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.3994955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4001073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4006361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4012162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4018016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4022823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4029260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4035133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4041470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4047349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4054472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4061089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4067785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4073931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4079945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4086791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4092524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4098696Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_with_logits.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4104571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4110297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_with_logits_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4116359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_with_logits_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4122004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4127675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4133243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4138827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4148849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4155439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4161513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4167599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4173226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4178890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4184606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4190231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4196058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4203147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4209909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4216003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4221791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4227305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4232968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4239135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4245330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4251370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4284447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4290565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4296295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4301988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4307866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4313608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4319859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4325287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4331210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4337037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4342619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4349011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4354824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4360192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4365723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4384565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4390133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4396370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4407167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4414245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4419890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4425644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4431351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4436941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4442636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4448476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4454286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4462362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4468235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4474026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4479749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4485679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4491199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4496870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4502306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4509022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4515019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4520980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4527069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4532744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4538411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4544229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4559029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4566029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\blackman_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4572349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\blackman_window_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4579092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\blackman_window_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4584780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\blackman_window_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4635380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\block_diag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4642018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\block_diag_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4648053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\block_diag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4654920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\block_diag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4660691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4666690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4672638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4678312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4683734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4689508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4695200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4732887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4738286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4748248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_tensors_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4754001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_tensors_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4759516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_tensors_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4778343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4784153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_to_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4790377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_to_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4801343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_to_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4808401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4816058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4821747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4827698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4833437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4839917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4845924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\can_cast.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4853162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\can_cast_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4859676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\can_cast_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4865100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\can_cast_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4870429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cartesian_prod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4876543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cartesian_prod_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4886953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cartesian_prod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4892928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cartesian_prod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4898255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4903775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4909193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4919543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4925366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4939183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4940781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4946529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4953229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4958478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4964661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4970698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4976357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.4981748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5001468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5006784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5012583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5017639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5022988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5044099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5049737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5059971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5065813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5075279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5081046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5091113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5096483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5112531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5130254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5131490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5132599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5134987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5159396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5165686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5170563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5198479Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5204501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5209886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5215519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5220980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5226472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5231940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chain_matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5237959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chain_matmul_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5243557Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chain_matmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5256305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chain_matmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5262490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5269048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5274608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5280307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5286088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5292378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5298063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5303875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5309566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5315327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5320892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5326593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5332247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5338378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5344099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_inverse_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5349747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_inverse_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5356353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_inverse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5363691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_inverse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5373022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5378699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5384461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5390680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_solve_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5396187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_solve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5401848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_solve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5407478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\choose_qparams_optimized.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5413410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5418999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\choose_qparams_optimized_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5424705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\choose_qparams_optimized_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5430216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5436283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5446559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5452113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5457578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5463455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5469029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5475014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5484554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5490436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5496026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5501846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5507379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5513208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5524076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5529555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5535164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5540623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5546096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5551896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5572830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5578832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5584322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5589992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5595714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5601227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5606973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5612651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5618093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5623815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5629233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5635088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5640390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5645921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5651415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5656794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5662231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5667651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5674433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5679878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5685395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5690825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5696397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5701784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5707420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5713531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\column_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5719190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\column_stack_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5724611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\column_stack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5729876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\column_stack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5735276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5740734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5746246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5752026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5758419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5763907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5770148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5775848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5781123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5786831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5792839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5798453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5804672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5809519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5815205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5820824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5826272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5832099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5837783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5878183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5879112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5880189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5881302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5882265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5883454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5884646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5921785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5922671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5923743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5924783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5925673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5926667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5927787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5950979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5956962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5962678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5968143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5973857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5979449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\constant_pad_nd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5985329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\constant_pad_nd_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5991089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\constant_pad_nd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.5996797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\constant_pad_nd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6002448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6022466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6027925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6033335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6039180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6044851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6050229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6055934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6061702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6067387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6073020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6078930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6085198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6090876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6096330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6101873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6107448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6113170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6119208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6124909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6131722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6137021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6142909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_overrideable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6149017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6154928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_overrideable_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6161447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_overrideable_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6167613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6173450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6179364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6185315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_overrideable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6191546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_overrideable_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6202822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_overrideable_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6208822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_overrideable_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6214923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_depthwise3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6220936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6226845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_depthwise3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6232640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_depthwise3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6238889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_depthwise3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6244889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6250442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6256304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6262064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6267969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6274447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6280126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6286157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6292399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6299558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6305255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6311239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6317859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6324189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6330241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6336072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6341923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6347993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6353938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6359804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6365606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6380538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6381663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6384025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6389717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6395562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6401379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6407562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6413184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6423827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6430139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6470018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6475716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6500040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6505462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6511151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_sparse_to_sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6517242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6523785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_sparse_to_sparse_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6529359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_sparse_to_sparse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6535185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_sparse_to_sparse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6540697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6550714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6556273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6561558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6567014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6572254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6577887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6583289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6588811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6594787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6600095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6606196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6611681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6617060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_embedding_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6622844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6628375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_embedding_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6634336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_embedding_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6639844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_similarity.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6645655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_similarity_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6651514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_similarity_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6657192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_similarity_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6663283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6668624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6674542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6680244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6685336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6690907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6697395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6702351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6708261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6714121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6724556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6730246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6735956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6741600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6747316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6752824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6758507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6764108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6769703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6775335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_entropy_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6781375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6786907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_entropy_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6792985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_entropy_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6798753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6804665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6810452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6816376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6822328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6829305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6835357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6841266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6847293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6852754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6858762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6887242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ctc_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6888296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ctc_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6889366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ctc_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6890298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ctc_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6894384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6917528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6927715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6933475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6939406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6945323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6951298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6957231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6970107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6975962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6981563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6987494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6993662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.6999342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7009088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7014876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7037673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7043587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7049336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7054988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7060773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7066710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_add_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7072684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7078618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_add_relu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7089487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_add_relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7095299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_add_relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7101028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7106724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7112595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7118563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7125364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7131431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_relu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7137204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7143157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7149393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7156702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7162464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_transpose_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7168256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_transpose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7174275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_transpose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7179930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7185830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7192479Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7198716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7204592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7210419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7216847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7222886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7228997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7234514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7240237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_is_acceptable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7246321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7252963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_is_acceptable_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7258942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_is_acceptable_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7264782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7270425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummaxmin_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7276509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7286990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummaxmin_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7293075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummaxmin_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7299059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7305224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7311057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7316827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7326650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7338853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7344686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7350244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7356375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7361889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7383547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7384674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7385813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7390972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7397322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7403499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7415201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7421004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7426525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7432169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7438163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7443757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7455081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7460915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7466652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7472130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7477853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7483279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7488924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7494682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7500219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7506254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumulative_trapezoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7512223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7517864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumulative_trapezoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7530271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumulative_trapezoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7535956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7541387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7547180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7552427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7573794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7583603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7589066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7595095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7600367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dense_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7606040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dense_dim_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7611660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dense_dim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7617225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dense_dim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7622741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7628449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7634147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7639745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7645266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7651137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7656777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7661812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7667290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7672812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7678678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7684966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7690808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7696399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7702029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7707505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7713767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7719503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7724895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7730319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7735896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7741355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7746820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7758938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7764733Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7770347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7776496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7782496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7789211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7795470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7801425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7807141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7813457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7819666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7825289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7831238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7837931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7842967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7848736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7855307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7861383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_scatter_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7866971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7889975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7891106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7892184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_embed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7893299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7898918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_embed_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7904888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_embed_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7910800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_embed_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7916694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7922136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7927599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7933043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7938494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7944242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7949503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7955173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7960778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7966390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7972338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7977821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7983510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7989003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.7994662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8000290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8005848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8011220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8016477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8021748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8027467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8033525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8039186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8045082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8050569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8056009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8061489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8066775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8072362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8078204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8083740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8089528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8095043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8100455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8137038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8142604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8148289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8153753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8186545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8192051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8197618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8203240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8209321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8215153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8220896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8226739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8232486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8238156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8243462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8249125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8254760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8260228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8266004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8271645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8277170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8283225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8288724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8294375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8300092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8311880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8317774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8323677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8330049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8336495Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8341981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8347563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8353030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8358856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8364505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8369751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8378040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8387799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8390730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8396826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8402757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_bag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8408771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_bag_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8414511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_bag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8420205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_bag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8426573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8431889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_dense_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8439081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8444127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_dense_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8449927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_dense_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8455576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_dense_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8461214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_dense_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8466992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8472850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8478970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8484858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8490492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8496211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8502012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8507592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8513242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8519227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_sparse_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8528142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8531274Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_sparse_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8537007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_sparse_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8542686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8554772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8558899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8566158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8572249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8577832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8584381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_like_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8590100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_like_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8595927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_like_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8603193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8609019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8614729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8620772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_permuted.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8626962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_permuted_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8632781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_permuted_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8638597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_permuted_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8644563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_quantized.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8650586Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_quantized_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8656390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_quantized_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8662100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_quantized_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8668004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8674789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8680468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8686203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8691909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8697625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8703380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8709369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8715131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8720470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8726196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8748096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8749002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8750094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8751215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8757025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8762903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8768392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8774375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8779988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8785442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8790711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8796462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8816986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8822663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8828175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8833801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8839447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8844890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8849969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8871998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8877596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8883291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8889077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8894672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8900852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8906443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8912396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8917852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8923324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8929061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8934139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8939592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8945561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8951141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8956426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8962087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8967426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8972938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8978349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8983679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.8989927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9033606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9034490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9035387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9036512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_as_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9037585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_as_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9038598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_as_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9039650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9040687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9045405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9051322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9057156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9062905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9068639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9073985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9079684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9085515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9091257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9096827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9102293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9107669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9113493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9119332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9124910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9130712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9136327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9141809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9147379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9153092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9158608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9164754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9170297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9175899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9181444Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9186768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9192551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9198285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9203932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9209930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9215558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9221171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9227031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9232698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9238305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9244048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9249816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9255861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9262125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9268082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9274289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9280603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9286651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9292699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9298659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9304845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9311097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9317052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9323001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9329384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9335141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9341337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9347985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9354151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9360377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9366975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9372936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9378979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9385018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9402276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9403535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9405096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9411421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9417277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9423505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9429702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9435952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9441789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9447748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9453906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9459785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9465552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9471658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9477680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9484298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9489989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9495868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9501608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9507495Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9513331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_quantize_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9519701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9525716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_quantize_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9531514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_quantize_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9537313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9543562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9550239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9556007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9562119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_quantized_matrix.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9568161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9573759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9579659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9585779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_alpha_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9591912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9597807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_alpha_dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9603651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_alpha_dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9609888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9616084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_dropout_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9622001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9627878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9633702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9639246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9644941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9650620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9656308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9662282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftfreq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9668466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftfreq_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9674289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftfreq_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9680072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftfreq_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9685865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9691680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftn_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9697421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9703258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9742000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9748126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftshift_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9762720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftshift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9768238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftshift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9774262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9780096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9785766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9792301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9798476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9805303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9811044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9816786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9822537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9828867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfftn_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9834781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfftn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9840959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfftn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9846916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9852591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9858118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9863804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9869287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9875531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9881167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9887018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9892690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9899030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftn_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9904872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9910578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9916307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9922928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftshift_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9929297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftshift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9935094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftshift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9941356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9946925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9952583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9958432Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9978694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9984569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9990471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:07.9996261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0001984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0007933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfftn_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0013380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfftn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0019367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfftn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0025401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0031087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0036896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0042324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0048117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0053923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0059470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0065073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0070720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0077188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfftn_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0082693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfftn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0088216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfftn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0094179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0099804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0105343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0110865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0116560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0122309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0127905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0133578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0139261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftfreq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0145258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0150869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftfreq_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0157048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftfreq_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0162692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0168714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftn_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0174388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0179953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0185819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0191471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0197403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0203339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0209070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0214729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0220495Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0226161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0232081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_diagonal_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0237807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_diagonal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0243487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_diagonal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0249186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0254628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0260159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0265844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0271522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0277260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0282920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0288904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0294605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0300313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_dense_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0306329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0311948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_dense_tensors_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0317654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_dense_tensors_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0323705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0329583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0335325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0340784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0347480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0353462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0359014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0364594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0370179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0375902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0381331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0387286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0407978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0408407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0408815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0412223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0417754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\float_power.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0423964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\float_power_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0443092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\float_power_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0443716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\float_power_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0444272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0447116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0452703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0459211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0464293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0470160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0475889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0481900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0487717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0493427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0499093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0504896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0529792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0536219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0541944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0547557Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0553943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0559360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0564966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0570698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0576396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0582067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0587473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0592836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0598760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0604340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0609955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0615823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0638051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0643542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0648962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0675519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0681400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0687236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0692958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0698829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0704533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0710235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0716590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0722181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0727616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0733200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0738955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0745321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0751079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0757211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0763201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0769052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0775228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0781183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0787406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0793624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0800059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0806032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0812120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0818081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0823969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0830287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0836360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0842476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0850063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0856905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0862959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0869475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0875592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0881962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0888384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0894106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0904174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0906933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0913570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0919953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0925940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0931914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0938528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0943918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0949486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0955286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0960752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0966535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0972256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0977802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0983419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0989249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frobenius_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.0995311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frobenius_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1000992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frobenius_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1007038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frobenius_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1040462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_blob.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1046148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_file.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1052441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_file_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1057857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_file_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1063876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_file_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1069624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_file_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1080109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1086613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1092767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1098605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_like_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1115248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_like_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1120882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_like_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1126596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1132169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1137632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1143975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1149674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1156487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1162360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1167952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1173778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1179784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1185389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1191420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1197378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1203168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1209434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1215458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1221364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1227249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1233360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1239227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1245222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1250847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1257084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1262882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1268253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1274232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1279811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1285312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1290592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1310065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1316816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1322755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1328569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1334913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1340822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1346522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1352687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1358608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1364469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1370266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1376372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1414595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1420665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1426470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1432680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1439340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1445068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1450912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1456682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1462400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1468214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1474029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1479432Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1485023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1491003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1496695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1502439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1508096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1513609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1519095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1524678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1530391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1536126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1541936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1547230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1552922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1558518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1563996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1569365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1575107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1580823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1587424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_jvp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1593679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1599658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_jvp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1605564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_jvp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1611358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_jvp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1617118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_jvp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1623921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1629710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1635950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1641535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1647276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1653157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1659208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1665029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1670720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1676403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1682098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1687757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1693062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1698644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1704341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1709728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1715889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1721571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1727181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1732990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1738740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1744468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1750419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_equal_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1756530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_equal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1762247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_equal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1767982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1773895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1779809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1785399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1790922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1805528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1811592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1817529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1823658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1829431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1835904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1842340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1848585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1853994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1859842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1865614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1871897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1879005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1894711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1896712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1902839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1908734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1915003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1920833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1926952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1932850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1939778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1944730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1950313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1956353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1961944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\group_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1968136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\group_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1973536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\group_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1979149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\group_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1984764Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1990867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.1996416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2002087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2007733Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2013673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2019036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2024479Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2029817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2035637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2041888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2047666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2053394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2058918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2065381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2071056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2076837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hamming_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2082730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hamming_window_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2088370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hamming_window_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2094169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hamming_window_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2099964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hann_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2111674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hann_window_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2117378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hann_window_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2123130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hann_window_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2128761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2134403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2140952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2146933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2152770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2158551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2164475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2170853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2176614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2182793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2188284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2194156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2200173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2206500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2212278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2218472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2224554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2230534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2236936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2243463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2249680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2255202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2261586Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2267513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2274174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2280737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2286279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2291994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2297704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2307552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2313446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2319356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2325384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2331111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2337114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2343595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2349759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2355789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2361938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2367602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2373462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2380070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2385932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2392246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2398691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2404604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2424784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2425843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2426965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2431394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2437620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2443567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2451115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2457085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2463040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2468800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.2476121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5777664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5783662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5789982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5795602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5802202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5808299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5814070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hinge_embedding_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5820050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5826235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hinge_embedding_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5832093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hinge_embedding_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5838198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5869419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5870414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5871368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5872482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5873396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5876084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5882241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5888144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5894218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5900269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5905667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5911574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5917644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5923339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5929006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5934600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5940158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5945538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5951058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5957960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5962737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5968496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5974085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5979778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5985263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5991225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.5996888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6002994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6009237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6015143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6020862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6027160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6032868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6038574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6044161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6050557Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6056045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6061831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6068031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6074099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6079973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6085731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6091317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6097403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6102770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6108390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6114358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6119364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6124832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6130253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6135421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6140894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6146874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6152181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6157846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6163736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6169127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6174888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6180683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6187134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6192721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6198713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6204283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6210051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6215721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6221344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6227238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6233033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6238509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6276488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6282318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6288184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6293512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6298991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6304235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6310076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6315432Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6321292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6327050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6332661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6338296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6344236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6350254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6356166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6361877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6368214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6373819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6379983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6385892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6391537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6397430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6403099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6408731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6414692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6420392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6426356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6432112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6437953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6448255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6450697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6492127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6493169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6494171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6495131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6496073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6497089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6498135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6502183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6508095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6513983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_put.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6520047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_put_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6525952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_put_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6531652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_put_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6537687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6543942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6549609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6555446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6561159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6579884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6585360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6591172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6597002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6602644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6608721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6614558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6620331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6626242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6631970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6638116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6643839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6649481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6655293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6660741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6666199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6672169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6678124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6683801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6689740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6695333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6700673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6706639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\infinitely_differentiable_gelu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6712808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6718464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6724517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6730439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6736121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6741484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6747289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6753072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\instance_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6759100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\instance_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6764797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\instance_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6770563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\instance_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6776177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\int_repr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6781944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\int_repr_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6787428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\int_repr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6793567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\int_repr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6799471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6805167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6810735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6816202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6821802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6827541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6833192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6838609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6845430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6851217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6857191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6863111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6868605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6874901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6880612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6886177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6892383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6898830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6904403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6910258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6915913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6931003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6936587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6942301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6947852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6954238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6960620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6966447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6972440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6978198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6984212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.6990965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7002461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7008334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7013830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7019442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7025133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7030788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7036482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7042088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7047783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7053532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7059176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7064625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7070251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7076053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7081523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7086883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7092650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7098030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7104210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7109738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7115323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7121291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7126988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_coalesced.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7132537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_coalesced_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7138088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_coalesced_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7143908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_coalesced_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7149433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_complex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7155338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_complex_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7161171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_complex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7166614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_complex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7172362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7177854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_conj_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7183329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_conj_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7188626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_conj_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7194337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_distributed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7200591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_distributed_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7206651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_distributed_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7212032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_distributed_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7217811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_floating_point.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7223796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_floating_point_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7229361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_floating_point_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7234887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_floating_point_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7240374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_inference.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7246221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_inference_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7252187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_inference_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7257786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_inference_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7263457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_leaf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7268769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_leaf_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7274457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_leaf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7279745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_leaf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7285178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7290509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_neg_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7296153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_neg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7301559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_neg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7307033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7313151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_nonzero_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7318647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_nonzero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7324067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_nonzero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7329723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_pinned.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7335191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_pinned_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7340845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_pinned_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7346537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_pinned_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7352631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_same_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7358563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_same_size_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7364631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_same_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7370376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_same_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7376593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_set_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7382116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_set_to_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7388207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_set_to_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7394100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_set_to_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7399642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_set_to_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7405352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_signed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7411189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_signed_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7417067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_signed_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7422541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_signed_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7428725Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_vulkan_available.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7474997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_vulkan_available_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7476262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_vulkan_available_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7477289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_vulkan_available_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7478225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7479280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7480412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7481311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7483294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kaiser_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7489310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kaiser_window_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7495218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kaiser_window_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7501119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kaiser_window_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7506647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kl_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7512488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kl_div_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7518397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kl_div_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7523956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kl_div_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7529759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7535334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7540789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7546515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7551595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7557466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7563597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7569572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7575389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7580912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7586947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7592124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\l1_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7597908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\l1_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7603232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\l1_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7610574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\l1_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7616299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\layer_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7622092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\layer_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7627444Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\layer_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7641997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\layer_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7647500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7653241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7664948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7670514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7676054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7681545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7686995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7692752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7698579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7704105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7709418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7715388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7720796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7726104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7732040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7737955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7743988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7757024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7760273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7766753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7772211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7777965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7784040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7789688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7795865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7801578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7807370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7841966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7847612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7853435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7859194Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7864857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7870469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7876435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7882416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7888009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7893627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7899189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7904498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7909942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7916328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_equal_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7921892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_equal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7927408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_equal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7933060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7938480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7944368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7950780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7957289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.7961495Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8001818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8002747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8003646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8004523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8005620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8006906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8007883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8011365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8017024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8022780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8028545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8034631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8040344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8045742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8053174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8057417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8063540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8069260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8074991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8080674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8086663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8092372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8098475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8104324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8109661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8115749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8121327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8127391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8133201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8139467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8145163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8151155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8156995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8162605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8168622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8174464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8180177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cond.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8186608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cond_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8192374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cond_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8198121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cond_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8203741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8210009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8215880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8221650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8227309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8233184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8239439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8245372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8251344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8257557Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_det_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8263324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_det_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8268832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_det_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8275042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8280903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_diagonal_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8287000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_diagonal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8292761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_diagonal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8298643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eig.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8304250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8310855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigh_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8316487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8322235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8327885Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8334048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvalsh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8340073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8345918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvalsh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8352026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvalsh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8358728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8364808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8370786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8376798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8382460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8388358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eig_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8394304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eig_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8400352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eig_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8406770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eig_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8413233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_householder_product.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8419758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_householder_product_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8426098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_householder_product_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8432041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_householder_product_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8438056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_householder_product_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8443899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8449927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8455859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8461922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8467439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8473489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8479108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8484775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8490559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8496582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8502759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8508093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8513944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8519892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8525592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8531694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8537726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8544131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8549830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8555755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8562182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8589406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8590509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8591519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8592571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8594826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8601333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8607428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8613527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8619587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8634324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8639834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8645930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8651412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8657439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8663220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8669120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8674984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8681075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8687320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8693075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8699160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8705039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8711193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8717520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8723876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8729668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8735802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8742455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8748217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8753987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8759856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8765692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8771434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8778216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8784254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8789999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8808513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8814702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8820965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8826707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8832582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8838394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8844429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8850779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8856442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8880068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8881159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matmul_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8882802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8883802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8888254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8894372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8900384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_exp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8906397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_exp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8912569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_exp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8918440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_exp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8924378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8930538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8936871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8942552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8963895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_power.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8970396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8976266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_power_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8982612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_power_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8988384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_rank.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.8994774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9000626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_rank_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9006516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_rank_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9012382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_multi_dot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9018321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9035100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_multi_dot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9041091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_multi_dot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9046734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9052681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9058867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9064790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9070363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9076543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9082290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9092266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9098117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9104053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9110006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9116281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9122181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9128187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9133963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9140039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9145910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9151619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9157672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9164176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_slogdet_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9169761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_slogdet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9175925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_slogdet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9181723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9188368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9194638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_ex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9200757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9206563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_ex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9212297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_ex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9218104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9224287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9230214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_triangular.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9236365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_triangular_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9242278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_triangular_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9248279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_triangular_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9254113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_triangular_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9259876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9265940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svdvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9272068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svdvals_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9278724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svdvals_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9284537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svdvals_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9290526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svd_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9296163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9309050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9310012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9314220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9319917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorinv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9325673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorinv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9331352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorsolve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9337510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9344374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorsolve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9349663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorsolve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9355968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vander.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9362051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vander_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9367714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vander_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9373305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vander_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9379118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vecdot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9385343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vecdot_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9417015Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vecdot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9422758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vecdot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9428455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9434732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9440587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9477177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9482958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9488831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9494505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9500303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9506099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9511679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9518048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9523661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9529457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9535388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9541094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9546718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9552743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9559084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9564690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9570521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9577263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9583565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9589362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9595708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9601980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9607079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9612711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9618303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9623869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9629580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9635300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9641215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9647126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9652909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9658690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9664318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9670163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9676043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9681569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9687414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9693300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9699193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9708407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9714325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9720014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9725712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9737424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9743109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9748866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9754421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9760193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9766424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9772061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9777857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9783657Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9789955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9796042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9801900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9808127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9813831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9819601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9825513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9831406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9837568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9843490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9849269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9855285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9861167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9866861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9873007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9879968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9885053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9890661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9896222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9902849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9908737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9914383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9920109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9926337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9932042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9937850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9943890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9949635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9955684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9961521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9967829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9973426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9979409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9985095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9990782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:08.9996593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0002695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0008669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0014585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0020280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0025921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0031586Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0037760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0043382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0049030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0055656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0061670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0097818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0098840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0099922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0100932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0117339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0123088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0129049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0135141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0140826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0146653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0152526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0158452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0164650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0170446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0176220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0181929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0187763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0193597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0199545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0205593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0211422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0218169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0222982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0229550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0235093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0241100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0246608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0252179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0257778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0263393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0269300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0275601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0281195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0287095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0292710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0298393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0304753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0310451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0316159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0381249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0387080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0393448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0399394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0405588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0411398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0417865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0423565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0429724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0435628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0441999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0447599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0479980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0481055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_softmax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0482347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_softmax_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0483438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0484449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0487550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0493344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0499103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0504888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0510481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0516749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0523060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0529259Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0534809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0540619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0546163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0551827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0557756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0563685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_mps_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0569903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0575474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_mps_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0581089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_mps_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0586809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0592318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0597742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0603792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0609488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0615059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0620547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0625889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0631426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0637046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0642713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0648364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_solve_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0654060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_solve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0659585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_solve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0665233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0671190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0676759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0682313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0687909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0737918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0743790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0749377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0755287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\margin_ranking_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0761051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0767135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\margin_ranking_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0773030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\margin_ranking_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0778726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0784595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0790914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0796881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0803328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0809673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0815715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0821481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0827257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0838871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0844459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0849844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0855653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0861683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0867762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0891081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0896785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0902586Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0908982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0914967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0921383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0927074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0932882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0938768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0944704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0950779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0967799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0968720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0970098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0986127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0991940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.0997758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1003875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1010015Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1015709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1021718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1027630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1033755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1039813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1045428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1052445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1061365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1066553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1072222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_H.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1078111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_H_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1083591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_H_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1089135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_H_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1095026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_power.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1101130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_power_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1108280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_power_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1115192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_power_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1120751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1126102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1131872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1137372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1143243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1149780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1155688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1190390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1196196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1202232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1207949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1213843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1219633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1225418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1230810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1236517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1241997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1247400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1253098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1258858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1264831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1270678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d_with_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1276817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d_with_indices_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1282926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d_with_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1288650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d_with_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1295000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1300921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1307095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1312867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1318750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1324808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1330589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1336803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1342730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1348718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1355156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1361271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1367179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1373356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1379852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1386285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1392209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1398648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1404737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1410708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1416527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1422570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1428543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1434656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1440462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1446471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1452265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1457998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1464311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1470769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1477720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1484303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1490664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1496681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1502683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1508772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1515267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1521173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1526824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1532494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1538384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1544086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1549711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1555691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1561527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1567489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1573360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1579173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1584783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1591072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1596997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1602834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1608402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1614152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1619845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1625399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1630971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1636706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1642187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1648038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1653738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1659205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1664863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1670441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1676187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1681984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1687574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1693123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1698693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1704140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1709488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1715008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1720454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1725858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1731725Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1737447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1742989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1748671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1754524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1760182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1765786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1771577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1777730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1783472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1789599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1795342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1801184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1807518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1813914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1819685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1825285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1831022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1837750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1843799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1849579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1855691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1862099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1867942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1873999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1879804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1885602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1891754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_add_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1897768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_add_relu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1903728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_add_relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1909593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_add_relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1916260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1922277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1928413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1945608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1951606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1958919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_relu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1980129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1981197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1982250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1986198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1992118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_transpose_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.1998122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_transpose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2004149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_transpose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2009589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_depthwise_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2034337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2039929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_depthwise_convolution_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2045892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_depthwise_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2051656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_depthwise_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2057289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2063228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2069459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2075345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2081071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2086853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2092965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2098535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2104426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2110292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2116060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2122602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2128057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2134095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2139775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2145471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2151394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2157589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2163041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2168691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2174166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2179603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2185126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2190901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2196857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2202429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2208437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2214100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2219914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2226396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2232277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2238201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2244172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2249855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2255436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2261267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2267032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2273115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2279183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_input.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2285290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2290961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_input_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2296701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_input_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2306146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2311938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2317783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_weights.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2324589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2329864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_weights_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2335860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_weights_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2341818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2347797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2353651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2359465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2365646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2371999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2377772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2383523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2389954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2395518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2401266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2407300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2413531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2419627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2425826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2431563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2437736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2443874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2449784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2455948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2462202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2468060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2506225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2507273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2508482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2509784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2510949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2512025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2514157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2520887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2527116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2533074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2538828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2545028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2550904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2557355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2585451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2591340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2597160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2602714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2608215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2620284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2625889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2631544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2637130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2642402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2653441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2659522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2665879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2672101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2677844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2683573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2689126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2694958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2700754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2706552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2712240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2718153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2724034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2730672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2736446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2742497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2748219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2754570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2760498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_transpose_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2766842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2772735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_transpose_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2806651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_transpose_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2812499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2818022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2824135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2830169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2836096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2841851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2848393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2854348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2860295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2866718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2872821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2878806Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2884724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2896596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2902306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2907892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2914447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2920180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2926084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2931679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2937182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2942535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2948165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2954466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2960356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2966345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2972875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2979298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2987504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2992042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.2998555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3004580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3010286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3016825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3022835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3028458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3034401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3040153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3066162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3071796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3077589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3083233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3089292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3099688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3105392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3110960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3116910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3122644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3128578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3134362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3140331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3146095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3151760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3157588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3163703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3169679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3175492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3181037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3186707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3192268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3197598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3203283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3238428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3243763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3249281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3254927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3260387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3266026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3271593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3277327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3283174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3288659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3295825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3301196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3306972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3312499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3318213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3323885Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3329734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3340382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3346046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3351881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3357856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3363747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3369602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3375529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3381428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3387193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3393041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3398582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3404691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3410550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3416733Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3423314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nan_to_num.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3429192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nan_to_num_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3435271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nan_to_num_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3440592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nan_to_num_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3467362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nan_to_num_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3473372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nan_to_num_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3479453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3485384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3491554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3498533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3504595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_copy_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3510539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3516340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3522082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3527854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3533995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3540016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3545951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3552436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3574640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3580353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3586348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3592422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3598328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3604454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3609918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3615700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_channel_shuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3621994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3627800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_channel_shuffle_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3633638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_channel_shuffle_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3639450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_channel_shuffle_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3645379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3651207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3657288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3663443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3669700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3675599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3681382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3687439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3693194Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3703879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3709666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3715588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3721295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3727284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3733549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3739632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3745813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3751655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3757564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3764085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3775934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3781911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3787854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3794270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3800083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3806404Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3812734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3819109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3824897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3830760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3836779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3843053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3849283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3855012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3861256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3866987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3872889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3879101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3885167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3891091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3897175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3903082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3909079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3914855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3920525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3926189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3932275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3937770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3943685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3949305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3954702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3960359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3966265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3971807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nested_to_padded_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3990148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nested_to_padded_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3991407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nested_to_padded_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3992441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nested_to_padded_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.3996933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4003020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4008785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4014584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4020366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_strided.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4026761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4032645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_strided_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4038413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_strided_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4044339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_strided_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4049886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_full.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4055527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_full_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4061470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_full_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4067080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_full_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4073059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_ones.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4078927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_ones_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4084793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_ones_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4090331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_ones_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4095878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_zeros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4101774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_zeros_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4107592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_zeros_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4113323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_zeros_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4119329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4125291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4131151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4144379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4145917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4154116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4159873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4165338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4171371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4176926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4182770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4188637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4194174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4200019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4205709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4211164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4216619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4222202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4227999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4233974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4239750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4245770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4251749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4257413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4264467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4270287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4276172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4286442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4292289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4297982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4303703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4309905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4316118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4321705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4327663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4334551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4378284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4379307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4380389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4381525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4382749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4384069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4385115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4387030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4393272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4399308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4405339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4411325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4417280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_nd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4423379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_nd_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4429217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_nd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4435072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_nd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4440958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4475341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4480766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4486642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4492373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4502323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_numpy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4508347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_numpy_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4514578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_numpy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4520142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_numpy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4525801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4531943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_static.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4538100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_static_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4543962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_static_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4549850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_static_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4555675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_static_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4561552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4566905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4572609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4578373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4584267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4589884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4595642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4601730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4612610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4629211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4630377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4632162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4638045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4644046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_except_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4650136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_except_dim_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4656222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_except_dim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4661728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_except_dim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4667694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4673548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4680566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4685847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4691562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\not_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4697433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\not_equal_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4703397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\not_equal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4708745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\not_equal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4714908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nuclear_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4720856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nuclear_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4726554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nuclear_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4733134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nuclear_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4739091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\numpy_T.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4744679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\numpy_T_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4751501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\numpy_T_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4757504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\numpy_T_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4763332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4769760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4775270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4781296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_like_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4787123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_like_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4793160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_like_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4799342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4806978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4813739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\one_hot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4820053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\one_hot_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4826257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\one_hot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4831844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\one_hot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4837807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4843613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4858636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4859722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4861893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4868028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4873772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4880112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4885717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4892535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4898564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4904363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4909882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4915373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4921590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4927525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4932911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4938411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\output_nr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4943986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\output_nr_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4970276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\output_nr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4976052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\output_nr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4981609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4987801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4993497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.4998863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5004253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_sequence.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5010188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_sequence_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5016217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_sequence_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5021851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_sequence_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5028423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pairwise_distance.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5034535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pairwise_distance_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5040087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pairwise_distance_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5045747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pairwise_distance_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5051402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5069030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5080416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5086642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5129802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5130859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5143523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5269715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5277308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5304485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5310766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5316941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5322561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5328275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5333588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5339044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5344642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5350242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pin_memory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5356184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pin_memory_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5361947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pin_memory_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5367478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pin_memory_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5373315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5379230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5385207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5390841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5397198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5402854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5408575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5414795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5421075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5426808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5432879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5438813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5444438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5450107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5455793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5461892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5467488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5473429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_nll_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5479708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5520353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_nll_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5520828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_nll_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5521244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5521749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5522304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5522823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5524383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5530165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5535810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5541701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5547820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5553928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5559723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5565355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5571435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5577088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5587437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5593357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5612140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5617732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5623367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5628991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5634662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5640459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5645929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5651767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5657248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5662612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5668263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5673910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5679932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5685374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5691002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5696464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5702354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5708045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5713747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5719408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5724965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5730670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5736862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5746425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5752039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5757685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5763196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\promote_types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5769036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\promote_types_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5774817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\promote_types_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5780300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\promote_types_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5786178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5791784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5797622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5803305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5808994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5814548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5820113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5825494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5831399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5837071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5849856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5853368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5893760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5894171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5894568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5895141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5895620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5896033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5897729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5903897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5910093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_batch_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5916223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_batch_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5922088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_gru_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5929127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5934268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_gru_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5940016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_gru_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5945942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_lstm_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5951938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5957624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_lstm_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5963596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_lstm_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5969304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5976055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5981735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5987415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.5993192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6005489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6017592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6023305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6030007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6036454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6042154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6047968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6054327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_relu_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6060334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6065883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_relu_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6071537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_relu_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6077457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_tanh_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6083424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6089317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_tanh_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6095045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_tanh_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6100818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_channel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6106848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_channel_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6112602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_channel_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6118589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_channel_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6124723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_channel_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6130429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_channel_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6136360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6142495Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6148582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6154934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6160809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_dynamic.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6167501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6172979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_dynamic_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6178819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_dynamic_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6184888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_dynamic_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6191246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_dynamic_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6197116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6203100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6209505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_axis.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6215597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_axis_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6221261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_axis_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6227194Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_scales.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6233792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_scales_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6239680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_scales_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6245650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_scales_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6251657Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_zero_points.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6410428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_zero_points_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6416159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_zero_points_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6422299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_zero_points_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6427989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_scale.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6433504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_scale_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6438942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_scale_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6444650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_zero_point.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6450833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_zero_point_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6457254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_zero_point_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6462382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6468049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6473982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6479715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6485195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6491120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6497138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6502711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6508969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_like_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6514926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_like_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6520776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_like_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6526638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6532182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6537829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6543942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6549813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6556237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6562774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_like_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6569651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6576064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_like_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6582498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_like_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6588826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6595463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6602016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6608190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6614150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6662788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6669050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6675695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6682119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6688447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6695140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6701248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6707829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6713927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6720105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6726563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6732990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6739293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6745715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_like_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6751841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_like_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6758478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_like_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6764599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6770599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6776107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6783033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6789610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6796060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6803380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6809781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6817100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6824572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6830349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6835895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6841697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6847886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6853462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6859171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6864415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6870072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6876015Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6881654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6887681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6893659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6899865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6905728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6911492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6917469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\record_stream.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6923008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\record_stream_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6928976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\record_stream_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6934763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\record_stream_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6940532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\refine_names.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6946384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\refine_names_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6952006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\refine_names_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6957599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\refine_names_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6963419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6969155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6975560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6981785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.6988306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7005656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7006842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7008326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7014339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7020691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7026449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7032502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7038388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7044610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7050359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7056751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7061944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7067859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7073995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7080175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7086352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7092622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7098222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7103865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7109588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7115494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7121365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7127164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7133480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7139825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7145825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7151656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7158050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7164324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7170053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7176298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7181857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7187878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7193692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7199470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7205210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7211289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7216859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7222214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7227839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7233822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.7259212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8190816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8196481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8202158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8207859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8213584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8219195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8224855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8231190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8237672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8243726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8249653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8255407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8272318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8278319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8284132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8290243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8295757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8301528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8307090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8313565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8319442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8325245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8331051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8336656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8342449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8348276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8354314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8360022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8365895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8371524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8377694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8388062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8393744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8399413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8408177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8414353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8420217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8426231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8432646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8438667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8445192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8463952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8469702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8481126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8487445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8493579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8499522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8541929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8543183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8544255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8545298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8546514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8547661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8548669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8552060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8559885Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8565895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8571545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8578050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8584137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8590354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8596462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8602614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8608262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8614039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8620535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8626575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8632486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8638851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8645482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8651497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8657587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8663449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8669672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8675419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8681108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8687212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8693350Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8699177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8705145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8711148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\requires_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8717353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\requires_grad_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8723051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\requires_grad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8728483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\requires_grad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8734323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8739767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8745574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8751276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_as_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8757303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_as_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8763065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_as_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8769067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8806764Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8812472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8820704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8824670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8864467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8865595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8866686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8867689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8868615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8869846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_sparse_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8875005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_sparse_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8880939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_sparse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8886936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_sparse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8893309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8899854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8905645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8911386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8917888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8923480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8929058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8935516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_conj_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8941409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_conj_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8946914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_conj_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8952627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8959183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_neg_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8965024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_neg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8970834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_neg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8976494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\result_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8982793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\result_type_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8988423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\result_type_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8994188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\result_type_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.8999951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retains_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9005497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retains_grad_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9011119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retains_grad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9046197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retains_grad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9052138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retain_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9057926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retain_grad_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9063566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retain_grad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9069014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retain_grad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9074855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rms_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9080441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rms_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9086085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rms_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9091839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rms_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9100392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9103310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9144311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9145490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9146466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9147531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9148630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9149632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9150525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9154172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9160090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9165803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9171705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9177894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9183484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9189081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9194923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9200531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9206025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9211653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9217265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9223185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9229253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9235209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9241270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9246579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9252106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9257896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9263761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9269755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9275653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9281559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9287200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9293214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9298813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9304390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9309792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9316703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9322730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9328405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9338624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9341349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9346598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9352528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9358805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_stack_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9364538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_stack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9369995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_stack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9375601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9381314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9386920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9392717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9398678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9404529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9410907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9416822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9422692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9428744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9434987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9441400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9447375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9453274Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9459283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9465207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9470924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9477806Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9482799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9488733Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9494462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9500232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9531632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9532735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9533869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9534834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9535762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9537780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9543889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9549641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9555650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9560700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9566954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9572249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9577813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9583670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9589168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scalar_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9594942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scalar_tensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9600454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scalar_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9606260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scalar_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9611958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scaled_dot_product_attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9618595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scaled_dot_product_attention_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9624787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scaled_dot_product_attention_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9630748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scaled_dot_product_attention_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9636727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9642202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9648514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9654269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9660369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9666280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9672043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9678604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9684411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9690095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9696192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9701925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9707550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9713431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9719185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9725237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9730988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9736720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9742537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9748739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9754660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9760393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9767066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9772980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9778737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9784888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9790597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9796421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9802103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9808321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9814691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9820658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9826527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9832132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9837932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9843996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9850000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9868550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9875340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9881632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9888025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9893811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9900103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9906443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9912307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9918166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9924971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9931022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9936702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9942568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9948381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9954245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9960002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9966681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9972343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_scatter_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9978363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9984070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9993905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:09.9999602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0005216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0010595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0031680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0032813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0033961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0035972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0041702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0047799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0053072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_data_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0058741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0064034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0069859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0075844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0081422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0086810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0092325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0110481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0116567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0122162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0127388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0133539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0139076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0144442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0149830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0156132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0161925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0167652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0173675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0184146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0189890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0196311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0202517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0208390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0214159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0220118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0225651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0231447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0237415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0243084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0248527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0254366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0260622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0266430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0272280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0278035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0283852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0289722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0313609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0319337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0325412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0331097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0336639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0342322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0358161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0363576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0369214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0375306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0381803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0387710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0394244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0399978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0406105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0411805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0417918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0424164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0429847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0435722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0441486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0447020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0453087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0463373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0469006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0474611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0481189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0494065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0499905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0505451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0511045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0551453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0552482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0553437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0554527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0555667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0556753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0557698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0563803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0567917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0573748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0579691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0585135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0590960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0596573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0602654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0607522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0613223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0618660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0653027Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0658458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0664813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0669715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0675351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0681275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0686819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0693325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0699092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0704824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0710880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0717009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0722748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0728540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0734400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0740912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_inverse_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0746607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_inverse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0752361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_inverse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0758092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0763695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0769435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0775766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0782126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_scatter_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0787823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0793647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0799318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0804887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0811184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0816855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0822517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0828422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0834679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0840546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0846214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0852244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0857951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0863717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0878863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0885518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0891318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0897231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0903568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0909252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0915283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0921695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0927430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0933360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0939539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0945340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0951109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0957499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0963152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0968952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0975002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0980820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0986747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0992517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.0998371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1004328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1010224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1016025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1021777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1027407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1033059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1038774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1044028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1049412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1055299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1061748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1067441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1073376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1079439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1085272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1091542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1097532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1103411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1109283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1115095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1120805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1127032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1133125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1138463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1144142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1149704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1155446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1161092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1166663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1172679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1184135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1190085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1196084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1201894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1207914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1213681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1219876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1225519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1231446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1237343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1243075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1249052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1254846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1260517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1266151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1272346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1278189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1283967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1289974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1295849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1301774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1307494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1314056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1319765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1325780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1331512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1337539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1343505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1349357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1355354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1361262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1367395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1374308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1380382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1387397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1393005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1399060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1404940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1411069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1416996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1422747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1448746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1454736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1461122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1467247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1472665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1478299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1484083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsc_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1490173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1495982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsc_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1501537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsc_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1507612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsr_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1513707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1519706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsr_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1538930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsr_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1539382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_compressed_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1540004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1545228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_compressed_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1551735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_compressed_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1558181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_coo_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1564499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1570504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1576744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_coo_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1582340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_coo_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1588242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csc_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1594522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1600486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csc_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1606188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csc_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1611918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csr_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1617945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1624128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csr_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1630299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csr_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1636016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1641672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_dim_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1647754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_dim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1653850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_dim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1659508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1665461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_mask_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1671348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_mask_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1677345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_mask_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1683499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1689316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_and_clear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1695534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_and_clear_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1701352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_and_clear_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1707496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_and_clear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1713667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_and_clear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1719794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1725535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1731305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1737071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1743121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_sampled_addmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1749280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_sampled_addmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1755230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_sampled_addmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1761315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1768312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1774279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1779992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1786145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1791828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1797750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1803545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1809319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1823637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1829848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1835746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1869916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1875844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1881734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1887725Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1894031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1900008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1906006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1912230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1918518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1924671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1930542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1936474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1942751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1949023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1954991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1960996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1966903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1972865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1979028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1985013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1990874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.1997606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2003893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2009685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2015812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2021904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2028127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2034401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2040318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2047394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2054191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2060061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2065963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2071937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2077938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2084105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2090066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2095849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2102217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2108359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2114475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2120653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2126650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2132549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2138584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2144669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2150578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2157457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2162962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2168744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2174767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2180588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2186767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2192568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2198505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2204426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2211073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2217650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2223645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2229604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2241914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2243048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2248467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2283414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2289228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_digamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2295543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_digamma_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2301652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_digamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2307614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_digamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2313751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2320197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2326114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2332241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2338335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2344049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2349934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2361317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2367117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2372853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2378689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2385552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2391513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2397240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2403165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2409385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2415318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2421559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2427800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfc_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2434076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2439755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2445569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2452391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfinv_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2458244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfinv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2463869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfinv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2469943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erf_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2476205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2481732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2487529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_exp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2506571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_exp2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2512646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_exp2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2518516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_exp2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2524372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2530707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expit_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2536568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2542276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2548111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2554384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expm1_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2560139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expm1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2566072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expm1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2571832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammainc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2577693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaincc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2583808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaincc_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2589585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaincc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2595511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaincc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2601524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammainc_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2607588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammainc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2613440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammainc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2619067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaln.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2625057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaln_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2630821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaln_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2636681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaln_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2642465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2648488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2654724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2660628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2666736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2672847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2679123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2684980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2690881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2696687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2702924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2709134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2714973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2721325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2727938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2733941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2740227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2746138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2751924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2757825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2763851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2774599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2780308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2786763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2793243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2799686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2818731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2839631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2845605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2851151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2857041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2863037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2869179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2875098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2880879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2886605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2892230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2898119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2903846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2910059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2915834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2921773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2927538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2933636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2939654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2945718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2951809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2958293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2964308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2970581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2977135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2983575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2989640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.2996093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3002218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3008326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3014841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3021053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3027004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3033330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3052992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3054182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3055318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3069010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3070016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3072994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log1p_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3079204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log1p_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3084973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log1p_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3091024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3097365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logit_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3104077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3109276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3115340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3121582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logsumexp_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3127321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3133174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3138940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3145100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3151007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3157220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3163013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3168929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3174745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3180674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3186551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3192831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_softmax_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3199183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3205317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3211126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3217381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3223172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3229661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3235831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3242064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3247926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3253832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3259676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3266109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3272046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3278212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3284130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3290021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3296105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3302026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3307772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3314194Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3320289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3326447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3332495Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3338417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3379001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3385091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3391181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3397929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3413778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3420334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3426493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3432737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3438816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3445118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3451160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_multigammaln.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3457340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_multigammaln_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3471381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_multigammaln_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3477505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_multigammaln_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3483344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3489401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3495857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3502101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3508065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3514036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3520269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3526268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3532421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3538627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtr_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3556269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3557223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3558190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_polygamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3564543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_polygamma_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3570388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_polygamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3576558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_polygamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3582396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_psi.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3588381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_psi_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3594330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_psi_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3599869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_psi_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3605744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3611985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_round_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3618042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_round_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3623936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_round_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3630400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3636896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3642908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3648911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3654945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3665851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3671783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3678229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3684091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3690646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3706249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3717781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3724076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3730117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3736531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3742746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3748603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3755092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3761587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3768280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3774306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3780384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3786435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3792747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3812527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3818490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3825012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3831227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3837536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3843549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3849596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3855607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3861762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3867835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3873908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3880457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3886813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3892958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3899036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3905187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3911321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3917589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3923982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3930623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3937223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3943967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3949991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3956512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3962663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3968821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.3974902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4012602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4018689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_sinc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4024957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_sinc_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4030971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_sinc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4036936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_sinc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4042952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4049271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_softmax_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4055962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4079793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4080823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4082086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4083377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4088781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4094969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4101039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4107153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4113218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4119222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4125663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4131827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4137734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4143923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4149887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4155915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4162063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4168218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4174108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlogy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4180966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlogy_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4186854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlogy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4192746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlogy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4198664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4205657Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4211662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4217516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4223407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4229221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4235654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4241580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4247505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4253298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4259002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4264965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4270460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4276593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4289821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4295512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4301293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4306957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4312677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4318519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4324665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4330528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4336743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4342789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4348494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_copy_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4354580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4361546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4367748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4373590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4379386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4385356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4391090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4396999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4403022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.4408853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7146814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7153094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7158355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7164241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7170022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7177189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7183106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7189167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7195336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7201308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7207282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7213074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7218916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7224600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7230236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7236011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7241849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7247868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7252967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7258713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7265487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7271414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7277572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7283031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7288578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7293960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7299633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7305316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7316546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7322482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7327814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7333553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7339256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7344822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7350460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7356329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7362701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7368347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7373993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7379355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7384909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7390566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7396771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7402317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7408092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7414113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7419704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7425424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7430805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7436658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7442594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7448264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7454527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7460462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7466182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7471867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7477646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7482991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7488763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7495000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7500729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7506506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7512324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7518588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7524368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7530156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7535723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7541210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7546968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7552531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7558236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_to_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7564144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_to_size_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7570055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_to_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7575790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_to_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7581504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7588144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7594549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7600809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7606786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7612664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7618437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7624168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7629990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7635878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7641713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7647190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7653170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7659092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7664640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range_for_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7670774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7676744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range_for_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7682575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range_for_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7688479Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7694567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7700221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_numel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7706106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_numel_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7711932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_numel_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7717766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_numel_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7730396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7735931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_size_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7741969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7747482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7753384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_storage_offset.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7759594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_storage_offset_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7765538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_storage_offset_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7771166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_storage_offset_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7776994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_stride.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7783275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_stride_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7789241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_stride_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7794728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_stride_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7800527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7805720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7811600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_along_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7817761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_along_dim_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7823346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_along_dim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7829455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_along_dim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7835408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7841065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7846967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7852628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7857962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7863689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7869126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7875125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7881028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7887102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7893192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7899323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7905642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7911325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7917230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7923245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7929060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7934993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7940543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7946231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7951925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7958021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7963585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7969448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7975238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7980791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7986438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7992039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.7997552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8003195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8009356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8015108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8020948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8027009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor_split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8037663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor_split_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8043515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor_split_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8049328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor_split_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8055016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\thnn_conv2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8061117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\thnn_conv2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8066728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\thnn_conv2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8072579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\thnn_conv2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8078281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8117727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8123998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8129541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8135339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8140975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8146929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8152731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8158873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8165356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8170936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8176754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8182663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8188316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8194072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8199742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8205331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8210859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8221249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8226517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8231810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8237241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8243477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8248866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8254394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8260004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8265753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8271347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8276901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8282694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8288201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8293709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8299629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8305355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8339771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8345571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8351207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8357295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8362804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8368459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8374554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8380105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8385753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8393686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8399521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8405394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8411035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8416801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8422037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8427551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_padded_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8434010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_padded_tensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8439898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_padded_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8445576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_padded_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8451439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8456899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8462893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8468904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8474662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8480166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8485823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8500880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8506620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8512671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8518425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8525026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csc_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8530797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8536402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8542085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8547947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csr_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8553952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8559414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8565265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8570964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8648985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8650067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8651170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8652294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8657713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8663783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8670128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8676115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8686738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8692387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8698215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8703995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8709764Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8715728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8721900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8727828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8733533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8739300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8745159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8751126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8756868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8762687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8768279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8774088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8779735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8785702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8804314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8810075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8815443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8821664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8827293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8833068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8839067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8844982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8850713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8856537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8862061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8876129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8881483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8887562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8893191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8899046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8904907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8910747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8916747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8922705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8928365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8933707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8939502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8944871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8950353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triplet_margin_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8956306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8961883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triplet_margin_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8967779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triplet_margin_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8973518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8979388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8985890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8992437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.8998390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9004360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9010760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9016347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9022207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9027844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9033895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9039109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9044780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9050195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9055545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\true_divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9061589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\true_divide_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9067455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\true_divide_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9073154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\true_divide_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9078855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9084603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9090281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9096064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9140231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9141220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9142188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9143095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9143967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\type_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9145094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\type_as_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9146193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\type_as_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9147200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\type_as_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9152202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9158080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9164366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9169289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9175249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9180462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9186314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9191417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9197034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9202705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9209000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9214338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9220585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9226320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9232256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9237926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9243734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9249670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9255308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9261036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9266766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_dense_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9272647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9278667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_dense_tensors_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9284193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_dense_tensors_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9290480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9296072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9301694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9306901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9313262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9323633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9329531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9335273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9340901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9346879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9353390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9359339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9365012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9370939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9377186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9382951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9388964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9394858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9400858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9406706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9412495Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9418410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9424211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9430124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9435984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9442084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9448145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9454369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9460185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9466704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9472848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9478497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9484757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9490949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9496927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_consecutive.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9503143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9509198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_consecutive_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9515477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_consecutive_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9522301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_consecutive_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9528290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_consecutive_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9534568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9541225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9546734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9552899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9558821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_chunk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9564977Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_chunk_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9571289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_chunk_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9577433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_chunk_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9583453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9589569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9595427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9601610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9618173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split_with_sizes.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9625544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9632451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split_with_sizes_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9638619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split_with_sizes_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9644481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9651289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9656631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9662764Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9668655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9674678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9680898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9686706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9692819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9698817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9705111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9711244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9722424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9728581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9734488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9740584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9746718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9752831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9759682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9765543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9771456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9777411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9783191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9789101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9794950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9800807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9807064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9813153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9819626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9825369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9831266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9837247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9843587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9849575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9855355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9861759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9868041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9874773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9880852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9886695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9892747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9898789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9904710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9911015Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9917019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9923306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9929572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9940217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9946315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9952460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9958848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9964917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:10.9971114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0001284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0034498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0040463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0046925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0053072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0059439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0065550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0071559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0077728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0083775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0090462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0097116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0103344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0121847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0123045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0124176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0129347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0135915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0142219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0148467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0154624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0160614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0166535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0172980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0179065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0185054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0191077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0197671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0203650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0222670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0224001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0225248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0228364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0234561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0240647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0246721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0258088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0264214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0270073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0276194Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0282066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0288063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0293789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0299716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0305600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0311901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0318022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0324322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0330248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0336148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0342104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0347852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0354305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0360845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0366725Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0372689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0378605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0384674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0390999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0397141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0403229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0409559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0417350Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0424298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0437750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0446062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0455876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0463017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0471654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0479950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0487687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0496328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0503765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0511294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0520312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0527795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0535287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0543783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0550675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0558042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0566703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0574084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0581743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0588888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0625154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0631088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0637223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\value_selecting_reduction_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0644598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0677831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\value_selecting_reduction_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0683457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\value_selecting_reduction_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0689391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0695088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0700652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0706134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0730215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0736037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0741723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0748271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0753821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0759630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0765421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0770991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0776933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0782703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0788286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0793962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0799479Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0805016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0810559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0816103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0821907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0827550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0833025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0838423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0843674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0848785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0854533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0860660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0866705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0872759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0878264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0884610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0891302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0897162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0902802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0908410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0914590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0920207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0925744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0931526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0937404Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0943621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0949819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0955690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0961643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0967574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0973482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0979645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0985802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0991384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.0997409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1003145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1009251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1015137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1021199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1027135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1033164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1038968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1044891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1050733Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1056814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1062191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1068150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1074150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1079777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1085496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1091203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1096831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1102356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1108214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1119262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1120799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1126578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1149996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1155835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1161614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1167344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1173406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1178952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1184783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1190315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1196089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1201763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1207551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1213313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1219028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1224558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1230108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1236607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1242048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1247916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1253775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1259642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_like_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1266117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1271765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_like_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1277669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_like_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1283681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1289407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1295455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1301278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1312594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1318256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1323874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1329741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1334949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1340653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1346610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1356771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1362483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1368300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1374351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1380494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1386582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1392498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1398926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1405020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1410822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1416817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1422999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1429112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1435147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1441234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1447243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1453462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1459620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1465569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1471565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1477750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1483568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1489896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1496137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1501985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1507857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1514053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1520083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1526062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1532071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_batch_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1538145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_batch_dim_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1544148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_batch_dim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1549651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_batch_dim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1555515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1561322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1567306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1574516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1580478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1586417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1592349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1599210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1604815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1625741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1632382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1638933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1663591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1664259Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1664821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1665392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1671927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1678159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1684010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_update_scale.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1690084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_update_scale_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1695631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_update_scale_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1701801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_update_scale_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1708162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_update_scale_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1714951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_update_scale_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1720742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_update_scale_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1726633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_async.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1732351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_async_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1958780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_async_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1964443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_async_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1970717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_async_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1976202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1982340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_scalar_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1988098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_scalar_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1993839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_scalar_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.1999678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_tensor_metadata.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2006098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2011795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_tensor_metadata_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2023232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_tensor_metadata_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2029088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_tensor_metadata_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2035084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_full_precision.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2040869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_full_precision_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2046755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_full_precision_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2052327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_full_precision_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2058132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_reduced_precision.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2064073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2070010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_reduced_precision_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2076286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_reduced_precision_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2082161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2089161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2094927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2100630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2106820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2112819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2134917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2135428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2135913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2159516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2165402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2171418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2177887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_no_update.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2184178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_no_update_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2191244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_no_update_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2197109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_no_update_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2202864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_with_update.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2208873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_with_update_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2214887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_with_update_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2221026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_with_update_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2226807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_with_update_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2232502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_with_update_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2238287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Byte.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2244147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Byte_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2249905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Byte_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2255258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Byte_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2260892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Char.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2266879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Char_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2272600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Char_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2278263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Char_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2283928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2290060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Double_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2296384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Double_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2301365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Double_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2307105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2313203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Float_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2319635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Float_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2325991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Float_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2331718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Half.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2338000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Half_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2343625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Half_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2349313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Half_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2355794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Int.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2362190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Int_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2368429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Int_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2374265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Int_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2380340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Long.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2386413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Long_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2392150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Long_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2397991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Long_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2403769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Short.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2410119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Short_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2415580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Short_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2421107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Short_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2426833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2432818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2438668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2444378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2450140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2456155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2462130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2468065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2473851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2479940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2485802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2492320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2498312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cholesky_solve_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2504367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2510098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cholesky_solve_helper_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2516017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cholesky_solve_helper_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2522056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cholesky_solve_helper_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2528556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cholesky_solve_helper_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2534576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_choose_qparams_per_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2540809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2546581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_choose_qparams_per_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2552160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_choose_qparams_per_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2557939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_chunk_cat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2563895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_chunk_cat_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2570198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_chunk_cat_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2576041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_chunk_cat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2581612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_chunk_cat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2587341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2593311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2598748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2604507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2610451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2616322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2622341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2628143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2634126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2640139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_compute_linear_combination.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2646210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_compute_linear_combination_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2652359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_compute_linear_combination_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2658528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_compute_linear_combination_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2664387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_compute_linear_combination_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2669991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2675504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2681092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2687036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2693088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2698800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2704534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2710169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2715642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2721564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_physical.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2727819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_physical_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2733681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_physical_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2739363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_physical_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2745119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2751432Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2757116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2763231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2768994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2774869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2780664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2786418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2792385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2798771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2804613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2810531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2816658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2822811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2828753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2839380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2845337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2851017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2876037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2882155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2888074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2893706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2899548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2905130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2910851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2917382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2923372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2928942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_double_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2934985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2966632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_double_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2972732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_double_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2978444Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2985720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_mode_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2991558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_mode_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.2997700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_mode_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3003499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3009373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3015473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conv_depthwise2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3021944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conv_depthwise2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3027617Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conv_depthwise2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3033399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conv_depthwise2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3039209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3052120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from_and_resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3059506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from_and_resize_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3065397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from_and_resize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3071082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from_and_resize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3077632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3083306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3088903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3094627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_compress.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3100527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_compress_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3106794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_compress_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3112451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_compress_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3118426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3124840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3130792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3155662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3156650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm_search.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3157686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm_search_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3158746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm_search_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3162819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm_search_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3168996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3174803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3185039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3190924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3197138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3202934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3208851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3214868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3220608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3226416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3232311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3238704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3244397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3250158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_attention_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3255956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_attention_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3261658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_attention_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3267278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_attention_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3273859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_ctc_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3280273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3286089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_ctc_loss_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3291968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_ctc_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3298080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_ctc_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3303914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_init_dropout_state.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3310114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3316248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_init_dropout_state_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3322265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_init_dropout_state_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3328109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_init_dropout_state_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3333894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3339972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3346621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3352666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3358713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3364602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3370991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3376933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3382746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_flatten_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3389059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3394940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3400778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3406611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3412556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3418257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3424319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_clear_plan_cache.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3430333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3436638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_clear_plan_cache_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3442494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_clear_plan_cache_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3448480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_max_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3454818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3461663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3467521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3473606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3480324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3486351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3492035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3497895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_set_plan_cache_max_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3504173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3510605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3516593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3522427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummax_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3528437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummax_helper_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3534659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummax_helper_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3540449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummax_helper_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3546359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummax_helper_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3552176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummin_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3558297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummin_helper_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3564063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummin_helper_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3569918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummin_helper_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3598225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummin_helper_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3604435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_debug_has_internal_overlap.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3610383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3616060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_debug_has_internal_overlap_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3621732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_debug_has_internal_overlap_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3638671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3639570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3640475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3645921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3651271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3657042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3662973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dim_arange.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3668777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dim_arange_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3674618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dim_arange_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3680220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dim_arange_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3685885Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3691876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3697458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3703209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3708992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3714752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3720945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_matmul_4bit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3726571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_matmul_4bit_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3732201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_matmul_4bit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3737934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_matmul_4bit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3743575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3749492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3755649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3761429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3766971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3772966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3778913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3784688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3790443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3814082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3820234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3826153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3832108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3838088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3843812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3888008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3894161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3900102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3906013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3911898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3917799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3923988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3929850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3935911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3942107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3948328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3954353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3960634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3966583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_dense_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3973093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3979131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_dense_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3985925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_dense_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3992386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_dense_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.3998869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_dense_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4004892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_forward_only.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4011175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4017133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_forward_only_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4023612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_forward_only_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4030158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_forward_only_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4036251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_forward_only_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4042286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4048299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4054541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4061084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4067818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4074225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4080389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4087308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4093146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_sparse_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4099804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4106284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_sparse_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4112378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_sparse_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4118466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_affine_quantized.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4124749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4143630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_affine_quantized_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4144755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_affine_quantized_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4145798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_affine_quantized_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4151252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_per_channel_affine_quantized.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4157844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4164185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_per_channel_affine_quantized_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4170256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_per_channel_affine_quantized_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4176240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_per_channel_affine_quantized_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4182249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_euclidean_dist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4188220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_euclidean_dist_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4194752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_euclidean_dist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4200395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_euclidean_dist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4206250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4212106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4218027Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4224157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4230558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4236725Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4243131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4249128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4255404Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4261466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4267508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4273677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4279784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4286983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4293649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4299552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4305799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4312197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4318997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4325239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4331582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4338936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4345132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4351511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4357733Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4364044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4370315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4376438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4420108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2c.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4425889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2c_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4431765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2c_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4437775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2c_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4449811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2c_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4455689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2r.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4461366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2r_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4467401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2r_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4473170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2r_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4478905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2r_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4506578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_r2c.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4512669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_r2c_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4518728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_r2c_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4524523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_r2c_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4530402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_r2c_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4536279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fill_mem_eff_dropout_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4542278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4548088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4554100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4559931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4566246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4572403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4578758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4584455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4590594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4596663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4602472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4608205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4614482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4620100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4625708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4631470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4637767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4643574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_abs.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4649396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_abs_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4655452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_abs_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4661197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_abs_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4666890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_abs_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4672599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_acos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4678743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_acos_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4685079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_acos_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4690864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_acos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4696535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_acos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4702235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4707992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcdiv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4715308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4720713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcdiv_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4726472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcdiv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4737564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcdiv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4743539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4749684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4755721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcmul_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4761535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4767596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4773535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_add_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4779423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_add_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4785260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_add_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4791193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_add_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4797381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_asin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4803777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_asin_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4809668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_asin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4815425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_asin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4821212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_asin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4827082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_atan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4833222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_atan_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4839081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_atan_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4844865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_atan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4851394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_atan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4857120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_ceil.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4863223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_ceil_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4869040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_ceil_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4875079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_ceil_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4880944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_ceil_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4886805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4893236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4899034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_max_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4904899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_max_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4910698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_max_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4916672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_min.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4922899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4928899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_min_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4934784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_min_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4940597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_min_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4947149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4953921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4961447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_copy_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4967734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4973805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4979967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4985928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.4997310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cosh_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5003272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cosh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5009290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5015825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5022171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cos_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5028529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cos_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5034567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5040573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5046559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5052827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_div_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5058907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_div_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5064855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_div_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5071159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_div_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5077286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5083172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5089488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erfc_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5095466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erfc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5101931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erfc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5107654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erfc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5113969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erf_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5120177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erf_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5126192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5132159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5167247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5168166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5169251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_expm1_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5170445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_expm1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5171509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_expm1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5173251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_expm1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5179405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_exp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5185327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_exp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5191355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_exp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5197315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_exp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5203409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_floor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5209302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_floor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5215109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_floor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5221052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_floor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5226811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_floor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5232911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_frac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5239036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_frac_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5244842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_frac_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5250854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_frac_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5256626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_frac_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5262605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5268695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lerp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5274761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lerp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5280528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lerp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5310233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lerp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5316064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5322228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5328229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lgamma_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5334048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lgamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5340011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lgamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5345674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5351416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log10.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5357750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log10_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5363589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log10_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5369276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log10_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5375120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log10_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5381236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5387229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log1p_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5393039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log1p_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5398705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log1p_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5404450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log1p_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5410293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5416396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log2_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5422566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log2_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5432997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5438970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5445106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5450969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5457506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5463187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5469303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5475107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_maximum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5481034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_maximum_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5486944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_maximum_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5492965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_maximum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5498874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_maximum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5505276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_max_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5511323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_max_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5517316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_max_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5523210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_max_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5529280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_minimum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5535573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_minimum_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5541429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_minimum_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5547513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_minimum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5554125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_minimum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5560597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_mul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5566473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_mul_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5572087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_mul_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5578212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_mul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5584138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_mul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5590289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5596535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_neg_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5602505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_neg_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5608364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_neg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5614188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_neg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5620049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5626357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5632450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5638523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5644641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5654382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5658091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_pow_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5664281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_pow_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5670161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_pow_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5676437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_pow_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5682451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_reciprocal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5689817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5694372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_reciprocal_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5700255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_reciprocal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5706325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_reciprocal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5712126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5718915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_round_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5729634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_round_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5736818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_round_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5741496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_round_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5747103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_rsqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5753544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5759558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_rsqrt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5765357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_rsqrt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5771090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_rsqrt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5776901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5783073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5788830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sigmoid_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5794921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sigmoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5801173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sigmoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5806971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5834622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sign_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5840758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sign_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5846833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sign_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5852686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sign_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5858880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5864993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5871320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sinh_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5877330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sinh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5883271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5889039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5905200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sin_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5905674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5909360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5948922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5949398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5949958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5950430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sqrt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5952321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sqrt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5958538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sqrt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5964753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5971617Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sub_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5978327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sub_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5984409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sub_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5990201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sub_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.5996211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6007609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6014061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tanh_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6019862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tanh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6025891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6031849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6038047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tan_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6043799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tan_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6049718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6055878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6061819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_trunc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6068151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_trunc_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6074073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_trunc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6079834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_trunc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6085529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_trunc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6135420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_zero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6141875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_zero_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6147757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_zero_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6153832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_zero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6160023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_zero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6165933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_async.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6173851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_async_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6217790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_async_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6218269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_async_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6218809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6219426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6219921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_scalar_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6220385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_scalar_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6221127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6227280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6233822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range_for_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6240358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6246408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6253125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6259209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6265301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6271273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adagrad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6277413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adagrad_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6283160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adagrad_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6289423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adagrad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6295296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adagrad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6301281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6307248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6313657Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6320394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6326995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6333604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6345572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6347668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6353564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6359661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6365545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6371646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6377825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6384010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_dropout_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6390091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_dropout_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6396117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6402024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6408763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6415818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6421917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6427859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6434239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6440276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6446225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6452374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6458625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6464869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6470819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6477354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6483413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6495184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6502147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6508224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sdp_choice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6514352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sdp_choice_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6520418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sdp_choice_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6526417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sdp_choice_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6533276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sdp_choice_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6539944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sdp_choice_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6545927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6553396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6559334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6565387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6571392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6594913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6601008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6607044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6613330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6619540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6625451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6631374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6637449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6643792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6661029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6661483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_gather_sparse_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6663452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.6669631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_gather_sparse_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8881166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_gather_sparse_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8882384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8883465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8884729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8886005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8887383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8888622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8889900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8890986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8892032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grouped_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8893010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grouped_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8893990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grouped_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8895302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grouped_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8896316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_compatible_shallow_copy_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8897532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8898777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_compatible_shallow_copy_type_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8899882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_compatible_shallow_copy_type_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8900974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_same_storage_numel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8902115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_same_storage_numel_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8903283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_same_storage_numel_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8904308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_same_storage_numel_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8905312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_bin_edges.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8906450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8907643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_bin_edges_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8908709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_bin_edges_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8909728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_bin_edges_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8910735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_cts.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8911945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8913262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_cts_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8914487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_cts_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8915534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_cts_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8916556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8933609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8939919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_tensors_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8946104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_tensors_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8952068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_tensors_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8957879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_index_put_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8963739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_index_put_impl_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8969876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_index_put_impl_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8975766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_index_put_impl_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8981304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_index_put_impl_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8987164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_index_put_impl_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8993396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_index_put_impl_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.8999378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9009484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9015804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9021589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9027220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9033151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9039123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9044923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9050925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_int_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9056726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_int_mm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9085603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_int_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9091398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_int_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9097140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_int_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9103459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_all_true.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9110069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_all_true_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9115964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_all_true_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9121531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_all_true_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9127577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_any_true.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9133960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_any_true_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9140331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_any_true_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9145811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_any_true_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9152038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_zerotensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9158364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_zerotensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9164576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_zerotensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9202163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_zerotensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9203228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_jagged_to_padded_dense_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9204348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_jagged_to_padded_dense_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9205480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_jagged_to_padded_dense_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9206655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_jagged_to_padded_dense_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9207832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_jagged_to_padded_dense_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9209847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lazy_clone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9216060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lazy_clone_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9221928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lazy_clone_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9227842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lazy_clone_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9233802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_check_errors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9240082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9246003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_check_errors_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9253174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_check_errors_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9257969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9264181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9270275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9276569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9282446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9288241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9293912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9300028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9305785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9312318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9318363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9324568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9330661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9336676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9343096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9349435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9355868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9365690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigvals_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9377550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigvals_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9387428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigvals_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9393560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigvals_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9400081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9406597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9418180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9424295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9430623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9443550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9449923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9456262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9462374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9469415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9475176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9481220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9487358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9493687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9499711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9506542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9512215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9518535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9524246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9530535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9536458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9542385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9549167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9555204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9561328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_local_scalar_dense.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9567153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_local_scalar_dense_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9573046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_local_scalar_dense_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9579227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_local_scalar_dense_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9585258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_local_scalar_dense_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9591299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9597317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9603081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9608964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9614795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9620591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9626965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9633599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9639507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9645622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9652128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9657909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9664207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9670510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9677133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9683645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9689744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9695612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9701909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9708043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9713844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9719498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lstm_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9725792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lstm_mps_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9731490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lstm_mps_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9737098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lstm_mps_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9750432Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lu_with_info.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9757122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lu_with_info_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9763048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lu_with_info_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9768603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lu_with_info_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9774433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dep_token.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9780097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dep_token_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9785848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dep_token_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9796064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dep_token_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9801758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9808286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9814165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9820576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9826474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9832451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9847706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9853693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9859499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9865344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_channel_quantized_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9871880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9877890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_channel_quantized_tensor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9884036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_channel_quantized_tensor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9890169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_channel_quantized_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9896201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_channel_quantized_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9902148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_tensor_quantized_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9908211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9914292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9920774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9926808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9932699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9938635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_scale.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9945071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_scale_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9950999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_scale_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9957013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_scale_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9962801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_scale_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9968603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9974753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9980802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9986760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9993346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:11.9999529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0005515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0011538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0017659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0023656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0029690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0035821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0042202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mixed_dtypes_linear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0047984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mixed_dtypes_linear_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0053665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mixed_dtypes_linear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0059814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mixed_dtypes_linear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0066083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_reshape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0072403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0078237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_reshape_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0084315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_reshape_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0090301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0096471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0102649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_transpose_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0109328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_transpose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0115545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_transpose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0121743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0128215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0144197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0150308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0156813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution_transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0163760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0170237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution_transpose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0184932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution_transpose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0196315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0198024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0205338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0211872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0218535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0225158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_no_training.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0231885Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0238521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_no_training_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0244891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_no_training_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0251222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0257671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_multi_head_attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0264095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_multi_head_attention_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0269998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_multi_head_attention_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0276497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_multi_head_attention_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0282887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_multi_head_attention_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0289278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_multi_head_attention_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0294969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0307153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0312792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0319269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0325433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0330942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0336713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0342326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0347811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0354156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0360570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0366675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0372533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0378480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0384167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0390279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_and_nested_example.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0396528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0402480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_and_nested_example_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0408382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_and_nested_example_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0414384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0420792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0426817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0437549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0443834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0449848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0455756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0461933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0468043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_jagged_dummy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0474422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_jagged_dummy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0480150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_jagged_dummy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0486246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_lengths.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0492380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_lengths_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0498149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_lengths_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0504385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_max_seqlen.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0510577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_max_seqlen_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0516533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_max_seqlen_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0522545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_min_seqlen.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0528910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_min_seqlen_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0534807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_min_seqlen_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0540678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_offsets.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0546928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_offsets_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0552601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_offsets_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0558671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_ragged_idx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0565527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_ragged_idx_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0571957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_ragged_idx_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0578083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0584067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0590954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0597228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0603672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0609714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0615695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0621687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0627662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_select_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0633884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_select_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0641012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_select_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0646793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_sum_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0652556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_sum_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0658645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_sum_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0665351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0671531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0677823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0700979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0702080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0703213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0709816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0716571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0722648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0728636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0734653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0967146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_tensor_list.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0977730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0983563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_tensor_list_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0989701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_tensor_list_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.0995602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1001598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1007961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1013847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1019927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_softmax_with_shape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1025867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_softmax_with_shape_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1031795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_softmax_with_shape_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1037888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_storage_offsets.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1044424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1050453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_storage_offsets_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1057036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_storage_offsets_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1062737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_strides.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1068618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1074649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_strides_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1080581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_strides_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1086466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1092603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1099183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1106037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1112067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1118476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1124719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1147021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1153761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1160145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1171062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1177213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1183782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1190700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1215329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1216561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1217616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1218653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1224366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_new_zeros_with_same_feature_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1230954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1237707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1243782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1250451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_available.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1255998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_available_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1261769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_available_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1272218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_available_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1279134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_spatial_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1285612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1291970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_spatial_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1298570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_spatial_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1304884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1310354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1315996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1321527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1327441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1333791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1339667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1345651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1352455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1358936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1364766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1370775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_padded_dense_to_jagged_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1377483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_padded_dense_to_jagged_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1383909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_padded_dense_to_jagged_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1389588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_padded_dense_to_jagged_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1395586Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_padded_dense_to_jagged_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1401614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_circular.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1407407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_circular_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1413332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_circular_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1418826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_circular_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1424733Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_enum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1430664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_enum_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1436418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_enum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1441939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_enum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1448056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_packed_sequence.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1454391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1460295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_packed_sequence_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1466797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_packed_sequence_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1472694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1479038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1484834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1491110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1497134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1503147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1509874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1516495Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1523091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1529174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1535381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1541622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1547531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pin_memory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1554157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pin_memory_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1559827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pin_memory_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1565762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pin_memory_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1571580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1577759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1583679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1589861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1595910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1601845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1608781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1614892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1620607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1626419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1632552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1639376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1668644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1674650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1681004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_propagate_xla_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1687208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1698811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_propagate_xla_data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1700192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_propagate_xla_data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1707837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_remove_batch_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1714102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1720709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_remove_batch_dim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1726713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_remove_batch_dim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1733914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1738813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1745233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1752104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1758037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1764668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1770982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1777271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1783415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1789498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1795506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1801218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1807487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1813281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1819540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1825635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_from_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1832050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1838511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_from_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1844433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_from_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1850551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_resize_output.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1867445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_resize_output_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1873970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_resize_output_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1880183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_resize_output_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1886196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_resize_output_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1892135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_rowwise_prune.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1898410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_rowwise_prune_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1905255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_rowwise_prune_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1911598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_rowwise_prune_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1917783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_safe_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1924274Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_safe_softmax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1930101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_safe_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1936042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_safe_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1942151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1948288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1954317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1960698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1966771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1973013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1978825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_saturate_weight_to_fp16.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1984879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1991110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_saturate_weight_to_fp16_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.1996798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_saturate_weight_to_fp16_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2002954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_attention_math.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2008858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2015219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2021381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2027445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2034337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_attention_math_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2040468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_attention_math_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2046946Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2054025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2060222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2066504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2072933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2079282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2085420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2091775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2098782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2105038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2111892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2117981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2124431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2131067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2137193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2143550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2149711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2155975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2163400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2169635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2175901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2182598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2189027Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2195635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2202991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2228018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2229321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2230532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2231756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2236592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2242972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2249154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2255557Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2263180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2268579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2274544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2280727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2287283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2293095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2299129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2305451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_grouped_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2312029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_grouped_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2318720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_grouped_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2324671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_grouped_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2330381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2336098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_mm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2342301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2348087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2354418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2360236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_segment_reduce_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2366545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2372378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_segment_reduce_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2378350Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_segment_reduce_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2384242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_segment_reduce_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2390702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_segment_reduce_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2396722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_shape_as_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2402625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2407962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_shape_as_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2413350Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_shape_as_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2419532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2425524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2431636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2437907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2443810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2449587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2455250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2461075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2467111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2473256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2479182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2485660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_draw.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2491869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2497799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_draw_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2504080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_draw_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2510660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_ff.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2517338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2523216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_ff_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2529125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_ff_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2534964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_initialize_state.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2541087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2547835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_initialize_state_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2562690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_initialize_state_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2568599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_scramble.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2574929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2580929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_scramble_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2586851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_scramble_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2592713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2598429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2604450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2610445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2616336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2622172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2655298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2661389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2667437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2673655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2679405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2685404Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2691596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2697305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2702996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2708838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2715220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_addmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2721375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_addmm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2727423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_addmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2734250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_addmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2741057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2748208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2755293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2761866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2768429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2774849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2780838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2786828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2792851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2799409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2805175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2816569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2822562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2828647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2834993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2841186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2847477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2853853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2860076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2866302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2872199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2878718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2885047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2891030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2896815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_unsafe.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2903383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2909632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2915591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2922038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2928160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2934441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2940399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2946699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2953309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2959530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2965610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2971609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2977415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2983520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csc_tensor_unsafe.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2989883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.2996075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3001943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3007675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_prod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3014044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3019923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_prod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3025637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_prod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3031362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_sum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3037946Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3043665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_sum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3049888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_sum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3055788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_tensor_unsafe.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3062649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3068552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3074602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3080477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3086372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_backward_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3092925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3099005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_backward_data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3104892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_backward_data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3111182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3117270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3123122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3129210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3134969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mask_projection.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3141292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3147148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mask_projection_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3153167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mask_projection_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3159142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3165384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3171164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3176888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3182695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_reduce_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3188621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3194749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3200736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3206904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_reduce_impl_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3214620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_reduce_impl_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3221463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_addmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3228091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_addmm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3234991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_addmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3241775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_addmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3248304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3262570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3268889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply_dense.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3275318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3281238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3287599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3293552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3299823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3305820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_linear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3312021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_linear_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3318122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_linear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3324383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_linear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3330459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3336462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3342551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3348392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3354459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_tile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3360828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_tile_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3367094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_tile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3373232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_tile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3379153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3385788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_backward_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3392369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3398474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_backward_data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3404460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_backward_data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3410962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3417272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3422780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3429016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3435036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sparse_matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3441321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3447390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sparse_matmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3453204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sparse_matmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3459190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3465128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3471468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3477338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3483282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3489386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3495615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3501600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3507587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3513339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3519276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3524760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3530465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3536306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3542029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3547334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3553149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3559000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3565046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3570758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3576437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3582901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3589315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3595663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3601890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3609063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3633163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3639681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3645472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_grad_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3651332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_grad_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3657541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_grad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3663469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_grad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3669340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3675999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3681585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_ambiguous_defaults.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3687800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3694064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_ambiguous_defaults_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3699959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_ambiguous_defaults_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3706169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3712761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3719577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3726114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3732545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3739113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3745810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3751859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3758618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3764820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3770776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3776679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3783240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3789624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3795902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_check_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3801946Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_check_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3808049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_check_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3814075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_check_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3820583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_functorch_fallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3826484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3832477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_functorch_fallback_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3838561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_functorch_fallback_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3844578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_functorch_fallback_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3850440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_filled_intlist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3856856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3862836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_filled_intlist_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3868786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_filled_intlist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3874866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_filled_intlist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3881058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_floatlist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3887393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3893517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_floatlist_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3899272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_floatlist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3905292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_floatlist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3911207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_intlist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3917338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3923301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_intlist_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3929394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_intlist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3935258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_intlist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3941070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_parallel_materialize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3947134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3952869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_parallel_materialize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3959123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_parallel_materialize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3965137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_serialization_subcmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3972004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3977153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_serialization_subcmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3982805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_serialization_subcmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3988475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_string_default.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.3994817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_string_default_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4000932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_string_default_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4006350Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_string_default_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4012082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_warn_in_autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4018435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_warn_in_autograd_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4024769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_warn_in_autograd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4030738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_warn_in_autograd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4036816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4059049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4064892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4071142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4077496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4084035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4100377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4106643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4113006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4119413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4125893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4131969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4138113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4144105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4150497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4183403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4189520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4195476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4201402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4207675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4214331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4220784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4227786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4234189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4240353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4246795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4252871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4259064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4265218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4272600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4277590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4283614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4289839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4295488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4301151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4306976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4339162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4345401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_cpu_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4351300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_cpu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4356848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_cpu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4362685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_dense.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4368972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_dense_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4374857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_dense_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4381074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_dense_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4386874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4392723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4399012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4404717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsc_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4410605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4416278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4422459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4428173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4434699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4440854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4447091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4452810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4458773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4464916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4470645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4477037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4483236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4489037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csc_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4495148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4501323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4507457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4513346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4519596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4525857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4532077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4538234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4544613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4550789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4556903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4563002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4569297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_semi_structured.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4575289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_semi_structured_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4581161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_semi_structured_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4586938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_semi_structured_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4592879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transformer_encoder_layer_fwd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4599416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4605479Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transformer_encoder_layer_fwd_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4611775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transformer_encoder_layer_fwd_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4617721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transformer_encoder_layer_fwd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4623712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transformer_encoder_layer_fwd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4629717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transform_bias_rescale_qkv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4637131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4643142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transform_bias_rescale_qkv_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4648785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transform_bias_rescale_qkv_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4654858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transform_bias_rescale_qkv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4661075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transform_bias_rescale_qkv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4667102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4673531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4679701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4685558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4691894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4698095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_multi_head_attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4704203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_multi_head_attention_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4710425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_multi_head_attention_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4716556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_multi_head_attention_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4723066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_multi_head_attention_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4740326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_scaled_dot_attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4741542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4747699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_scaled_dot_attention_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4753775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_scaled_dot_attention_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4760118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_scaled_dot_attention_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4766932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4773337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4780288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4787512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4794475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4801189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4807863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4814750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4820089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4826152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4833427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4839599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4845051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unpack_dual.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4850932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unpack_dual_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4856395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unpack_dual_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4862303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unpack_dual_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4867720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4873810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4879645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4885450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4890896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index_put.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4896758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4913758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index_put_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4914829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index_put_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4915831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4920374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4925885Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4931877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4937614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4943809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4949762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4956027Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4961672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4967656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_view_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4973331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_view_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4979144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_view_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4985105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4991133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.4997579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.5003504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.5009448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.5015392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.5021533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.5027663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.5033807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6223021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6259146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6260366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6261467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6262524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6263620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6264993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6271227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6277674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6283898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6290374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6296476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6302837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6310255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6315400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6321733Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6327871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6334169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6341093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6346198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6352186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6358079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6364130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6370075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6376361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6382378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6388561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6395307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6401390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6407386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6437068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6443260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6449330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6469503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6476239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6482498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6488475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6494562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6500713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6506867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6513724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6520033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6526206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6532441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6539012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6545006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6550862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6556776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6562649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6568507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6575714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6582150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6588062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6593731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6600077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6605973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6611765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6617565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6624016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6629798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6635695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6642225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6648064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6654742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6660670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6666674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6672761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6699063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6705344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6711570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6717775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6723985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6729907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6735920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6742112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6748006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6754459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_ctc_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6760231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_ctc_loss_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6765967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_ctc_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6772352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_ctc_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6777781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6783977Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6789903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6795747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6801683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_compressed_sparse_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6807651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_compressed_sparse_indices_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6813492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_compressed_sparse_indices_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6819305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_compressed_sparse_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6825787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_compressed_sparse_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6831322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6837590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6843652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6849709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6855839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6861899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6867626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6873574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6879673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6886013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6892188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6898031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6903836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_coo_tensor_args.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6910004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6916046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6922268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6928164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csc_tensor_args.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6934449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6940336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6946427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6953050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csr_tensor_args.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6959153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6965808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6989706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.6995608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7001005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7007409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7013304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7019241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7025107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7030864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7036522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7042346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7048224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7053829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7059452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7065246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7071167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7077154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7083148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7089383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7095301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7101271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7107248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7114330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7120074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7126220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7132287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int8pack_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7138201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int8pack_mm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7144194Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int8pack_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7149896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int8pack_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7155828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7162454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7195469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_differentiable_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7201763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7207710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_differentiable_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7213813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_differentiable_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7219842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7225999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7232323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7238930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7245360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7251158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7257349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7263579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7270287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7275654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7281709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7287725Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7293734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7299351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7305258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_linear_prepack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7311214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7317726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_linear_prepack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7323587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_linear_prepack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7329573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7335750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7341530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7347447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:19:12.7361851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PadNd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7366974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Parallel-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7372938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Parallel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7378010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelFuture.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7383105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelNative.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7388386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelOpenMP.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7393948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PTThreadPool.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7399234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PythonTorchFunctionTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7405205Z creating build\bdist.win-amd64\wheel\torch\include\ATen\quantized 2025-07-24T05:19:12.7408603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\quantized\QTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\quantized 2025-07-24T05:19:12.7413981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\quantized\Quantizer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\quantized 2025-07-24T05:19:12.7419537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\record_function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7425573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\RedispatchFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7450496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\RegistrationDeclarations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7463790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ROCmFABackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7469253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SavedTensorHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7474762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7479814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ScalarOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7485640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7490724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SDPBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7496234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SequenceNumber.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7507014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SmallVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7512191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseCsrTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7517804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseCsrTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7524056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7541178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7546829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\StorageUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7551877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7557151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7562756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorGeometry.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7568402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIndexing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7574620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7581049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIteratorInternal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7586571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7592223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorNames.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7598007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorOperators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7603566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7609253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorSubclassLikeUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7614781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7620570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ThreadLocalPythonObjects.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7626127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ThreadLocalState.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7642488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TracerMode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7647439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TypeDefault.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7652679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7658108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Version.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7663396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\VmapGeneratedPlumbing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7685873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\WrapDimUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7691583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\WrapDimUtilsMulti.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:19:12.7697773Z creating build\bdist.win-amd64\wheel\torch\include\ATen\xpu 2025-07-24T05:19:12.7701329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-07-24T05:19:12.7707093Z creating build\bdist.win-amd64\wheel\torch\include\ATen\xpu\detail 2025-07-24T05:19:12.7710315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\detail\XPUHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu\detail 2025-07-24T05:19:12.7715914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\PinnedMemoryAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-07-24T05:19:12.7721063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUContext.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-07-24T05:19:12.7749068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUDevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-07-24T05:19:12.7749979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-07-24T05:19:12.7750922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-07-24T05:19:12.7761854Z creating build\bdist.win-amd64\wheel\torch\include\c10 2025-07-24T05:19:12.7766848Z creating build\bdist.win-amd64\wheel\torch\include\c10\core 2025-07-24T05:19:12.7769594Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\alignment.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.7774768Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Allocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.7779999Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\AutogradState.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.7785395Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Backend.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.7800465Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CachingDeviceAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.7805847Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CompileTimeFunctionPointer.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.7811122Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ConstantSymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.7816590Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Contiguity.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.7821873Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CopyBytes.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.7827207Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CPUAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.7832675Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DefaultDtype.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.7837917Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DefaultTensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.7843242Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.7848431Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceArray.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.7853770Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.7859078Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceType.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.7864603Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DispatchKey.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.7870507Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DispatchKeySet.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.7876589Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DynamicCast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.7881974Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Event.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.7896450Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\GeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.7901717Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\GradMode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.7907346Z creating build\bdist.win-amd64\wheel\torch\include\c10\core\impl 2025-07-24T05:19:12.7910761Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\alloc_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:19:12.7916371Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\COW.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:19:12.7921772Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\COWDeleter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:19:12.7927480Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\DeviceGuardImplInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:19:12.7944223Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\FakeGuardImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:19:12.7949867Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\GPUTrace.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:19:12.7955677Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\HermeticPyObjectTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:19:12.7960549Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\InlineDeviceGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:19:12.7965961Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\InlineEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:19:12.7971457Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\InlineStreamGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:19:12.7977134Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\LocalDispatchKeySet.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:19:12.7982849Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\PyInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:19:12.7988364Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\PyObjectSlot.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:19:12.7994584Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\PythonDispatcherTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:19:12.8000085Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\SizesAndStrides.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:19:12.8005682Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\TorchDispatchModeTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:19:12.8011268Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\VirtualGuardImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:19:12.8017263Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\InferenceMode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8023061Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8029119Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\MemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8034814Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\OptionalRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8039927Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\PyHandleCache.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8091354Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\QEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8096499Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\QScheme.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8101970Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\RefcountedDeleter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8107421Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SafePyObject.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8112902Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8128685Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8134784Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ScalarTypeToTypeMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8140445Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8145818Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\StorageImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8151295Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Stream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8156793Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\StreamGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8163051Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymbolicShapeMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8168481Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymBool.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8174187Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymFloat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8179304Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymInt.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8184660Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymIntArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8190375Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8205235Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\TensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8212175Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\TensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8218296Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\thread_pool.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8223804Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\UndefinedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8229200Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\WrapDimMinimal.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:19:12.8235205Z creating build\bdist.win-amd64\wheel\torch\include\c10\cuda 2025-07-24T05:19:12.8238584Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAAlgorithm.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:19:12.8244667Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAAllocatorConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:19:12.8272060Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDACachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:19:12.8273159Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDADeviceAssertion.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:19:12.8274179Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDADeviceAssertionHost.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:19:12.8277952Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAException.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:19:12.8283918Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:19:12.8289986Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAGraphsC10Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:19:12.8294254Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:19:12.8299890Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMacros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:19:12.8305403Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMathCompat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:19:12.8310931Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMiscFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:19:12.8316481Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAStream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:19:12.8323468Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\driver_api.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:19:12.8329356Z creating build\bdist.win-amd64\wheel\torch\include\c10\cuda\impl 2025-07-24T05:19:12.8332879Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl\CUDAGuardImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda\impl 2025-07-24T05:19:12.8338390Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl\CUDATest.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda\impl 2025-07-24T05:19:12.8343553Z creating build\bdist.win-amd64\wheel\torch\include\c10\macros 2025-07-24T05:19:12.8346717Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\cmake_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-07-24T05:19:12.8352361Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\Export.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-07-24T05:19:12.8357542Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-07-24T05:19:12.8362969Z creating build\bdist.win-amd64\wheel\torch\include\c10\metal 2025-07-24T05:19:12.8366135Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\atomic.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-24T05:19:12.8371258Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\common.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-24T05:19:12.8376335Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\expm1f.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-24T05:19:12.8381489Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\indexing.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-24T05:19:12.8387032Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\random.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-24T05:19:12.8392194Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\reduction_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-24T05:19:12.8407658Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\special_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-24T05:19:12.8413615Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-24T05:19:12.8419127Z creating build\bdist.win-amd64\wheel\torch\include\c10\mobile 2025-07-24T05:19:12.8422524Z copying build\lib.win-amd64-cpython-39\torch\include\c10\mobile\CPUCachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\mobile 2025-07-24T05:19:12.8428394Z copying build\lib.win-amd64-cpython-39\torch\include\c10\mobile\CPUProfilingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\mobile 2025-07-24T05:19:12.8433836Z creating build\bdist.win-amd64\wheel\torch\include\c10\test 2025-07-24T05:19:12.8437013Z creating build\bdist.win-amd64\wheel\torch\include\c10\test\util 2025-07-24T05:19:12.8440266Z copying build\lib.win-amd64-cpython-39\torch\include\c10\test\util\complex_math_test_common.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\test\util 2025-07-24T05:19:12.8446471Z copying build\lib.win-amd64-cpython-39\torch\include\c10\test\util\complex_test_common.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\test\util 2025-07-24T05:19:12.8451824Z copying build\lib.win-amd64-cpython-39\torch\include\c10\test\util\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\test\util 2025-07-24T05:19:12.8458162Z creating build\bdist.win-amd64\wheel\torch\include\c10\util 2025-07-24T05:19:12.8461468Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\AbortHandler.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8466775Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\accumulate.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8472134Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\AlignOf.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8477734Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ApproximateClock.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8492902Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Array.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8527805Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8533172Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8538428Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8543646Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16-math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8549026Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8554645Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\bits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8559814Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Bitset.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8565022Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\bit_cast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8570819Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\C++17.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8576051Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\CallOnce.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8581072Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8593083Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8598446Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8603749Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ConstexprCrc.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8609493Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\copysign.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8614814Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DeadlockDetection.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8620107Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Deprecated.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8629695Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8634957Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DynamicCounter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8650252Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Enumerate.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8655792Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\env.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8660880Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\error.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8665786Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Exception.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8671744Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ExclusivelyOwned.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8677331Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ExclusivelyOwnedTensorTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8682611Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\FbcodeMaps.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8688102Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Flags.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8693505Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\flat_hash_map.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8699801Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float4_e2m1fn_x2.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8705130Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e4m3fn-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8720394Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e4m3fn.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8725862Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e4m3fnuz-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8731351Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e4m3fnuz.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8736795Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e5m2-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8742530Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e5m2.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8748066Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e5m2fnuz-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8753910Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e5m2fnuz.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8797762Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e8m0fnu-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8798191Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e8m0fnu.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8798607Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_fnuz_cvt.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8799064Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\floating_point_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8799478Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\FunctionRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8799889Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Gauge.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8805646Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\generic_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8811089Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Half-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8816588Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Half.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8822427Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\hash.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8827665Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\IdWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8833303Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\int128.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8838758Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\IntrusiveList.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8844108Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\intrusive_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8850363Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\irange.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8864980Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Lazy.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8870836Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\LeftRight.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8876324Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\llvmMathExtras.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8882385Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Load.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8887657Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Logging.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8893139Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\logging_is_google_glog.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8898712Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\logging_is_not_google_glog.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8937760Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\MathConstants.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8943195Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\MaybeOwned.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8948921Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Metaprogramming.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8954341Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\NetworkFlow.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8974210Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\numa.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8979391Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Optional.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8984542Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\OptionalArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8990427Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\order_preserving_flat_hash_map.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.8996930Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\overflows.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9002549Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\overloaded.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9008001Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ParallelGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9013299Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\python_stub.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9018425Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\qint32.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9023410Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\qint8.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9028463Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint2x4.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9033812Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint4x2.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9048219Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint8.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9053297Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Registry.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9059354Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\safe_numerics.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9064866Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ScopeExit.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9070441Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Semaphore.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9076305Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\signal_handler.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9081961Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\SmallBuffer.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9087374Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\SmallVector.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9093733Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\sparse_bitset.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9099725Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ssize.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9105172Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\static_tracepoint.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9110721Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\static_tracepoint_elfx86.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9126618Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\strides.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9131866Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\StringUtil.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9138012Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\string_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9143346Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\string_view.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9149455Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\strong_type.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9185697Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Synchronized.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9191262Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\tempfile.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9196789Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ThreadLocal.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9202483Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ThreadLocalDebugInfo.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9208141Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\thread_name.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9213651Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Type.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9219033Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeCast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9224458Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9230270Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeIndex.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9235843Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeList.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9241766Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeSafeSignMath.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9256805Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9257718Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Unicode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9259405Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\UniqueVoidPtr.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9265055Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Unroll.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9270648Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\WaitCounter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9276491Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\WaitCounterDynamicBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9281971Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\win32-headers.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:19:12.9297616Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu 2025-07-24T05:19:12.9310557Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\impl 2025-07-24T05:19:12.9313863Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\impl\XPUGuardImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu\impl 2025-07-24T05:19:12.9323627Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\test 2025-07-24T05:19:12.9326782Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\test\impl 2025-07-24T05:19:12.9329880Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\test\impl\XPUTest.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu\test\impl 2025-07-24T05:19:12.9334998Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUCachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-07-24T05:19:12.9340480Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUDeviceProp.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-07-24T05:19:12.9345823Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUException.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-07-24T05:19:12.9360213Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-07-24T05:19:12.9365588Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUMacros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-07-24T05:19:12.9370923Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUStream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-07-24T05:19:12.9376413Z creating build\bdist.win-amd64\wheel\torch\include\caffe2 2025-07-24T05:19:12.9379589Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\core 2025-07-24T05:19:12.9382746Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\common.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-07-24T05:19:12.9387904Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\macros.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-07-24T05:19:12.9393062Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\timer.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-07-24T05:19:12.9398620Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\perfkernels 2025-07-24T05:19:12.9402034Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels\batch_box_cox_vec.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\perfkernels 2025-07-24T05:19:12.9407381Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels\common.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\perfkernels 2025-07-24T05:19:12.9412959Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels\embedding_lookup_idx.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\perfkernels 2025-07-24T05:19:12.9418425Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\serialize 2025-07-24T05:19:12.9421639Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\crc_alt.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-07-24T05:19:12.9428576Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\file_adapter.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-07-24T05:19:12.9434299Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\inline_container.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-07-24T05:19:12.9439775Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\in_memory_adapter.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-07-24T05:19:12.9455770Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\istream_adapter.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-07-24T05:19:12.9461280Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\read_adapter_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-07-24T05:19:12.9466348Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\versions.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-07-24T05:19:12.9472655Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\utils 2025-07-24T05:19:12.9475865Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\fixed_divisor.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-07-24T05:19:12.9481140Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\proto_wrap.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-07-24T05:19:12.9490982Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\string_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-07-24T05:19:12.9496240Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\utils\threadpool 2025-07-24T05:19:12.9508890Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool\pthreadpool-cpp.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils\threadpool 2025-07-24T05:19:12.9514264Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool\pthreadpool.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils\threadpool 2025-07-24T05:19:12.9519678Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool\ThreadPool.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils\threadpool 2025-07-24T05:19:12.9534339Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool\ThreadPoolCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils\threadpool 2025-07-24T05:19:12.9539681Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool\thread_pool_guard.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils\threadpool 2025-07-24T05:19:12.9544969Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool\WorkersPool.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils\threadpool 2025-07-24T05:19:12.9550338Z copying build\lib.win-amd64-cpython-39\torch\include\cpuinfo.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:12.9567933Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:12.9572663Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:12.9577972Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_config.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:12.9583465Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_debug.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:12.9589231Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_ocl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:12.9594437Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_ocl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:12.9599676Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:12.9605227Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:12.9610897Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl_types.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:12.9616520Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:12.9621691Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:12.9626998Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool_iface.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:12.9656568Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_types.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:12.9662097Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_version.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:12.9667796Z copying build\lib.win-amd64-cpython-39\torch\include\experiments-config.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:12.9673714Z creating build\bdist.win-amd64\wheel\torch\include\fbgemm 2025-07-24T05:19:12.9677126Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\ConvUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9682822Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\Fbgemm.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9688740Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmBuild.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9694290Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmConvert.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9709429Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmEmbedding.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9715163Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmFP16.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9720541Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmFP32.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9725945Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmFPCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9731563Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI64.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9736931Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI8DepthwiseAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9742697Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI8DirectconvAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9748919Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI8Spmdm.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9767631Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmPackMatrixB.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9768611Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmSparse.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9769544Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FloatConversion.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9773609Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\OutputProcessing-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9779644Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\PackingTraits-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9784289Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9791682Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtilsAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9806209Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtilsAvx512.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9811499Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtilsNeon.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9816784Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\SimdUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9822316Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\spmmUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9837147Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\spmmUtilsAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9838166Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9842818Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9848140Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\UtilsAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:19:12.9854163Z creating build\bdist.win-amd64\wheel\torch\include\fmt 2025-07-24T05:19:12.9857323Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\args.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:19:12.9862490Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\base.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:19:12.9868938Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\chrono.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:19:12.9875318Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\color.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:19:12.9880976Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\compile.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:19:12.9886502Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\core.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:19:12.9891498Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\format-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:19:12.9908597Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\format.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:19:12.9915549Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\os.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:19:12.9920863Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\ostream.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:19:12.9926344Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\printf.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:19:12.9932359Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\ranges.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:19:12.9938032Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\std.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:19:12.9943687Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\xchar.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:19:12.9949027Z creating build\bdist.win-amd64\wheel\torch\include\fp16 2025-07-24T05:19:12.9952213Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\bitcasts.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-07-24T05:19:12.9957577Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\fp16.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-07-24T05:19:12.9963238Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\psimd.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-07-24T05:19:12.9968674Z copying build\lib.win-amd64-cpython-39\torch\include\fp16.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:12.9974041Z copying build\lib.win-amd64-cpython-39\torch\include\fxdiv.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:12.9989256Z creating build\bdist.win-amd64\wheel\torch\include\google 2025-07-24T05:19:12.9993184Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf 2025-07-24T05:19:12.9996734Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\any.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0002151Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\any.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0007832Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\api.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0015234Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arena.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0021072Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arenastring.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0065756Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arena_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0066578Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler 2025-07-24T05:19:13.0067442Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\code_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler 2025-07-24T05:19:13.0068677Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\command_line_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler 2025-07-24T05:19:13.0074072Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\cpp 2025-07-24T05:19:13.0077510Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\cpp\cpp_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\cpp 2025-07-24T05:19:13.0084400Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\csharp 2025-07-24T05:19:13.0087457Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp\csharp_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\csharp 2025-07-24T05:19:13.0093011Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp\csharp_names.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\csharp 2025-07-24T05:19:13.0098546Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\importer.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler 2025-07-24T05:19:13.0113502Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\java 2025-07-24T05:19:13.0116875Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java\java_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\java 2025-07-24T05:19:13.0122368Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java\java_names.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\java 2025-07-24T05:19:13.0127823Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\js 2025-07-24T05:19:13.0131251Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js\js_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\js 2025-07-24T05:19:13.0137012Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js\well_known_types_embed.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\js 2025-07-24T05:19:13.0142551Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\objectivec 2025-07-24T05:19:13.0146364Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec\objectivec_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\objectivec 2025-07-24T05:19:13.0151679Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec\objectivec_helpers.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\objectivec 2025-07-24T05:19:13.0157163Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\parser.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler 2025-07-24T05:19:13.0162992Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\php 2025-07-24T05:19:13.0166918Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\php\php_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\php 2025-07-24T05:19:13.0172014Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\plugin.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler 2025-07-24T05:19:13.0177211Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\plugin.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler 2025-07-24T05:19:13.0183734Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\python 2025-07-24T05:19:13.0187222Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\python\python_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\python 2025-07-24T05:19:13.0192812Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\ruby 2025-07-24T05:19:13.0196272Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\ruby\ruby_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\ruby 2025-07-24T05:19:13.0201852Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0208427Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0218888Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor_database.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0226723Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\duration.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0230735Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\dynamic_message.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0243548Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\empty.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0244716Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\extension_set.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0250262Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\extension_set_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0280819Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\field_mask.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0281925Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\generated_enum_reflection.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0283049Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\generated_enum_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0284191Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\generated_message_reflection.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0285536Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\generated_message_table_driven.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0297295Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\generated_message_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0303480Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\has_bits.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0309100Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\implicit_weak_message.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0316330Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\inlined_string_field.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0327114Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\io 2025-07-24T05:19:13.0329918Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\coded_stream.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-07-24T05:19:13.0336417Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\gzip_stream.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-07-24T05:19:13.0341762Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\io_win32.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-07-24T05:19:13.0347005Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\printer.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-07-24T05:19:13.0352316Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\strtod.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-07-24T05:19:13.0368276Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\tokenizer.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-07-24T05:19:13.0374108Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\zero_copy_stream.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-07-24T05:19:13.0379519Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\zero_copy_stream_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-07-24T05:19:13.0385130Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\zero_copy_stream_impl_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-07-24T05:19:13.0390900Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0396845Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_entry.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0402324Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_entry_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0408791Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_field.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0414312Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_field_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0420116Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_field_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0435702Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_type_handler.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0441814Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\message.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0448325Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\message_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0453903Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\metadata.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0459444Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\metadata_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0482071Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\parse_context.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0487952Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\port.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0493366Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\reflection.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0499210Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\reflection_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0504702Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\repeated_field.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0511522Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\service.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0516994Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\source_context.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0531866Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\struct.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0538535Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\stubs 2025-07-24T05:19:13.0541749Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\bytestream.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:19:13.0547121Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\callback.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:19:13.0552680Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\casts.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:19:13.0558057Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\common.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:19:13.0563266Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\fastmem.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:19:13.0568437Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\hash.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:19:13.0583856Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\logging.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:19:13.0589417Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\macros.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:19:13.0594888Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\map_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:19:13.0600519Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\mutex.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:19:13.0605789Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\once.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:19:13.0611086Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\platform_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:19:13.0616222Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\port.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:19:13.0621372Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\status.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:19:13.0627099Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\stl_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:19:13.0639897Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\stringpiece.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:19:13.0641068Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\strutil.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:19:13.0645226Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\template_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:19:13.0687122Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\text_format.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0693186Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\timestamp.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0698797Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\type.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0704861Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\unknown_field_set.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0710617Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\util 2025-07-24T05:19:13.0714124Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\delimited_message_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-07-24T05:19:13.0719639Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\field_comparator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-07-24T05:19:13.0724970Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\field_mask_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-07-24T05:19:13.0736262Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\json_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-07-24T05:19:13.0741708Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\message_differencer.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-07-24T05:19:13.0747555Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\time_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-07-24T05:19:13.0752915Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\type_resolver.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-07-24T05:19:13.0758853Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\type_resolver_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-07-24T05:19:13.0763864Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\wire_format.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0769627Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\wire_format_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0776088Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\wrappers.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:19:13.0792760Z copying build\lib.win-amd64-cpython-39\torch\include\ittnotify-zca.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:13.0821818Z copying build\lib.win-amd64-cpython-39\torch\include\ittnotify.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:13.0829200Z copying build\lib.win-amd64-cpython-39\torch\include\jitprofiling.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:13.0835392Z creating build\bdist.win-amd64\wheel\torch\include\kineto 2025-07-24T05:19:13.0838755Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\AbstractConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:19:13.0844139Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityProfilerInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:19:13.0849502Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityTraceInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:19:13.0864248Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityType.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:19:13.0869532Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ClientInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:19:13.0874821Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\Config.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:19:13.0880392Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\GenericTraceActivity.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:19:13.0885650Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\IActivityProfiler.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:19:13.0891331Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ILoggerObserver.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:19:13.0896662Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ITraceActivity.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:19:13.0901825Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\libkineto.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:19:13.0907107Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\LoggingAPI.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:19:13.0912531Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\output_base.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:19:13.0918131Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ThreadUtil.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:19:13.0923608Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\time_since_epoch.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:19:13.0929096Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\TraceSpan.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:19:13.0934785Z creating build\bdist.win-amd64\wheel\torch\include\legacy 2025-07-24T05:19:13.0938117Z copying build\lib.win-amd64-cpython-39\torch\include\legacy\ittnotify.h -> build\bdist.win-amd64\wheel\.\torch\include\legacy 2025-07-24T05:19:13.0944143Z copying build\lib.win-amd64-cpython-39\torch\include\libittnotify.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:13.0949458Z copying build\lib.win-amd64-cpython-39\torch\include\libshm.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:13.0955237Z creating build\bdist.win-amd64\wheel\torch\include\mimalloc-2.2 2025-07-24T05:19:13.0958647Z copying build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2\mimalloc-new-delete.h -> build\bdist.win-amd64\wheel\.\torch\include\mimalloc-2.2 2025-07-24T05:19:13.0964160Z copying build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2\mimalloc-override.h -> build\bdist.win-amd64\wheel\.\torch\include\mimalloc-2.2 2025-07-24T05:19:13.0969624Z copying build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2\mimalloc-stats.h -> build\bdist.win-amd64\wheel\.\torch\include\mimalloc-2.2 2025-07-24T05:19:13.0985367Z copying build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2\mimalloc.h -> build\bdist.win-amd64\wheel\.\torch\include\mimalloc-2.2 2025-07-24T05:19:13.0991817Z creating build\bdist.win-amd64\wheel\torch\include\oneapi 2025-07-24T05:19:13.0995837Z creating build\bdist.win-amd64\wheel\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1004486Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1011931Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1023215Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_common.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1028685Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_common.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1034473Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_common_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1049948Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_config.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1055512Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_debug.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1061059Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1067516Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1074618Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph_ocl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1080744Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph_ocl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1086458Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph_sycl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1092189Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph_sycl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1097827Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1104002Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ocl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1109592Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ocl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1115692Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ocl_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1121542Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_sycl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1127212Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_sycl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1132915Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_sycl_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1138489Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_threadpool.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1155008Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_threadpool.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1160873Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_threadpool_iface.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1166480Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1173210Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ukernel.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1178851Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ukernel.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1185260Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ukernel_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1190823Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_version.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1196559Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_version_hash.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:19:13.1202184Z copying build\lib.win-amd64-cpython-39\torch\include\psimd.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:13.1208179Z copying build\lib.win-amd64-cpython-39\torch\include\pthreadpool.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:13.1215330Z creating build\bdist.win-amd64\wheel\torch\include\pybind11 2025-07-24T05:19:13.1218677Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\attr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:19:13.1224521Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\buffer_info.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:19:13.1230295Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\cast.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:19:13.1237297Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\chrono.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:19:13.1242676Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:19:13.1247846Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:19:13.1269389Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\detail 2025-07-24T05:19:13.1270217Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\class.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-24T05:19:13.1283627Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-24T05:19:13.1289996Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\cpp_conduit.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-24T05:19:13.1295335Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\descr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-24T05:19:13.1300596Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\exception_translation.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-24T05:19:13.1315801Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\init.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-24T05:19:13.1321600Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\internals.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-24T05:19:13.1327678Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-24T05:19:13.1333108Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\type_caster_base.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-24T05:19:13.1339311Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\value_and_holder.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-24T05:19:13.1344792Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\eigen 2025-07-24T05:19:13.1347978Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-07-24T05:19:13.1353238Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\matrix.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-07-24T05:19:13.1359044Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-07-24T05:19:13.1370161Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:19:13.1375057Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\embed.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:19:13.1380294Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eval.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:19:13.1385626Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:19:13.1390871Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\gil.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:19:13.1396307Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\gil_safe_call_once.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:19:13.1401521Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\iostream.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:19:13.1407559Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\numpy.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:19:13.1413191Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\operators.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:19:13.1418594Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\options.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:19:13.1423685Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\pybind11.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:19:13.1430945Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\pytypes.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:19:13.1437738Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\stl 2025-07-24T05:19:13.1441006Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl\filesystem.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\stl 2025-07-24T05:19:13.1446520Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:19:13.1451870Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl_bind.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:19:13.1457695Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\type_caster_pyobject_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:19:13.1462996Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\typing.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:19:13.1468197Z copying build\lib.win-amd64-cpython-39\torch\include\sleef.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:13.1476665Z creating build\bdist.win-amd64\wheel\torch\include\torch 2025-07-24T05:19:13.1490772Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc 2025-07-24T05:19:13.1493878Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api 2025-07-24T05:19:13.1496961Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include 2025-07-24T05:19:13.1500268Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.1503523Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\all.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.1508607Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\arg.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.1513841Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.1518998Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.1524516Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:19:13.1528233Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-07-24T05:19:13.1531655Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader\base.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-07-24T05:19:13.1537049Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader\stateful.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-07-24T05:19:13.1542482Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader\stateless.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-07-24T05:19:13.1547835Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:19:13.1553214Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader_options.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:19:13.1558779Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:19:13.1572753Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets\base.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:19:13.1578354Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets\chunk.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:19:13.1584099Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets\map.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:19:13.1589540Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets\mnist.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:19:13.1594873Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets\shared.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:19:13.1600146Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets\stateful.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:19:13.1662531Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:19:13.1677456Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:19:13.1682588Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\detail 2025-07-24T05:19:13.1686143Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail\data_shuttle.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\detail 2025-07-24T05:19:13.1691260Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail\queue.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\detail 2025-07-24T05:19:13.1696805Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail\sequencers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\detail 2025-07-24T05:19:13.1702140Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\example.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:19:13.1707694Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\iterator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:19:13.1713447Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:19:13.1716920Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers\base.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:19:13.1722553Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers\custom_batch_request.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:19:13.1727756Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers\distributed.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:19:13.1733572Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers\random.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:19:13.1739000Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers\sequential.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:19:13.1753983Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers\serialize.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:19:13.1759422Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers\stream.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:19:13.1764880Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:19:13.1796880Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:19:13.1797909Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms\base.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:19:13.1799292Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms\collate.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:19:13.1800750Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms\lambda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:19:13.1802234Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms\stack.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:19:13.1803620Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:19:13.1804953Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:19:13.1810518Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\worker_exception.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:19:13.1815962Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.1832433Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\detail 2025-07-24T05:19:13.1833589Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\detail\static.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\detail 2025-07-24T05:19:13.1834926Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\detail\TensorDataContainer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\detail 2025-07-24T05:19:13.1836218Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\enum.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.1850208Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\expanding_array.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.1855461Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\fft.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.1860806Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\imethod.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.1865856Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\jit.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.1871151Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.1876952Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nested.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.1882610Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:19:13.1885937Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\cloneable.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:19:13.1891667Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:19:13.1895092Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\activation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:19:13.1901263Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\batchnorm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:19:13.1906657Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\conv.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:19:13.1912119Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\distance.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:19:13.1927589Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:19:13.1932886Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\embedding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:19:13.1938516Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\fold.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:19:13.1943910Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\instancenorm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:19:13.1949418Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\linear.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:19:13.1954793Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\loss.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:19:13.1960861Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\normalization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:19:13.1966645Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\padding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:19:13.1972106Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\pixelshuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:19:13.1977514Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\pooling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:19:13.1999794Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\upsampling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:19:13.2005482Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\vision.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:19:13.2010848Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:19:13.2016245Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:19:13.2032928Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:19:13.2038706Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2042128Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\activation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2048556Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\adaptive.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2053857Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\batchnorm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2059240Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\common.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2065125Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:19:13.2078486Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\any.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:19:13.2084196Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\any_module_holder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:19:13.2089858Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\any_value.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:19:13.2095632Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:19:13.2110272Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\moduledict.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:19:13.2116124Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\modulelist.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:19:13.2121851Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\named_any.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:19:13.2127558Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterdict.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:19:13.2133148Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterlist.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:19:13.2138766Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\sequential.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:19:13.2144376Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\conv.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2150097Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\distance.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2155623Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2161015Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\embedding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2166638Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\fold.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2172051Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\instancenorm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2177781Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\linear.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2183179Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\loss.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2189487Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\normalization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2195066Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\padding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2200567Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\pixelshuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2206381Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\pooling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2212322Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2217887Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\transformer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2223536Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\transformercoder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2229241Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\transformerlayer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2234983Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\upsampling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2240563Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2245973Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:19:13.2251507Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:19:13.2257266Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:19:13.2260689Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\activation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:19:13.2266723Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\adaptive.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:19:13.2271973Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\batchnorm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:19:13.2277563Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\conv.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:19:13.2282878Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\distance.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:19:13.2297377Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:19:13.2302869Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\embedding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:19:13.2308226Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\fold.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:19:13.2313475Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\instancenorm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:19:13.2318799Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\linear.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:19:13.2324568Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\loss.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:19:13.2330702Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\normalization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:19:13.2336149Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\padding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:19:13.2341692Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\pixelshuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:19:13.2347360Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\pooling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:19:13.2352974Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:19:13.2358382Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\transformer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:19:13.2364077Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\transformercoder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:19:13.2369706Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\transformerlayer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:19:13.2407956Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\upsampling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:19:13.2413625Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\vision.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:19:13.2418651Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:19:13.2424065Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-07-24T05:19:13.2427487Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\parallel\data_parallel.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-07-24T05:19:13.2433279Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\pimpl-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:19:13.2438787Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\pimpl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:19:13.2444181Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\utils 2025-07-24T05:19:13.2447575Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils\clip_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\utils 2025-07-24T05:19:13.2453724Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils\convert_parameters.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\utils 2025-07-24T05:19:13.2467069Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils\rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\utils 2025-07-24T05:19:13.2472260Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:19:13.2477616Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.2483096Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:19:13.2486496Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\adagrad.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:19:13.2491840Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\adam.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:19:13.2497793Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\adamw.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:19:13.2503833Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\lbfgs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:19:13.2509088Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\optimizer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:19:13.2514253Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\rmsprop.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:19:13.2524265Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-07-24T05:19:13.2527744Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers\lr_scheduler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-07-24T05:19:13.2533481Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers\reduce_on_plateau_scheduler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-07-24T05:19:13.2538659Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers\step_lr.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-07-24T05:19:13.2553587Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\serialize.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:19:13.2559194Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\sgd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:19:13.2564469Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.2569765Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\ordered_dict.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.2575897Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\python 2025-07-24T05:19:13.2579240Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\python\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\python 2025-07-24T05:19:13.2584733Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\python.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.2590557Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\serialize 2025-07-24T05:19:13.2594106Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize\archive.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\serialize 2025-07-24T05:19:13.2599470Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize\input-archive.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\serialize 2025-07-24T05:19:13.2604654Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize\output-archive.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\serialize 2025-07-24T05:19:13.2609775Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\serialize 2025-07-24T05:19:13.2625814Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.2631174Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.2636288Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\special.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.2642587Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\torch.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.2647627Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.2652737Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.2658105Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\version.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.2663130Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:19:13.2669659Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2673080Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\anomaly_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2678510Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2687581Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\autograd_not_implemented_fallback.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2690554Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\cpp_hook.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2741835Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\custom_function.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2742307Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\edge.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2742771Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\engine.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2743263Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\forward_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2743744Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\function.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2743990Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\functions 2025-07-24T05:19:13.2744580Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions\accumulate_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\functions 2025-07-24T05:19:13.2770378Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions\basic_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\functions 2025-07-24T05:19:13.2776239Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions\comm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\functions 2025-07-24T05:19:13.2781360Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions\pybind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\functions 2025-07-24T05:19:13.2797209Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\functions 2025-07-24T05:19:13.2802494Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\functions 2025-07-24T05:19:13.2808268Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\FunctionsManual.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2814219Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\function_hook.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2820231Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\generated 2025-07-24T05:19:13.2823639Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated\Functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\generated 2025-07-24T05:19:13.2834346Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated\python_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\generated 2025-07-24T05:19:13.2839655Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated\python_return_types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\generated 2025-07-24T05:19:13.2855653Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated\VariableType.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\generated 2025-07-24T05:19:13.2861298Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated\variable_factories.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\generated 2025-07-24T05:19:13.2867500Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated\ViewFuncs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\generated 2025-07-24T05:19:13.2874366Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\grad_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2878893Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\graph_task.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2884393Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\InferenceMode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2894948Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\input_buffer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2900330Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\input_metadata.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2905820Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\jit_decomp_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2911213Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\profiler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2916352Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\profiler_kineto.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2922042Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\profiler_legacy.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2937271Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\profiler_python.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2942472Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_anomaly_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2948147Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2953367Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_cpp_function.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2958792Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_engine.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2964409Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_enum_tag.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2969616Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_fft_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2975787Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_function.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2998414Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_hook.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.2998962Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_legacy_variable.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.3002652Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_linalg_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.3027232Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_nested_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.3027817Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_nn_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.3028364Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_saved_variable_hooks.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.3028979Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_sparse_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.3032715Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_special_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.3038220Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_torch_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.3057177Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_variable.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.3060260Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_variable_indexing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.3065915Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\record_function_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.3071508Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\saved_variable.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.3077476Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\saved_variable_hooks.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.3082736Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\symbolic.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.3088021Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\utils 2025-07-24T05:19:13.3092123Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils\error_messages.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\utils 2025-07-24T05:19:13.3098173Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils\grad_layout_contract.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\utils 2025-07-24T05:19:13.3102326Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils\lambda_post_hook.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\utils 2025-07-24T05:19:13.3108108Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils\python_arg_parsing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\utils 2025-07-24T05:19:13.3123261Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils\warnings.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\utils 2025-07-24T05:19:13.3128298Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils\wrap_outputs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\utils 2025-07-24T05:19:13.3140602Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\variable.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.3146312Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\VariableTypeUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.3151603Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\variable_info.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:19:13.3157076Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\copy_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.3162434Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\cpu 2025-07-24T05:19:13.3165683Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cpu\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cpu 2025-07-24T05:19:13.3170766Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\cuda 2025-07-24T05:19:13.3173972Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\comm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:19:13.3179473Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\CUDAPluggableAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:19:13.3184671Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\device_set.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:19:13.3189766Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\Event.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:19:13.3194778Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\GdsFile.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:19:13.3210603Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\memory_snapshot.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:19:13.3216274Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:19:13.3221272Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\nccl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:19:13.3226799Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\python_comm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:19:13.3231836Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\python_nccl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:19:13.3237166Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\Stream.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:19:13.3242123Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\THCP.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:19:13.3247023Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:19:13.3252116Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\CudaIPCTypes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.3273664Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DataLoader.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.3278818Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.3283950Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DeviceAccelerator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.3289130Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed 2025-07-24T05:19:13.3292481Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd 2025-07-24T05:19:13.3295728Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd 2025-07-24T05:19:13.3301505Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\context 2025-07-24T05:19:13.3305134Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context\container.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\context 2025-07-24T05:19:13.3310514Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context\context.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\context 2025-07-24T05:19:13.3315826Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\engine 2025-07-24T05:19:13.3319187Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\engine\dist_engine.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\engine 2025-07-24T05:19:13.3324819Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\functions 2025-07-24T05:19:13.3328292Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\functions\recvrpc_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\functions 2025-07-24T05:19:13.3333622Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\functions\sendrpc_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\functions 2025-07-24T05:19:13.3338975Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\python_autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd 2025-07-24T05:19:13.3353880Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:19:13.3362246Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\autograd_metadata.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:19:13.3367779Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_req.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:19:13.3373175Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_resp.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:19:13.3388610Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_req.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:19:13.3394235Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_resp.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:19:13.3399652Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:19:13.3420379Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_req.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:19:13.3421149Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_resp.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:19:13.3421834Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_req.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:19:13.3425690Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_resp.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:19:13.3430351Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd 2025-07-24T05:19:13.3436697Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3440034Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\Backend.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3445457Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\Backoff.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3450904Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\c10d.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3455837Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\comm.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3461359Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-07-24T05:19:13.3469271Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_collectives\ControlCollectives.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-07-24T05:19:13.3474930Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_collectives\StoreCollectives.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-07-24T05:19:13.3480379Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\control_plane 2025-07-24T05:19:13.3494897Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_plane\Handlers.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\control_plane 2025-07-24T05:19:13.3500328Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_plane\WorkerServer.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\control_plane 2025-07-24T05:19:13.3506069Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\cuda 2025-07-24T05:19:13.3510166Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda\CUDAEventCache.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\cuda 2025-07-24T05:19:13.3516101Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda\StreamBlock.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\cuda 2025-07-24T05:19:13.3521950Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda\utils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\cuda 2025-07-24T05:19:13.3527122Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\debug.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3532737Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\default_comm_hooks.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3538339Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\error.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3543697Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\exception.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3549331Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\FakeProcessGroup.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3554993Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\FileStore.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3560881Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\FlightRecorder.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3566557Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\FlightRecorderDetail.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3573469Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\Functional.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3579065Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\GlooDeviceFactory.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3584832Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\GroupRegistry.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3590195Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\HashStore.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3595795Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\logger.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3601149Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\logging.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3606523Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\NanCheck.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3611904Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\NCCLUtils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3618139Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ParamCommsUtils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3633768Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\PrefixStore.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3639465Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ProcessGroup.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3645783Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ProcessGroupGloo.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3651960Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ProcessGroupGlooDetail.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3657969Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ProcessGroupMPI.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3663600Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ProcessGroupNCCL.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3670395Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ProcessGroupUCC.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3676449Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ProcessGroupWrapper.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3692988Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\PyProcessGroup.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3698717Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\python_comm_hook.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3704411Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\quantization 2025-07-24T05:19:13.3708164Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization\quantization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\quantization 2025-07-24T05:19:13.3713819Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization\quantization_gpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\quantization 2025-07-24T05:19:13.3719064Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization\quantization_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\quantization 2025-07-24T05:19:13.3733979Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\RankLocal.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3739769Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\reducer.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3745709Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\reducer_timer.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3751260Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\sequence_num.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3757072Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\socket.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3762380Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\socket_fmt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3772727Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\Store.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3778727Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:19:13.3783409Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:19:13.3827378Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:19:13.3828090Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryTypes.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:19:13.3828833Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryUtils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:19:13.3829475Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\DMAConnectivity.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:19:13.3830093Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\intra_node_comm.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:19:13.3830728Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\SymmetricMemory.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:19:13.3835929Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\TCPStore.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3852344Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\TCPStoreBackend.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3857790Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\TraceUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3863616Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\Types.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3869033Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\UCCTracing.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3874400Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\UCCUtils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3880191Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\UnixSockUtils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3885394Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\Utils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3891314Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\WinSockUtils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3896535Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\Work.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:19:13.3902655Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.3906026Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\agent_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.3911440Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\message.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.3916894Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\metrics 2025-07-24T05:19:13.3920346Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\metrics\RpcMetricsHandler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc\metrics 2025-07-24T05:19:13.3926096Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\profiler 2025-07-24T05:19:13.3929905Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\profiler\remote_profiler_manager.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc\profiler 2025-07-24T05:19:13.3935771Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\profiler\server_process_global_profiler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc\profiler 2025-07-24T05:19:13.3941269Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\python_call.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.3957067Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\python_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.3962790Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\python_remote_call.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.3968498Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\python_resp.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.3974098Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\python_rpc_handler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.3980560Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\py_rref.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.3986687Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\request_callback.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.3992245Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\request_callback_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.3998364Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\request_callback_no_python.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.4003569Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\rpc.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.4008430Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\rpc_agent.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.4014323Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\rpc_command_base.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.4019771Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\rref_context.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.4025756Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\rref_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.4031703Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\rref_proto.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.4037603Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\script_call.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.4043255Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\script_remote_call.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.4058890Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\script_resp.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.4064495Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\tensorpipe_agent.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.4070493Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\tensorpipe_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.4110023Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\testing 2025-07-24T05:19:13.4113694Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing\faulty_tensorpipe_agent.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc\testing 2025-07-24T05:19:13.4119354Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing\testing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc\testing 2025-07-24T05:19:13.4130893Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\torchscript_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.4146699Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.4152360Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\unpickled_python_call.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.4158331Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\unpickled_python_remote_call.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.4163949Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:19:13.4169689Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Dtype.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.4175206Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DynamicTypes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.4181215Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\dynamo 2025-07-24T05:19:13.4184929Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\cache_entry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:19:13.4190845Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\compiled_autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:19:13.4197399Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\cpp_shim.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:19:13.4202933Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\cpython_defs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:19:13.4215503Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\cpython_includes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:19:13.4221037Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\debug_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:19:13.4226941Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\eval_frame.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:19:13.4232758Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\eval_frame_cpp.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:19:13.4238144Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\extra_state.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:19:13.4244113Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\framelocals_mapping.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:19:13.4290366Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\guards.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:19:13.4291483Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:19:13.4294989Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\python_compiled_autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:19:13.4300557Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:19:13.4311639Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Event.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.4312565Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.4355561Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\export 2025-07-24T05:19:13.4356529Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export\example_upgraders.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\export 2025-07-24T05:19:13.4357651Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export\pt2_archive_constants.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\export 2025-07-24T05:19:13.4358718Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export\pybind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\export 2025-07-24T05:19:13.4359729Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export\upgrader.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\export 2025-07-24T05:19:13.4360773Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Export.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.4361518Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\functorch 2025-07-24T05:19:13.4362295Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\functorch\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\functorch 2025-07-24T05:19:13.4363754Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\fx 2025-07-24T05:19:13.4367813Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\fx\node.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\fx 2025-07-24T05:19:13.4372457Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.4379686Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor 2025-07-24T05:19:13.4382105Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_eager 2025-07-24T05:19:13.4385713Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_eager\kernel_holder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_eager 2025-07-24T05:19:13.4391491Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_eager\kernel_meta_info.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_eager 2025-07-24T05:19:13.4397564Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:19:13.4400964Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include\array_ref.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:19:13.4406818Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include\common.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:19:13.4411754Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include\cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:19:13.4417159Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include\cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:19:13.4422327Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include\mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:19:13.4437362Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include\xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:19:13.4442573Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_package 2025-07-24T05:19:13.4446106Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package\model_package_loader.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_package 2025-07-24T05:19:13.4451447Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package\pybind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_package 2025-07-24T05:19:13.4457119Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:19:13.4471695Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:19:13.4477779Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:19:13.4483309Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:19:13.4498597Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:19:13.4504115Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:19:13.4509598Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner\pybind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:19:13.4515236Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:19:13.4518740Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\arrayref_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:19:13.4524466Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\constant_type.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:19:13.4529884Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\device_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:19:13.4545819Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:19:13.4551537Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\mini_array_ref.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:19:13.4557053Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\model.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:19:13.4562645Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\model_base.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:19:13.4568870Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\model_container.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:19:13.4574842Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\scalar_to_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:19:13.4580307Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\sycl_runtime_wrappers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:19:13.4585897Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\thread_local.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:19:13.4591887Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:19:13.4597867Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\utils_cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:19:13.4603345Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\utils_xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:19:13.4609710Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:19:13.4613221Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:19:13.4616639Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c\macros.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:19:13.4622444Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c\shim.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:19:13.4652525Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c\shim_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:19:13.4657995Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c\shim_deprecated.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:19:13.4663271Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c\shim_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:19:13.4669003Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c\shim_xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:19:13.4686388Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-24T05:19:13.4689569Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-24T05:19:13.4695645Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-24T05:19:13.4701917Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-24T05:19:13.4717851Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-24T05:19:13.4723801Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\mkldnn_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:19:13.4730018Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\oss_proxy_executor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:19:13.4745058Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\proxy_executor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:19:13.4750849Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\tensor_converter.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:19:13.4756820Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:19:13.4762372Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\array_ref_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor 2025-07-24T05:19:13.4768206Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_prefix.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor 2025-07-24T05:19:13.4774498Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:19:13.4794273Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\array_ref.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:19:13.4795504Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\common.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:19:13.4796707Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:19:13.4797895Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:19:13.4801709Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-24T05:19:13.4815823Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-24T05:19:13.4821333Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-24T05:19:13.4826580Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-24T05:19:13.4831868Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-24T05:19:13.4836892Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:19:13.4841833Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:19:13.4847330Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\inductor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor 2025-07-24T05:19:13.4852924Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\static_cuda_launcher.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor 2025-07-24T05:19:13.4858285Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\instruction_counter 2025-07-24T05:19:13.4861889Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\instruction_counter\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\instruction_counter 2025-07-24T05:19:13.4866935Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\itt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.4872090Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\itt_wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.4877832Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit 2025-07-24T05:19:13.4881111Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\api 2025-07-24T05:19:13.4884550Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api\compilation_unit.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\api 2025-07-24T05:19:13.4890052Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api\function_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\api 2025-07-24T05:19:13.4895282Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api\method.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\api 2025-07-24T05:19:13.4900637Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api\module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\api 2025-07-24T05:19:13.4906606Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api\object.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\api 2025-07-24T05:19:13.4922319Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends 2025-07-24T05:19:13.4925733Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-07-24T05:19:13.4931096Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_debug_handler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-07-24T05:19:13.4936665Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_debug_info.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-07-24T05:19:13.4942436Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_detail.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-07-24T05:19:13.4957461Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_exception.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-07-24T05:19:13.4962983Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-07-24T05:19:13.4968254Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-07-24T05:19:13.4973650Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_preprocess.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-07-24T05:19:13.4978790Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_resolver.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-07-24T05:19:13.4984424Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml 2025-07-24T05:19:13.4987901Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-07-24T05:19:13.4991205Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\cpp\context.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-07-24T05:19:13.4996632Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:19:13.5000092Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLCompiler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:19:13.5005637Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLExecutor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:19:13.5010811Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLFeatureProvider.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:19:13.5026872Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLModelWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:19:13.5032937Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLTensorSpec.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:19:13.5038409Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack 2025-07-24T05:19:13.5041931Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-07-24T05:19:13.5045521Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\compiler\xnn_compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-07-24T05:19:13.5051230Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-07-24T05:19:13.5054921Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\executor\xnn_executor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-07-24T05:19:13.5060705Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-07-24T05:19:13.5063921Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\serialization\serializer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-07-24T05:19:13.5069854Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\xnnpack_graph_builder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\xnnpack 2025-07-24T05:19:13.5075549Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen 2025-07-24T05:19:13.5079659Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\cuda 2025-07-24T05:19:13.5083440Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\cuda\interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\cuda 2025-07-24T05:19:13.5089488Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:19:13.5092889Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\arg_spec.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:19:13.5098549Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\codegen.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:19:13.5103985Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:19:13.5109678Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-07-24T05:19:13.5113352Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu\fused_kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-07-24T05:19:13.5119244Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu\resource_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-07-24T05:19:13.5125034Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu\temp_file.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-07-24T05:19:13.5130889Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-07-24T05:19:13.5134321Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cuda\fused_kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-07-24T05:19:13.5140897Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cuda\resource_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-07-24T05:19:13.5146566Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\executor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:19:13.5151664Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\fallback.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:19:13.5167852Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\fused_kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:19:13.5173781Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:19:13.5179504Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\kernel_cache.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:19:13.5185508Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\kernel_spec.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:19:13.5191493Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\partition_desc.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:19:13.5197402Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\tensor_desc.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:19:13.5202940Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\tensor_info.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:19:13.5209251Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:19:13.5212463Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\decompose_silu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:19:13.5218114Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\defer_size_check.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:19:13.5223690Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\graph_fuser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:19:13.5229050Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\graph_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:19:13.5265121Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\guard_shape.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:19:13.5270550Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:19:13.5276395Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:19:13.5282148Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\layout_propagation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:19:13.5297368Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\LlgaTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:19:13.5298590Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\operator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:19:13.5300211Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\prepare_binary.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:19:13.5305833Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\cuda 2025-07-24T05:19:13.5309342Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\cuda\cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\cuda 2025-07-24T05:19:13.5315323Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5318756Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\builtin_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5324168Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\canonicalize_modified_loop.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5329439Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\concrete_module_type.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5344671Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\convert_to_ssa.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5350413Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\edit_distance.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5355851Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\error_report.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5361690Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\exit_transforms.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5366843Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\function_schema_parser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5372398Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\inline_loop_condition.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5377512Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\ir_emitter.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5383267Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\lexer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5389233Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\mini_environment.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5394679Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\name_mangler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5399975Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\parser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5405302Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\parser_constants.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5410494Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\parse_string_literal.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5415799Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\resolver.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5421308Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\schema_matching.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5426837Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\schema_type_parser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5432690Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\script_type_parser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5454856Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\source_range.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5461087Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\source_ref.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5466542Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\strtod.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5472076Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\sugared_value.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5478265Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\tracer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5483865Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\tree.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5489289Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\tree_views.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5500719Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\versioned_symbols.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:19:13.5506450Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\ir 2025-07-24T05:19:13.5510154Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\alias_analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:19:13.5515807Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\attributes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:19:13.5521282Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\constants.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:19:13.5526889Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\graph_node_list.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:19:13.5544993Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\graph_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:19:13.5550309Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\ir.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:19:13.5556702Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\irparser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:19:13.5562063Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\ir_views.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:19:13.5568126Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\named_value.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:19:13.5573281Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\node_hashing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:19:13.5579036Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\scope.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:19:13.5584594Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\subgraph_matcher.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:19:13.5597259Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\type_hashing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:19:13.5601038Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\jit_log.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit 2025-07-24T05:19:13.5606536Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\jit_opt_limit.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit 2025-07-24T05:19:13.5653115Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5653927Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\code.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5654757Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-24T05:19:13.5655718Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility\backport.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-24T05:19:13.5657065Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility\backport_manager.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-24T05:19:13.5658750Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility\model_compatibility.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-24T05:19:13.5665927Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility\runtime_compatibility.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-24T05:19:13.5671447Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\debug_info.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5677296Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\file_format.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5693181Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\flatbuffer_loader.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5698587Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\frame.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5703902Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\function.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5709297Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\import.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5714933Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\import_data.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5720646Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\import_export_common.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5726196Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\interpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5731448Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\method.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5737186Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:19:13.5740678Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer\BuildFeatureTracer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:19:13.5746375Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer\CustomClassTracer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:19:13.5751685Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer\KernelDTypeTracer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:19:13.5767080Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer\MobileModelRunner.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:19:13.5772457Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer\OperatorCallTracer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:19:13.5777945Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer\TensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:19:13.5783296Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer\TracerRunner.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:19:13.5788822Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5794524Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\nnc 2025-07-24T05:19:13.5797968Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc\aot_compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\nnc 2025-07-24T05:19:13.5837530Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc\context.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\nnc 2025-07-24T05:19:13.5842832Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc\registry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\nnc 2025-07-24T05:19:13.5848202Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\observer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5853474Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\parse_bytecode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5859220Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\parse_operators.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5864521Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\prim_ops_registery.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5869816Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\profiler_edge.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5875690Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\promoted_prim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5881100Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\quantization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5886982Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\register_ops_common_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5907949Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\train 2025-07-24T05:19:13.5908841Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\export_data.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\train 2025-07-24T05:19:13.5909720Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\train\optim 2025-07-24T05:19:13.5936496Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\optim\sgd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\train\optim 2025-07-24T05:19:13.5937743Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\random.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\train 2025-07-24T05:19:13.5938898Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\sequential.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\train 2025-07-24T05:19:13.5940114Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\type_parser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5944239Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\upgrader_mobile.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:19:13.5961938Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\operator_upgraders 2025-07-24T05:19:13.5962905Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders\upgraders.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\operator_upgraders 2025-07-24T05:19:13.5964202Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders\upgraders_entry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\operator_upgraders 2025-07-24T05:19:13.5966240Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\operator_upgraders 2025-07-24T05:19:13.5971958Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders\version_map.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\operator_upgraders 2025-07-24T05:19:13.5988948Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.5992368Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\add_if_then_else.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.5998806Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\annotate_warns.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6003986Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\autocast.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6009133Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\bailout_graph.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6024394Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\batch_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6029734Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\canonicalize.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6035277Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\canonicalize_graph_fuser_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6040908Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\check_strict_fusion.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6046109Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\clear_profiling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6051493Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\clear_undefinedness.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6057733Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\common_subexpression_elimination.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6062912Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\concat_opt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6068195Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\constant_pooling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6073619Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\constant_propagation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6079840Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\create_autodiff_subgraphs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6085225Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\create_functional_graphs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6091054Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-07-24T05:19:13.6094657Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\dbr_quantization\remove_redundant_aliases.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-07-24T05:19:13.6100283Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\dead_code_elimination.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6105911Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\decompose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6121968Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\device_type_analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6127262Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\dtype_analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6133240Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\eliminate_no_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6138470Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\erase_number_types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6144157Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\fixup_trace_scope_blocks.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6149773Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\fold_conv_bn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6155479Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\fold_linear_bn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6161148Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\freeze_module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6166760Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\frozen_concat_linear.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6183127Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\frozen_conv_add_relu_fusion.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6188404Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\frozen_conv_folding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6194066Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\frozen_graph_optimizations.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6199305Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\frozen_linear_folding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6205229Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\frozen_linear_transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6210439Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\frozen_ops_to_mkldnn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6216168Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\fuse_linear.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6221258Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\fuse_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6281635Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\graph_fuser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6358754Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\graph_rewrite_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6359924Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\guard_elimination.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6361085Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\hoist_conv_packed_params.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6362201Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\inliner.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6366619Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\inline_autodiff_subgraphs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6372359Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\inline_forked_closures.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6377853Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\inline_fork_wait.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6383628Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\inplace_check.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6388940Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\insert_guards.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6405287Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\integer_value_refinement.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6411368Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\lift_closures.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6416836Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\liveness.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6422207Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\loop_unrolling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6427577Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\lower_grad_of.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6433040Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\lower_graph.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6444235Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\lower_tuples.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6450178Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\metal_rewrite.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6455490Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\mkldnn_rewrite.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6461048Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\mobile_optimizer_type.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6466379Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\normalize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6491733Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onednn_graph_fuser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6497896Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:19:13.6501484Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\cast_all_constant_to_floating.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:19:13.6506924Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\constant_fold.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:19:13.6512547Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\constant_map.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:19:13.6518399Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\deduplicate_initializers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:19:13.6533663Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\eliminate_unused_items.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:19:13.6538955Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\eval_peephole.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:19:13.6544570Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\fixup_onnx_controlflow.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:19:13.6549812Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\function_extraction.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:19:13.6555459Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\function_substitution.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:19:13.6560873Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\helper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:19:13.6566637Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\list_model_parameters.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:19:13.6571732Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\naming.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:19:13.6577107Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\onnx_log.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:19:13.6582425Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-07-24T05:19:13.6586058Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\autograd_function_process.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-07-24T05:19:13.6591710Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\common.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-07-24T05:19:13.6598009Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_conversion.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-07-24T05:19:13.6612512Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_encapsulation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-07-24T05:19:13.6617949Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\peephole.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:19:13.6623584Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\prepare_division_for_onnx.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:19:13.6629652Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\preprocess_for_onnx.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:19:13.6635258Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\remove_inplace_ops_for_onnx.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:19:13.6640700Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\scalar_type_analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:19:13.6646486Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\shape_type_inference.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:19:13.6663015Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\unpack_quantized_weights.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:19:13.6668378Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6674255Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\pass_manager.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6680035Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\peephole.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6685486Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\peephole_alias_sensitive.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6690982Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\peephole_dict_idioms.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6696641Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\peephole_list_idioms.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6702780Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\peephole_non_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6708319Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\prepack_folding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6723608Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:19:13.6727095Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\dedup_module_uses.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:19:13.6732785Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\finalize.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:19:13.6738485Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\fusion_passes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:19:13.6745760Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\helper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:19:13.6761603Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\insert_observers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:19:13.6767588Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\insert_quant_dequant.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:19:13.6773374Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\quantization_patterns.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:19:13.6780223Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\quantization_type.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:19:13.6785690Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\register_packed_params.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:19:13.6791446Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\refine_tuple_types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6809412Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\remove_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6810614Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\remove_exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6811795Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\remove_expands.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6815922Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\remove_inplace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6821694Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\remove_mutation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6827726Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\remove_redundant_profiles.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6833620Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\replacement_of_old_operators.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6848786Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\requires_grad_analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6854163Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\restore_mutation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6860600Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\shape_analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6865675Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\specialize_autogradzero.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6871181Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\subgraph_rewrite.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6877152Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\symbolic_shape_analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6882984Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\symbolic_shape_cache.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6888664Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\symbolic_shape_runtime_fusion.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6894317Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\tensorexpr_fuser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6900660Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\update_differentiable_graph_requires_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6906256Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:19:13.6909675Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils\check_alias_annotation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:19:13.6915228Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils\memory_dag.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:19:13.6920943Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils\optimization_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:19:13.6936182Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils\op_registry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:19:13.6941546Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils\subgraph_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:19:13.6947027Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\value_refinement_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6952654Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\variadic_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6958485Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\vulkan_rewrite.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6963989Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\xnnpack_rewrite.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:19:13.6969806Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\python 2025-07-24T05:19:13.6973800Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:19:13.6979017Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\module_python.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:19:13.6984593Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\pybind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:19:13.6989825Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\pybind_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:19:13.6995938Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_arg_flatten.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:19:13.7011189Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_custom_class.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:19:13.7016272Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_dict.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:19:13.7021699Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_ir.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:19:13.7027197Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_ivalue.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:19:13.7032833Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_list.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:19:13.7043708Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_sugared_value.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:19:13.7049173Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_tracer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:19:13.7054773Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_tree_views.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:19:13.7060193Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\script_init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:19:13.7065621Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\update_graph_executor_opt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:19:13.7070859Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\utf8_decoding_ignore.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:19:13.7076056Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\resource_guard.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit 2025-07-24T05:19:13.7091013Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7094605Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\argument_spec.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7100777Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\autodiff.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7106299Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\calculate_necessary_args.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7111589Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\custom_operator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7127061Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\decomposition_registry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7132723Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\decomposition_registry_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7137843Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\exception_message.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7143135Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\graph_executor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7148790Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\graph_executor_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7155017Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\graph_iterator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7160386Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\instruction.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7166028Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-24T05:19:13.7169956Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter\can_emit_inline.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-24T05:19:13.7175548Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter\code_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-24T05:19:13.7181531Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter\frame.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-24T05:19:13.7186845Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter\preprocess_graph.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-24T05:19:13.7202025Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7207423Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\jit_exception.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7213061Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\jit_trace.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7218195Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\logging.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7223492Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\operator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7228923Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\operator_options.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7234183Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\print_handler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7239506Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\profiling_graph_executor_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7254536Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\profiling_record.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7260810Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\register_ops_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7267113Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\script_profile.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7272826Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\serialized_shape_function_registry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7278499Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\shape_function_registry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7283975Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\simple_graph_executor_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7289636Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\slice_indices_adjust.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7295363Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:19:13.7298699Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\fusion.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:19:13.7303980Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:19:13.7339652Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:19:13.7340852Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\memory_planner.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:19:13.7342036Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:19:13.7343175Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\passes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:19:13.7350337Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\ProcessedNodeInputs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:19:13.7351642Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\processed_node_wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:19:13.7356463Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\static_method.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:19:13.7362535Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\te_wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:19:13.7368348Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\symbolic_script.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7382466Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\symbolic_shape_registry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7388327Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\symbolic_shape_registry_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7393593Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\vararg_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7399380Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\variable_tensor_list.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:19:13.7405142Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7413453Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\callstack_debug_info_serialization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7418778Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\export.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7424491Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\export_bytecode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7440145Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\flatbuffer_serializer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7445266Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\flatbuffer_serializer_jit.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7450971Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\import.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7456616Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\import_export_constants.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7462006Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\import_export_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7471545Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\import_export_helpers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7477132Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\import_read.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7482611Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\import_source.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7488882Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\mobile_bytecode_generated.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7495357Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\onnx.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7500587Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\pickle.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7505893Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\pickler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7511174Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\pickler_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7517200Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\python_print.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7522761Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\source_range_serialization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7528344Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\source_range_serialization_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7533732Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\storage_context.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7548671Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\type_name_uniquer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7554658Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\unpickler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:19:13.7560307Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7563780Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7569078Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\block_codegen.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7574351Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\bounds_inference.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7579641Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\bounds_overlap.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7595212Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\codegen.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7601122Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\cpp_codegen.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7606647Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\cpp_intrinsics.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7612440Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\cuda_codegen.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7618224Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\cuda_random.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7623658Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\eval.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7629416Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7669036Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\expr.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7674781Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\external_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7680935Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\external_functions_core.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7686242Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\external_functions_registry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7691916Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\fwd_decls.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7697661Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\graph_opt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7703741Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\half_support.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7709042Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\hash_provider.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7715526Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\intrinsic_symbols.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7721325Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\ir.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7732423Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\ir_cloner.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7738056Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\ir_mutator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7743782Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\ir_printer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7749494Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\ir_simplifier.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7755436Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\ir_verifier.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7761014Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\ir_visitor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7766797Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7772366Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\llvm_codegen.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7778048Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\llvm_jit.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7783357Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\loopnest.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7789564Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\loopnest_randomization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7812841Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\lowerings.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7813425Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\mem_dependency_checker.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7826363Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:19:13.7826960Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\conv2d.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:19:13.7827557Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:19:13.7832730Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\misc.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:19:13.7838740Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\norm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:19:13.7843263Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\operators.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:19:13.7858431Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\pointwise.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:19:13.7863954Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\quantization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:19:13.7869342Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\reduction.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:19:13.7874890Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:19:13.7895775Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\reduction.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7901280Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\registerizer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7906690Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\stmt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7912956Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7918651Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\tensorexpr_init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7923830Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7929274Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\unique_name_manager.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7934926Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\var_substitutor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:19:13.7940950Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\testing 2025-07-24T05:19:13.7944305Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing\catch_utils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\testing 2025-07-24T05:19:13.7949660Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing\file_check.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\testing 2025-07-24T05:19:13.7955353Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing\hooks_for_testing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\testing 2025-07-24T05:19:13.7961246Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.7966693Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy 2025-07-24T05:19:13.7969969Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\backend 2025-07-24T05:19:13.7973346Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend\backend_data.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\backend 2025-07-24T05:19:13.7978687Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend\backend_device.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\backend 2025-07-24T05:19:13.7984573Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend\backend_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\backend 2025-07-24T05:19:13.7990209Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend\lowering_context.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\backend 2025-07-24T05:19:13.8005993Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8009479Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\cache.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8014901Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\config.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8020057Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\debug_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8025901Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\dynamic_ir.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8031357Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\hash.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8046235Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\helpers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8051844Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core\internal_ops 2025-07-24T05:19:13.8055234Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\internal_ops\ltc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core\internal_ops 2025-07-24T05:19:13.8060408Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ir.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8065875Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ir_builder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8071695Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ir_dump_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8077524Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ir_metadata.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8083036Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ir_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8088837Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\lazy_graph_executor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8094502Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\metrics.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8100094Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\multi_wait.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8105851Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core\ops 2025-07-24T05:19:13.8109227Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops\arithmetic_ir_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core\ops 2025-07-24T05:19:13.8114859Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core\ops 2025-07-24T05:19:13.8120289Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\permutation_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8125808Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\shape.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8131635Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\shape_inference.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8137648Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8143064Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\tensor_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8169549Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\tensor_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8175212Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\thread_pool.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8180780Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\trie.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8186313Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\unique.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8201354Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:19:13.8207008Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\generated 2025-07-24T05:19:13.8210503Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated\LazyIr.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\generated 2025-07-24T05:19:13.8220116Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated\LazyNativeFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\generated 2025-07-24T05:19:13.8225811Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated\LazyNonNativeIr.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\generated 2025-07-24T05:19:13.8231664Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\python 2025-07-24T05:19:13.8234930Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\python 2025-07-24T05:19:13.8240205Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python\python_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\python 2025-07-24T05:19:13.8245896Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:19:13.8259150Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\config.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:19:13.8264554Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\dynamic_ir.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:19:13.8270016Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ir_builder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:19:13.8276018Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\ts_backend\ops 2025-07-24T05:19:13.8289727Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops\device_data.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend\ops 2025-07-24T05:19:13.8302445Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops\generic.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend\ops 2025-07-24T05:19:13.8305564Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops\to_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend\ops 2025-07-24T05:19:13.8318493Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\tensor_aten_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:19:13.8319066Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ts_autograd_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:19:13.8324538Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ts_backend_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:19:13.8330530Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ts_eager_fallback.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:19:13.8336572Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ts_lowering_context.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:19:13.8342563Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ts_node.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:19:13.8347178Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ts_node_lowering.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:19:13.8353651Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\MemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.8367915Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.8373537Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\monitor 2025-07-24T05:19:13.8376799Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor\counters.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\monitor 2025-07-24T05:19:13.8382354Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor\events.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\monitor 2025-07-24T05:19:13.8387622Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor\python_init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\monitor 2025-07-24T05:19:13.8393481Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mps 2025-07-24T05:19:13.8396732Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mps\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\mps 2025-07-24T05:19:13.8402237Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mtia 2025-07-24T05:19:13.8405494Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\mtia 2025-07-24T05:19:13.8410759Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mtia\profiler 2025-07-24T05:19:13.8414089Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia\profiler\MTIAMemoryProfiler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\mtia\profiler 2025-07-24T05:19:13.8419793Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\multiprocessing 2025-07-24T05:19:13.8423226Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\multiprocessing\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\multiprocessing 2025-07-24T05:19:13.8428412Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\onnx 2025-07-24T05:19:13.8431780Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx\back_compat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\onnx 2025-07-24T05:19:13.8437137Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\onnx 2025-07-24T05:19:13.8442274Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx\onnx.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\onnx 2025-07-24T05:19:13.8447595Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler 2025-07-24T05:19:13.8451044Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\api.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-07-24T05:19:13.8456625Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\collection.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-07-24T05:19:13.8462764Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\combined_traceback.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-07-24T05:19:13.8468133Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\containers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-07-24T05:19:13.8484570Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\data_flow.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-07-24T05:19:13.8490640Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\events.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-07-24T05:19:13.8495990Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\kineto_client_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-07-24T05:19:13.8501538Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\kineto_shim.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-07-24T05:19:13.8507639Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\orchestration 2025-07-24T05:19:13.8511213Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration\observer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\orchestration 2025-07-24T05:19:13.8516855Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration\python_tracer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\orchestration 2025-07-24T05:19:13.8522582Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration\vulkan.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\orchestration 2025-07-24T05:19:13.8528017Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\perf-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-07-24T05:19:13.8562047Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\perf.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-07-24T05:19:13.8562345Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\python 2025-07-24T05:19:13.8562930Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python\combined_traceback.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\python 2025-07-24T05:19:13.8563447Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\python 2025-07-24T05:19:13.8563963Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python\pybind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\python 2025-07-24T05:19:13.8564501Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\standalone 2025-07-24T05:19:13.8568440Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone\execution_trace_observer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\standalone 2025-07-24T05:19:13.8574190Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone\itt_observer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\standalone 2025-07-24T05:19:13.8580225Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone\nvtx_observer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\standalone 2025-07-24T05:19:13.8595106Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone\privateuse1_observer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\standalone 2025-07-24T05:19:13.8601262Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\stubs 2025-07-24T05:19:13.8604680Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\stubs\base.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\stubs 2025-07-24T05:19:13.8610324Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:19:13.8614040Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\action.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:19:13.8629997Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\communicate.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:19:13.8630727Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\debug_info.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:19:13.8631278Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\dwarf_enums.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:19:13.8646137Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\dwarf_symbolize_enums.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:19:13.8651500Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\eh_frame_hdr.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:19:13.8657109Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\fast_symbolizer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:19:13.8662674Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\fde.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:19:13.8668075Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\lexer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:19:13.8673504Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\line_number_program.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:19:13.8679300Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\mem_file.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:19:13.8684716Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\range_table.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:19:13.8690655Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\sections.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:19:13.8696224Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\unwind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:19:13.8701777Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\unwinder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:19:13.8708316Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\unwind_error.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:19:13.8712345Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-07-24T05:19:13.8752023Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\PyInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.8752473Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\python_dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.8752913Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\python_headers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.8753447Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\QScheme.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.8753890Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\serialization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.8754280Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Size.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.8755721Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\stable 2025-07-24T05:19:13.8768613Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable\library.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\stable 2025-07-24T05:19:13.8774068Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable\ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\stable 2025-07-24T05:19:13.8779740Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\stable 2025-07-24T05:19:13.8785325Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.8790889Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\StorageMethods.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.8796473Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\StorageSharing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.8802417Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Stream.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.8807235Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\tensor 2025-07-24T05:19:13.8810524Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\tensor\python_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\tensor 2025-07-24T05:19:13.8822186Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\THConcat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.8825122Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\THP.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.8830668Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\TypeInfo.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.8835983Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.8841743Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8844930Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\byte_order.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8850443Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\cpp_stacktraces.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8855968Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\cuda_enabled.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8861174Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\device_lazy_init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8877577Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\disable_torch_function.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8883239Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\generated_serialization_types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8890539Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8895795Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\invalid_arguments.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8901242Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\nested.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8914224Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\numpy_stub.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8919645Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\object_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8925333Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\out_types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8930416Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\pybind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8936077Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\pycfunction_helpers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8941693Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\pyobject_preservation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8946844Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\pythoncapi_compat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8953268Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_arg_parser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8959827Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_compat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8965559Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8971005Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_numbers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8986181Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_raii.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8991809Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_scalars.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.8997494Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9002914Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_stub.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9008470Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_symnode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9014412Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_torch_function_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9020619Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_tuples.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9026461Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\schema_info.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9031810Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\six.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9037237Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\structseq.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9052789Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_apply.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9057952Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_dtypes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9063144Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_flatten.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9068780Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_layouts.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9074213Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_list.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9079587Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_memoryformats.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9085055Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_new.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9090832Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_numpy.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9096591Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_qschemes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9111058Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9117040Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\throughput_benchmark-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9122663Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\throughput_benchmark.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9128501Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\torch_dispatch_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9133889Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\variadic.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9139753Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\verbose.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:19:13.9145605Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:19:13.9151449Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\xpu 2025-07-24T05:19:13.9154915Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu\Event.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\xpu 2025-07-24T05:19:13.9160224Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\xpu 2025-07-24T05:19:13.9165403Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu\Stream.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\xpu 2025-07-24T05:19:13.9172209Z copying build\lib.win-amd64-cpython-39\torch\include\torch\custom_class.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-07-24T05:19:13.9178335Z copying build\lib.win-amd64-cpython-39\torch\include\torch\custom_class_detail.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-07-24T05:19:13.9184361Z copying build\lib.win-amd64-cpython-39\torch\include\torch\extension.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-07-24T05:19:13.9199613Z creating build\bdist.win-amd64\wheel\torch\include\torch\headeronly 2025-07-24T05:19:13.9202925Z creating build\bdist.win-amd64\wheel\torch\include\torch\headeronly\macros 2025-07-24T05:19:13.9206433Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros\cmake_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\macros 2025-07-24T05:19:13.9211771Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros\Export.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\macros 2025-07-24T05:19:13.9217403Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\macros 2025-07-24T05:19:13.9223532Z creating build\bdist.win-amd64\wheel\torch\include\torch\headeronly\util 2025-07-24T05:19:13.9226784Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\Exception.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-07-24T05:19:13.9232402Z copying build\lib.win-amd64-cpython-39\torch\include\torch\library.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-07-24T05:19:13.9239178Z copying build\lib.win-amd64-cpython-39\torch\include\torch\script.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-07-24T05:19:13.9245086Z copying build\lib.win-amd64-cpython-39\torch\include\xnnpack.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:19:13.9261798Z creating build\bdist.win-amd64\wheel\torch\jit 2025-07-24T05:19:13.9265013Z copying build\lib.win-amd64-cpython-39\torch\jit\annotations.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9271000Z copying build\lib.win-amd64-cpython-39\torch\jit\frontend.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9277387Z copying build\lib.win-amd64-cpython-39\torch\jit\generate_bytecode.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9283197Z creating build\bdist.win-amd64\wheel\torch\jit\mobile 2025-07-24T05:19:13.9286557Z copying build\lib.win-amd64-cpython-39\torch\jit\mobile\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit\mobile 2025-07-24T05:19:13.9326813Z copying build\lib.win-amd64-cpython-39\torch\jit\quantized.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9337410Z copying build\lib.win-amd64-cpython-39\torch\jit\supported_ops.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9342961Z copying build\lib.win-amd64-cpython-39\torch\jit\unsupported_tensor_ops.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9348163Z copying build\lib.win-amd64-cpython-39\torch\jit\_async.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9371943Z copying build\lib.win-amd64-cpython-39\torch\jit\_await.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9377916Z copying build\lib.win-amd64-cpython-39\torch\jit\_builtins.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9382677Z copying build\lib.win-amd64-cpython-39\torch\jit\_check.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9388293Z copying build\lib.win-amd64-cpython-39\torch\jit\_dataclass_impls.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9394573Z copying build\lib.win-amd64-cpython-39\torch\jit\_decompositions.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9400003Z copying build\lib.win-amd64-cpython-39\torch\jit\_decomposition_utils.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9405295Z copying build\lib.win-amd64-cpython-39\torch\jit\_freeze.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9410828Z copying build\lib.win-amd64-cpython-39\torch\jit\_fuser.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9416360Z copying build\lib.win-amd64-cpython-39\torch\jit\_ir_utils.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9421753Z copying build\lib.win-amd64-cpython-39\torch\jit\_logging.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9426923Z copying build\lib.win-amd64-cpython-39\torch\jit\_monkeytype_config.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9432647Z creating build\bdist.win-amd64\wheel\torch\jit\_passes 2025-07-24T05:19:13.9436191Z copying build\lib.win-amd64-cpython-39\torch\jit\_passes\_property_propagation.py -> build\bdist.win-amd64\wheel\.\torch\jit\_passes 2025-07-24T05:19:13.9441927Z copying build\lib.win-amd64-cpython-39\torch\jit\_passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit\_passes 2025-07-24T05:19:13.9446273Z copying build\lib.win-amd64-cpython-39\torch\jit\_pickle.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9451463Z copying build\lib.win-amd64-cpython-39\torch\jit\_recursive.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9457643Z copying build\lib.win-amd64-cpython-39\torch\jit\_script.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9463918Z copying build\lib.win-amd64-cpython-39\torch\jit\_script.pyi -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9469545Z copying build\lib.win-amd64-cpython-39\torch\jit\_serialization.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9485159Z copying build\lib.win-amd64-cpython-39\torch\jit\_shape_functions.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9491351Z copying build\lib.win-amd64-cpython-39\torch\jit\_state.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9496867Z copying build\lib.win-amd64-cpython-39\torch\jit\_trace.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9503390Z copying build\lib.win-amd64-cpython-39\torch\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:19:13.9509522Z creating build\bdist.win-amd64\wheel\torch\lib 2025-07-24T05:19:13.9512730Z copying build\lib.win-amd64-cpython-39\torch\lib\aoti_custom_ops.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:13.9520921Z copying build\lib.win-amd64-cpython-39\torch\lib\aoti_custom_ops.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:13.9527011Z copying build\lib.win-amd64-cpython-39\torch\lib\asmjit.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:13.9535944Z copying build\lib.win-amd64-cpython-39\torch\lib\asmjit.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:13.9577617Z copying build\lib.win-amd64-cpython-39\torch\lib\backend_with_compiler.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:13.9606562Z copying build\lib.win-amd64-cpython-39\torch\lib\backend_with_compiler.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:13.9612880Z copying build\lib.win-amd64-cpython-39\torch\lib\c10.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:13.9628434Z copying build\lib.win-amd64-cpython-39\torch\lib\c10.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:13.9641107Z copying build\lib.win-amd64-cpython-39\torch\lib\cpuinfo.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:13.9652227Z copying build\lib.win-amd64-cpython-39\torch\lib\dnnl.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:15.9890021Z copying build\lib.win-amd64-cpython-39\torch\lib\fbgemm.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:15.9946980Z copying build\lib.win-amd64-cpython-39\torch\lib\fbgemm.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:15.9965095Z copying build\lib.win-amd64-cpython-39\torch\lib\fmt.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:15.9999946Z copying build\lib.win-amd64-cpython-39\torch\lib\jitbackend_test.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:16.0007231Z copying build\lib.win-amd64-cpython-39\torch\lib\jitbackend_test.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:16.0013243Z copying build\lib.win-amd64-cpython-39\torch\lib\kineto.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:16.0517443Z copying build\lib.win-amd64-cpython-39\torch\lib\libittnotify.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:16.0528323Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotobuf-lite.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:16.0688578Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotobuf.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:16.1687844Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotoc.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:16.3202364Z creating build\bdist.win-amd64\wheel\torch\lib\libshm 2025-07-24T05:19:16.3205661Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\alloc_info.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-07-24T05:19:16.3211517Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\err.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-07-24T05:19:16.3217625Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\libshm.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-07-24T05:19:16.3222825Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\socket.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-07-24T05:19:16.3228601Z creating build\bdist.win-amd64\wheel\torch\lib\libshm_windows 2025-07-24T05:19:16.3231853Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm_windows\libshm.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm_windows 2025-07-24T05:19:16.3237624Z copying build\lib.win-amd64-cpython-39\torch\lib\microkernels-prod.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:16.3427839Z copying build\lib.win-amd64-cpython-39\torch\lib\pthreadpool.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:16.8484612Z copying build\lib.win-amd64-cpython-39\torch\lib\shm.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:16.8491627Z copying build\lib.win-amd64-cpython-39\torch\lib\shm.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:16.8497988Z copying build\lib.win-amd64-cpython-39\torch\lib\sleef.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:16.8753260Z copying build\lib.win-amd64-cpython-39\torch\lib\torch.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:16.8759489Z copying build\lib.win-amd64-cpython-39\torch\lib\torch.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:16.8765754Z copying build\lib.win-amd64-cpython-39\torch\lib\torchbind_test.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:16.8778293Z copying build\lib.win-amd64-cpython-39\torch\lib\torchbind_test.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:16.8784680Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cpu.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:17.1013824Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cpu.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:17.1274176Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_global_deps.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:17.1279918Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_python.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:17.1426513Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_python.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:17.6479146Z copying build\lib.win-amd64-cpython-39\torch\lib\XNNPACK.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:17.6608990Z copying build\lib.win-amd64-cpython-39\torch\lib\_C.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:19:17.6614480Z copying build\lib.win-amd64-cpython-39\torch\library.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:17.6621880Z creating build\bdist.win-amd64\wheel\torch\linalg 2025-07-24T05:19:17.6625218Z copying build\lib.win-amd64-cpython-39\torch\linalg\__init__.py -> build\bdist.win-amd64\wheel\.\torch\linalg 2025-07-24T05:19:17.6632634Z creating build\bdist.win-amd64\wheel\torch\masked 2025-07-24T05:19:17.6636444Z creating build\bdist.win-amd64\wheel\torch\masked\maskedtensor 2025-07-24T05:19:17.6639753Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\binary.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-24T05:19:17.6645503Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\core.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-24T05:19:17.6651407Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\creation.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-24T05:19:17.6656494Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\passthrough.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-24T05:19:17.6663364Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\reductions.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-24T05:19:17.6725982Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\unary.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-24T05:19:17.6731228Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\_ops_refs.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-24T05:19:17.6737379Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-24T05:19:17.6742441Z copying build\lib.win-amd64-cpython-39\torch\masked\_docs.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-07-24T05:19:17.6748560Z copying build\lib.win-amd64-cpython-39\torch\masked\_ops.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-07-24T05:19:17.6755368Z copying build\lib.win-amd64-cpython-39\torch\masked\__init__.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-07-24T05:19:17.6761094Z creating build\bdist.win-amd64\wheel\torch\monitor 2025-07-24T05:19:17.6764245Z copying build\lib.win-amd64-cpython-39\torch\monitor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\monitor 2025-07-24T05:19:17.6769815Z creating build\bdist.win-amd64\wheel\torch\mps 2025-07-24T05:19:17.6773079Z copying build\lib.win-amd64-cpython-39\torch\mps\event.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-07-24T05:19:17.6778855Z copying build\lib.win-amd64-cpython-39\torch\mps\profiler.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-07-24T05:19:17.6785126Z copying build\lib.win-amd64-cpython-39\torch\mps\__init__.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-07-24T05:19:17.6791077Z creating build\bdist.win-amd64\wheel\torch\mtia 2025-07-24T05:19:17.6794751Z copying build\lib.win-amd64-cpython-39\torch\mtia\memory.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-07-24T05:19:17.6800486Z copying build\lib.win-amd64-cpython-39\torch\mtia\_utils.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-07-24T05:19:17.6806381Z copying build\lib.win-amd64-cpython-39\torch\mtia\__init__.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-07-24T05:19:17.6812143Z creating build\bdist.win-amd64\wheel\torch\multiprocessing 2025-07-24T05:19:17.6815383Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\pool.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-07-24T05:19:17.6821214Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\queue.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-07-24T05:19:17.6826692Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\reductions.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-07-24T05:19:17.6832643Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\spawn.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-07-24T05:19:17.6838183Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\_atfork.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-07-24T05:19:17.6947706Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-07-24T05:19:17.6953290Z creating build\bdist.win-amd64\wheel\torch\nested 2025-07-24T05:19:17.6957076Z creating build\bdist.win-amd64\wheel\torch\nested\_internal 2025-07-24T05:19:17.6960396Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\nested_int.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-07-24T05:19:17.6966861Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\nested_tensor.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-07-24T05:19:17.6973763Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\ops.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-07-24T05:19:17.6979858Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\sdpa.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-07-24T05:19:17.7046075Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-07-24T05:19:17.7051009Z copying build\lib.win-amd64-cpython-39\torch\nested\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nested 2025-07-24T05:19:17.7056797Z creating build\bdist.win-amd64\wheel\torch\nn 2025-07-24T05:19:17.7060313Z creating build\bdist.win-amd64\wheel\torch\nn\attention 2025-07-24T05:19:17.7063685Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\bias.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-07-24T05:19:17.7069292Z creating build\bdist.win-amd64\wheel\torch\nn\attention\experimental 2025-07-24T05:19:17.7072638Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\experimental\_paged_attention.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention\experimental 2025-07-24T05:19:17.7078694Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention\experimental 2025-07-24T05:19:17.7083583Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-07-24T05:19:17.7090380Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-07-24T05:19:17.7138968Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-07-24T05:19:17.7144494Z creating build\bdist.win-amd64\wheel\torch\nn\backends 2025-07-24T05:19:17.7148116Z copying build\lib.win-amd64-cpython-39\torch\nn\backends\thnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\backends 2025-07-24T05:19:17.7153238Z copying build\lib.win-amd64-cpython-39\torch\nn\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\backends 2025-07-24T05:19:17.7157781Z copying build\lib.win-amd64-cpython-39\torch\nn\common_types.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-24T05:19:17.7162997Z copying build\lib.win-amd64-cpython-39\torch\nn\cpp.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-24T05:19:17.7169581Z copying build\lib.win-amd64-cpython-39\torch\nn\functional.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-24T05:19:18.7516824Z copying build\lib.win-amd64-cpython-39\torch\nn\functional.pyi -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-24T05:19:18.7522947Z copying build\lib.win-amd64-cpython-39\torch\nn\grad.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-24T05:19:18.7528300Z copying build\lib.win-amd64-cpython-39\torch\nn\init.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-24T05:19:18.7535129Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic 2025-07-24T05:19:18.7538587Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\modules 2025-07-24T05:19:18.7541949Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules\fused.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\modules 2025-07-24T05:19:18.7547041Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\modules 2025-07-24T05:19:18.7552296Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\qat 2025-07-24T05:19:18.7555799Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\qat\modules 2025-07-24T05:19:18.7560713Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules\conv_fused.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\qat\modules 2025-07-24T05:19:18.7566316Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules\linear_fused.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\qat\modules 2025-07-24T05:19:18.7571576Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules\linear_relu.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\qat\modules 2025-07-24T05:19:18.7576701Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\qat\modules 2025-07-24T05:19:18.7954745Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\qat 2025-07-24T05:19:18.7959807Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized 2025-07-24T05:19:18.7963036Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\dynamic 2025-07-24T05:19:18.7966594Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:19:18.7970427Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules\linear_relu.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:19:18.7976039Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:19:18.7980387Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized\dynamic 2025-07-24T05:19:18.7985631Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\modules 2025-07-24T05:19:18.7989027Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules\bn_relu.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized\modules 2025-07-24T05:19:18.7994294Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules\conv_relu.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized\modules 2025-07-24T05:19:18.7999580Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules\linear_relu.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized\modules 2025-07-24T05:19:18.8004756Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized\modules 2025-07-24T05:19:18.8009951Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized 2025-07-24T05:19:18.8014864Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic 2025-07-24T05:19:18.8021104Z creating build\bdist.win-amd64\wheel\torch\nn\modules 2025-07-24T05:19:18.8024053Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:18.8030467Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\adaptive.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:18.8036108Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\batchnorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:18.8041898Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\channelshuffle.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0037905Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\container.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0044156Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0050637Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\distance.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0057879Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\dropout.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0063448Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\flatten.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0069024Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\fold.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0074629Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\instancenorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0080856Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\lazy.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0086541Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0092295Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\loss.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0098583Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\module.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0534964Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\normalization.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0540647Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\padding.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0546617Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\pixelshuffle.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0552366Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\pooling.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0558695Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0565264Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\sparse.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0571265Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\transformer.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0577697Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\upsampling.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0583262Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0589428Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\_functions.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0595101Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:19:19.0601397Z creating build\bdist.win-amd64\wheel\torch\nn\parallel 2025-07-24T05:19:19.0861760Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\comm.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-24T05:19:19.0867153Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\data_parallel.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-24T05:19:19.0872798Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\distributed.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-24T05:19:19.0879752Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\parallel_apply.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-24T05:19:19.1331783Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\replicate.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-24T05:19:19.1337168Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\scatter_gather.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-24T05:19:19.1342474Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\_functions.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-24T05:19:19.1347794Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-24T05:19:19.1353195Z copying build\lib.win-amd64-cpython-39\torch\nn\parameter.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-24T05:19:19.1358905Z copying build\lib.win-amd64-cpython-39\torch\nn\parameter.pyi -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-24T05:19:19.1364756Z creating build\bdist.win-amd64\wheel\torch\nn\qat 2025-07-24T05:19:19.1368524Z creating build\bdist.win-amd64\wheel\torch\nn\qat\dynamic 2025-07-24T05:19:19.1371721Z creating build\bdist.win-amd64\wheel\torch\nn\qat\dynamic\modules 2025-07-24T05:19:19.1374859Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\dynamic\modules 2025-07-24T05:19:19.1379919Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\dynamic\modules 2025-07-24T05:19:19.1384772Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\dynamic 2025-07-24T05:19:19.1390132Z creating build\bdist.win-amd64\wheel\torch\nn\qat\modules 2025-07-24T05:19:19.1393207Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-07-24T05:19:19.1398447Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-07-24T05:19:19.1403505Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-07-24T05:19:19.1408474Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-07-24T05:19:19.1413310Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat 2025-07-24T05:19:19.1418558Z creating build\bdist.win-amd64\wheel\torch\nn\quantizable 2025-07-24T05:19:19.1422753Z creating build\bdist.win-amd64\wheel\torch\nn\quantizable\modules 2025-07-24T05:19:19.1425510Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-07-24T05:19:19.1430705Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-07-24T05:19:19.1435924Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-07-24T05:19:19.1441347Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable 2025-07-24T05:19:19.1446697Z creating build\bdist.win-amd64\wheel\torch\nn\quantized 2025-07-24T05:19:19.1449993Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\dynamic 2025-07-24T05:19:19.1455040Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\dynamic\modules 2025-07-24T05:19:19.1458516Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\dynamic\modules 2025-07-24T05:19:19.1463815Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\dynamic\modules 2025-07-24T05:19:19.1469327Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\dynamic\modules 2025-07-24T05:19:19.1474600Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\dynamic\modules 2025-07-24T05:19:19.1480266Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\dynamic 2025-07-24T05:19:19.1484956Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\functional.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized 2025-07-24T05:19:19.1490415Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\modules 2025-07-24T05:19:19.1493787Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-24T05:19:19.1499038Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\batchnorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-24T05:19:19.1504104Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-24T05:19:19.1509315Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\dropout.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-24T05:19:19.1514676Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-24T05:19:19.1803148Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\functional_modules.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-24T05:19:19.1808141Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-24T05:19:19.1813232Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\normalization.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-24T05:19:19.1818825Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-24T05:19:19.1823872Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-24T05:19:19.1828841Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-24T05:19:19.1834346Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\_reference 2025-07-24T05:19:20.2484832Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\_reference\modules 2025-07-24T05:19:20.2488433Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference\modules 2025-07-24T05:19:20.2494270Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference\modules 2025-07-24T05:19:20.3600657Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference\modules 2025-07-24T05:19:20.3606079Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules\sparse.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference\modules 2025-07-24T05:19:20.3611307Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference\modules 2025-07-24T05:19:20.3616565Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference\modules 2025-07-24T05:19:20.3622332Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference 2025-07-24T05:19:20.3627648Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized 2025-07-24T05:19:20.3633745Z creating build\bdist.win-amd64\wheel\torch\nn\utils 2025-07-24T05:19:20.3637214Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\clip_grad.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:19:20.3643186Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\convert_parameters.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:19:20.3648600Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\fusion.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:19:20.3653978Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\init.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:19:20.3659487Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\memory_format.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:19:20.5805384Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\parametrizations.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:19:20.5812338Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\parametrize.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:19:20.5818297Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\prune.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:19:20.5824573Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:19:20.5830606Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\spectral_norm.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:19:20.5836205Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\stateless.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:19:20.5841605Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\weight_norm.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:19:20.5846967Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_deprecation_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:19:20.5852923Z creating build\bdist.win-amd64\wheel\torch\nn\utils\_expanded_weights 2025-07-24T05:19:21.5582345Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\conv_expanded_weights.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-07-24T05:19:21.5588411Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\conv_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-07-24T05:19:21.5595027Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\embedding_expanded_weights.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-07-24T05:19:21.5836570Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\expanded_weights_impl.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-07-24T05:19:21.5842605Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\expanded_weights_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-07-24T05:19:21.5848157Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\group_norm_expanded_weights.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-07-24T05:19:21.5853858Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\instance_norm_expanded_weights.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-07-24T05:19:21.5859321Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\layer_norm_expanded_weights.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-07-24T05:19:21.5864763Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\linear_expanded_weights.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-07-24T05:19:21.6488921Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-07-24T05:19:21.6493854Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_named_member_accessor.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:19:21.6499213Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_per_sample_grad.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:19:21.6504489Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:19:21.6509705Z copying build\lib.win-amd64-cpython-39\torch\nn\_reduction.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-24T05:19:21.6514990Z copying build\lib.win-amd64-cpython-39\torch\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-24T05:19:21.6521540Z creating build\bdist.win-amd64\wheel\torch\onnx 2025-07-24T05:19:21.6524879Z copying build\lib.win-amd64-cpython-39\torch\onnx\errors.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:21.6529901Z copying build\lib.win-amd64-cpython-39\torch\onnx\operators.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:21.6535444Z creating build\bdist.win-amd64\wheel\torch\onnx\ops 2025-07-24T05:19:21.6538652Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\_dtype_mappings.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-07-24T05:19:21.6543826Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\_impl.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-07-24T05:19:21.6548977Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\_symbolic_impl.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-07-24T05:19:21.6554163Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-07-24T05:19:21.6559808Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_helper.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:21.6566137Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset10.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:21.7378729Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset11.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:21.7384930Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset12.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:21.7390931Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset13.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:21.7397172Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset14.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:21.7403067Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset15.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:21.7408850Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset16.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:21.7414402Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset17.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:21.7419920Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset18.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:21.7425481Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset19.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:21.7431139Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset20.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:21.7436989Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset7.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:21.7442731Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset8.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:21.7448353Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset9.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:21.7456448Z copying build\lib.win-amd64-cpython-39\torch\onnx\utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:21.7462948Z copying build\lib.win-amd64-cpython-39\torch\onnx\verification.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:22.7243101Z copying build\lib.win-amd64-cpython-39\torch\onnx\_constants.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:22.7248381Z copying build\lib.win-amd64-cpython-39\torch\onnx\_experimental.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:22.7254056Z copying build\lib.win-amd64-cpython-39\torch\onnx\_flags.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:22.7259529Z copying build\lib.win-amd64-cpython-39\torch\onnx\_globals.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:22.7266672Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal 2025-07-24T05:19:22.7269844Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter 2025-07-24T05:19:22.7273798Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_analysis.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:22.7279281Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_building.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:22.7285314Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_capture_strategies.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:22.7290935Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_compat.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:22.7586476Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_constants.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:22.7591565Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_core.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:22.7598174Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_decomp.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:22.7603636Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_dispatching.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:22.7609294Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:22.7614813Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_errors.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:22.7619877Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_flags.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:22.7625070Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_fx_passes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:22.7630447Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_ir_passes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:22.7636000Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_isolated.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:22.7641518Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_onnx_program.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:22.7647355Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_registration.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:22.7652842Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_reporting.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:22.7658246Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_schemas.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:22.7664528Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_tensors.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:22.7670062Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_testing.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:22.7675918Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter\_torchlib 2025-07-24T05:19:22.7679566Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:19:22.7683033Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops\core.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:19:22.7688545Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops\hop.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:19:22.7694067Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops\nn.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:19:22.7699507Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops\symbolic.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:19:22.7704905Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops\symops.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:19:22.7710369Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:19:22.7716627Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\_tensor_typing.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib 2025-07-24T05:19:22.7722428Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\_torchlib_registry.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib 2025-07-24T05:19:22.7728018Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib 2025-07-24T05:19:22.7901649Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_type_casting.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:22.7907095Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_verification.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:23.8202628Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:19:23.8207291Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\fx 2025-07-24T05:19:23.8210879Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\fx\passes 2025-07-24T05:19:23.8214172Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes\type_promotion.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx\passes 2025-07-24T05:19:23.8220685Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes\_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx\passes 2025-07-24T05:19:23.8225891Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx\passes 2025-07-24T05:19:23.8231008Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\patcher.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-07-24T05:19:23.8236342Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\serialization.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-07-24T05:19:23.8241573Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\type_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-07-24T05:19:23.8346435Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\_pass.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-07-24T05:19:23.8682251Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-07-24T05:19:23.8687914Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\jit_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-07-24T05:19:23.8693476Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\onnx_proto_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-07-24T05:19:24.8994445Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\registration.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-07-24T05:19:24.9000047Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\_exporter_legacy.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-07-24T05:19:24.9006508Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\_lazy_import.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-07-24T05:19:24.9012071Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-07-24T05:19:24.9017193Z copying build\lib.win-amd64-cpython-39\torch\onnx\_onnx_supported_ops.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:24.9023252Z copying build\lib.win-amd64-cpython-39\torch\onnx\_type_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:24.9029097Z copying build\lib.win-amd64-cpython-39\torch\onnx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:19:24.9036161Z creating build\bdist.win-amd64\wheel\torch\optim 2025-07-24T05:19:24.9039610Z copying build\lib.win-amd64-cpython-39\torch\optim\adadelta.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:19:24.9045740Z copying build\lib.win-amd64-cpython-39\torch\optim\adagrad.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:19:24.9052052Z copying build\lib.win-amd64-cpython-39\torch\optim\adam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:19:24.9058259Z copying build\lib.win-amd64-cpython-39\torch\optim\adamax.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:19:24.9064092Z copying build\lib.win-amd64-cpython-39\torch\optim\adamw.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:19:24.9069449Z copying build\lib.win-amd64-cpython-39\torch\optim\asgd.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:19:24.9075165Z copying build\lib.win-amd64-cpython-39\torch\optim\lbfgs.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:19:24.9299924Z copying build\lib.win-amd64-cpython-39\torch\optim\lr_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:19:24.9306077Z copying build\lib.win-amd64-cpython-39\torch\optim\nadam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:19:24.9311739Z copying build\lib.win-amd64-cpython-39\torch\optim\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:19:24.9317948Z copying build\lib.win-amd64-cpython-39\torch\optim\radam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:19:24.9323642Z copying build\lib.win-amd64-cpython-39\torch\optim\rmsprop.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:19:24.9329237Z copying build\lib.win-amd64-cpython-39\torch\optim\rprop.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:19:24.9334828Z copying build\lib.win-amd64-cpython-39\torch\optim\sgd.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:19:24.9340588Z copying build\lib.win-amd64-cpython-39\torch\optim\sparse_adam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:19:24.9345921Z copying build\lib.win-amd64-cpython-39\torch\optim\swa_utils.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:19:24.9351856Z copying build\lib.win-amd64-cpython-39\torch\optim\_adafactor.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:19:24.9357730Z copying build\lib.win-amd64-cpython-39\torch\optim\_functional.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:19:24.9363273Z creating build\bdist.win-amd64\wheel\torch\optim\_multi_tensor 2025-07-24T05:19:24.9366496Z copying build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\optim\_multi_tensor 2025-07-24T05:19:24.9371761Z copying build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\optim\_multi_tensor 2025-07-24T05:19:24.9376698Z copying build\lib.win-amd64-cpython-39\torch\optim\__init__.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:19:24.9382013Z copying build\lib.win-amd64-cpython-39\torch\overrides.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:24.9388907Z creating build\bdist.win-amd64\wheel\torch\package 2025-07-24T05:19:25.9366627Z creating build\bdist.win-amd64\wheel\torch\package\analyze 2025-07-24T05:19:25.9370346Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\find_first_use_of_broken_modules.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-07-24T05:19:25.9376751Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\is_from_package.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-07-24T05:19:25.9382507Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\trace_dependencies.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-07-24T05:19:25.9519688Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\__init__.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-07-24T05:19:25.9524869Z copying build\lib.win-amd64-cpython-39\torch\package\file_structure_representation.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:19:25.9530204Z copying build\lib.win-amd64-cpython-39\torch\package\find_file_dependencies.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:19:25.9535462Z copying build\lib.win-amd64-cpython-39\torch\package\glob_group.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:19:26.9598054Z copying build\lib.win-amd64-cpython-39\torch\package\importer.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:19:26.9611879Z copying build\lib.win-amd64-cpython-39\torch\package\package_exporter.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:19:26.9612762Z copying build\lib.win-amd64-cpython-39\torch\package\package_importer.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:19:26.9617884Z copying build\lib.win-amd64-cpython-39\torch\package\_digraph.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:19:26.9623936Z copying build\lib.win-amd64-cpython-39\torch\package\_directory_reader.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:19:26.9628405Z copying build\lib.win-amd64-cpython-39\torch\package\_importlib.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:19:26.9633938Z copying build\lib.win-amd64-cpython-39\torch\package\_mangling.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:19:26.9639594Z copying build\lib.win-amd64-cpython-39\torch\package\_mock.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:19:26.9644940Z copying build\lib.win-amd64-cpython-39\torch\package\_package_pickler.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:19:26.9650614Z copying build\lib.win-amd64-cpython-39\torch\package\_package_unpickler.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:19:26.9656156Z copying build\lib.win-amd64-cpython-39\torch\package\_stdlib.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:19:26.9661435Z copying build\lib.win-amd64-cpython-39\torch\package\__init__.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:19:26.9667371Z creating build\bdist.win-amd64\wheel\torch\profiler 2025-07-24T05:19:26.9670629Z copying build\lib.win-amd64-cpython-39\torch\profiler\itt.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-07-24T05:19:26.9676003Z copying build\lib.win-amd64-cpython-39\torch\profiler\profiler.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-07-24T05:19:26.9681758Z copying build\lib.win-amd64-cpython-39\torch\profiler\python_tracer.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-07-24T05:19:26.9686858Z copying build\lib.win-amd64-cpython-39\torch\profiler\_memory_profiler.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-07-24T05:19:26.9694183Z copying build\lib.win-amd64-cpython-39\torch\profiler\_pattern_matcher.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-07-24T05:19:26.9912872Z copying build\lib.win-amd64-cpython-39\torch\profiler\_utils.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-07-24T05:19:26.9918372Z copying build\lib.win-amd64-cpython-39\torch\profiler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-07-24T05:19:26.9924314Z copying build\lib.win-amd64-cpython-39\torch\py.typed -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:26.9929254Z creating build\bdist.win-amd64\wheel\torch\quantization 2025-07-24T05:19:26.9932231Z copying build\lib.win-amd64-cpython-39\torch\quantization\fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:19:26.9937840Z copying build\lib.win-amd64-cpython-39\torch\quantization\fuser_method_mappings.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:19:26.9942986Z copying build\lib.win-amd64-cpython-39\torch\quantization\fuse_modules.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:19:27.0078427Z creating build\bdist.win-amd64\wheel\torch\quantization\fx 2025-07-24T05:19:27.0081532Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\convert.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:19:27.0086590Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\fuse.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:19:27.0091755Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\fusion_patterns.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:19:27.0096871Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:19:27.0115935Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\match_utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:19:27.0231599Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:19:27.0236811Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\prepare.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:19:27.0241837Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\quantization_patterns.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:19:27.0247128Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\quantization_types.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:19:27.0252181Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:19:27.0257583Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:19:27.0262912Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:19:27.0268153Z copying build\lib.win-amd64-cpython-39\torch\quantization\observer.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:19:27.0273296Z copying build\lib.win-amd64-cpython-39\torch\quantization\qconfig.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:19:27.0278847Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantization_mappings.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:19:27.0284250Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:19:27.0289355Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize_fx.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:19:27.0294592Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize_jit.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:19:27.0299971Z copying build\lib.win-amd64-cpython-39\torch\quantization\quant_type.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:19:27.0305007Z copying build\lib.win-amd64-cpython-39\torch\quantization\stubs.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:19:27.0309883Z copying build\lib.win-amd64-cpython-39\torch\quantization\utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:19:27.0315291Z copying build\lib.win-amd64-cpython-39\torch\quantization\_numeric_suite.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:19:27.0321253Z copying build\lib.win-amd64-cpython-39\torch\quantization\_numeric_suite_fx.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:19:27.0326624Z copying build\lib.win-amd64-cpython-39\torch\quantization\_quantized_conversions.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:19:27.0331935Z copying build\lib.win-amd64-cpython-39\torch\quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:19:27.0337108Z copying build\lib.win-amd64-cpython-39\torch\quasirandom.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:27.0342606Z copying build\lib.win-amd64-cpython-39\torch\random.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:27.0348086Z copying build\lib.win-amd64-cpython-39\torch\return_types.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:27.0353478Z copying build\lib.win-amd64-cpython-39\torch\return_types.pyi -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:27.0359444Z copying build\lib.win-amd64-cpython-39\torch\serialization.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:27.0366350Z creating build\bdist.win-amd64\wheel\torch\share 2025-07-24T05:19:27.0369491Z creating build\bdist.win-amd64\wheel\torch\share\cmake 2025-07-24T05:19:27.0372715Z creating build\bdist.win-amd64\wheel\torch\share\cmake\ATen 2025-07-24T05:19:27.0375971Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\ATen\ATenConfig.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\ATen 2025-07-24T05:19:27.0381608Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2 2025-07-24T05:19:27.0384839Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Config.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-07-24T05:19:27.0390424Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Targets-release.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-07-24T05:19:27.0395852Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Targets.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-07-24T05:19:27.0542163Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUDAToolkit.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-07-24T05:19:27.0548023Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUDSS.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-07-24T05:19:27.0553522Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUSPARSELT.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-07-24T05:19:27.0559421Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindSYCLToolkit.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-07-24T05:19:27.0565101Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-07-24T05:19:27.0568614Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDA.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-07-24T05:19:27.0573845Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDNN.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-07-24T05:19:27.0579423Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-07-24T05:19:27.0703586Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\CMakeInitializeConfigs.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-07-24T05:19:27.0709256Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-07-24T05:19:27.0712879Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\make2cmake.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-07-24T05:19:27.0718416Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\parse_cubin.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-07-24T05:19:27.0723803Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\run_nvcc.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-07-24T05:19:27.0871431Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\select_compute_arch.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-07-24T05:19:27.0877025Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-07-24T05:19:27.0883833Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindPackageHandleStandardArgs.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-07-24T05:19:28.0485194Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindPackageMessage.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-07-24T05:19:28.0491696Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\public 2025-07-24T05:19:28.0495108Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\cuda.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-07-24T05:19:28.0501017Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\gflags.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-07-24T05:19:28.0507042Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\glog.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-07-24T05:19:28.0512244Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\LoadHIP.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-07-24T05:19:28.0530249Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\mkl.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-07-24T05:19:28.0536979Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\mkldnn.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-07-24T05:19:28.0542046Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\protobuf.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-07-24T05:19:28.0547580Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\utils.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-07-24T05:19:28.0554301Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\xpu.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-07-24T05:19:28.0559572Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Torch 2025-07-24T05:19:28.0563122Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Torch\TorchConfig.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Torch 2025-07-24T05:19:28.0568663Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Torch\TorchConfigVersion.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Torch 2025-07-24T05:19:28.0574055Z creating build\bdist.win-amd64\wheel\torch\signal 2025-07-24T05:19:28.0577293Z creating build\bdist.win-amd64\wheel\torch\signal\windows 2025-07-24T05:19:28.0580625Z copying build\lib.win-amd64-cpython-39\torch\signal\windows\windows.py -> build\bdist.win-amd64\wheel\.\torch\signal\windows 2025-07-24T05:19:28.0586812Z copying build\lib.win-amd64-cpython-39\torch\signal\windows\__init__.py -> build\bdist.win-amd64\wheel\.\torch\signal\windows 2025-07-24T05:19:28.0591999Z copying build\lib.win-amd64-cpython-39\torch\signal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\signal 2025-07-24T05:19:28.0597411Z creating build\bdist.win-amd64\wheel\torch\sparse 2025-07-24T05:19:28.0600617Z copying build\lib.win-amd64-cpython-39\torch\sparse\semi_structured.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-07-24T05:19:28.0606705Z copying build\lib.win-amd64-cpython-39\torch\sparse\_semi_structured_conversions.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-07-24T05:19:28.0612247Z copying build\lib.win-amd64-cpython-39\torch\sparse\_semi_structured_ops.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-07-24T05:19:28.0631270Z copying build\lib.win-amd64-cpython-39\torch\sparse\_triton_ops.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-07-24T05:19:28.0638309Z copying build\lib.win-amd64-cpython-39\torch\sparse\_triton_ops_meta.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-07-24T05:19:28.0648551Z copying build\lib.win-amd64-cpython-39\torch\sparse\__init__.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-07-24T05:19:28.0654816Z creating build\bdist.win-amd64\wheel\torch\special 2025-07-24T05:19:28.0658039Z copying build\lib.win-amd64-cpython-39\torch\special\__init__.py -> build\bdist.win-amd64\wheel\.\torch\special 2025-07-24T05:19:28.0671352Z copying build\lib.win-amd64-cpython-39\torch\storage.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.0687019Z creating build\bdist.win-amd64\wheel\torch\test 2025-07-24T05:19:28.0690430Z copying build\lib.win-amd64-cpython-39\torch\test\apply_utils_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0699775Z copying build\lib.win-amd64-cpython-39\torch\test\atest.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0709086Z copying build\lib.win-amd64-cpython-39\torch\test\backend_fallback_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0718180Z copying build\lib.win-amd64-cpython-39\torch\test\basic.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0739564Z copying build\lib.win-amd64-cpython-39\torch\test\broadcast_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0748425Z copying build\lib.win-amd64-cpython-39\torch\test\c10_accumulate_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0757201Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ArrayRef_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0765714Z copying build\lib.win-amd64-cpython-39\torch\test\c10_bfloat16_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0774335Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Bitset_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0782621Z copying build\lib.win-amd64-cpython-39\torch\test\c10_bit_cast_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0791150Z copying build\lib.win-amd64-cpython-39\torch\test\c10_CompileTimeFunctionPointer_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0799652Z copying build\lib.win-amd64-cpython-39\torch\test\c10_complex_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0808475Z copying build\lib.win-amd64-cpython-39\torch\test\c10_complex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0817649Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ConstexprCrc_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0862882Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0879255Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DeadlockDetection_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0889081Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DeviceGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0898283Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Device_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0911995Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DispatchKeySet_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0921021Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Enumerate_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0929937Z copying build\lib.win-amd64-cpython-39\torch\test\c10_error_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0938492Z copying build\lib.win-amd64-cpython-39\torch\test\c10_exception_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0947051Z copying build\lib.win-amd64-cpython-39\torch\test\c10_flags_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0955765Z copying build\lib.win-amd64-cpython-39\torch\test\c10_generic_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0964277Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0972834Z copying build\lib.win-amd64-cpython-39\torch\test\c10_InlineDeviceGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.0981544Z copying build\lib.win-amd64-cpython-39\torch\test\c10_InlineStreamGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1002975Z copying build\lib.win-amd64-cpython-39\torch\test\c10_IntrusiveList_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1011830Z copying build\lib.win-amd64-cpython-39\torch\test\c10_intrusive_ptr_benchmark.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1019891Z copying build\lib.win-amd64-cpython-39\torch\test\c10_intrusive_ptr_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1035857Z copying build\lib.win-amd64-cpython-39\torch\test\c10_irange_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1044030Z copying build\lib.win-amd64-cpython-39\torch\test\c10_lazy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1053338Z copying build\lib.win-amd64-cpython-39\torch\test\c10_LeftRight_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1061828Z copying build\lib.win-amd64-cpython-39\torch\test\c10_logging_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1070843Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Metaprogramming_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1090906Z copying build\lib.win-amd64-cpython-39\torch\test\c10_NetworkFlow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1099852Z copying build\lib.win-amd64-cpython-39\torch\test\c10_optional_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1109955Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ordered_preserving_dict_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1119204Z copying build\lib.win-amd64-cpython-39\torch\test\c10_registry_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1127961Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Scalar_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1137101Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Semaphore_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1145932Z copying build\lib.win-amd64-cpython-39\torch\test\c10_SizesAndStrides_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1155198Z copying build\lib.win-amd64-cpython-39\torch\test\c10_small_vector_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1169972Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ssize_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1190636Z copying build\lib.win-amd64-cpython-39\torch\test\c10_StreamGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1200393Z copying build\lib.win-amd64-cpython-39\torch\test\c10_string_util_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1208331Z copying build\lib.win-amd64-cpython-39\torch\test\c10_string_view_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1216608Z copying build\lib.win-amd64-cpython-39\torch\test\c10_SymInt_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1225582Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Synchronized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1234055Z copying build\lib.win-amd64-cpython-39\torch\test\c10_tempfile_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1242456Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ThreadLocal_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1251285Z copying build\lib.win-amd64-cpython-39\torch\test\c10_typeid_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1294356Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeIndex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1302718Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeList_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1311064Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeTraits_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1319364Z copying build\lib.win-amd64-cpython-39\torch\test\CppSignature_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1327804Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1336614Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_generator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1346107Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_profiling_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1355055Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_rng_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1366403Z copying build\lib.win-amd64-cpython-39\torch\test\Dict_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1388420Z copying build\lib.win-amd64-cpython-39\torch\test\Dimname_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1397013Z copying build\lib.win-amd64-cpython-39\torch\test\dlconvertor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1405805Z copying build\lib.win-amd64-cpython-39\torch\test\extension_backend_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1414732Z copying build\lib.win-amd64-cpython-39\torch\test\half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1423915Z copying build\lib.win-amd64-cpython-39\torch\test\IListRef_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1433714Z copying build\lib.win-amd64-cpython-39\torch\test\inline_container_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1443232Z copying build\lib.win-amd64-cpython-39\torch\test\ivalue_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1455003Z copying build\lib.win-amd64-cpython-39\torch\test\KernelFunction_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1465051Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_function_legacy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1489334Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_function_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1500794Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_lambda_legacy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1513672Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_lambda_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1525812Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_stackbased_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1535330Z copying build\lib.win-amd64-cpython-39\torch\test\lazy_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1544263Z copying build\lib.win-amd64-cpython-39\torch\test\legacy_vmap_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1554612Z copying build\lib.win-amd64-cpython-39\torch\test\List_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1566688Z copying build\lib.win-amd64-cpython-39\torch\test\make_boxed_from_unboxed_functor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1578080Z copying build\lib.win-amd64-cpython-39\torch\test\math_kernel_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1587062Z copying build\lib.win-amd64-cpython-39\torch\test\MaybeOwned_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1596965Z copying build\lib.win-amd64-cpython-39\torch\test\memory_format_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1606359Z copying build\lib.win-amd64-cpython-39\torch\test\memory_overlapping_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1615227Z copying build\lib.win-amd64-cpython-39\torch\test\mobile_memory_cleanup.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1624280Z copying build\lib.win-amd64-cpython-39\torch\test\NamedTensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1634162Z copying build\lib.win-amd64-cpython-39\torch\test\native_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1643513Z copying build\lib.win-amd64-cpython-39\torch\test\operators_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1663880Z copying build\lib.win-amd64-cpython-39\torch\test\operator_name_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1678808Z copying build\lib.win-amd64-cpython-39\torch\test\op_allowlist_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1682211Z copying build\lib.win-amd64-cpython-39\torch\test\op_registration_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1708442Z copying build\lib.win-amd64-cpython-39\torch\test\packedtensoraccessor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1717795Z copying build\lib.win-amd64-cpython-39\torch\test\pow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1727758Z copying build\lib.win-amd64-cpython-39\torch\test\quantized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1737040Z copying build\lib.win-amd64-cpython-39\torch\test\reduce_ops_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1745911Z copying build\lib.win-amd64-cpython-39\torch\test\reportMemoryUsage_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1754913Z copying build\lib.win-amd64-cpython-39\torch\test\scalar_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1764430Z copying build\lib.win-amd64-cpython-39\torch\test\scalar_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1774253Z copying build\lib.win-amd64-cpython-39\torch\test\StorageUtils_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1783113Z copying build\lib.win-amd64-cpython-39\torch\test\stride_properties_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1792112Z copying build\lib.win-amd64-cpython-39\torch\test\tensor_iterator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1802724Z copying build\lib.win-amd64-cpython-39\torch\test\test_parallel.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1811611Z copying build\lib.win-amd64-cpython-39\torch\test\thread_init_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1818869Z copying build\lib.win-amd64-cpython-39\torch\test\type_ptr_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1827428Z copying build\lib.win-amd64-cpython-39\torch\test\type_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1836979Z copying build\lib.win-amd64-cpython-39\torch\test\undefined_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1858240Z copying build\lib.win-amd64-cpython-39\torch\test\verify_api_visibility.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1867130Z copying build\lib.win-amd64-cpython-39\torch\test\weakref_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1876147Z copying build\lib.win-amd64-cpython-39\torch\test\wrapdim_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1885236Z copying build\lib.win-amd64-cpython-39\torch\test\xla_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:19:28.1895003Z creating build\bdist.win-amd64\wheel\torch\testing 2025-07-24T05:19:28.1898071Z copying build\lib.win-amd64-cpython-39\torch\testing\_comparison.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-07-24T05:19:28.1904499Z copying build\lib.win-amd64-cpython-39\torch\testing\_creation.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-07-24T05:19:28.1911755Z creating build\bdist.win-amd64\wheel\torch\testing\_internal 2025-07-24T05:19:28.1914757Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\autocast_test_lists.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.1920809Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\autograd_function_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.1926718Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\check_kernel_launches.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2046501Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\codegen 2025-07-24T05:19:28.2047956Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\codegen 2025-07-24T05:19:28.2052617Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_cuda.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2058336Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_device_type.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2064832Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_distributed.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2071457Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_dist_composable.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2076813Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_dtype.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2083011Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_fsdp.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2089973Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_jit.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2096168Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_methods_invocations.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2112582Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_mkldnn.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2118349Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_modules.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2126240Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_mps.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2132256Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_nn.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2139725Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_optimizers.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2146366Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_pruning.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2152660Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_quantization.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2170701Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_quantized.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2176685Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_subclass.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2182336Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2190296Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\composite_compliance.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2197073Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\custom_op_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2203451Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\custom_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2209224Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\data 2025-07-24T05:19:28.2212513Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\network1.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-07-24T05:19:28.2218058Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\network2.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-07-24T05:19:28.2223359Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-07-24T05:19:28.2228511Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed 2025-07-24T05:19:28.2231836Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\checkpoint_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-24T05:19:28.2237434Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\common_state_dict.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-24T05:19:28.2242850Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\ddp_under_dist_autograd_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-24T05:19:28.2259415Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\distributed_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-24T05:19:28.2268813Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\distributed_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-24T05:19:28.2274309Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\fake_pg.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-24T05:19:28.2279693Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\multi_threaded_pg.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-24T05:19:28.2285339Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\nn 2025-07-24T05:19:28.2288494Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\nn\api 2025-07-24T05:19:28.2291952Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api\remote_module_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\nn\api 2025-07-24T05:19:28.2297641Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\nn\api 2025-07-24T05:19:28.2301885Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\nn 2025-07-24T05:19:28.2306512Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc 2025-07-24T05:19:28.2309712Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\dist_autograd_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-07-24T05:19:28.2316709Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\dist_optimizer_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-07-24T05:19:28.2321977Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc\examples 2025-07-24T05:19:28.2325517Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples\parameter_server_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc\examples 2025-07-24T05:19:28.2331625Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples\reinforcement_learning_rpc_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc\examples 2025-07-24T05:19:28.2336851Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc\examples 2025-07-24T05:19:28.2341191Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\faulty_agent_rpc_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-07-24T05:19:28.2357271Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\faulty_rpc_agent_test_fixture.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-07-24T05:19:28.2362596Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc\jit 2025-07-24T05:19:28.2366080Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit\dist_autograd_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc\jit 2025-07-24T05:19:28.2371511Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit\rpc_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc\jit 2025-07-24T05:19:28.2377454Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit\rpc_test_faulty.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc\jit 2025-07-24T05:19:28.2383374Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc\jit 2025-07-24T05:19:28.2387771Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\rpc_agent_test_fixture.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-07-24T05:19:28.2393214Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\rpc_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-07-24T05:19:28.2401654Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\tensorpipe_rpc_agent_test_fixture.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-07-24T05:19:28.2477530Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-07-24T05:19:28.2482306Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-24T05:19:28.2488343Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_shard 2025-07-24T05:19:28.2492022Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-07-24T05:19:28.2495526Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor\_test_ops_common.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-07-24T05:19:28.2501015Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor\_test_st_common.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-07-24T05:19:28.2506692Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-07-24T05:19:28.2512025Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\test_common.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\_shard 2025-07-24T05:19:28.2517574Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\_shard 2025-07-24T05:19:28.2522867Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_tensor 2025-07-24T05:19:28.2526399Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor\common_dtensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\_tensor 2025-07-24T05:19:28.2532474Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\_tensor 2025-07-24T05:19:28.2537052Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-24T05:19:28.2542507Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\dist_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2548246Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\dynamo_test_failures.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2553934Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2559691Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module2.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2576505Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module3.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2581636Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\generated 2025-07-24T05:19:28.2585208Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\generated\annotated_fn_args.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\generated 2025-07-24T05:19:28.2595628Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\generated\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\generated 2025-07-24T05:19:28.2602655Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\hop_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2605631Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\hypothesis_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2611156Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\inductor_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2616856Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\jit_metaprogramming_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2623003Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\jit_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2629557Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\logging_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2635169Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\logging_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2651560Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\opinfo 2025-07-24T05:19:28.2654983Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\core.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-07-24T05:19:28.2661887Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\opinfo\definitions 2025-07-24T05:19:28.2665221Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\fft.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-07-24T05:19:28.2670967Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\linalg.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-07-24T05:19:28.2677344Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\nested.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-07-24T05:19:28.2683409Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\signal.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-07-24T05:19:28.2688831Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\sparse.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-07-24T05:19:28.2694577Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\special.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-07-24T05:19:28.2710898Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\_masked.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-07-24T05:19:28.2716744Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-07-24T05:19:28.2721561Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\refs.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-07-24T05:19:28.2726772Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-07-24T05:19:28.2731955Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-07-24T05:19:28.2737330Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\optests 2025-07-24T05:19:28.2740556Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\aot_autograd.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-07-24T05:19:28.2745801Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\autograd_registration.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-07-24T05:19:28.2751201Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\fake_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-07-24T05:19:28.2756505Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\generate_tests.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-07-24T05:19:28.2772805Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\make_fx.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-07-24T05:19:28.2778000Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-07-24T05:19:28.2783085Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\quantization_torch_package_models.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2788520Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\static_module.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2793750Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\subclasses.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2799359Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\test_module 2025-07-24T05:19:28.2802702Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module\future_div.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\test_module 2025-07-24T05:19:28.2807813Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module\no_future_div.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\test_module 2025-07-24T05:19:28.2813087Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\test_module 2025-07-24T05:19:28.2817503Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\torchbind_impls.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2822852Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\triton_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2828735Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\two_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2834526Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:19:28.2851253Z copying build\lib.win-amd64-cpython-39\torch\testing\_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-07-24T05:19:28.2867322Z copying build\lib.win-amd64-cpython-39\torch\testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-07-24T05:19:28.2872435Z copying build\lib.win-amd64-cpython-39\torch\torch_version.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.2877802Z copying build\lib.win-amd64-cpython-39\torch\types.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.2883793Z creating build\bdist.win-amd64\wheel\torch\utils 2025-07-24T05:19:28.2886949Z creating build\bdist.win-amd64\wheel\torch\utils\backcompat 2025-07-24T05:19:28.2890168Z copying build\lib.win-amd64-cpython-39\torch\utils\backcompat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\backcompat 2025-07-24T05:19:28.2895241Z copying build\lib.win-amd64-cpython-39\torch\utils\backend_registration.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.2901057Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark 2025-07-24T05:19:28.2904394Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\examples 2025-07-24T05:19:28.2907533Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\compare.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-07-24T05:19:28.2912730Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-07-24T05:19:28.2918097Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\op_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-07-24T05:19:28.2923405Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\simple_timeit.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-07-24T05:19:28.2928486Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\spectral_ops_fuzz_test.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-07-24T05:19:28.2944170Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-07-24T05:19:28.2948693Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\op_fuzzers 2025-07-24T05:19:28.2951914Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers\binary.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\op_fuzzers 2025-07-24T05:19:28.2957381Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers\sparse_binary.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\op_fuzzers 2025-07-24T05:19:28.2962681Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers\sparse_unary.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\op_fuzzers 2025-07-24T05:19:28.2967931Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers\spectral.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\op_fuzzers 2025-07-24T05:19:28.2983161Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers\unary.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\op_fuzzers 2025-07-24T05:19:28.2988471Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\op_fuzzers 2025-07-24T05:19:28.2992931Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\utils 2025-07-24T05:19:28.2996179Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\common.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-24T05:19:28.3001634Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\compare.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-24T05:19:28.3007100Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\compile.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-24T05:19:28.3012164Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\cpp_jit.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-24T05:19:28.3017336Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-24T05:19:28.3022911Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\sparse_fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-24T05:19:28.3038876Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\timeit_template.cpp -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-24T05:19:28.3044098Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\timer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-24T05:19:28.3050037Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:19:28.3053368Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper\callgrind.h -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:19:28.3059398Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper\compat_bindings.cpp -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:19:28.3065251Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper\timer_callgrind_template.cpp -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:19:28.3081470Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper\timer_interface.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:19:28.3087578Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper\valgrind.h -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:19:28.3131895Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:19:28.3136188Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\_stubs.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-24T05:19:28.3141595Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-24T05:19:28.3145996Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark 2025-07-24T05:19:28.3151201Z creating build\bdist.win-amd64\wheel\torch\utils\bottleneck 2025-07-24T05:19:28.3160546Z copying build\lib.win-amd64-cpython-39\torch\utils\bottleneck\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\bottleneck 2025-07-24T05:19:28.3164847Z copying build\lib.win-amd64-cpython-39\torch\utils\bottleneck\__main__.py -> build\bdist.win-amd64\wheel\.\torch\utils\bottleneck 2025-07-24T05:19:28.3170113Z copying build\lib.win-amd64-cpython-39\torch\utils\bundled_inputs.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3188584Z copying build\lib.win-amd64-cpython-39\torch\utils\checkpoint.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3189383Z copying build\lib.win-amd64-cpython-39\torch\utils\collect_env.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3190329Z copying build\lib.win-amd64-cpython-39\torch\utils\cpp_backtrace.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3210092Z copying build\lib.win-amd64-cpython-39\torch\utils\cpp_extension.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3210703Z creating build\bdist.win-amd64\wheel\torch\utils\data 2025-07-24T05:19:28.3231799Z copying build\lib.win-amd64-cpython-39\torch\utils\data\backward_compatibility.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-24T05:19:28.3232771Z copying build\lib.win-amd64-cpython-39\torch\utils\data\dataloader.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-24T05:19:28.3241630Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes 2025-07-24T05:19:28.3245203Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\dataframe 2025-07-24T05:19:28.3248515Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe\dataframes.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\dataframe 2025-07-24T05:19:28.3254196Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe\dataframe_wrapper.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\dataframe 2025-07-24T05:19:28.3259491Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe\datapipes.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\dataframe 2025-07-24T05:19:28.3274827Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe\structures.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\dataframe 2025-07-24T05:19:28.3280302Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\dataframe 2025-07-24T05:19:28.3285151Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\datapipe.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-07-24T05:19:28.3290978Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\datapipe.pyi -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-07-24T05:19:28.3296831Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\gen_pyi.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-07-24T05:19:28.3302179Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\iter 2025-07-24T05:19:28.3315946Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\callable.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:19:28.3321833Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\combinatorics.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:19:28.3327228Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\combining.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:19:28.3332945Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\filelister.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:19:28.3348127Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\fileopener.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:19:28.3353365Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\grouping.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:19:28.3359178Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\routeddecoder.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:19:28.3364412Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\selecting.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:19:28.3369721Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\sharding.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:19:28.3375031Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\streamreader.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:19:28.3380205Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\utils.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:19:28.3385542Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:19:28.3391940Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\map 2025-07-24T05:19:28.3395707Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map\callable.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\map 2025-07-24T05:19:28.3401116Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map\combinatorics.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\map 2025-07-24T05:19:28.3406143Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map\combining.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\map 2025-07-24T05:19:28.3411220Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map\grouping.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\map 2025-07-24T05:19:28.3416142Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map\utils.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\map 2025-07-24T05:19:28.3449247Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\map 2025-07-24T05:19:28.3454414Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\utils 2025-07-24T05:19:28.3457675Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils\common.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\utils 2025-07-24T05:19:28.3463204Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils\decoder.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\utils 2025-07-24T05:19:28.3468351Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils\snapshot.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\utils 2025-07-24T05:19:28.3473575Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\utils 2025-07-24T05:19:28.3477965Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_decorator.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-07-24T05:19:28.3483352Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_hook_iterator.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-07-24T05:19:28.3488699Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_typing.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-07-24T05:19:28.3494323Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-07-24T05:19:28.3499306Z copying build\lib.win-amd64-cpython-39\torch\utils\data\dataset.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-24T05:19:28.3515484Z copying build\lib.win-amd64-cpython-39\torch\utils\data\distributed.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-24T05:19:28.3520965Z copying build\lib.win-amd64-cpython-39\torch\utils\data\graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-24T05:19:28.3526331Z copying build\lib.win-amd64-cpython-39\torch\utils\data\graph_settings.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-24T05:19:28.3531646Z copying build\lib.win-amd64-cpython-39\torch\utils\data\sampler.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-24T05:19:28.3537219Z creating build\bdist.win-amd64\wheel\torch\utils\data\_utils 2025-07-24T05:19:28.3540529Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\collate.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-07-24T05:19:28.3545911Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\fetch.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-07-24T05:19:28.3551134Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\pin_memory.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-07-24T05:19:28.3556622Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\signal_handling.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-07-24T05:19:28.3562923Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\worker.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-07-24T05:19:28.3578306Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-07-24T05:19:28.3583564Z copying build\lib.win-amd64-cpython-39\torch\utils\data\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-24T05:19:28.3589070Z copying build\lib.win-amd64-cpython-39\torch\utils\deterministic.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3594250Z copying build\lib.win-amd64-cpython-39\torch\utils\dlpack.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3599586Z copying build\lib.win-amd64-cpython-39\torch\utils\file_baton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3604985Z copying build\lib.win-amd64-cpython-39\torch\utils\flop_counter.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3611182Z creating build\bdist.win-amd64\wheel\torch\utils\hipify 2025-07-24T05:19:28.3614620Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\constants.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-07-24T05:19:28.3620008Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\cuda_to_hip_mappings.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-07-24T05:19:28.3629305Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\hipify_python.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-07-24T05:19:28.3635207Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\version.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-07-24T05:19:28.3650454Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-07-24T05:19:28.3655433Z copying build\lib.win-amd64-cpython-39\torch\utils\hooks.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3660897Z creating build\bdist.win-amd64\wheel\torch\utils\jit 2025-07-24T05:19:28.3664178Z copying build\lib.win-amd64-cpython-39\torch\utils\jit\log_extract.py -> build\bdist.win-amd64\wheel\.\torch\utils\jit 2025-07-24T05:19:28.3669649Z copying build\lib.win-amd64-cpython-39\torch\utils\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\jit 2025-07-24T05:19:28.3674021Z copying build\lib.win-amd64-cpython-39\torch\utils\mkldnn.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3679443Z copying build\lib.win-amd64-cpython-39\torch\utils\mobile_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3685066Z creating build\bdist.win-amd64\wheel\torch\utils\model_dump 2025-07-24T05:19:28.3688245Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\code.js -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-07-24T05:19:28.3694817Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\htm.mjs -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-07-24T05:19:28.3700523Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\preact.mjs -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-07-24T05:19:28.3706480Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\skeleton.html -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-07-24T05:19:28.3712008Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-07-24T05:19:28.3728267Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\__main__.py -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-07-24T05:19:28.3733294Z copying build\lib.win-amd64-cpython-39\torch\utils\model_zoo.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3738762Z copying build\lib.win-amd64-cpython-39\torch\utils\module_tracker.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3754537Z creating build\bdist.win-amd64\wheel\torch\utils\serialization 2025-07-24T05:19:28.3757783Z copying build\lib.win-amd64-cpython-39\torch\utils\serialization\config.py -> build\bdist.win-amd64\wheel\.\torch\utils\serialization 2025-07-24T05:19:28.3762801Z copying build\lib.win-amd64-cpython-39\torch\utils\serialization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\serialization 2025-07-24T05:19:28.3767806Z copying build\lib.win-amd64-cpython-39\torch\utils\show_pickle.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3773952Z creating build\bdist.win-amd64\wheel\torch\utils\tensorboard 2025-07-24T05:19:28.3777433Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\summary.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-24T05:19:28.3783123Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\writer.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-24T05:19:28.3788834Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_convert_np.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-24T05:19:28.3794156Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_embedding.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-24T05:19:28.3809250Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_onnx_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-24T05:19:28.3814290Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_proto_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-24T05:19:28.3819638Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_pytorch_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-24T05:19:28.3824909Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-24T05:19:28.3829988Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-24T05:19:28.3835141Z copying build\lib.win-amd64-cpython-39\torch\utils\throughput_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3840823Z creating build\bdist.win-amd64\wheel\torch\utils\viz 2025-07-24T05:19:28.3843922Z copying build\lib.win-amd64-cpython-39\torch\utils\viz\_cycles.py -> build\bdist.win-amd64\wheel\.\torch\utils\viz 2025-07-24T05:19:28.3849739Z copying build\lib.win-amd64-cpython-39\torch\utils\viz\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\viz 2025-07-24T05:19:28.3853944Z copying build\lib.win-amd64-cpython-39\torch\utils\weak.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3859335Z copying build\lib.win-amd64-cpython-39\torch\utils\_appending_byte_serializer.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3864648Z copying build\lib.win-amd64-cpython-39\torch\utils\_backport_slots.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3869939Z copying build\lib.win-amd64-cpython-39\torch\utils\_config_module.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3875948Z copying build\lib.win-amd64-cpython-39\torch\utils\_config_typing.pyi -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3896589Z copying build\lib.win-amd64-cpython-39\torch\utils\_content_store.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3911992Z copying build\lib.win-amd64-cpython-39\torch\utils\_contextlib.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3917506Z copying build\lib.win-amd64-cpython-39\torch\utils\_cpp_embed_headers.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3922885Z copying build\lib.win-amd64-cpython-39\torch\utils\_cpp_extension_versioner.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3928263Z copying build\lib.win-amd64-cpython-39\torch\utils\_cxx_pytree.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3934148Z copying build\lib.win-amd64-cpython-39\torch\utils\_device.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3939360Z copying build\lib.win-amd64-cpython-39\torch\utils\_dtype_abbrs.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3944668Z copying build\lib.win-amd64-cpython-39\torch\utils\_exposed_in.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3949991Z copying build\lib.win-amd64-cpython-39\torch\utils\_filelock.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3955371Z copying build\lib.win-amd64-cpython-39\torch\utils\_foreach_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3970317Z copying build\lib.win-amd64-cpython-39\torch\utils\_freeze.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3975893Z copying build\lib.win-amd64-cpython-39\torch\utils\_functools.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3981186Z copying build\lib.win-amd64-cpython-39\torch\utils\_get_clean_triton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3987032Z copying build\lib.win-amd64-cpython-39\torch\utils\_helion.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3992714Z copying build\lib.win-amd64-cpython-39\torch\utils\_import_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.3997543Z copying build\lib.win-amd64-cpython-39\torch\utils\_mode_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.4002790Z copying build\lib.win-amd64-cpython-39\torch\utils\_ordered_set.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.4008280Z copying build\lib.win-amd64-cpython-39\torch\utils\_python_dispatch.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.4014486Z copying build\lib.win-amd64-cpython-39\torch\utils\_pytree.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.4020834Z copying build\lib.win-amd64-cpython-39\torch\utils\_stats.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.4026369Z creating build\bdist.win-amd64\wheel\torch\utils\_strobelight 2025-07-24T05:19:28.4029887Z copying build\lib.win-amd64-cpython-39\torch\utils\_strobelight\cli_function_profiler.py -> build\bdist.win-amd64\wheel\.\torch\utils\_strobelight 2025-07-24T05:19:28.4035538Z copying build\lib.win-amd64-cpython-39\torch\utils\_strobelight\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\_strobelight 2025-07-24T05:19:28.4040050Z creating build\bdist.win-amd64\wheel\torch\utils\_sympy 2025-07-24T05:19:28.4054094Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\functions.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-24T05:19:28.4060324Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\interp.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-24T05:19:28.4065673Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\numbers.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-24T05:19:28.4071145Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\printers.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-24T05:19:28.4077030Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\reference.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-24T05:19:28.4092183Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\singleton_int.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-24T05:19:28.4097468Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\solve.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-24T05:19:28.4102709Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\symbol.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-24T05:19:28.4107996Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\value_ranges.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-24T05:19:28.4114027Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-24T05:19:28.4118596Z copying build\lib.win-amd64-cpython-39\torch\utils\_thunk.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.4123652Z copying build\lib.win-amd64-cpython-39\torch\utils\_traceback.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.4129088Z copying build\lib.win-amd64-cpython-39\torch\utils\_triton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.4134386Z copying build\lib.win-amd64-cpython-39\torch\utils\_typing_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.4139419Z copying build\lib.win-amd64-cpython-39\torch\utils\_zip.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.4145031Z copying build\lib.win-amd64-cpython-39\torch\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:19:28.4150476Z copying build\lib.win-amd64-cpython-39\torch\version.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.4155801Z creating build\bdist.win-amd64\wheel\torch\xpu 2025-07-24T05:19:28.4159047Z copying build\lib.win-amd64-cpython-39\torch\xpu\memory.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-07-24T05:19:28.4164422Z copying build\lib.win-amd64-cpython-39\torch\xpu\random.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-07-24T05:19:28.4194823Z copying build\lib.win-amd64-cpython-39\torch\xpu\streams.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-07-24T05:19:28.4198278Z copying build\lib.win-amd64-cpython-39\torch\xpu\_gpu_trace.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-07-24T05:19:28.4213068Z copying build\lib.win-amd64-cpython-39\torch\xpu\_utils.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-07-24T05:19:28.4213788Z copying build\lib.win-amd64-cpython-39\torch\xpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-07-24T05:19:28.4226215Z copying build\lib.win-amd64-cpython-39\torch\_appdirs.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.4232427Z creating build\bdist.win-amd64\wheel\torch\_awaits 2025-07-24T05:19:28.4235634Z copying build\lib.win-amd64-cpython-39\torch\_awaits\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_awaits 2025-07-24T05:19:28.4241462Z creating build\bdist.win-amd64\wheel\torch\_C 2025-07-24T05:19:28.4244517Z copying build\lib.win-amd64-cpython-39\torch\_C\_aoti.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4249931Z copying build\lib.win-amd64-cpython-39\torch\_C\_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4255145Z copying build\lib.win-amd64-cpython-39\torch\_C\_cpu.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4259984Z copying build\lib.win-amd64-cpython-39\torch\_C\_cudnn.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4265549Z copying build\lib.win-amd64-cpython-39\torch\_C\_cusparselt.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4280680Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4285903Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_c10d.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4291899Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_rpc.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4297525Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_rpc_testing.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4303025Z creating build\bdist.win-amd64\wheel\torch\_C\_dynamo 2025-07-24T05:19:28.4306232Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\compiled_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-07-24T05:19:28.4311336Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\eval_frame.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-07-24T05:19:28.4316625Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\guards.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-07-24T05:19:28.4322081Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-07-24T05:19:28.4326927Z creating build\bdist.win-amd64\wheel\torch\_C\_export 2025-07-24T05:19:28.4330122Z copying build\lib.win-amd64-cpython-39\torch\_C\_export\pt2_archive_constants.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_export 2025-07-24T05:19:28.4335393Z copying build\lib.win-amd64-cpython-39\torch\_C\_export\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_export 2025-07-24T05:19:28.4340660Z copying build\lib.win-amd64-cpython-39\torch\_C\_functions.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4345903Z copying build\lib.win-amd64-cpython-39\torch\_C\_functorch.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4351307Z copying build\lib.win-amd64-cpython-39\torch\_C\_instruction_counter.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4356459Z copying build\lib.win-amd64-cpython-39\torch\_C\_itt.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4361455Z copying build\lib.win-amd64-cpython-39\torch\_C\_jit_tree_views.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4366785Z copying build\lib.win-amd64-cpython-39\torch\_C\_lazy.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4371910Z copying build\lib.win-amd64-cpython-39\torch\_C\_lazy_ts_backend.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4377050Z copying build\lib.win-amd64-cpython-39\torch\_C\_monitor.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4382154Z copying build\lib.win-amd64-cpython-39\torch\_C\_nn.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4387948Z copying build\lib.win-amd64-cpython-39\torch\_C\_nvtx.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4392906Z copying build\lib.win-amd64-cpython-39\torch\_C\_onnx.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4398233Z copying build\lib.win-amd64-cpython-39\torch\_C\_profiler.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4404219Z copying build\lib.win-amd64-cpython-39\torch\_C\_VariableFunctions.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4429658Z copying build\lib.win-amd64-cpython-39\torch\_C\_verbose.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4434509Z copying build\lib.win-amd64-cpython-39\torch\_C\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:19:28.4443698Z copying build\lib.win-amd64-cpython-39\torch\_C.cp39-win_amd64.pyd -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.4449053Z copying build\lib.win-amd64-cpython-39\torch\_classes.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.4454212Z copying build\lib.win-amd64-cpython-39\torch\_compile.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.4460088Z creating build\bdist.win-amd64\wheel\torch\_custom_op 2025-07-24T05:19:28.4463098Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\autograd.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-07-24T05:19:28.4468283Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\impl.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-07-24T05:19:28.4474057Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-07-24T05:19:28.4478486Z copying build\lib.win-amd64-cpython-39\torch\_custom_ops.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.4484195Z creating build\bdist.win-amd64\wheel\torch\_C_flatbuffer 2025-07-24T05:19:28.4497183Z copying build\lib.win-amd64-cpython-39\torch\_C_flatbuffer\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C_flatbuffer 2025-07-24T05:19:28.4502683Z creating build\bdist.win-amd64\wheel\torch\_decomp 2025-07-24T05:19:28.4505872Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-07-24T05:19:28.4513346Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions_for_jvp.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-07-24T05:19:28.4519077Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions_for_rng.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-07-24T05:19:28.4533772Z copying build\lib.win-amd64-cpython-39\torch\_decomp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-07-24T05:19:28.4539918Z copying build\lib.win-amd64-cpython-39\torch\_deploy.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.4545979Z creating build\bdist.win-amd64\wheel\torch\_dispatch 2025-07-24T05:19:28.4549376Z copying build\lib.win-amd64-cpython-39\torch\_dispatch\python.py -> build\bdist.win-amd64\wheel\.\torch\_dispatch 2025-07-24T05:19:28.4554672Z copying build\lib.win-amd64-cpython-39\torch\_dispatch\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dispatch 2025-07-24T05:19:28.4560136Z creating build\bdist.win-amd64\wheel\torch\_dynamo 2025-07-24T05:19:28.4562910Z creating build\bdist.win-amd64\wheel\torch\_dynamo\backends 2025-07-24T05:19:28.4566164Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\common.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-24T05:19:28.4571998Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\cudagraphs.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-24T05:19:28.4577160Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\debugging.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-24T05:19:28.4582227Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-24T05:19:28.4597744Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\inductor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-24T05:19:28.4602967Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\onnxrt.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-24T05:19:28.4608164Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\registry.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-24T05:19:28.4614051Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\tensorrt.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-24T05:19:28.4618933Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\torchxla.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-24T05:19:28.4624469Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\tvm.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-24T05:19:28.4629908Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-24T05:19:28.4634710Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\bytecode_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4640197Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\bytecode_transformation.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4646690Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\cache_size.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4662112Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\callback.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4667331Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\codegen.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4673076Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\code_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4678667Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\compiled_autograd.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4684957Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\comptime.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4708884Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\config.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4709672Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\convert_frame.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4710586Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\create_parameter_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4711438Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\current_scope_id.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4715844Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4721985Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\decorators.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4728077Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\device_interface.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4733959Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4739365Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\eval_frame.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4745970Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\exc.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4751650Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\external_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4757114Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\funcname_cache.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4762966Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_break_hints.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4777984Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_break_registry.json -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4784542Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_deduplication.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4791039Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_region_tracker.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4830574Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4836362Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\guards.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4843935Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\hooks.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4864743Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\logging.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4870143Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\metrics_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4875880Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\mutation_guard.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4881257Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\output_graph.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4893200Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\package.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4898823Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\pgo.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4904852Z creating build\bdist.win-amd64\wheel\torch\_dynamo\polyfills 2025-07-24T05:19:28.4908100Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\builtins.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:19:28.4913394Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\functools.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:19:28.4918720Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\fx.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:19:28.4924191Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\itertools.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:19:28.4939746Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\loader.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:19:28.4945380Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\operator.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:19:28.4950246Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\os.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:19:28.4955467Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\pytree.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:19:28.4960742Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\struct.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:19:28.4965761Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\sys.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:19:28.4971015Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\tensor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:19:28.4976044Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:19:28.4981224Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\precompile_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4986339Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\profiler.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4991925Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\replay_record.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.4997922Z creating build\bdist.win-amd64\wheel\torch\_dynamo\repro 2025-07-24T05:19:28.5001108Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\after_aot.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-07-24T05:19:28.5007192Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\after_dynamo.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-07-24T05:19:28.5013058Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\aoti.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-07-24T05:19:28.5018998Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-07-24T05:19:28.5023395Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\resume_execution.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.5029369Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\side_effects.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.5035835Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\source.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.5041884Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\symbolic_convert.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.5049691Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\tensor_version_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.5066278Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\testing.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.5079044Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_case.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.5080928Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_dont_skip_tracing_functions.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.5086275Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_minifier_common.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.5091737Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\trace_rules.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.5098917Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\types.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.5104783Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.5112327Z creating build\bdist.win-amd64\wheel\torch\_dynamo\variables 2025-07-24T05:19:28.5116032Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\base.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:19:28.5122084Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\builder.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:19:28.5129277Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\builtin.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:19:28.5142503Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\constant.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:19:28.5147792Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\ctx_manager.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:19:28.5164270Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\dicts.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:19:28.5169789Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:19:28.5175551Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\functions.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:19:28.5182471Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\higher_order_ops.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:19:28.5205440Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\iter.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:19:28.5206336Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\lazy.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:19:28.5207301Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\lists.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:19:28.5208213Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\misc.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:19:28.5214808Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\nn_module.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:19:28.5221426Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:19:28.5227170Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\script_object.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:19:28.5232481Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\sdpa.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:19:28.5237844Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\tensor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:19:28.5244187Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\torch.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:19:28.5250810Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\torch_function.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:19:28.5256858Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\user_defined.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:19:28.5263190Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:19:28.5268954Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\_trace_wrapped_higher_order_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.5274583Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:19:28.5279939Z copying build\lib.win-amd64-cpython-39\torch\_environment.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.5285185Z creating build\bdist.win-amd64\wheel\torch\_export 2025-07-24T05:19:28.5288472Z copying build\lib.win-amd64-cpython-39\torch\_export\converter.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-24T05:19:28.5294919Z creating build\bdist.win-amd64\wheel\torch\_export\db 2025-07-24T05:19:28.5298008Z copying build\lib.win-amd64-cpython-39\torch\_export\db\case.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-07-24T05:19:28.5304682Z creating build\bdist.win-amd64\wheel\torch\_export\db\examples 2025-07-24T05:19:28.5307951Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\assume_constant_result.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5313101Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\autograd_function.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5318757Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\class_method.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5333707Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_branch_class_method.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5339080Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_branch_nested_function.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5344921Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_branch_nonlocal_variables.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5350148Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_closed_over_variable.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5355836Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_operands.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5361060Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_predicate.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5366705Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\constrain_as_size_example.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5372685Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\constrain_as_value_example.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5378018Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\decorator.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5383126Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dictionary.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5388488Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dynamic_shape_assert.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5393488Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dynamic_shape_constructor.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5398943Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dynamic_shape_if_guard.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5404126Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dynamic_shape_map.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5409391Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dynamic_shape_round.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5424879Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dynamic_shape_slicing.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5451525Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dynamic_shape_view.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5456910Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\fn_with_kwargs.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5462454Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\list_contains.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5467725Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\list_unpack.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5473691Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\model_attr_mutation.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5479292Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\nested_function.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5484750Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\null_context_manager.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5500827Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\optional_input.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5505601Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\pytree_flatten.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5510818Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\scalar_output.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5516190Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\specialized_attribute.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5521700Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\static_for_loop.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5527009Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\static_if.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5532232Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\tensor_setattr.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5537629Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\type_reflection_method.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5543005Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\unsupported_operator.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5558701Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\user_input_mutation.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5564000Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:19:28.5569271Z copying build\lib.win-amd64-cpython-39\torch\_export\db\gen_example.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-07-24T05:19:28.5574281Z copying build\lib.win-amd64-cpython-39\torch\_export\db\logging.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-07-24T05:19:28.5580043Z copying build\lib.win-amd64-cpython-39\torch\_export\db\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-07-24T05:19:28.5584841Z copying build\lib.win-amd64-cpython-39\torch\_export\error.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-24T05:19:28.5590080Z copying build\lib.win-amd64-cpython-39\torch\_export\non_strict_utils.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-24T05:19:28.5596449Z creating build\bdist.win-amd64\wheel\torch\_export\passes 2025-07-24T05:19:28.5610279Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\add_runtime_assertions_for_constraints_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:19:28.5615794Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\collect_tracepoints_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:19:28.5620989Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\constant_folding.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:19:28.5636926Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\functionalize_side_effectful_ops_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:19:28.5642598Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\insert_custom_op_guards.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:19:28.5647969Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\lift_constants_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:19:28.5653969Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\remove_runtime_assertions.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:19:28.5659570Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\replace_autocast_with_hop_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:19:28.5665250Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\replace_quantized_ops_with_standard_ops_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:19:28.5671734Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\replace_set_grad_with_hop_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:19:28.5677400Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\replace_view_ops_with_view_copy_ops_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:19:28.5683122Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\replace_with_hop_pass_util.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:19:28.5688706Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\_node_metadata_hook.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:19:28.5699494Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:19:28.5701172Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_base.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-24T05:19:28.5707631Z creating build\bdist.win-amd64\wheel\torch\_export\pass_infra 2025-07-24T05:19:28.5711524Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\node_metadata.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-07-24T05:19:28.5717564Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\proxy_value.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-07-24T05:19:28.5753886Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-07-24T05:19:28.5758762Z creating build\bdist.win-amd64\wheel\torch\_export\serde 2025-07-24T05:19:28.5761996Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-24T05:19:28.5767394Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\export_schema.thrift -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-24T05:19:28.5772620Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-24T05:19:28.5777855Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema.yaml -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-24T05:19:28.5792958Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema_check.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-24T05:19:28.5798834Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\serialize.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-24T05:19:28.5806383Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\union.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-24T05:19:28.5811594Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-24T05:19:28.5815815Z copying build\lib.win-amd64-cpython-39\torch\_export\tools.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-24T05:19:28.5821146Z copying build\lib.win-amd64-cpython-39\torch\_export\utils.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-24T05:19:28.5827226Z copying build\lib.win-amd64-cpython-39\torch\_export\verifier.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-24T05:19:28.5832790Z copying build\lib.win-amd64-cpython-39\torch\_export\wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-24T05:19:28.5838201Z copying build\lib.win-amd64-cpython-39\torch\_export\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-24T05:19:28.5843812Z creating build\bdist.win-amd64\wheel\torch\_functorch 2025-07-24T05:19:28.5847825Z copying build\lib.win-amd64-cpython-39\torch\_functorch\aot_autograd.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:19:28.5853470Z copying build\lib.win-amd64-cpython-39\torch\_functorch\apis.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:19:28.5859065Z copying build\lib.win-amd64-cpython-39\torch\_functorch\autograd_function.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:19:28.5864858Z copying build\lib.win-amd64-cpython-39\torch\_functorch\batch_norm_replacement.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:19:28.5880568Z copying build\lib.win-amd64-cpython-39\torch\_functorch\benchmark_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:19:28.5885974Z copying build\lib.win-amd64-cpython-39\torch\_functorch\compilers.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:19:28.5891398Z copying build\lib.win-amd64-cpython-39\torch\_functorch\compile_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:19:28.5896629Z copying build\lib.win-amd64-cpython-39\torch\_functorch\config.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:19:28.5902136Z copying build\lib.win-amd64-cpython-39\torch\_functorch\deprecated.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:19:28.5907513Z copying build\lib.win-amd64-cpython-39\torch\_functorch\eager_transforms.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:19:28.5913863Z copying build\lib.win-amd64-cpython-39\torch\_functorch\functional_call.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:19:28.5919356Z copying build\lib.win-amd64-cpython-39\torch\_functorch\fx_minifier.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:19:28.5925083Z copying build\lib.win-amd64-cpython-39\torch\_functorch\make_functional.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:19:28.5930901Z copying build\lib.win-amd64-cpython-39\torch\_functorch\partitioners.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:19:28.5937741Z copying build\lib.win-amd64-cpython-39\torch\_functorch\pyfunctorch.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:19:28.5943062Z copying build\lib.win-amd64-cpython-39\torch\_functorch\python_key.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:19:28.5948124Z copying build\lib.win-amd64-cpython-39\torch\_functorch\pytree_hacks.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:19:28.5953542Z copying build\lib.win-amd64-cpython-39\torch\_functorch\top_operators_github_usage.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:19:28.5959405Z copying build\lib.win-amd64-cpython-39\torch\_functorch\utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:19:28.5964670Z copying build\lib.win-amd64-cpython-39\torch\_functorch\vmap.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:19:28.5970599Z creating build\bdist.win-amd64\wheel\torch\_functorch\_activation_checkpointing 2025-07-24T05:19:28.5984197Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\ac_logging_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-07-24T05:19:28.5989718Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\graph_info_provider.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-07-24T05:19:28.5995285Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\knapsack.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-07-24T05:19:28.6050353Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\knapsack_evaluator.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-07-24T05:19:28.6051657Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-07-24T05:19:28.6052612Z creating build\bdist.win-amd64\wheel\torch\_functorch\_aot_autograd 2025-07-24T05:19:28.6053397Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\autograd_cache.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:19:28.6054564Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\collect_metadata_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:19:28.6055756Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\frontend_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:19:28.6056828Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\functional_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:19:28.6062926Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\graph_capture.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:19:28.6068981Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\graph_capture_wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:19:28.6075419Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\graph_compile.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:19:28.6081937Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\input_output_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:19:28.6088027Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\logging_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:19:28.6093342Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\runtime_wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:19:28.6100045Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\schemas.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:19:28.6106553Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\subclass_parametrization.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:19:28.6111861Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\subclass_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:19:28.6117989Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:19:28.6123609Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:19:28.6128571Z copying build\lib.win-amd64-cpython-39\torch\_functorch\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:19:28.6133665Z copying build\lib.win-amd64-cpython-39\torch\_guards.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.6139855Z creating build\bdist.win-amd64\wheel\torch\_higher_order_ops 2025-07-24T05:19:28.6143329Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\aoti_call_delegate.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6148675Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\associative_scan.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6154290Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\auto_functionalize.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6169680Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\base_hop.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6175054Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\cond.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6180796Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\effects.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6186487Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\executorch_call_delegate.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6191406Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\flat_apply.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6196867Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6202912Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\foreach_map.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6208177Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\hints_wrap.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6213593Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\invoke_subgraph.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6219262Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\map.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6224708Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\out_dtype.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6230058Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\run_const_graph.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6235272Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\scan.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6241106Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\schema.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6246359Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\strict_mode.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6252094Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\torchbind.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6257503Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\triton_kernel_wrap.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6263963Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\utils.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6269826Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\while_loop.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6287481Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\wrap.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6292784Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\_invoke_quant.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6298058Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:19:28.6304398Z creating build\bdist.win-amd64\wheel\torch\_inductor 2025-07-24T05:19:28.6307462Z creating build\bdist.win-amd64\wheel\torch\_inductor\analysis 2025-07-24T05:19:28.6310601Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analysis\device_info.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\analysis 2025-07-24T05:19:28.6316096Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analysis\profile_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\analysis 2025-07-24T05:19:28.6322258Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analysis\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\analysis 2025-07-24T05:19:28.6335661Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analyze_preserves_zero_mask.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.6341020Z copying build\lib.win-amd64-cpython-39\torch\_inductor\aoti_eager.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.6356734Z copying build\lib.win-amd64-cpython-39\torch\_inductor\async_compile.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.6362825Z creating build\bdist.win-amd64\wheel\torch\_inductor\autoheuristic 2025-07-24T05:19:28.6366092Z creating build\bdist.win-amd64\wheel\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:19:28.6369391Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:19:28.6374836Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:19:28.6380203Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:19:28.6431027Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:19:28.6432247Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_PadMMA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:19:28.6433426Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:19:28.6434542Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\autoheuristic.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-07-24T05:19:28.6435798Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\autoheuristic_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-07-24T05:19:28.6436948Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\learnedheuristic_interface.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-07-24T05:19:28.6442411Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\learned_heuristic_controller.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-07-24T05:19:28.6447709Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-07-24T05:19:28.6451767Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autotune_process.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.6457962Z copying build\lib.win-amd64-cpython-39\torch\_inductor\bounds.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.6463013Z copying build\lib.win-amd64-cpython-39\torch\_inductor\choices.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.6468792Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codecache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.6476886Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen 2025-07-24T05:19:28.6480150Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_hipify_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6486071Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\aoti_runtime 2025-07-24T05:19:28.6489247Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_runtime\interface.cpp -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\aoti_runtime 2025-07-24T05:19:28.6495087Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\block_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6500539Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\common.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6517467Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6525055Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_bmm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6531021Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_flex_attention_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6537455Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6577775Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_grouped_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6583965Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_micro_gemm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6590450Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6596170Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_template_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6602238Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6608360Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_cpu.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6615514Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_cpu_array_ref.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6621986Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_gpu.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6628140Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_mps.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6633711Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpu_device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6639417Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda 2025-07-24T05:19:28.6642851Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_cpp_scheduling.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:19:28.6648285Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_env.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:19:28.6654066Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:19:28.6660183Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:19:28.6671713Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:19:28.6677515Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-07-24T05:19:28.6681435Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\evt_extensions.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-07-24T05:19:28.6687192Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\gemm_operation_extensions.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-07-24T05:19:28.6693022Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-07-24T05:19:28.6727654Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_presets.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:19:28.6733337Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_python_evt.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:19:28.6738989Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:19:28.6745244Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:19:28.6750926Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:19:28.6757585Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\serialization.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:19:28.6763876Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:19:28.6768351Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda_combined_scheduling.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6782981Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6788441Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\halide.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6794651Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\memory_planning.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6800970Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mps.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6806938Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mps_device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6812388Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\multi_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6818446Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\rocm 2025-07-24T05:19:28.6821738Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\ck_conv_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:19:28.6827843Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\ck_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:19:28.6833179Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\ck_tile_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:19:28.6838730Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\ck_tile_universal_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:19:28.6854692Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\ck_universal_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:19:28.6860584Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\compile_command.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:19:28.6865939Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_benchmark_request.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:19:28.6871266Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_cpp_scheduling.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:19:28.6877290Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:19:28.6882313Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:19:28.6887673Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_template_buffer.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:19:28.6892946Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:19:28.6898103Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:19:28.6902493Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\simd.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6909048Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\simd_kernel_features.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6914853Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\subgraph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6920167Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6927749Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_combo_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6943754Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_split_scan.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6949068Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6954452Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\wrapper.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6961785Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\wrapper_fxir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6967700Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\xpu 2025-07-24T05:19:28.6970945Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu\device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\xpu 2025-07-24T05:19:28.6976332Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\xpu 2025-07-24T05:19:28.6980763Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:19:28.6985062Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comms.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.6991497Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comm_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7003726Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comm_lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7009597Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compiler_bisector.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7015904Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7022478Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_async.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7028064Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_ext.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7034190Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_subproc.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7040545Z creating build\bdist.win-amd64\wheel\torch\_inductor\compile_worker 2025-07-24T05:19:28.7043520Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\subproc_pool.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-07-24T05:19:28.7049370Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\tracked_process_pool.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-07-24T05:19:28.7054705Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-07-24T05:19:28.7060200Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-07-24T05:19:28.7074186Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\__main__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-07-24T05:19:28.7079438Z copying build\lib.win-amd64-cpython-39\torch\_inductor\config.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7085989Z copying build\lib.win-amd64-cpython-39\torch\_inductor\constant_folding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7091541Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cpp_builder.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7108135Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cpu_vec_isa.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7113687Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cudagraph_trees.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7120774Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cudagraph_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7126350Z copying build\lib.win-amd64-cpython-39\torch\_inductor\custom_graph_pass.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7131845Z copying build\lib.win-amd64-cpython-39\torch\_inductor\debug.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7137877Z copying build\lib.win-amd64-cpython-39\torch\_inductor\decomposition.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7144098Z copying build\lib.win-amd64-cpython-39\torch\_inductor\dependencies.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7150229Z copying build\lib.win-amd64-cpython-39\torch\_inductor\dtype_propagation.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7155825Z copying build\lib.win-amd64-cpython-39\torch\_inductor\exc.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7161405Z copying build\lib.win-amd64-cpython-39\torch\_inductor\extern_node_serializer.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7176505Z copying build\lib.win-amd64-cpython-39\torch\_inductor\freezing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7182184Z copying build\lib.win-amd64-cpython-39\torch\_inductor\freezing_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7187178Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7193823Z creating build\bdist.win-amd64\wheel\torch\_inductor\fx_passes 2025-07-24T05:19:28.7196994Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\b2b_gemm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7217155Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\binary_folding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7218125Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\bucketing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7219143Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\ddp_fusion.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7233124Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\decompose_mem_bound_mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7238861Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\dedupe_symint_uses.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7244667Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\efficient_conv_bn_eval.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7250097Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\freezing_patterns.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7255532Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\fsdp.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7261371Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\fuse_attention.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7268312Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\group_batch_fusion.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7273509Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\joint_graph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7279605Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\micro_pipeline_tp.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7285584Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\misc_patterns.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7291079Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\mkldnn_fusion.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7297468Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\numeric_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7302936Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\pad_mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7308601Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\post_grad.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7314983Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\pre_grad.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7320850Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\quantization.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7327920Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\reinplace.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7350363Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\replace_random.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7356994Z creating build\bdist.win-amd64\wheel\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7360429Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\addmm_pattern.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7366063Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\bmm_pattern.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7371353Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\mm_pattern.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7386144Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_1.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7391477Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_10.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7397043Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_11.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7402483Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_12.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7407954Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_13.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7413446Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_14.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7419139Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_15.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7425334Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_16.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7431478Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_17.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7437595Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_18.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7443748Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_19.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7449376Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_2.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7455197Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_20.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7461114Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_21.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7467003Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_22.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7472725Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_23.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7487394Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_24.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7492921Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_3.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7498597Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_4.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7504119Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_5.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7509714Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_6.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7515309Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_7.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7521150Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_8.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7526770Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_9.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7532538Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:19:28.7536732Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\split_cat.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7544456Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:19:28.7548762Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7554201Z copying build\lib.win-amd64-cpython-39\torch\_inductor\graph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7561172Z copying build\lib.win-amd64-cpython-39\torch\_inductor\hooks.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7566047Z copying build\lib.win-amd64-cpython-39\torch\_inductor\index_propagation.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7571656Z copying build\lib.win-amd64-cpython-39\torch\_inductor\inductor_prims.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7576877Z copying build\lib.win-amd64-cpython-39\torch\_inductor\ir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7585493Z copying build\lib.win-amd64-cpython-39\torch\_inductor\jagged_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7591055Z creating build\bdist.win-amd64\wheel\torch\_inductor\kernel 2025-07-24T05:19:28.7594215Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\bmm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-24T05:19:28.7607857Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\conv.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-24T05:19:28.7613629Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-24T05:19:28.7620155Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex_decoding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-24T05:19:28.7626074Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-24T05:19:28.7641632Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_common.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-24T05:19:28.7647160Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_grouped.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-24T05:19:28.7652987Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_plus_mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-24T05:19:28.7658361Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-24T05:19:28.7663434Z copying build\lib.win-amd64-cpython-39\torch\_inductor\loop_body.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7679993Z copying build\lib.win-amd64-cpython-39\torch\_inductor\lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7687464Z copying build\lib.win-amd64-cpython-39\torch\_inductor\memory.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7693294Z copying build\lib.win-amd64-cpython-39\torch\_inductor\metrics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7698710Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mkldnn_ir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7738221Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mkldnn_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7739097Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mock_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7739983Z copying build\lib.win-amd64-cpython-39\torch\_inductor\ops_handler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7740858Z copying build\lib.win-amd64-cpython-39\torch\_inductor\optimize_indexing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7741717Z copying build\lib.win-amd64-cpython-39\torch\_inductor\output_code.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7742356Z creating build\bdist.win-amd64\wheel\torch\_inductor\package 2025-07-24T05:19:28.7743136Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\build_package.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-07-24T05:19:28.7747208Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\package.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-07-24T05:19:28.7752545Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-07-24T05:19:28.7757946Z copying build\lib.win-amd64-cpython-39\torch\_inductor\pattern_matcher.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7783082Z copying build\lib.win-amd64-cpython-39\torch\_inductor\quantized_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7789370Z copying build\lib.win-amd64-cpython-39\torch\_inductor\remote_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7794553Z creating build\bdist.win-amd64\wheel\torch\_inductor\runtime 2025-07-24T05:19:28.7797939Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\autotune_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:19:28.7803745Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\benchmarking.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:19:28.7809047Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\cache_dir_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:19:28.7814577Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\compile_tasks.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:19:28.7828918Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\coordinate_descent_tuner.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:19:28.7834380Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\halide_helpers.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:19:28.7839920Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\hints.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:19:28.7846219Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\runtime_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:19:28.7851477Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\static_cuda_launcher.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:19:28.7857025Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_compat.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:19:28.7862259Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_helpers.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:19:28.7868155Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_heuristics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:19:28.7875704Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:19:28.7879930Z copying build\lib.win-amd64-cpython-39\torch\_inductor\scheduler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7888007Z copying build\lib.win-amd64-cpython-39\torch\_inductor\script.ld -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7893409Z copying build\lib.win-amd64-cpython-39\torch\_inductor\select_algorithm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7900395Z copying build\lib.win-amd64-cpython-39\torch\_inductor\sizevars.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7906305Z copying build\lib.win-amd64-cpython-39\torch\_inductor\standalone_compile.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7911916Z copying build\lib.win-amd64-cpython-39\torch\_inductor\subgraph_lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7917605Z copying build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7932714Z copying build\lib.win-amd64-cpython-39\torch\_inductor\test_case.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7948241Z copying build\lib.win-amd64-cpython-39\torch\_inductor\test_operators.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7953727Z copying build\lib.win-amd64-cpython-39\torch\_inductor\tiling_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7959908Z copying build\lib.win-amd64-cpython-39\torch\_inductor\triton_bundler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7966083Z copying build\lib.win-amd64-cpython-39\torch\_inductor\utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7972826Z copying build\lib.win-amd64-cpython-39\torch\_inductor\virtualized.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7978444Z copying build\lib.win-amd64-cpython-39\torch\_inductor\wrapper_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7985046Z copying build\lib.win-amd64-cpython-39\torch\_inductor\__autotune_main__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7990008Z copying build\lib.win-amd64-cpython-39\torch\_inductor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:19:28.7996296Z copying build\lib.win-amd64-cpython-39\torch\_jit_internal.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8002517Z creating build\bdist.win-amd64\wheel\torch\_lazy 2025-07-24T05:19:28.8015032Z copying build\lib.win-amd64-cpython-39\torch\_lazy\closure.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-24T05:19:28.8020145Z copying build\lib.win-amd64-cpython-39\torch\_lazy\computation.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-24T05:19:28.8025572Z copying build\lib.win-amd64-cpython-39\torch\_lazy\config.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-24T05:19:28.8030658Z copying build\lib.win-amd64-cpython-39\torch\_lazy\debug.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-24T05:19:28.8036425Z copying build\lib.win-amd64-cpython-39\torch\_lazy\device_context.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-24T05:19:28.8057415Z copying build\lib.win-amd64-cpython-39\torch\_lazy\extract_compiled_graph.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-24T05:19:28.8060057Z copying build\lib.win-amd64-cpython-39\torch\_lazy\ir_cache.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-24T05:19:28.8065025Z copying build\lib.win-amd64-cpython-39\torch\_lazy\metrics.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-24T05:19:28.8070376Z copying build\lib.win-amd64-cpython-39\torch\_lazy\tensor_factory_functions.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-24T05:19:28.8076149Z copying build\lib.win-amd64-cpython-39\torch\_lazy\ts_backend.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-24T05:19:28.8081367Z copying build\lib.win-amd64-cpython-39\torch\_lazy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-24T05:19:28.8087105Z creating build\bdist.win-amd64\wheel\torch\_library 2025-07-24T05:19:28.8090187Z copying build\lib.win-amd64-cpython-39\torch\_library\autograd.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-24T05:19:28.8095753Z copying build\lib.win-amd64-cpython-39\torch\_library\custom_ops.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-24T05:19:28.8101950Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_class_registry.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-24T05:19:28.8107338Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_impl.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-24T05:19:28.8123123Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_profile.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-24T05:19:28.8128759Z copying build\lib.win-amd64-cpython-39\torch\_library\infer_schema.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-24T05:19:28.8134335Z copying build\lib.win-amd64-cpython-39\torch\_library\simple_registry.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-24T05:19:28.8139756Z copying build\lib.win-amd64-cpython-39\torch\_library\triton.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-24T05:19:28.8145204Z copying build\lib.win-amd64-cpython-39\torch\_library\utils.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-24T05:19:28.8151222Z copying build\lib.win-amd64-cpython-39\torch\_library\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-24T05:19:28.8156469Z copying build\lib.win-amd64-cpython-39\torch\_linalg_utils.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8161971Z copying build\lib.win-amd64-cpython-39\torch\_lobpcg.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8177109Z creating build\bdist.win-amd64\wheel\torch\_logging 2025-07-24T05:19:28.8177810Z copying build\lib.win-amd64-cpython-39\torch\_logging\scribe.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-07-24T05:19:28.8178651Z copying build\lib.win-amd64-cpython-39\torch\_logging\structured.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-07-24T05:19:28.8183272Z copying build\lib.win-amd64-cpython-39\torch\_logging\_internal.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-07-24T05:19:28.8189043Z copying build\lib.win-amd64-cpython-39\torch\_logging\_registrations.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-07-24T05:19:28.8204310Z copying build\lib.win-amd64-cpython-39\torch\_logging\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-07-24T05:19:28.8209707Z copying build\lib.win-amd64-cpython-39\torch\_lowrank.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8215476Z copying build\lib.win-amd64-cpython-39\torch\_meta_registrations.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8223665Z copying build\lib.win-amd64-cpython-39\torch\_namedtensor_internals.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8229612Z creating build\bdist.win-amd64\wheel\torch\_numpy 2025-07-24T05:19:28.8232606Z copying build\lib.win-amd64-cpython-39\torch\_numpy\fft.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:19:28.8237959Z copying build\lib.win-amd64-cpython-39\torch\_numpy\linalg.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:19:28.8269145Z copying build\lib.win-amd64-cpython-39\torch\_numpy\random.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:19:28.8274718Z creating build\bdist.win-amd64\wheel\torch\_numpy\testing 2025-07-24T05:19:28.8278162Z copying build\lib.win-amd64-cpython-39\torch\_numpy\testing\utils.py -> build\bdist.win-amd64\wheel\.\torch\_numpy\testing 2025-07-24T05:19:28.8284508Z copying build\lib.win-amd64-cpython-39\torch\_numpy\testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_numpy\testing 2025-07-24T05:19:28.8289526Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_binary_ufuncs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:19:28.8294960Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_casting_dicts.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:19:28.8310516Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_dtypes.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:19:28.8315926Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_dtypes_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:19:28.8321125Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_funcs.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:19:28.8360490Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_funcs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:19:28.8366678Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_getlimits.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:19:28.8371722Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_ndarray.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:19:28.8377428Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_normalizations.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:19:28.8382818Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_reductions_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:19:28.8388227Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_ufuncs.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:19:28.8393453Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_unary_ufuncs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:19:28.8398864Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_util.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:19:28.8404008Z copying build\lib.win-amd64-cpython-39\torch\_numpy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:19:28.8408962Z copying build\lib.win-amd64-cpython-39\torch\_ops.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8415382Z creating build\bdist.win-amd64\wheel\torch\_prims 2025-07-24T05:19:28.8418522Z copying build\lib.win-amd64-cpython-39\torch\_prims\context.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-07-24T05:19:28.8424801Z copying build\lib.win-amd64-cpython-39\torch\_prims\debug_prims.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-07-24T05:19:28.8430129Z copying build\lib.win-amd64-cpython-39\torch\_prims\executor.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-07-24T05:19:28.8435496Z copying build\lib.win-amd64-cpython-39\torch\_prims\rng_prims.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-07-24T05:19:28.8441153Z copying build\lib.win-amd64-cpython-39\torch\_prims\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-07-24T05:19:28.8454099Z creating build\bdist.win-amd64\wheel\torch\_prims_common 2025-07-24T05:19:28.8457453Z copying build\lib.win-amd64-cpython-39\torch\_prims_common\wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_prims_common 2025-07-24T05:19:28.8463239Z copying build\lib.win-amd64-cpython-39\torch\_prims_common\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_prims_common 2025-07-24T05:19:28.8469868Z copying build\lib.win-amd64-cpython-39\torch\_python_dispatcher.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8475627Z creating build\bdist.win-amd64\wheel\torch\_refs 2025-07-24T05:19:28.8478634Z copying build\lib.win-amd64-cpython-39\torch\_refs\fft.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-07-24T05:19:28.8484462Z creating build\bdist.win-amd64\wheel\torch\_refs\linalg 2025-07-24T05:19:28.8487396Z copying build\lib.win-amd64-cpython-39\torch\_refs\linalg\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\linalg 2025-07-24T05:19:28.8492890Z creating build\bdist.win-amd64\wheel\torch\_refs\nn 2025-07-24T05:19:28.8496337Z creating build\bdist.win-amd64\wheel\torch\_refs\nn\functional 2025-07-24T05:19:28.8499307Z copying build\lib.win-amd64-cpython-39\torch\_refs\nn\functional\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\nn\functional 2025-07-24T05:19:28.8505729Z copying build\lib.win-amd64-cpython-39\torch\_refs\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\nn 2025-07-24T05:19:28.8511190Z creating build\bdist.win-amd64\wheel\torch\_refs\special 2025-07-24T05:19:28.8514421Z copying build\lib.win-amd64-cpython-39\torch\_refs\special\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\special 2025-07-24T05:19:28.8520010Z copying build\lib.win-amd64-cpython-39\torch\_refs\_conversions.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-07-24T05:19:28.8525549Z copying build\lib.win-amd64-cpython-39\torch\_refs\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-07-24T05:19:28.8547046Z copying build\lib.win-amd64-cpython-39\torch\_size_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8572532Z copying build\lib.win-amd64-cpython-39\torch\_sources.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8577882Z copying build\lib.win-amd64-cpython-39\torch\_storage_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8583336Z copying build\lib.win-amd64-cpython-39\torch\_streambase.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8588751Z creating build\bdist.win-amd64\wheel\torch\_strobelight 2025-07-24T05:19:28.8592368Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\cli_function_profiler.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-07-24T05:19:28.8598005Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\compile_time_profiler.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-07-24T05:19:28.8603464Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-07-24T05:19:28.8634082Z creating build\bdist.win-amd64\wheel\torch\_subclasses 2025-07-24T05:19:28.8637204Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_impls.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-24T05:19:28.8643314Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_tensor.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-24T05:19:28.8651073Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-24T05:19:28.8665797Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\functional_tensor.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-24T05:19:28.8671807Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\meta_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-24T05:19:28.8678597Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\schema_check_mode.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-24T05:19:28.8684254Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\_fake_tensor_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-24T05:19:28.8689708Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-24T05:19:28.8694729Z copying build\lib.win-amd64-cpython-39\torch\_tensor.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8701187Z copying build\lib.win-amd64-cpython-39\torch\_tensor_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8715041Z copying build\lib.win-amd64-cpython-39\torch\_tensor_str.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8715970Z copying build\lib.win-amd64-cpython-39\torch\_thread_safe_fork.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8721030Z copying build\lib.win-amd64-cpython-39\torch\_torch_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8730657Z copying build\lib.win-amd64-cpython-39\torch\_utils.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8746038Z copying build\lib.win-amd64-cpython-39\torch\_utils_internal.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8752023Z creating build\bdist.win-amd64\wheel\torch\_vendor 2025-07-24T05:19:28.8755208Z creating build\bdist.win-amd64\wheel\torch\_vendor\packaging 2025-07-24T05:19:28.8758492Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\version.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-07-24T05:19:28.8764190Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\_structures.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-07-24T05:19:28.8769600Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-07-24T05:19:28.8774943Z copying build\lib.win-amd64-cpython-39\torch\_vendor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_vendor 2025-07-24T05:19:28.8779179Z copying build\lib.win-amd64-cpython-39\torch\_VF.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8784099Z copying build\lib.win-amd64-cpython-39\torch\_VF.pyi -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8800357Z copying build\lib.win-amd64-cpython-39\torch\_vmap_internals.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8805885Z copying build\lib.win-amd64-cpython-39\torch\_weights_only_unpickler.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8811706Z copying build\lib.win-amd64-cpython-39\torch\__config__.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8817129Z copying build\lib.win-amd64-cpython-39\torch\__future__.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8822466Z copying build\lib.win-amd64-cpython-39\torch\__init__.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:19:28.8840536Z creating build\bdist.win-amd64\wheel\torchgen 2025-07-24T05:19:28.8843731Z creating build\bdist.win-amd64\wheel\torchgen\aoti 2025-07-24T05:19:28.8846811Z copying build\lib.win-amd64-cpython-39\torchgen\aoti\fallback_ops.py -> build\bdist.win-amd64\wheel\.\torchgen\aoti 2025-07-24T05:19:28.8852509Z copying build\lib.win-amd64-cpython-39\torchgen\aoti\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\aoti 2025-07-24T05:19:28.8857080Z creating build\bdist.win-amd64\wheel\torchgen\api 2025-07-24T05:19:28.8860110Z copying build\lib.win-amd64-cpython-39\torchgen\api\autograd.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:19:28.8866101Z copying build\lib.win-amd64-cpython-39\torchgen\api\cpp.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:19:28.8871994Z copying build\lib.win-amd64-cpython-39\torchgen\api\dispatcher.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:19:28.8877397Z copying build\lib.win-amd64-cpython-39\torchgen\api\functionalization.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:19:28.8882719Z copying build\lib.win-amd64-cpython-39\torchgen\api\lazy.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:19:28.8898298Z copying build\lib.win-amd64-cpython-39\torchgen\api\meta.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:19:28.8902990Z copying build\lib.win-amd64-cpython-39\torchgen\api\native.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:19:28.8908094Z copying build\lib.win-amd64-cpython-39\torchgen\api\python.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:19:28.8914310Z copying build\lib.win-amd64-cpython-39\torchgen\api\structured.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:19:28.8920010Z copying build\lib.win-amd64-cpython-39\torchgen\api\translate.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:19:28.8925913Z creating build\bdist.win-amd64\wheel\torchgen\api\types 2025-07-24T05:19:28.8928924Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\signatures.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-07-24T05:19:28.8934270Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\types.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-07-24T05:19:28.8939470Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\types_base.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-07-24T05:19:28.8944925Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-07-24T05:19:28.8949836Z copying build\lib.win-amd64-cpython-39\torchgen\api\ufunc.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:19:28.8955044Z copying build\lib.win-amd64-cpython-39\torchgen\api\unboxing.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:19:28.8982674Z copying build\lib.win-amd64-cpython-39\torchgen\api\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:19:28.8986874Z copying build\lib.win-amd64-cpython-39\torchgen\code_template.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:19:28.8992375Z copying build\lib.win-amd64-cpython-39\torchgen\context.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:19:28.8997533Z creating build\bdist.win-amd64\wheel\torchgen\dest 2025-07-24T05:19:28.9000626Z copying build\lib.win-amd64-cpython-39\torchgen\dest\lazy_ir.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-07-24T05:19:28.9006516Z copying build\lib.win-amd64-cpython-39\torchgen\dest\lazy_ts_lowering.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-07-24T05:19:28.9011749Z copying build\lib.win-amd64-cpython-39\torchgen\dest\native_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-07-24T05:19:28.9017204Z copying build\lib.win-amd64-cpython-39\torchgen\dest\register_dispatch_key.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-07-24T05:19:28.9032761Z copying build\lib.win-amd64-cpython-39\torchgen\dest\ufunc.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-07-24T05:19:28.9038633Z copying build\lib.win-amd64-cpython-39\torchgen\dest\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-07-24T05:19:28.9043734Z copying build\lib.win-amd64-cpython-39\torchgen\gen.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:19:28.9060206Z copying build\lib.win-amd64-cpython-39\torchgen\gen_aoti_c_shim.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:19:28.9066069Z copying build\lib.win-amd64-cpython-39\torchgen\gen_backend_stubs.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:19:28.9071962Z copying build\lib.win-amd64-cpython-39\torchgen\gen_functionalization_type.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:19:28.9077988Z copying build\lib.win-amd64-cpython-39\torchgen\gen_lazy_tensor.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:19:28.9083833Z copying build\lib.win-amd64-cpython-39\torchgen\gen_schema_utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:19:28.9089362Z copying build\lib.win-amd64-cpython-39\torchgen\gen_vmap_plumbing.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:19:28.9095186Z copying build\lib.win-amd64-cpython-39\torchgen\local.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:19:28.9100424Z copying build\lib.win-amd64-cpython-39\torchgen\model.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:19:28.9107366Z copying build\lib.win-amd64-cpython-39\torchgen\native_function_generation.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:19:28.9113472Z creating build\bdist.win-amd64\wheel\torchgen\operator_versions 2025-07-24T05:19:28.9116958Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\gen_mobile_upgraders.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-07-24T05:19:28.9122573Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\gen_mobile_upgraders_constant.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-07-24T05:19:28.9127613Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-07-24T05:19:28.9141790Z creating build\bdist.win-amd64\wheel\torchgen\packaged 2025-07-24T05:19:28.9145149Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen 2025-07-24T05:19:28.9148367Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen\native 2025-07-24T05:19:28.9151589Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native\native_functions.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\native 2025-07-24T05:19:28.9162978Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native\tags.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\native 2025-07-24T05:19:28.9169296Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9172745Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\ATenOpList.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9178505Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\aten_interned_strings.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9183780Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\CompositeViewCopyKernels.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9200077Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9205516Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9247602Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9248856Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9250119Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9251279Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\enum_tag.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9252424Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Function.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9254036Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\FunctionalInverses.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9255226Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9256315Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9257541Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\LazyIr.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9263142Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\LazyNonNativeIr.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9268537Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\MethodOperators.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9274123Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9279252Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9284924Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeMetaFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9300736Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeMetaFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9305819Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operator.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9317884Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operators.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9323326Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operators.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9329424Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RedispatchFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9334096Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RedispatchFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9339514Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterBackendSelect.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9344993Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterCodegenUnboxedKernels.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9350598Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterDispatchDefinitions.ini -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9355701Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterDispatchKey.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9370310Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterFunctionalization.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9375785Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterSchema.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9381133Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegistrationDeclarations.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9386185Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\TensorBody.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9392172Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\TensorMethods.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9397631Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCPU.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9402697Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCPUKernel.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9408047Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCUDA.cu -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9413013Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UnboxingFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9428095Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UnboxingFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:19:28.9433816Z creating build\bdist.win-amd64\wheel\torchgen\packaged\autograd 2025-07-24T05:19:28.9437201Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\BUILD.bazel -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:19:28.9442191Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\build.bzl -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:19:28.9447070Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\context.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:19:28.9452204Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\deprecated.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:19:28.9457478Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\derivatives.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:19:28.9474761Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_annotated_fn_args.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:19:28.9480186Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_autograd.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:19:28.9485723Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_autograd_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:19:28.9491826Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_inplace_or_view_type.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:19:28.9497616Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_python_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:19:28.9503473Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_trace_type.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:19:28.9509348Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_variable_factories.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:19:28.9514654Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_variable_type.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:19:28.9521539Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_view_funcs.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:19:28.9527546Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\load_derivatives.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:19:28.9533367Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\README.md -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:19:28.9539117Z creating build\bdist.win-amd64\wheel\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9542604Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ADInplaceOrViewType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9548105Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\annotated_fn_args.py.in -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9553348Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\Functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9568079Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\Functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9573521Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_enum_tag.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9579303Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_fft_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9585288Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9599157Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9604526Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_linalg_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9610183Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_nested_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9615718Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_nn_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9621247Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_return_types.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9627163Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_return_types.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9632497Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_sparse_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9638449Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_special_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9644133Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_torch_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9649701Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_variable_methods.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9665586Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\TraceType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9671112Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\VariableType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9676674Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\VariableType.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9682161Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\variable_factories.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9687832Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ViewFuncs.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9693233Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ViewFuncs.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:19:28.9698808Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:19:28.9703037Z creating build\bdist.win-amd64\wheel\torchgen\selective_build 2025-07-24T05:19:28.9706437Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\operator.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-07-24T05:19:28.9724947Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\selector.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-07-24T05:19:28.9725917Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-07-24T05:19:28.9726600Z creating build\bdist.win-amd64\wheel\torchgen\static_runtime 2025-07-24T05:19:28.9727280Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\config.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-07-24T05:19:28.9732781Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\generator.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-07-24T05:19:28.9738597Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\gen_static_runtime_ops.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-07-24T05:19:28.9754135Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-07-24T05:19:28.9759684Z copying build\lib.win-amd64-cpython-39\torchgen\utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:19:28.9764370Z copying build\lib.win-amd64-cpython-39\torchgen\yaml_utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:19:28.9769626Z copying build\lib.win-amd64-cpython-39\torchgen\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:19:28.9782050Z running install_egg_info 2025-07-24T05:19:28.9877627Z running egg_info 2025-07-24T05:19:28.9956514Z creating torch.egg-info 2025-07-24T05:19:28.9959364Z writing torch.egg-info\PKG-INFO 2025-07-24T05:19:28.9990639Z writing dependency_links to torch.egg-info\dependency_links.txt 2025-07-24T05:19:28.9994832Z writing entry points to torch.egg-info\entry_points.txt 2025-07-24T05:19:29.0020061Z writing requirements to torch.egg-info\requires.txt 2025-07-24T05:19:29.0024115Z writing top-level names to torch.egg-info\top_level.txt 2025-07-24T05:19:29.0027726Z writing manifest file 'torch.egg-info\SOURCES.txt' 2025-07-24T05:19:30.1787026Z reading manifest file 'torch.egg-info\SOURCES.txt' 2025-07-24T05:19:30.1793016Z reading manifest template 'MANIFEST.in' 2025-07-24T05:19:30.1823239Z warning: no files found matching 'BUILD' 2025-07-24T05:19:30.1827366Z warning: no files found matching '*.BUILD' 2025-07-24T05:19:30.1834362Z warning: no files found matching 'BUCK' 2025-07-24T05:19:30.1859922Z warning: no files found matching '[Mm]akefile.*' 2025-07-24T05:19:30.1869113Z warning: no files found matching '*.[Dd]ockerfile' 2025-07-24T05:19:30.1873897Z warning: no files found matching '[Dd]ockerfile.*' 2025-07-24T05:19:39.1723440Z warning: no previously-included files matching '*.o' found anywhere in distribution 2025-07-24T05:19:39.2969329Z warning: no previously-included files matching '*.obj' found anywhere in distribution 2025-07-24T05:19:39.4212050Z warning: no previously-included files matching '*.so' found anywhere in distribution 2025-07-24T05:19:39.5458358Z warning: no previously-included files matching '*.a' found anywhere in distribution 2025-07-24T05:19:39.6705390Z warning: no previously-included files matching '*.dylib' found anywhere in distribution 2025-07-24T05:19:40.2094225Z no previously-included directories found matching '*\.git' 2025-07-24T05:19:40.4303958Z warning: no previously-included files matching '*~' found anywhere in distribution 2025-07-24T05:19:40.5548197Z warning: no previously-included files matching '*.swp' found anywhere in distribution 2025-07-24T05:19:40.5576274Z adding license file 'LICENSE' 2025-07-24T05:19:40.5576604Z adding license file 'NOTICE' 2025-07-24T05:19:46.0763279Z writing manifest file 'torch.egg-info\SOURCES.txt' 2025-07-24T05:19:46.1246873Z Copying torch.egg-info to build\bdist.win-amd64\wheel\.\torch-2.9.0a0+git27c8ef1-py3.9.egg-info 2025-07-24T05:19:46.1354832Z running install_scripts 2025-07-24T05:19:46.1373564Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\command\bdist_wheel.py:103: RuntimeWarning: Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect 2025-07-24T05:19:46.1374611Z if get_flag("Py_DEBUG", hasattr(sys, "gettotalrefcount"), warn=(impl == "cp")): 2025-07-24T05:19:46.1453332Z creating build\bdist.win-amd64\wheel\torch-2.9.0a0+git27c8ef1.dist-info\WHEEL 2025-07-24T05:19:46.1468133Z creating 'dist\torch-2.9.0a0+git27c8ef1-cp39-cp39-win_amd64.whl' and adding 'build\bdist.win-amd64\wheel' to it 2025-07-24T05:19:46.1711015Z adding 'functorch/_C.cp39-win_amd64.pyd' 2025-07-24T05:19:46.1741930Z adding 'functorch/__init__.py' 2025-07-24T05:19:46.1745814Z adding 'functorch/_src/__init__.py' 2025-07-24T05:19:46.1749478Z adding 'functorch/_src/aot_autograd/__init__.py' 2025-07-24T05:19:46.1753303Z adding 'functorch/_src/eager_transforms/__init__.py' 2025-07-24T05:19:46.1757189Z adding 'functorch/_src/make_functional/__init__.py' 2025-07-24T05:19:46.1760704Z adding 'functorch/_src/vmap/__init__.py' 2025-07-24T05:19:46.1764685Z adding 'functorch/compile/__init__.py' 2025-07-24T05:19:46.1769876Z adding 'functorch/dim/__init__.py' 2025-07-24T05:19:46.1773390Z adding 'functorch/dim/batch_tensor.py' 2025-07-24T05:19:46.1776517Z adding 'functorch/dim/delayed_mul_tensor.py' 2025-07-24T05:19:46.1780423Z adding 'functorch/dim/dim.py' 2025-07-24T05:19:46.1783761Z adding 'functorch/dim/magic_trace.py' 2025-07-24T05:19:46.1788073Z adding 'functorch/dim/op_properties.py' 2025-07-24T05:19:46.1798038Z adding 'functorch/dim/reference.py' 2025-07-24T05:19:46.1811123Z adding 'functorch/dim/tree_map.py' 2025-07-24T05:19:46.1811449Z adding 'functorch/dim/wrap_type.py' 2025-07-24T05:19:46.1811725Z adding 'functorch/einops/__init__.py' 2025-07-24T05:19:46.1815528Z adding 'functorch/einops/_parsing.py' 2025-07-24T05:19:46.1820822Z adding 'functorch/einops/rearrange.py' 2025-07-24T05:19:46.1824984Z adding 'functorch/experimental/__init__.py' 2025-07-24T05:19:46.1827892Z adding 'functorch/experimental/control_flow.py' 2025-07-24T05:19:46.1830779Z adding 'functorch/experimental/ops.py' 2025-07-24T05:19:46.1839636Z adding 'torch/_C.cp39-win_amd64.pyd' 2025-07-24T05:19:46.1843020Z adding 'torch/_VF.py' 2025-07-24T05:19:46.2068479Z adding 'torch/_VF.pyi' 2025-07-24T05:19:46.2098753Z adding 'torch/__config__.py' 2025-07-24T05:19:46.2102199Z adding 'torch/__future__.py' 2025-07-24T05:19:46.2140705Z adding 'torch/__init__.py' 2025-07-24T05:19:46.2151408Z adding 'torch/_appdirs.py' 2025-07-24T05:19:46.2155979Z adding 'torch/_classes.py' 2025-07-24T05:19:46.2159044Z adding 'torch/_compile.py' 2025-07-24T05:19:46.2164853Z adding 'torch/_custom_ops.py' 2025-07-24T05:19:46.2168970Z adding 'torch/_deploy.py' 2025-07-24T05:19:46.2171821Z adding 'torch/_environment.py' 2025-07-24T05:19:46.2186779Z adding 'torch/_guards.py' 2025-07-24T05:19:46.2210106Z adding 'torch/_jit_internal.py' 2025-07-24T05:19:46.2215526Z adding 'torch/_linalg_utils.py' 2025-07-24T05:19:46.2231560Z adding 'torch/_lobpcg.py' 2025-07-24T05:19:46.2238074Z adding 'torch/_lowrank.py' 2025-07-24T05:19:46.2317228Z adding 'torch/_meta_registrations.py' 2025-07-24T05:19:46.2327358Z adding 'torch/_namedtensor_internals.py' 2025-07-24T05:19:46.2386841Z adding 'torch/_ops.py' 2025-07-24T05:19:46.2387103Z adding 'torch/_python_dispatcher.py' 2025-07-24T05:19:46.2387376Z adding 'torch/_size_docs.py' 2025-07-24T05:19:46.2387605Z adding 'torch/_sources.py' 2025-07-24T05:19:46.2387839Z adding 'torch/_storage_docs.py' 2025-07-24T05:19:46.2388076Z adding 'torch/_streambase.py' 2025-07-24T05:19:46.2398896Z adding 'torch/_tensor.py' 2025-07-24T05:19:46.2444035Z adding 'torch/_tensor_docs.py' 2025-07-24T05:19:46.2458298Z adding 'torch/_tensor_str.py' 2025-07-24T05:19:46.2461166Z adding 'torch/_thread_safe_fork.py' 2025-07-24T05:19:46.2602124Z adding 'torch/_torch_docs.py' 2025-07-24T05:19:46.2629685Z adding 'torch/_utils.py' 2025-07-24T05:19:46.2636695Z adding 'torch/_utils_internal.py' 2025-07-24T05:19:46.2642304Z adding 'torch/_vmap_internals.py' 2025-07-24T05:19:46.2650529Z adding 'torch/_weights_only_unpickler.py' 2025-07-24T05:19:46.2682576Z adding 'torch/functional.py' 2025-07-24T05:19:46.2697192Z adding 'torch/hub.py' 2025-07-24T05:19:46.2719551Z adding 'torch/library.py' 2025-07-24T05:19:46.2747723Z adding 'torch/overrides.py' 2025-07-24T05:19:46.2753200Z adding 'torch/py.typed' 2025-07-24T05:19:46.2758046Z adding 'torch/quasirandom.py' 2025-07-24T05:19:46.2762901Z adding 'torch/random.py' 2025-07-24T05:19:46.2766531Z adding 'torch/return_types.py' 2025-07-24T05:19:46.2771069Z adding 'torch/return_types.pyi' 2025-07-24T05:19:46.2800951Z adding 'torch/serialization.py' 2025-07-24T05:19:46.2856241Z adding 'torch/storage.py' 2025-07-24T05:19:46.2856494Z adding 'torch/torch_version.py' 2025-07-24T05:19:46.2856754Z adding 'torch/types.py' 2025-07-24T05:19:46.2856977Z adding 'torch/version.py' 2025-07-24T05:19:46.3059474Z adding 'torch/_C/_VariableFunctions.pyi' 2025-07-24T05:19:46.3177957Z adding 'torch/_C/__init__.pyi' 2025-07-24T05:19:46.3190639Z adding 'torch/_C/_aoti.pyi' 2025-07-24T05:19:46.3194646Z adding 'torch/_C/_autograd.pyi' 2025-07-24T05:19:46.3198520Z adding 'torch/_C/_cpu.pyi' 2025-07-24T05:19:46.3200761Z adding 'torch/_C/_cudnn.pyi' 2025-07-24T05:19:46.3203435Z adding 'torch/_C/_cusparselt.pyi' 2025-07-24T05:19:46.3206396Z adding 'torch/_C/_distributed_autograd.pyi' 2025-07-24T05:19:46.3214471Z adding 'torch/_C/_distributed_c10d.pyi' 2025-07-24T05:19:46.3219157Z adding 'torch/_C/_distributed_rpc.pyi' 2025-07-24T05:19:46.3222653Z adding 'torch/_C/_distributed_rpc_testing.pyi' 2025-07-24T05:19:46.3225633Z adding 'torch/_C/_functions.pyi' 2025-07-24T05:19:46.3229078Z adding 'torch/_C/_functorch.pyi' 2025-07-24T05:19:46.3231974Z adding 'torch/_C/_instruction_counter.pyi' 2025-07-24T05:19:46.3234707Z adding 'torch/_C/_itt.pyi' 2025-07-24T05:19:46.3238578Z adding 'torch/_C/_jit_tree_views.pyi' 2025-07-24T05:19:46.3241727Z adding 'torch/_C/_lazy.pyi' 2025-07-24T05:19:46.3244642Z adding 'torch/_C/_lazy_ts_backend.pyi' 2025-07-24T05:19:46.3247762Z adding 'torch/_C/_monitor.pyi' 2025-07-24T05:19:46.3251650Z adding 'torch/_C/_nn.pyi' 2025-07-24T05:19:46.3254747Z adding 'torch/_C/_nvtx.pyi' 2025-07-24T05:19:46.3257681Z adding 'torch/_C/_onnx.pyi' 2025-07-24T05:19:46.3261761Z adding 'torch/_C/_profiler.pyi' 2025-07-24T05:19:46.3264716Z adding 'torch/_C/_verbose.pyi' 2025-07-24T05:19:46.3268347Z adding 'torch/_C/_dynamo/__init__.pyi' 2025-07-24T05:19:46.3271331Z adding 'torch/_C/_dynamo/compiled_autograd.pyi' 2025-07-24T05:19:46.3274696Z adding 'torch/_C/_dynamo/eval_frame.pyi' 2025-07-24T05:19:46.3278569Z adding 'torch/_C/_dynamo/guards.pyi' 2025-07-24T05:19:46.3282450Z adding 'torch/_C/_export/__init__.pyi' 2025-07-24T05:19:46.3285427Z adding 'torch/_C/_export/pt2_archive_constants.pyi' 2025-07-24T05:19:46.3289034Z adding 'torch/_C_flatbuffer/__init__.pyi' 2025-07-24T05:19:46.3292937Z adding 'torch/_awaits/__init__.py' 2025-07-24T05:19:46.3296429Z adding 'torch/_custom_op/__init__.py' 2025-07-24T05:19:46.3302078Z adding 'torch/_custom_op/autograd.py' 2025-07-24T05:19:46.3311883Z adding 'torch/_custom_op/impl.py' 2025-07-24T05:19:46.3320409Z adding 'torch/_decomp/__init__.py' 2025-07-24T05:19:46.3383332Z adding 'torch/_decomp/decompositions.py' 2025-07-24T05:19:46.3393367Z adding 'torch/_decomp/decompositions_for_jvp.py' 2025-07-24T05:19:46.3398757Z adding 'torch/_decomp/decompositions_for_rng.py' 2025-07-24T05:19:46.3402514Z adding 'torch/_dispatch/__init__.py' 2025-07-24T05:19:46.3407218Z adding 'torch/_dispatch/python.py' 2025-07-24T05:19:46.3413110Z adding 'torch/_dynamo/__init__.py' 2025-07-24T05:19:46.3418594Z adding 'torch/_dynamo/_trace_wrapped_higher_order_op.py' 2025-07-24T05:19:46.3423979Z adding 'torch/_dynamo/bytecode_analysis.py' 2025-07-24T05:19:46.3446021Z adding 'torch/_dynamo/bytecode_transformation.py' 2025-07-24T05:19:46.3452558Z adding 'torch/_dynamo/cache_size.py' 2025-07-24T05:19:46.3456806Z adding 'torch/_dynamo/callback.py' 2025-07-24T05:19:46.3460919Z adding 'torch/_dynamo/code_context.py' 2025-07-24T05:19:46.3471185Z adding 'torch/_dynamo/codegen.py' 2025-07-24T05:19:46.3492526Z adding 'torch/_dynamo/compiled_autograd.py' 2025-07-24T05:19:46.3500538Z adding 'torch/_dynamo/comptime.py' 2025-07-24T05:19:46.3514243Z adding 'torch/_dynamo/config.py' 2025-07-24T05:19:46.3536871Z adding 'torch/_dynamo/convert_frame.py' 2025-07-24T05:19:46.3541860Z adding 'torch/_dynamo/create_parameter_op.py' 2025-07-24T05:19:46.3545111Z adding 'torch/_dynamo/current_scope_id.py' 2025-07-24T05:19:46.3557905Z adding 'torch/_dynamo/debug_utils.py' 2025-07-24T05:19:46.3572110Z adding 'torch/_dynamo/decorators.py' 2025-07-24T05:19:46.3579268Z adding 'torch/_dynamo/device_interface.py' 2025-07-24T05:19:46.3583012Z adding 'torch/_dynamo/distributed.py' 2025-07-24T05:19:46.3615300Z adding 'torch/_dynamo/eval_frame.py' 2025-07-24T05:19:46.3626874Z adding 'torch/_dynamo/exc.py' 2025-07-24T05:19:46.3632345Z adding 'torch/_dynamo/external_utils.py' 2025-07-24T05:19:46.3636589Z adding 'torch/_dynamo/funcname_cache.py' 2025-07-24T05:19:46.3639638Z adding 'torch/_dynamo/graph_break_hints.py' 2025-07-24T05:19:46.3664495Z adding 'torch/_dynamo/graph_break_registry.json' 2025-07-24T05:19:46.3674256Z adding 'torch/_dynamo/graph_deduplication.py' 2025-07-24T05:19:46.3682578Z adding 'torch/_dynamo/graph_region_tracker.py' 2025-07-24T05:19:46.3686416Z adding 'torch/_dynamo/graph_utils.py' 2025-07-24T05:19:46.3737606Z adding 'torch/_dynamo/guards.py' 2025-07-24T05:19:46.3744924Z adding 'torch/_dynamo/hooks.py' 2025-07-24T05:19:46.3747926Z adding 'torch/_dynamo/logging.py' 2025-07-24T05:19:46.3752645Z adding 'torch/_dynamo/metrics_context.py' 2025-07-24T05:19:46.3757067Z adding 'torch/_dynamo/mutation_guard.py' 2025-07-24T05:19:46.3808194Z adding 'torch/_dynamo/output_graph.py' 2025-07-24T05:19:46.3834903Z adding 'torch/_dynamo/package.py' 2025-07-24T05:19:46.3835199Z adding 'torch/_dynamo/pgo.py' 2025-07-24T05:19:46.3840957Z adding 'torch/_dynamo/precompile_context.py' 2025-07-24T05:19:46.3845268Z adding 'torch/_dynamo/profiler.py' 2025-07-24T05:19:46.3849434Z adding 'torch/_dynamo/replay_record.py' 2025-07-24T05:19:46.3859026Z adding 'torch/_dynamo/resume_execution.py' 2025-07-24T05:19:46.3875997Z adding 'torch/_dynamo/side_effects.py' 2025-07-24T05:19:46.3886624Z adding 'torch/_dynamo/source.py' 2025-07-24T05:19:46.3943614Z adding 'torch/_dynamo/symbolic_convert.py' 2025-07-24T05:19:46.3950964Z adding 'torch/_dynamo/tensor_version_op.py' 2025-07-24T05:19:46.3955587Z adding 'torch/_dynamo/test_case.py' 2025-07-24T05:19:46.3959054Z adding 'torch/_dynamo/test_dont_skip_tracing_functions.py' 2025-07-24T05:19:46.3964860Z adding 'torch/_dynamo/test_minifier_common.py' 2025-07-24T05:19:46.3972529Z adding 'torch/_dynamo/testing.py' 2025-07-24T05:19:46.4010765Z adding 'torch/_dynamo/trace_rules.py' 2025-07-24T05:19:46.4018183Z adding 'torch/_dynamo/types.py' 2025-07-24T05:19:46.4079007Z adding 'torch/_dynamo/utils.py' 2025-07-24T05:19:46.4086705Z adding 'torch/_dynamo/backends/__init__.py' 2025-07-24T05:19:46.4090958Z adding 'torch/_dynamo/backends/common.py' 2025-07-24T05:19:46.4096353Z adding 'torch/_dynamo/backends/cudagraphs.py' 2025-07-24T05:19:46.4103430Z adding 'torch/_dynamo/backends/debugging.py' 2025-07-24T05:19:46.4114898Z adding 'torch/_dynamo/backends/distributed.py' 2025-07-24T05:19:46.4119024Z adding 'torch/_dynamo/backends/inductor.py' 2025-07-24T05:19:46.4122281Z adding 'torch/_dynamo/backends/onnxrt.py' 2025-07-24T05:19:46.4126748Z adding 'torch/_dynamo/backends/registry.py' 2025-07-24T05:19:46.4135660Z adding 'torch/_dynamo/backends/tensorrt.py' 2025-07-24T05:19:46.4136811Z adding 'torch/_dynamo/backends/torchxla.py' 2025-07-24T05:19:46.4140810Z adding 'torch/_dynamo/backends/tvm.py' 2025-07-24T05:19:46.4148376Z adding 'torch/_dynamo/polyfills/__init__.py' 2025-07-24T05:19:46.4151328Z adding 'torch/_dynamo/polyfills/builtins.py' 2025-07-24T05:19:46.4154649Z adding 'torch/_dynamo/polyfills/functools.py' 2025-07-24T05:19:46.4157908Z adding 'torch/_dynamo/polyfills/fx.py' 2025-07-24T05:19:46.4162257Z adding 'torch/_dynamo/polyfills/itertools.py' 2025-07-24T05:19:46.4165797Z adding 'torch/_dynamo/polyfills/loader.py' 2025-07-24T05:19:46.4169587Z adding 'torch/_dynamo/polyfills/operator.py' 2025-07-24T05:19:46.4172831Z adding 'torch/_dynamo/polyfills/os.py' 2025-07-24T05:19:46.4179075Z adding 'torch/_dynamo/polyfills/pytree.py' 2025-07-24T05:19:46.4182678Z adding 'torch/_dynamo/polyfills/struct.py' 2025-07-24T05:19:46.4185704Z adding 'torch/_dynamo/polyfills/sys.py' 2025-07-24T05:19:46.4189060Z adding 'torch/_dynamo/polyfills/tensor.py' 2025-07-24T05:19:46.4192644Z adding 'torch/_dynamo/repro/__init__.py' 2025-07-24T05:19:46.4207301Z adding 'torch/_dynamo/repro/after_aot.py' 2025-07-24T05:19:46.4216679Z adding 'torch/_dynamo/repro/after_dynamo.py' 2025-07-24T05:19:46.4226075Z adding 'torch/_dynamo/repro/aoti.py' 2025-07-24T05:19:46.4232031Z adding 'torch/_dynamo/variables/__init__.py' 2025-07-24T05:19:46.4241986Z adding 'torch/_dynamo/variables/base.py' 2025-07-24T05:19:46.4296848Z adding 'torch/_dynamo/variables/builder.py' 2025-07-24T05:19:46.4333905Z adding 'torch/_dynamo/variables/builtin.py' 2025-07-24T05:19:46.4340314Z adding 'torch/_dynamo/variables/constant.py' 2025-07-24T05:19:46.4357948Z adding 'torch/_dynamo/variables/ctx_manager.py' 2025-07-24T05:19:46.4372714Z adding 'torch/_dynamo/variables/dicts.py' 2025-07-24T05:19:46.4380192Z adding 'torch/_dynamo/variables/distributed.py' 2025-07-24T05:19:46.4410663Z adding 'torch/_dynamo/variables/functions.py' 2025-07-24T05:19:46.4451830Z adding 'torch/_dynamo/variables/higher_order_ops.py' 2025-07-24T05:19:46.4462279Z adding 'torch/_dynamo/variables/iter.py' 2025-07-24T05:19:46.4467577Z adding 'torch/_dynamo/variables/lazy.py' 2025-07-24T05:19:46.4481868Z adding 'torch/_dynamo/variables/lists.py' 2025-07-24T05:19:46.4506262Z adding 'torch/_dynamo/variables/misc.py' 2025-07-24T05:19:46.4524755Z adding 'torch/_dynamo/variables/nn_module.py' 2025-07-24T05:19:46.4532987Z adding 'torch/_dynamo/variables/optimizer.py' 2025-07-24T05:19:46.4537226Z adding 'torch/_dynamo/variables/script_object.py' 2025-07-24T05:19:46.4540802Z adding 'torch/_dynamo/variables/sdpa.py' 2025-07-24T05:19:46.4563438Z adding 'torch/_dynamo/variables/tensor.py' 2025-07-24T05:19:46.4589093Z adding 'torch/_dynamo/variables/torch.py' 2025-07-24T05:19:46.4601622Z adding 'torch/_dynamo/variables/torch_function.py' 2025-07-24T05:19:46.4626629Z adding 'torch/_dynamo/variables/user_defined.py' 2025-07-24T05:19:46.4634237Z adding 'torch/_export/__init__.py' 2025-07-24T05:19:46.4656730Z adding 'torch/_export/converter.py' 2025-07-24T05:19:46.4661451Z adding 'torch/_export/error.py' 2025-07-24T05:19:46.4676791Z adding 'torch/_export/non_strict_utils.py' 2025-07-24T05:19:46.4684529Z adding 'torch/_export/pass_base.py' 2025-07-24T05:19:46.4689051Z adding 'torch/_export/tools.py' 2025-07-24T05:19:46.4710797Z adding 'torch/_export/utils.py' 2025-07-24T05:19:46.4719128Z adding 'torch/_export/verifier.py' 2025-07-24T05:19:46.4724714Z adding 'torch/_export/wrappers.py' 2025-07-24T05:19:46.4728653Z adding 'torch/_export/db/__init__.py' 2025-07-24T05:19:46.4732754Z adding 'torch/_export/db/case.py' 2025-07-24T05:19:46.4736060Z adding 'torch/_export/db/gen_example.py' 2025-07-24T05:19:46.4739334Z adding 'torch/_export/db/logging.py' 2025-07-24T05:19:46.4744215Z adding 'torch/_export/db/examples/__init__.py' 2025-07-24T05:19:46.4747390Z adding 'torch/_export/db/examples/assume_constant_result.py' 2025-07-24T05:19:46.4750415Z adding 'torch/_export/db/examples/autograd_function.py' 2025-07-24T05:19:46.4753365Z adding 'torch/_export/db/examples/class_method.py' 2025-07-24T05:19:46.4756618Z adding 'torch/_export/db/examples/cond_branch_class_method.py' 2025-07-24T05:19:46.4759971Z adding 'torch/_export/db/examples/cond_branch_nested_function.py' 2025-07-24T05:19:46.4763318Z adding 'torch/_export/db/examples/cond_branch_nonlocal_variables.py' 2025-07-24T05:19:46.4766301Z adding 'torch/_export/db/examples/cond_closed_over_variable.py' 2025-07-24T05:19:46.4769342Z adding 'torch/_export/db/examples/cond_operands.py' 2025-07-24T05:19:46.4772431Z adding 'torch/_export/db/examples/cond_predicate.py' 2025-07-24T05:19:46.4775560Z adding 'torch/_export/db/examples/constrain_as_size_example.py' 2025-07-24T05:19:46.4778494Z adding 'torch/_export/db/examples/constrain_as_value_example.py' 2025-07-24T05:19:46.4781388Z adding 'torch/_export/db/examples/decorator.py' 2025-07-24T05:19:46.4784268Z adding 'torch/_export/db/examples/dictionary.py' 2025-07-24T05:19:46.4787205Z adding 'torch/_export/db/examples/dynamic_shape_assert.py' 2025-07-24T05:19:46.4790144Z adding 'torch/_export/db/examples/dynamic_shape_constructor.py' 2025-07-24T05:19:46.4793073Z adding 'torch/_export/db/examples/dynamic_shape_if_guard.py' 2025-07-24T05:19:46.4795971Z adding 'torch/_export/db/examples/dynamic_shape_map.py' 2025-07-24T05:19:46.4799075Z adding 'torch/_export/db/examples/dynamic_shape_round.py' 2025-07-24T05:19:46.4802020Z adding 'torch/_export/db/examples/dynamic_shape_slicing.py' 2025-07-24T05:19:46.4804959Z adding 'torch/_export/db/examples/dynamic_shape_view.py' 2025-07-24T05:19:46.4808034Z adding 'torch/_export/db/examples/fn_with_kwargs.py' 2025-07-24T05:19:46.4810912Z adding 'torch/_export/db/examples/list_contains.py' 2025-07-24T05:19:46.4813861Z adding 'torch/_export/db/examples/list_unpack.py' 2025-07-24T05:19:46.4816878Z adding 'torch/_export/db/examples/model_attr_mutation.py' 2025-07-24T05:19:46.4819847Z adding 'torch/_export/db/examples/nested_function.py' 2025-07-24T05:19:46.4822792Z adding 'torch/_export/db/examples/null_context_manager.py' 2025-07-24T05:19:46.4825676Z adding 'torch/_export/db/examples/optional_input.py' 2025-07-24T05:19:46.4828563Z adding 'torch/_export/db/examples/pytree_flatten.py' 2025-07-24T05:19:46.4831522Z adding 'torch/_export/db/examples/scalar_output.py' 2025-07-24T05:19:46.4834525Z adding 'torch/_export/db/examples/specialized_attribute.py' 2025-07-24T05:19:46.4842228Z adding 'torch/_export/db/examples/static_for_loop.py' 2025-07-24T05:19:46.4842579Z adding 'torch/_export/db/examples/static_if.py' 2025-07-24T05:19:46.4845647Z adding 'torch/_export/db/examples/tensor_setattr.py' 2025-07-24T05:19:46.4887184Z adding 'torch/_export/db/examples/type_reflection_method.py' 2025-07-24T05:19:46.4887635Z adding 'torch/_export/db/examples/unsupported_operator.py' 2025-07-24T05:19:46.4888045Z adding 'torch/_export/db/examples/user_input_mutation.py' 2025-07-24T05:19:46.4888399Z adding 'torch/_export/pass_infra/__init__.py' 2025-07-24T05:19:46.4888738Z adding 'torch/_export/pass_infra/node_metadata.py' 2025-07-24T05:19:46.4889079Z adding 'torch/_export/pass_infra/proxy_value.py' 2025-07-24T05:19:46.4889399Z adding 'torch/_export/passes/__init__.py' 2025-07-24T05:19:46.4889720Z adding 'torch/_export/passes/_node_metadata_hook.py' 2025-07-24T05:19:46.4890175Z adding 'torch/_export/passes/add_runtime_assertions_for_constraints_pass.py' 2025-07-24T05:19:46.4890747Z adding 'torch/_export/passes/collect_tracepoints_pass.py' 2025-07-24T05:19:46.4926454Z adding 'torch/_export/passes/constant_folding.py' 2025-07-24T05:19:46.4931119Z adding 'torch/_export/passes/functionalize_side_effectful_ops_pass.py' 2025-07-24T05:19:46.4934779Z adding 'torch/_export/passes/insert_custom_op_guards.py' 2025-07-24T05:19:46.4941900Z adding 'torch/_export/passes/lift_constants_pass.py' 2025-07-24T05:19:46.4945708Z adding 'torch/_export/passes/remove_runtime_assertions.py' 2025-07-24T05:19:46.4950242Z adding 'torch/_export/passes/replace_autocast_with_hop_pass.py' 2025-07-24T05:19:46.4959447Z adding 'torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py' 2025-07-24T05:19:46.4963846Z adding 'torch/_export/passes/replace_set_grad_with_hop_pass.py' 2025-07-24T05:19:46.4967451Z adding 'torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py' 2025-07-24T05:19:46.4972278Z adding 'torch/_export/passes/replace_with_hop_pass_util.py' 2025-07-24T05:19:46.4976043Z adding 'torch/_export/serde/__init__.py' 2025-07-24T05:19:46.4981612Z adding 'torch/_export/serde/dynamic_shapes.py' 2025-07-24T05:19:46.4986512Z adding 'torch/_export/serde/export_schema.thrift' 2025-07-24T05:19:46.4993014Z adding 'torch/_export/serde/schema.py' 2025-07-24T05:19:46.4998204Z adding 'torch/_export/serde/schema.yaml' 2025-07-24T05:19:46.5006869Z adding 'torch/_export/serde/schema_check.py' 2025-07-24T05:19:46.5053686Z adding 'torch/_export/serde/serialize.py' 2025-07-24T05:19:46.5060928Z adding 'torch/_export/serde/union.py' 2025-07-24T05:19:46.5065528Z adding 'torch/_functorch/__init__.py' 2025-07-24T05:19:46.5089088Z adding 'torch/_functorch/aot_autograd.py' 2025-07-24T05:19:46.5098003Z adding 'torch/_functorch/apis.py' 2025-07-24T05:19:46.5109546Z adding 'torch/_functorch/autograd_function.py' 2025-07-24T05:19:46.5113545Z adding 'torch/_functorch/batch_norm_replacement.py' 2025-07-24T05:19:46.5118129Z adding 'torch/_functorch/benchmark_utils.py' 2025-07-24T05:19:46.5123302Z adding 'torch/_functorch/compile_utils.py' 2025-07-24T05:19:46.5129966Z adding 'torch/_functorch/compilers.py' 2025-07-24T05:19:46.5138186Z adding 'torch/_functorch/config.py' 2025-07-24T05:19:46.5142804Z adding 'torch/_functorch/deprecated.py' 2025-07-24T05:19:46.5168191Z adding 'torch/_functorch/eager_transforms.py' 2025-07-24T05:19:46.5175414Z adding 'torch/_functorch/functional_call.py' 2025-07-24T05:19:46.5182877Z adding 'torch/_functorch/fx_minifier.py' 2025-07-24T05:19:46.5191576Z adding 'torch/_functorch/make_functional.py' 2025-07-24T05:19:46.5231467Z adding 'torch/_functorch/partitioners.py' 2025-07-24T05:19:46.5239269Z adding 'torch/_functorch/pyfunctorch.py' 2025-07-24T05:19:46.5242851Z adding 'torch/_functorch/python_key.py' 2025-07-24T05:19:46.5245767Z adding 'torch/_functorch/pytree_hacks.py' 2025-07-24T05:19:46.5254375Z adding 'torch/_functorch/top_operators_github_usage.py' 2025-07-24T05:19:46.5257747Z adding 'torch/_functorch/utils.py' 2025-07-24T05:19:46.5266019Z adding 'torch/_functorch/vmap.py' 2025-07-24T05:19:46.5271726Z adding 'torch/_functorch/_activation_checkpointing/__init__.py' 2025-07-24T05:19:46.5275790Z adding 'torch/_functorch/_activation_checkpointing/ac_logging_utils.py' 2025-07-24T05:19:46.5281627Z adding 'torch/_functorch/_activation_checkpointing/graph_info_provider.py' 2025-07-24T05:19:46.5285894Z adding 'torch/_functorch/_activation_checkpointing/knapsack.py' 2025-07-24T05:19:46.5291453Z adding 'torch/_functorch/_activation_checkpointing/knapsack_evaluator.py' 2025-07-24T05:19:46.5295651Z adding 'torch/_functorch/_aot_autograd/__init__.py' 2025-07-24T05:19:46.5317516Z adding 'torch/_functorch/_aot_autograd/autograd_cache.py' 2025-07-24T05:19:46.5335341Z adding 'torch/_functorch/_aot_autograd/collect_metadata_analysis.py' 2025-07-24T05:19:46.5341623Z adding 'torch/_functorch/_aot_autograd/frontend_utils.py' 2025-07-24T05:19:46.5350668Z adding 'torch/_functorch/_aot_autograd/functional_utils.py' 2025-07-24T05:19:46.5357072Z adding 'torch/_functorch/_aot_autograd/graph_capture.py' 2025-07-24T05:19:46.5376988Z adding 'torch/_functorch/_aot_autograd/graph_capture_wrappers.py' 2025-07-24T05:19:46.5407746Z adding 'torch/_functorch/_aot_autograd/graph_compile.py' 2025-07-24T05:19:46.5417060Z adding 'torch/_functorch/_aot_autograd/input_output_analysis.py' 2025-07-24T05:19:46.5421429Z adding 'torch/_functorch/_aot_autograd/logging_utils.py' 2025-07-24T05:19:46.5459735Z adding 'torch/_functorch/_aot_autograd/runtime_wrappers.py' 2025-07-24T05:19:46.5483476Z adding 'torch/_functorch/_aot_autograd/schemas.py' 2025-07-24T05:19:46.5488567Z adding 'torch/_functorch/_aot_autograd/subclass_parametrization.py' 2025-07-24T05:19:46.5496223Z adding 'torch/_functorch/_aot_autograd/subclass_utils.py' 2025-07-24T05:19:46.5504709Z adding 'torch/_functorch/_aot_autograd/utils.py' 2025-07-24T05:19:46.5509575Z adding 'torch/_higher_order_ops/__init__.py' 2025-07-24T05:19:46.5512915Z adding 'torch/_higher_order_ops/_invoke_quant.py' 2025-07-24T05:19:46.5517001Z adding 'torch/_higher_order_ops/aoti_call_delegate.py' 2025-07-24T05:19:46.5524683Z adding 'torch/_higher_order_ops/associative_scan.py' 2025-07-24T05:19:46.5537465Z adding 'torch/_higher_order_ops/auto_functionalize.py' 2025-07-24T05:19:46.5543952Z adding 'torch/_higher_order_ops/base_hop.py' 2025-07-24T05:19:46.5555287Z adding 'torch/_higher_order_ops/cond.py' 2025-07-24T05:19:46.5561455Z adding 'torch/_higher_order_ops/effects.py' 2025-07-24T05:19:46.5566051Z adding 'torch/_higher_order_ops/executorch_call_delegate.py' 2025-07-24T05:19:46.5570101Z adding 'torch/_higher_order_ops/flat_apply.py' 2025-07-24T05:19:46.5582256Z adding 'torch/_higher_order_ops/flex_attention.py' 2025-07-24T05:19:46.5586320Z adding 'torch/_higher_order_ops/foreach_map.py' 2025-07-24T05:19:46.5590368Z adding 'torch/_higher_order_ops/hints_wrap.py' 2025-07-24T05:19:46.5599969Z adding 'torch/_higher_order_ops/invoke_subgraph.py' 2025-07-24T05:19:46.5605859Z adding 'torch/_higher_order_ops/map.py' 2025-07-24T05:19:46.5610396Z adding 'torch/_higher_order_ops/out_dtype.py' 2025-07-24T05:19:46.5613957Z adding 'torch/_higher_order_ops/run_const_graph.py' 2025-07-24T05:19:46.5628612Z adding 'torch/_higher_order_ops/scan.py' 2025-07-24T05:19:46.5635253Z adding 'torch/_higher_order_ops/schema.py' 2025-07-24T05:19:46.5639538Z adding 'torch/_higher_order_ops/strict_mode.py' 2025-07-24T05:19:46.5644017Z adding 'torch/_higher_order_ops/torchbind.py' 2025-07-24T05:19:46.5671091Z adding 'torch/_higher_order_ops/triton_kernel_wrap.py' 2025-07-24T05:19:46.5690318Z adding 'torch/_higher_order_ops/utils.py' 2025-07-24T05:19:46.5699093Z adding 'torch/_higher_order_ops/while_loop.py' 2025-07-24T05:19:46.5705058Z adding 'torch/_higher_order_ops/wrap.py' 2025-07-24T05:19:46.5710371Z adding 'torch/_inductor/__autotune_main__.py' 2025-07-24T05:19:46.5716555Z adding 'torch/_inductor/__init__.py' 2025-07-24T05:19:46.5721233Z adding 'torch/_inductor/analyze_preserves_zero_mask.py' 2025-07-24T05:19:46.5726435Z adding 'torch/_inductor/aoti_eager.py' 2025-07-24T05:19:46.5735604Z adding 'torch/_inductor/async_compile.py' 2025-07-24T05:19:46.5746533Z adding 'torch/_inductor/autotune_process.py' 2025-07-24T05:19:46.5752475Z adding 'torch/_inductor/bounds.py' 2025-07-24T05:19:46.5759257Z adding 'torch/_inductor/choices.py' 2025-07-24T05:19:46.5814280Z adding 'torch/_inductor/codecache.py' 2025-07-24T05:19:46.5822819Z adding 'torch/_inductor/comm_analysis.py' 2025-07-24T05:19:46.5828602Z adding 'torch/_inductor/comm_lowering.py' 2025-07-24T05:19:46.5885651Z adding 'torch/_inductor/comms.py' 2025-07-24T05:19:46.5889339Z adding 'torch/_inductor/compile_fx.py' 2025-07-24T05:19:46.5897998Z adding 'torch/_inductor/compile_fx_async.py' 2025-07-24T05:19:46.5907271Z adding 'torch/_inductor/compile_fx_ext.py' 2025-07-24T05:19:46.5911783Z adding 'torch/_inductor/compile_fx_subproc.py' 2025-07-24T05:19:46.5920808Z adding 'torch/_inductor/compiler_bisector.py' 2025-07-24T05:19:46.5952784Z adding 'torch/_inductor/config.py' 2025-07-24T05:19:46.5961012Z adding 'torch/_inductor/constant_folding.py' 2025-07-24T05:19:46.5983935Z adding 'torch/_inductor/cpp_builder.py' 2025-07-24T05:19:46.5991822Z adding 'torch/_inductor/cpu_vec_isa.py' 2025-07-24T05:19:46.6031471Z adding 'torch/_inductor/cudagraph_trees.py' 2025-07-24T05:19:46.6040095Z adding 'torch/_inductor/cudagraph_utils.py' 2025-07-24T05:19:46.6044127Z adding 'torch/_inductor/custom_graph_pass.py' 2025-07-24T05:19:46.6057511Z adding 'torch/_inductor/debug.py' 2025-07-24T05:19:46.6071347Z adding 'torch/_inductor/decomposition.py' 2025-07-24T05:19:46.6083648Z adding 'torch/_inductor/dependencies.py' 2025-07-24T05:19:46.6089524Z adding 'torch/_inductor/dtype_propagation.py' 2025-07-24T05:19:46.6093652Z adding 'torch/_inductor/exc.py' 2025-07-24T05:19:46.6096851Z adding 'torch/_inductor/extern_node_serializer.py' 2025-07-24T05:19:46.6102232Z adding 'torch/_inductor/freezing.py' 2025-07-24T05:19:46.6105674Z adding 'torch/_inductor/freezing_utils.py' 2025-07-24T05:19:46.6118778Z adding 'torch/_inductor/fuzzer.py' 2025-07-24T05:19:46.6127939Z adding 'torch/_inductor/fx_utils.py' 2025-07-24T05:19:46.6163471Z adding 'torch/_inductor/graph.py' 2025-07-24T05:19:46.6169014Z adding 'torch/_inductor/hooks.py' 2025-07-24T05:19:46.6175158Z adding 'torch/_inductor/index_propagation.py' 2025-07-24T05:19:46.6180106Z adding 'torch/_inductor/inductor_prims.py' 2025-07-24T05:19:46.6284173Z adding 'torch/_inductor/ir.py' 2025-07-24T05:19:46.6296130Z adding 'torch/_inductor/jagged_lowerings.py' 2025-07-24T05:19:46.6305710Z adding 'torch/_inductor/loop_body.py' 2025-07-24T05:19:46.6387527Z adding 'torch/_inductor/lowering.py' 2025-07-24T05:19:46.6401486Z adding 'torch/_inductor/memory.py' 2025-07-24T05:19:46.6408219Z adding 'torch/_inductor/metrics.py' 2025-07-24T05:19:46.6419306Z adding 'torch/_inductor/mkldnn_ir.py' 2025-07-24T05:19:46.6432173Z adding 'torch/_inductor/mkldnn_lowerings.py' 2025-07-24T05:19:46.6437974Z adding 'torch/_inductor/mock_cache.py' 2025-07-24T05:19:46.6449184Z adding 'torch/_inductor/ops_handler.py' 2025-07-24T05:19:46.6454009Z adding 'torch/_inductor/optimize_indexing.py' 2025-07-24T05:19:46.6464459Z adding 'torch/_inductor/output_code.py' 2025-07-24T05:19:46.6494761Z adding 'torch/_inductor/pattern_matcher.py' 2025-07-24T05:19:46.6500586Z adding 'torch/_inductor/quantized_lowerings.py' 2025-07-24T05:19:46.6506717Z adding 'torch/_inductor/remote_cache.py' 2025-07-24T05:19:46.6575706Z adding 'torch/_inductor/scheduler.py' 2025-07-24T05:19:46.6583393Z adding 'torch/_inductor/script.ld' 2025-07-24T05:19:46.6634923Z adding 'torch/_inductor/select_algorithm.py' 2025-07-24T05:19:46.6652176Z adding 'torch/_inductor/sizevars.py' 2025-07-24T05:19:46.6658505Z adding 'torch/_inductor/standalone_compile.py' 2025-07-24T05:19:46.6663623Z adding 'torch/_inductor/subgraph_lowering.py' 2025-07-24T05:19:46.6674895Z adding 'torch/_inductor/template_heuristics.py' 2025-07-24T05:19:46.6679483Z adding 'torch/_inductor/test_case.py' 2025-07-24T05:19:46.6682816Z adding 'torch/_inductor/test_operators.py' 2025-07-24T05:19:46.6693726Z adding 'torch/_inductor/tiling_utils.py' 2025-07-24T05:19:46.6700475Z adding 'torch/_inductor/triton_bundler.py' 2025-07-24T05:19:46.6742947Z adding 'torch/_inductor/utils.py' 2025-07-24T05:19:46.6751909Z adding 'torch/_inductor/virtualized.py' 2025-07-24T05:19:46.6759499Z adding 'torch/_inductor/wrapper_benchmark.py' 2025-07-24T05:19:46.6763657Z adding 'torch/_inductor/analysis/__init__.py' 2025-07-24T05:19:46.6768006Z adding 'torch/_inductor/analysis/device_info.py' 2025-07-24T05:19:46.6777461Z adding 'torch/_inductor/analysis/profile_analysis.py' 2025-07-24T05:19:46.6781878Z adding 'torch/_inductor/autoheuristic/__init__.py' 2025-07-24T05:19:46.6787624Z adding 'torch/_inductor/autoheuristic/autoheuristic.py' 2025-07-24T05:19:46.6793321Z adding 'torch/_inductor/autoheuristic/autoheuristic_utils.py' 2025-07-24T05:19:46.6797739Z adding 'torch/_inductor/autoheuristic/learned_heuristic_controller.py' 2025-07-24T05:19:46.6801366Z adding 'torch/_inductor/autoheuristic/learnedheuristic_interface.py' 2025-07-24T05:19:46.6809527Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py' 2025-07-24T05:19:46.6817859Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py' 2025-07-24T05:19:46.6822823Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py' 2025-07-24T05:19:46.6827234Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py' 2025-07-24T05:19:46.6831592Z adding 'torch/_inductor/autoheuristic/artifacts/_PadMMA100.py' 2025-07-24T05:19:46.6834274Z adding 'torch/_inductor/autoheuristic/artifacts/__init__.py' 2025-07-24T05:19:46.6872235Z adding 'torch/_inductor/codegen/__init__.py' 2025-07-24T05:19:46.6872622Z adding 'torch/_inductor/codegen/aoti_hipify_utils.py' 2025-07-24T05:19:46.6872970Z adding 'torch/_inductor/codegen/block_analysis.py' 2025-07-24T05:19:46.6881214Z adding 'torch/_inductor/codegen/common.py' 2025-07-24T05:19:46.6954106Z adding 'torch/_inductor/codegen/cpp.py' 2025-07-24T05:19:46.6964003Z adding 'torch/_inductor/codegen/cpp_bmm_template.py' 2025-07-24T05:19:46.6978001Z adding 'torch/_inductor/codegen/cpp_flex_attention_template.py' 2025-07-24T05:19:46.7002848Z adding 'torch/_inductor/codegen/cpp_gemm_template.py' 2025-07-24T05:19:46.7012257Z adding 'torch/_inductor/codegen/cpp_grouped_gemm_template.py' 2025-07-24T05:19:46.7033060Z adding 'torch/_inductor/codegen/cpp_micro_gemm.py' 2025-07-24T05:19:46.7039213Z adding 'torch/_inductor/codegen/cpp_template.py' 2025-07-24T05:19:46.7047996Z adding 'torch/_inductor/codegen/cpp_template_kernel.py' 2025-07-24T05:19:46.7059086Z adding 'torch/_inductor/codegen/cpp_utils.py' 2025-07-24T05:19:46.7097436Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu.py' 2025-07-24T05:19:46.7113787Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py' 2025-07-24T05:19:46.7124788Z adding 'torch/_inductor/codegen/cpp_wrapper_gpu.py' 2025-07-24T05:19:46.7129224Z adding 'torch/_inductor/codegen/cpp_wrapper_mps.py' 2025-07-24T05:19:46.7132642Z adding 'torch/_inductor/codegen/cpu_device_op_overrides.py' 2025-07-24T05:19:46.7136716Z adding 'torch/_inductor/codegen/cuda_combined_scheduling.py' 2025-07-24T05:19:46.7142052Z adding 'torch/_inductor/codegen/debug_utils.py' 2025-07-24T05:19:46.7163208Z adding 'torch/_inductor/codegen/halide.py' 2025-07-24T05:19:46.7174131Z adding 'torch/_inductor/codegen/memory_planning.py' 2025-07-24T05:19:46.7188297Z adding 'torch/_inductor/codegen/mps.py' 2025-07-24T05:19:46.7192471Z adding 'torch/_inductor/codegen/mps_device_op_overrides.py' 2025-07-24T05:19:46.7200529Z adding 'torch/_inductor/codegen/multi_kernel.py' 2025-07-24T05:19:46.7236215Z adding 'torch/_inductor/codegen/simd.py' 2025-07-24T05:19:46.7247482Z adding 'torch/_inductor/codegen/simd_kernel_features.py' 2025-07-24T05:19:46.7252690Z adding 'torch/_inductor/codegen/subgraph.py' 2025-07-24T05:19:46.7315546Z adding 'torch/_inductor/codegen/triton.py' 2025-07-24T05:19:46.7333596Z adding 'torch/_inductor/codegen/triton_combo_kernel.py' 2025-07-24T05:19:46.7339233Z adding 'torch/_inductor/codegen/triton_split_scan.py' 2025-07-24T05:19:46.7344547Z adding 'torch/_inductor/codegen/triton_utils.py' 2025-07-24T05:19:46.7391039Z adding 'torch/_inductor/codegen/wrapper.py' 2025-07-24T05:19:46.7403731Z adding 'torch/_inductor/codegen/wrapper_fxir.py' 2025-07-24T05:19:46.7410541Z adding 'torch/_inductor/codegen/aoti_runtime/interface.cpp' 2025-07-24T05:19:46.7414734Z adding 'torch/_inductor/codegen/cuda/__init__.py' 2025-07-24T05:19:46.7420622Z adding 'torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py' 2025-07-24T05:19:46.7424126Z adding 'torch/_inductor/codegen/cuda/cuda_env.py' 2025-07-24T05:19:46.7433247Z adding 'torch/_inductor/codegen/cuda/cuda_kernel.py' 2025-07-24T05:19:46.7439994Z adding 'torch/_inductor/codegen/cuda/cuda_template.py' 2025-07-24T05:19:46.7444166Z adding 'torch/_inductor/codegen/cuda/cutlass_cache.py' 2025-07-24T05:19:46.7447832Z adding 'torch/_inductor/codegen/cuda/cutlass_presets.py' 2025-07-24T05:19:46.7453679Z adding 'torch/_inductor/codegen/cuda/cutlass_python_evt.py' 2025-07-24T05:19:46.7460958Z adding 'torch/_inductor/codegen/cuda/cutlass_utils.py' 2025-07-24T05:19:46.7466886Z adding 'torch/_inductor/codegen/cuda/device_op_overrides.py' 2025-07-24T05:19:46.7491722Z adding 'torch/_inductor/codegen/cuda/gemm_template.py' 2025-07-24T05:19:46.7499782Z adding 'torch/_inductor/codegen/cuda/serialization.py' 2025-07-24T05:19:46.7504173Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py' 2025-07-24T05:19:46.7509403Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py' 2025-07-24T05:19:46.7516535Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py' 2025-07-24T05:19:46.7520932Z adding 'torch/_inductor/codegen/rocm/__init__.py' 2025-07-24T05:19:46.7528999Z adding 'torch/_inductor/codegen/rocm/ck_conv_template.py' 2025-07-24T05:19:46.7533335Z adding 'torch/_inductor/codegen/rocm/ck_template.py' 2025-07-24T05:19:46.7536857Z adding 'torch/_inductor/codegen/rocm/ck_tile_template.py' 2025-07-24T05:19:46.7547701Z adding 'torch/_inductor/codegen/rocm/ck_tile_universal_gemm_template.py' 2025-07-24T05:19:46.7561414Z adding 'torch/_inductor/codegen/rocm/ck_universal_gemm_template.py' 2025-07-24T05:19:46.7566505Z adding 'torch/_inductor/codegen/rocm/compile_command.py' 2025-07-24T05:19:46.7570720Z adding 'torch/_inductor/codegen/rocm/rocm_benchmark_request.py' 2025-07-24T05:19:46.7574712Z adding 'torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py' 2025-07-24T05:19:46.7580353Z adding 'torch/_inductor/codegen/rocm/rocm_kernel.py' 2025-07-24T05:19:46.7585315Z adding 'torch/_inductor/codegen/rocm/rocm_template.py' 2025-07-24T05:19:46.7588803Z adding 'torch/_inductor/codegen/rocm/rocm_template_buffer.py' 2025-07-24T05:19:46.7591721Z adding 'torch/_inductor/codegen/rocm/rocm_utils.py' 2025-07-24T05:19:46.7595441Z adding 'torch/_inductor/codegen/xpu/__init__.py' 2025-07-24T05:19:46.7599200Z adding 'torch/_inductor/codegen/xpu/device_op_overrides.py' 2025-07-24T05:19:46.7602552Z adding 'torch/_inductor/compile_worker/__init__.py' 2025-07-24T05:19:46.7606118Z adding 'torch/_inductor/compile_worker/__main__.py' 2025-07-24T05:19:46.7612819Z adding 'torch/_inductor/compile_worker/subproc_pool.py' 2025-07-24T05:19:46.7617084Z adding 'torch/_inductor/compile_worker/tracked_process_pool.py' 2025-07-24T05:19:46.7620398Z adding 'torch/_inductor/compile_worker/utils.py' 2025-07-24T05:19:46.7624456Z adding 'torch/_inductor/fx_passes/__init__.py' 2025-07-24T05:19:46.7633596Z adding 'torch/_inductor/fx_passes/b2b_gemm.py' 2025-07-24T05:19:46.7640984Z adding 'torch/_inductor/fx_passes/binary_folding.py' 2025-07-24T05:19:46.7651970Z adding 'torch/_inductor/fx_passes/bucketing.py' 2025-07-24T05:19:46.7661630Z adding 'torch/_inductor/fx_passes/ddp_fusion.py' 2025-07-24T05:19:46.7666545Z adding 'torch/_inductor/fx_passes/decompose_mem_bound_mm.py' 2025-07-24T05:19:46.7670433Z adding 'torch/_inductor/fx_passes/dedupe_symint_uses.py' 2025-07-24T05:19:46.7676057Z adding 'torch/_inductor/fx_passes/efficient_conv_bn_eval.py' 2025-07-24T05:19:46.7681446Z adding 'torch/_inductor/fx_passes/freezing_patterns.py' 2025-07-24T05:19:46.7685167Z adding 'torch/_inductor/fx_passes/fsdp.py' 2025-07-24T05:19:46.7695078Z adding 'torch/_inductor/fx_passes/fuse_attention.py' 2025-07-24T05:19:46.7711573Z adding 'torch/_inductor/fx_passes/group_batch_fusion.py' 2025-07-24T05:19:46.7725576Z adding 'torch/_inductor/fx_passes/joint_graph.py' 2025-07-24T05:19:46.7739503Z adding 'torch/_inductor/fx_passes/micro_pipeline_tp.py' 2025-07-24T05:19:46.7744568Z adding 'torch/_inductor/fx_passes/misc_patterns.py' 2025-07-24T05:19:46.7761304Z adding 'torch/_inductor/fx_passes/mkldnn_fusion.py' 2025-07-24T05:19:46.7767110Z adding 'torch/_inductor/fx_passes/numeric_utils.py' 2025-07-24T05:19:46.7777297Z adding 'torch/_inductor/fx_passes/pad_mm.py' 2025-07-24T05:19:46.7801668Z adding 'torch/_inductor/fx_passes/post_grad.py' 2025-07-24T05:19:46.7813231Z adding 'torch/_inductor/fx_passes/pre_grad.py' 2025-07-24T05:19:46.7848933Z adding 'torch/_inductor/fx_passes/quantization.py' 2025-07-24T05:19:46.7863478Z adding 'torch/_inductor/fx_passes/reinplace.py' 2025-07-24T05:19:46.7868048Z adding 'torch/_inductor/fx_passes/replace_random.py' 2025-07-24T05:19:46.7903053Z adding 'torch/_inductor/fx_passes/split_cat.py' 2025-07-24T05:19:46.7910494Z adding 'torch/_inductor/fx_passes/serialized_patterns/__init__.py' 2025-07-24T05:19:46.7914487Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py' 2025-07-24T05:19:46.7919158Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py' 2025-07-24T05:19:46.7930558Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py' 2025-07-24T05:19:46.7931202Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py' 2025-07-24T05:19:46.7932573Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py' 2025-07-24T05:19:46.7936898Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py' 2025-07-24T05:19:46.7941603Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py' 2025-07-24T05:19:46.7947953Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py' 2025-07-24T05:19:46.7953610Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py' 2025-07-24T05:19:46.7959547Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py' 2025-07-24T05:19:46.7964619Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py' 2025-07-24T05:19:46.7968903Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py' 2025-07-24T05:19:46.7973637Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py' 2025-07-24T05:19:46.7978349Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py' 2025-07-24T05:19:46.7982970Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py' 2025-07-24T05:19:46.7987613Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py' 2025-07-24T05:19:46.7991834Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_24.py' 2025-07-24T05:19:46.7996879Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py' 2025-07-24T05:19:46.8000918Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py' 2025-07-24T05:19:46.8005197Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py' 2025-07-24T05:19:46.8009616Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py' 2025-07-24T05:19:46.8014210Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py' 2025-07-24T05:19:46.8018753Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py' 2025-07-24T05:19:46.8023387Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py' 2025-07-24T05:19:46.8027040Z adding 'torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py' 2025-07-24T05:19:46.8030258Z adding 'torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py' 2025-07-24T05:19:46.8033372Z adding 'torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py' 2025-07-24T05:19:46.8036972Z adding 'torch/_inductor/kernel/__init__.py' 2025-07-24T05:19:46.8042353Z adding 'torch/_inductor/kernel/bmm.py' 2025-07-24T05:19:46.8050336Z adding 'torch/_inductor/kernel/conv.py' 2025-07-24T05:19:46.8082494Z adding 'torch/_inductor/kernel/flex_attention.py' 2025-07-24T05:19:46.8093740Z adding 'torch/_inductor/kernel/flex_decoding.py' 2025-07-24T05:19:46.8108138Z adding 'torch/_inductor/kernel/mm.py' 2025-07-24T05:19:46.8114453Z adding 'torch/_inductor/kernel/mm_common.py' 2025-07-24T05:19:46.8122909Z adding 'torch/_inductor/kernel/mm_grouped.py' 2025-07-24T05:19:46.8127754Z adding 'torch/_inductor/kernel/mm_plus_mm.py' 2025-07-24T05:19:46.8131527Z adding 'torch/_inductor/package/__init__.py' 2025-07-24T05:19:46.8134473Z adding 'torch/_inductor/package/build_package.py' 2025-07-24T05:19:46.8138308Z adding 'torch/_inductor/package/package.py' 2025-07-24T05:19:46.8142188Z adding 'torch/_inductor/runtime/__init__.py' 2025-07-24T05:19:46.8151112Z adding 'torch/_inductor/runtime/autotune_cache.py' 2025-07-24T05:19:46.8157215Z adding 'torch/_inductor/runtime/benchmarking.py' 2025-07-24T05:19:46.8161019Z adding 'torch/_inductor/runtime/cache_dir_utils.py' 2025-07-24T05:19:46.8164607Z adding 'torch/_inductor/runtime/compile_tasks.py' 2025-07-24T05:19:46.8170403Z adding 'torch/_inductor/runtime/coordinate_descent_tuner.py' 2025-07-24T05:19:46.8173918Z adding 'torch/_inductor/runtime/halide_helpers.py' 2025-07-24T05:19:46.8178630Z adding 'torch/_inductor/runtime/hints.py' 2025-07-24T05:19:46.8183240Z adding 'torch/_inductor/runtime/runtime_utils.py' 2025-07-24T05:19:46.8188909Z adding 'torch/_inductor/runtime/static_cuda_launcher.py' 2025-07-24T05:19:46.8193638Z adding 'torch/_inductor/runtime/triton_compat.py' 2025-07-24T05:19:46.8203005Z adding 'torch/_inductor/runtime/triton_helpers.py' 2025-07-24T05:19:46.8245125Z adding 'torch/_inductor/runtime/triton_heuristics.py' 2025-07-24T05:19:46.8251773Z adding 'torch/_lazy/__init__.py' 2025-07-24T05:19:46.8256128Z adding 'torch/_lazy/closure.py' 2025-07-24T05:19:46.8259335Z adding 'torch/_lazy/computation.py' 2025-07-24T05:19:46.8262596Z adding 'torch/_lazy/config.py' 2025-07-24T05:19:46.8265345Z adding 'torch/_lazy/debug.py' 2025-07-24T05:19:46.8268482Z adding 'torch/_lazy/device_context.py' 2025-07-24T05:19:46.8273941Z adding 'torch/_lazy/extract_compiled_graph.py' 2025-07-24T05:19:46.8276905Z adding 'torch/_lazy/ir_cache.py' 2025-07-24T05:19:46.8280070Z adding 'torch/_lazy/metrics.py' 2025-07-24T05:19:46.8283285Z adding 'torch/_lazy/tensor_factory_functions.py' 2025-07-24T05:19:46.8286298Z adding 'torch/_lazy/ts_backend.py' 2025-07-24T05:19:46.8289995Z adding 'torch/_library/__init__.py' 2025-07-24T05:19:46.8294998Z adding 'torch/_library/autograd.py' 2025-07-24T05:19:46.8308662Z adding 'torch/_library/custom_ops.py' 2025-07-24T05:19:46.8315470Z adding 'torch/_library/fake_class_registry.py' 2025-07-24T05:19:46.8320995Z adding 'torch/_library/fake_impl.py' 2025-07-24T05:19:46.8327044Z adding 'torch/_library/fake_profile.py' 2025-07-24T05:19:46.8333588Z adding 'torch/_library/infer_schema.py' 2025-07-24T05:19:46.8337497Z adding 'torch/_library/simple_registry.py' 2025-07-24T05:19:46.8360948Z adding 'torch/_library/triton.py' 2025-07-24T05:19:46.8361239Z adding 'torch/_library/utils.py' 2025-07-24T05:19:46.8361509Z adding 'torch/_logging/__init__.py' 2025-07-24T05:19:46.8377325Z adding 'torch/_logging/_internal.py' 2025-07-24T05:19:46.8383253Z adding 'torch/_logging/_registrations.py' 2025-07-24T05:19:46.8387233Z adding 'torch/_logging/scribe.py' 2025-07-24T05:19:46.8390897Z adding 'torch/_logging/structured.py' 2025-07-24T05:19:46.8396093Z adding 'torch/_numpy/__init__.py' 2025-07-24T05:19:46.8398541Z adding 'torch/_numpy/_binary_ufuncs_impl.py' 2025-07-24T05:19:46.8404573Z adding 'torch/_numpy/_casting_dicts.py' 2025-07-24T05:19:46.8412155Z adding 'torch/_numpy/_dtypes.py' 2025-07-24T05:19:46.8416174Z adding 'torch/_numpy/_dtypes_impl.py' 2025-07-24T05:19:46.8419746Z adding 'torch/_numpy/_funcs.py' 2025-07-24T05:19:46.8442814Z adding 'torch/_numpy/_funcs_impl.py' 2025-07-24T05:19:46.8446965Z adding 'torch/_numpy/_getlimits.py' 2025-07-24T05:19:46.8455427Z adding 'torch/_numpy/_ndarray.py' 2025-07-24T05:19:46.8460792Z adding 'torch/_numpy/_normalizations.py' 2025-07-24T05:19:46.8466319Z adding 'torch/_numpy/_reductions_impl.py' 2025-07-24T05:19:46.8471159Z adding 'torch/_numpy/_ufuncs.py' 2025-07-24T05:19:46.8474594Z adding 'torch/_numpy/_unary_ufuncs_impl.py' 2025-07-24T05:19:46.8479938Z adding 'torch/_numpy/_util.py' 2025-07-24T05:19:46.8483433Z adding 'torch/_numpy/fft.py' 2025-07-24T05:19:46.8487483Z adding 'torch/_numpy/linalg.py' 2025-07-24T05:19:46.8491595Z adding 'torch/_numpy/random.py' 2025-07-24T05:19:46.8495402Z adding 'torch/_numpy/testing/__init__.py' 2025-07-24T05:19:46.8522050Z adding 'torch/_numpy/testing/utils.py' 2025-07-24T05:19:46.8550606Z adding 'torch/_prims/__init__.py' 2025-07-24T05:19:46.8556491Z adding 'torch/_prims/context.py' 2025-07-24T05:19:46.8560286Z adding 'torch/_prims/debug_prims.py' 2025-07-24T05:19:46.8564036Z adding 'torch/_prims/executor.py' 2025-07-24T05:19:46.8569688Z adding 'torch/_prims/rng_prims.py' 2025-07-24T05:19:46.8597627Z adding 'torch/_prims_common/__init__.py' 2025-07-24T05:19:46.8607518Z adding 'torch/_prims_common/wrappers.py' 2025-07-24T05:19:46.8681429Z adding 'torch/_refs/__init__.py' 2025-07-24T05:19:46.8689937Z adding 'torch/_refs/_conversions.py' 2025-07-24T05:19:46.8696383Z adding 'torch/_refs/fft.py' 2025-07-24T05:19:46.8703276Z adding 'torch/_refs/linalg/__init__.py' 2025-07-24T05:19:46.8707339Z adding 'torch/_refs/nn/__init__.py' 2025-07-24T05:19:46.8721987Z adding 'torch/_refs/nn/functional/__init__.py' 2025-07-24T05:19:46.8727709Z adding 'torch/_refs/special/__init__.py' 2025-07-24T05:19:46.8731371Z adding 'torch/_strobelight/__init__.py' 2025-07-24T05:19:46.8736699Z adding 'torch/_strobelight/cli_function_profiler.py' 2025-07-24T05:19:46.8777912Z adding 'torch/_strobelight/compile_time_profiler.py' 2025-07-24T05:19:46.8778311Z adding 'torch/_subclasses/__init__.py' 2025-07-24T05:19:46.8778730Z adding 'torch/_subclasses/_fake_tensor_utils.py' 2025-07-24T05:19:46.8779064Z adding 'torch/_subclasses/fake_impls.py' 2025-07-24T05:19:46.8817773Z adding 'torch/_subclasses/fake_tensor.py' 2025-07-24T05:19:46.8825935Z adding 'torch/_subclasses/fake_utils.py' 2025-07-24T05:19:46.8838396Z adding 'torch/_subclasses/functional_tensor.py' 2025-07-24T05:19:46.8868020Z adding 'torch/_subclasses/meta_utils.py' 2025-07-24T05:19:46.8874717Z adding 'torch/_subclasses/schema_check_mode.py' 2025-07-24T05:19:46.8878605Z adding 'torch/_vendor/__init__.py' 2025-07-24T05:19:46.8882301Z adding 'torch/_vendor/packaging/__init__.py' 2025-07-24T05:19:46.8885410Z adding 'torch/_vendor/packaging/_structures.py' 2025-07-24T05:19:46.8892085Z adding 'torch/_vendor/packaging/version.py' 2025-07-24T05:19:46.8898243Z adding 'torch/accelerator/__init__.py' 2025-07-24T05:19:46.8901657Z adding 'torch/accelerator/_utils.py' 2025-07-24T05:19:46.8905475Z adding 'torch/amp/__init__.py' 2025-07-24T05:19:46.8913928Z adding 'torch/amp/autocast_mode.py' 2025-07-24T05:19:46.8962957Z adding 'torch/amp/grad_scaler.py' 2025-07-24T05:19:46.8963283Z adding 'torch/ao/__init__.py' 2025-07-24T05:19:46.8963542Z adding 'torch/ao/nn/__init__.py' 2025-07-24T05:19:46.8963834Z adding 'torch/ao/nn/intrinsic/__init__.py' 2025-07-24T05:19:46.8964161Z adding 'torch/ao/nn/intrinsic/modules/__init__.py' 2025-07-24T05:19:46.8964526Z adding 'torch/ao/nn/intrinsic/modules/fused.py' 2025-07-24T05:19:46.8964870Z adding 'torch/ao/nn/intrinsic/qat/__init__.py' 2025-07-24T05:19:46.8965233Z adding 'torch/ao/nn/intrinsic/qat/modules/__init__.py' 2025-07-24T05:19:46.8966900Z adding 'torch/ao/nn/intrinsic/qat/modules/conv_fused.py' 2025-07-24T05:19:46.8972693Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_fused.py' 2025-07-24T05:19:46.8976311Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_relu.py' 2025-07-24T05:19:46.8980894Z adding 'torch/ao/nn/intrinsic/quantized/__init__.py' 2025-07-24T05:19:46.8983791Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/__init__.py' 2025-07-24T05:19:46.8987488Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-07-24T05:19:46.8990975Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-07-24T05:19:46.8994816Z adding 'torch/ao/nn/intrinsic/quantized/modules/__init__.py' 2025-07-24T05:19:46.8998491Z adding 'torch/ao/nn/intrinsic/quantized/modules/bn_relu.py' 2025-07-24T05:19:46.9002191Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_add.py' 2025-07-24T05:19:46.9006780Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_relu.py' 2025-07-24T05:19:46.9011055Z adding 'torch/ao/nn/intrinsic/quantized/modules/linear_relu.py' 2025-07-24T05:19:46.9014914Z adding 'torch/ao/nn/qat/__init__.py' 2025-07-24T05:19:46.9018427Z adding 'torch/ao/nn/qat/dynamic/__init__.py' 2025-07-24T05:19:46.9022162Z adding 'torch/ao/nn/qat/dynamic/modules/__init__.py' 2025-07-24T05:19:46.9025141Z adding 'torch/ao/nn/qat/dynamic/modules/linear.py' 2025-07-24T05:19:46.9028894Z adding 'torch/ao/nn/qat/modules/__init__.py' 2025-07-24T05:19:46.9033492Z adding 'torch/ao/nn/qat/modules/conv.py' 2025-07-24T05:19:46.9037935Z adding 'torch/ao/nn/qat/modules/embedding_ops.py' 2025-07-24T05:19:46.9041755Z adding 'torch/ao/nn/qat/modules/linear.py' 2025-07-24T05:19:46.9045772Z adding 'torch/ao/nn/quantizable/__init__.py' 2025-07-24T05:19:46.9049139Z adding 'torch/ao/nn/quantizable/modules/__init__.py' 2025-07-24T05:19:46.9057047Z adding 'torch/ao/nn/quantizable/modules/activation.py' 2025-07-24T05:19:46.9065417Z adding 'torch/ao/nn/quantizable/modules/rnn.py' 2025-07-24T05:19:46.9069872Z adding 'torch/ao/nn/quantized/__init__.py' 2025-07-24T05:19:46.9078265Z adding 'torch/ao/nn/quantized/functional.py' 2025-07-24T05:19:46.9082543Z adding 'torch/ao/nn/quantized/dynamic/__init__.py' 2025-07-24T05:19:46.9086266Z adding 'torch/ao/nn/quantized/dynamic/modules/__init__.py' 2025-07-24T05:19:46.9091192Z adding 'torch/ao/nn/quantized/dynamic/modules/conv.py' 2025-07-24T05:19:46.9096133Z adding 'torch/ao/nn/quantized/dynamic/modules/linear.py' 2025-07-24T05:19:46.9110136Z adding 'torch/ao/nn/quantized/dynamic/modules/rnn.py' 2025-07-24T05:19:46.9116207Z adding 'torch/ao/nn/quantized/modules/__init__.py' 2025-07-24T05:19:46.9121494Z adding 'torch/ao/nn/quantized/modules/activation.py' 2025-07-24T05:19:46.9125470Z adding 'torch/ao/nn/quantized/modules/batchnorm.py' 2025-07-24T05:19:46.9134964Z adding 'torch/ao/nn/quantized/modules/conv.py' 2025-07-24T05:19:46.9139171Z adding 'torch/ao/nn/quantized/modules/dropout.py' 2025-07-24T05:19:46.9144591Z adding 'torch/ao/nn/quantized/modules/embedding_ops.py' 2025-07-24T05:19:46.9149256Z adding 'torch/ao/nn/quantized/modules/functional_modules.py' 2025-07-24T05:19:46.9155404Z adding 'torch/ao/nn/quantized/modules/linear.py' 2025-07-24T05:19:46.9159822Z adding 'torch/ao/nn/quantized/modules/normalization.py' 2025-07-24T05:19:46.9163461Z adding 'torch/ao/nn/quantized/modules/rnn.py' 2025-07-24T05:19:46.9167545Z adding 'torch/ao/nn/quantized/modules/utils.py' 2025-07-24T05:19:46.9171387Z adding 'torch/ao/nn/quantized/reference/__init__.py' 2025-07-24T05:19:46.9175173Z adding 'torch/ao/nn/quantized/reference/modules/__init__.py' 2025-07-24T05:19:46.9179681Z adding 'torch/ao/nn/quantized/reference/modules/conv.py' 2025-07-24T05:19:46.9183584Z adding 'torch/ao/nn/quantized/reference/modules/linear.py' 2025-07-24T05:19:46.9191638Z adding 'torch/ao/nn/quantized/reference/modules/rnn.py' 2025-07-24T05:19:46.9196069Z adding 'torch/ao/nn/quantized/reference/modules/sparse.py' 2025-07-24T05:19:46.9201792Z adding 'torch/ao/nn/quantized/reference/modules/utils.py' 2025-07-24T05:19:46.9205751Z adding 'torch/ao/nn/sparse/__init__.py' 2025-07-24T05:19:46.9209749Z adding 'torch/ao/nn/sparse/quantized/__init__.py' 2025-07-24T05:19:46.9214481Z adding 'torch/ao/nn/sparse/quantized/linear.py' 2025-07-24T05:19:46.9218418Z adding 'torch/ao/nn/sparse/quantized/utils.py' 2025-07-24T05:19:46.9221871Z adding 'torch/ao/nn/sparse/quantized/dynamic/__init__.py' 2025-07-24T05:19:46.9226421Z adding 'torch/ao/nn/sparse/quantized/dynamic/linear.py' 2025-07-24T05:19:46.9230362Z adding 'torch/ao/ns/__init__.py' 2025-07-24T05:19:46.9237485Z adding 'torch/ao/ns/_numeric_suite.py' 2025-07-24T05:19:46.9251400Z adding 'torch/ao/ns/_numeric_suite_fx.py' 2025-07-24T05:19:46.9256927Z adding 'torch/ao/ns/fx/__init__.py' 2025-07-24T05:19:46.9265020Z adding 'torch/ao/ns/fx/graph_matcher.py' 2025-07-24T05:19:46.9279763Z adding 'torch/ao/ns/fx/graph_passes.py' 2025-07-24T05:19:46.9287404Z adding 'torch/ao/ns/fx/mappings.py' 2025-07-24T05:19:46.9304972Z adding 'torch/ao/ns/fx/n_shadows_utils.py' 2025-07-24T05:19:46.9309795Z adding 'torch/ao/ns/fx/ns_types.py' 2025-07-24T05:19:46.9314517Z adding 'torch/ao/ns/fx/pattern_utils.py' 2025-07-24T05:19:46.9320123Z adding 'torch/ao/ns/fx/qconfig_multi_mapping.py' 2025-07-24T05:19:46.9328169Z adding 'torch/ao/ns/fx/utils.py' 2025-07-24T05:19:46.9334762Z adding 'torch/ao/ns/fx/weight_utils.py' 2025-07-24T05:19:46.9339089Z adding 'torch/ao/pruning/__init__.py' 2025-07-24T05:19:46.9342124Z adding 'torch/ao/pruning/_mappings.py' 2025-07-24T05:19:46.9345900Z adding 'torch/ao/pruning/_experimental/__init__.py' 2025-07-24T05:19:46.9350102Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/__init__.py' 2025-07-24T05:19:46.9370538Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py' 2025-07-24T05:19:46.9371111Z adding 'torch/ao/pruning/_experimental/data_scheduler/__init__.py' 2025-07-24T05:19:46.9371620Z adding 'torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py' 2025-07-24T05:19:46.9372354Z adding 'torch/ao/pruning/_experimental/data_sparsifier/__init__.py' 2025-07-24T05:19:46.9378794Z adding 'torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py' 2025-07-24T05:19:46.9384014Z adding 'torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py' 2025-07-24T05:19:46.9388556Z adding 'torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py' 2025-07-24T05:19:46.9392317Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py' 2025-07-24T05:19:46.9396035Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py' 2025-07-24T05:19:46.9399614Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py' 2025-07-24T05:19:46.9403756Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py' 2025-07-24T05:19:46.9408746Z adding 'torch/ao/pruning/_experimental/pruner/FPGM_pruner.py' 2025-07-24T05:19:46.9411754Z adding 'torch/ao/pruning/_experimental/pruner/__init__.py' 2025-07-24T05:19:46.9416937Z adding 'torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py' 2025-07-24T05:19:46.9421645Z adding 'torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py' 2025-07-24T05:19:46.9424357Z adding 'torch/ao/pruning/_experimental/pruner/match_utils.py' 2025-07-24T05:19:46.9428133Z adding 'torch/ao/pruning/_experimental/pruner/parametrization.py' 2025-07-24T05:19:46.9434905Z adding 'torch/ao/pruning/_experimental/pruner/prune_functions.py' 2025-07-24T05:19:46.9438832Z adding 'torch/ao/pruning/_experimental/pruner/saliency_pruner.py' 2025-07-24T05:19:46.9442487Z adding 'torch/ao/pruning/scheduler/__init__.py' 2025-07-24T05:19:46.9446846Z adding 'torch/ao/pruning/scheduler/base_scheduler.py' 2025-07-24T05:19:46.9450867Z adding 'torch/ao/pruning/scheduler/cubic_scheduler.py' 2025-07-24T05:19:46.9454706Z adding 'torch/ao/pruning/scheduler/lambda_scheduler.py' 2025-07-24T05:19:46.9458356Z adding 'torch/ao/pruning/sparsifier/__init__.py' 2025-07-24T05:19:46.9464568Z adding 'torch/ao/pruning/sparsifier/base_sparsifier.py' 2025-07-24T05:19:46.9468528Z adding 'torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py' 2025-07-24T05:19:46.9472656Z adding 'torch/ao/pruning/sparsifier/utils.py' 2025-07-24T05:19:46.9477904Z adding 'torch/ao/pruning/sparsifier/weight_norm_sparsifier.py' 2025-07-24T05:19:46.9483489Z adding 'torch/ao/quantization/__init__.py' 2025-07-24T05:19:46.9487943Z adding 'torch/ao/quantization/_correct_bias.py' 2025-07-24T05:19:46.9493300Z adding 'torch/ao/quantization/_equalize.py' 2025-07-24T05:19:46.9498021Z adding 'torch/ao/quantization/_learnable_fake_quantize.py' 2025-07-24T05:19:46.9505756Z adding 'torch/ao/quantization/fake_quantize.py' 2025-07-24T05:19:46.9511076Z adding 'torch/ao/quantization/fuse_modules.py' 2025-07-24T05:19:46.9516157Z adding 'torch/ao/quantization/fuser_method_mappings.py' 2025-07-24T05:19:46.9541743Z adding 'torch/ao/quantization/observer.py' 2025-07-24T05:19:46.9551769Z adding 'torch/ao/quantization/qconfig.py' 2025-07-24T05:19:46.9558359Z adding 'torch/ao/quantization/qconfig_mapping.py' 2025-07-24T05:19:46.9561867Z adding 'torch/ao/quantization/quant_type.py' 2025-07-24T05:19:46.9567281Z adding 'torch/ao/quantization/quantization_mappings.py' 2025-07-24T05:19:46.9578242Z adding 'torch/ao/quantization/quantize.py' 2025-07-24T05:19:46.9588620Z adding 'torch/ao/quantization/quantize_fx.py' 2025-07-24T05:19:46.9595348Z adding 'torch/ao/quantization/quantize_jit.py' 2025-07-24T05:19:46.9600735Z adding 'torch/ao/quantization/quantize_pt2e.py' 2025-07-24T05:19:46.9604331Z adding 'torch/ao/quantization/stubs.py' 2025-07-24T05:19:46.9615754Z adding 'torch/ao/quantization/utils.py' 2025-07-24T05:19:46.9620666Z adding 'torch/ao/quantization/backend_config/__init__.py' 2025-07-24T05:19:46.9628722Z adding 'torch/ao/quantization/backend_config/_common_operator_config_utils.py' 2025-07-24T05:19:46.9643006Z adding 'torch/ao/quantization/backend_config/_qnnpack_pt2e.py' 2025-07-24T05:19:46.9653283Z adding 'torch/ao/quantization/backend_config/backend_config.py' 2025-07-24T05:19:46.9659681Z adding 'torch/ao/quantization/backend_config/executorch.py' 2025-07-24T05:19:46.9698647Z adding 'torch/ao/quantization/backend_config/fbgemm.py' 2025-07-24T05:19:46.9699097Z adding 'torch/ao/quantization/backend_config/native.py' 2025-07-24T05:19:46.9700035Z adding 'torch/ao/quantization/backend_config/observation_type.py' 2025-07-24T05:19:46.9700480Z adding 'torch/ao/quantization/backend_config/onednn.py' 2025-07-24T05:19:46.9700881Z adding 'torch/ao/quantization/backend_config/qnnpack.py' 2025-07-24T05:19:46.9701289Z adding 'torch/ao/quantization/backend_config/tensorrt.py' 2025-07-24T05:19:46.9701673Z adding 'torch/ao/quantization/backend_config/utils.py' 2025-07-24T05:19:46.9702060Z adding 'torch/ao/quantization/backend_config/x86.py' 2025-07-24T05:19:46.9702421Z adding 'torch/ao/quantization/fx/__init__.py' 2025-07-24T05:19:46.9713051Z adding 'torch/ao/quantization/fx/_decomposed.py' 2025-07-24T05:19:46.9727643Z adding 'torch/ao/quantization/fx/_equalize.py' 2025-07-24T05:19:46.9744941Z adding 'torch/ao/quantization/fx/_lower_to_native_backend.py' 2025-07-24T05:19:46.9765721Z adding 'torch/ao/quantization/fx/convert.py' 2025-07-24T05:19:46.9773277Z adding 'torch/ao/quantization/fx/custom_config.py' 2025-07-24T05:19:46.9778663Z adding 'torch/ao/quantization/fx/fuse.py' 2025-07-24T05:19:46.9782559Z adding 'torch/ao/quantization/fx/fuse_handler.py' 2025-07-24T05:19:46.9786826Z adding 'torch/ao/quantization/fx/graph_module.py' 2025-07-24T05:19:46.9790027Z adding 'torch/ao/quantization/fx/lower_to_fbgemm.py' 2025-07-24T05:19:46.9792958Z adding 'torch/ao/quantization/fx/lower_to_qnnpack.py' 2025-07-24T05:19:46.9798022Z adding 'torch/ao/quantization/fx/lstm_utils.py' 2025-07-24T05:19:46.9803210Z adding 'torch/ao/quantization/fx/match_utils.py' 2025-07-24T05:19:46.9807516Z adding 'torch/ao/quantization/fx/pattern_utils.py' 2025-07-24T05:19:46.9838254Z adding 'torch/ao/quantization/fx/prepare.py' 2025-07-24T05:19:46.9846687Z adding 'torch/ao/quantization/fx/qconfig_mapping_utils.py' 2025-07-24T05:19:46.9851516Z adding 'torch/ao/quantization/fx/quantize_handler.py' 2025-07-24T05:19:46.9855000Z adding 'torch/ao/quantization/fx/tracer.py' 2025-07-24T05:19:46.9868422Z adding 'torch/ao/quantization/fx/utils.py' 2025-07-24T05:19:46.9873074Z adding 'torch/ao/quantization/fx/_model_report/__init__.py' 2025-07-24T05:19:46.9895953Z adding 'torch/ao/quantization/fx/_model_report/detector.py' 2025-07-24T05:19:46.9908240Z adding 'torch/ao/quantization/fx/_model_report/model_report.py' 2025-07-24T05:19:46.9914458Z adding 'torch/ao/quantization/fx/_model_report/model_report_observer.py' 2025-07-24T05:19:46.9926189Z adding 'torch/ao/quantization/fx/_model_report/model_report_visualizer.py' 2025-07-24T05:19:46.9930534Z adding 'torch/ao/quantization/pt2e/__init__.py' 2025-07-24T05:19:46.9940980Z adding 'torch/ao/quantization/pt2e/_affine_quantization.py' 2025-07-24T05:19:46.9947670Z adding 'torch/ao/quantization/pt2e/_numeric_debugger.py' 2025-07-24T05:19:46.9951565Z adding 'torch/ao/quantization/pt2e/duplicate_dq_pass.py' 2025-07-24T05:19:46.9956139Z adding 'torch/ao/quantization/pt2e/export_utils.py' 2025-07-24T05:19:46.9960831Z adding 'torch/ao/quantization/pt2e/graph_utils.py' 2025-07-24T05:19:46.9964358Z adding 'torch/ao/quantization/pt2e/lowering.py' 2025-07-24T05:19:46.9969370Z adding 'torch/ao/quantization/pt2e/port_metadata_pass.py' 2025-07-24T05:19:47.0003557Z adding 'torch/ao/quantization/pt2e/prepare.py' 2025-07-24T05:19:47.0003941Z adding 'torch/ao/quantization/pt2e/qat_utils.py' 2025-07-24T05:19:47.0004292Z adding 'torch/ao/quantization/pt2e/utils.py' 2025-07-24T05:19:47.0009221Z adding 'torch/ao/quantization/pt2e/representation/__init__.py' 2025-07-24T05:19:47.0016643Z adding 'torch/ao/quantization/pt2e/representation/rewrite.py' 2025-07-24T05:19:47.0021251Z adding 'torch/ao/quantization/quantizer/__init__.py' 2025-07-24T05:19:47.0024980Z adding 'torch/ao/quantization/quantizer/composable_quantizer.py' 2025-07-24T05:19:47.0028926Z adding 'torch/ao/quantization/quantizer/embedding_quantizer.py' 2025-07-24T05:19:47.0033690Z adding 'torch/ao/quantization/quantizer/quantizer.py' 2025-07-24T05:19:47.0037945Z adding 'torch/ao/quantization/quantizer/utils.py' 2025-07-24T05:19:47.0055119Z adding 'torch/ao/quantization/quantizer/x86_inductor_quantizer.py' 2025-07-24T05:19:47.0063048Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer.py' 2025-07-24T05:19:47.0074613Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py' 2025-07-24T05:19:47.0079646Z adding 'torch/ao/quantization/quantizer/xpu_inductor_quantizer.py' 2025-07-24T05:19:47.0090446Z adding 'torch/autograd/__init__.py' 2025-07-24T05:19:47.0095243Z adding 'torch/autograd/anomaly_mode.py' 2025-07-24T05:19:47.0099861Z adding 'torch/autograd/forward_ad.py' 2025-07-24T05:19:47.0112446Z adding 'torch/autograd/function.py' 2025-07-24T05:19:47.0128878Z adding 'torch/autograd/functional.py' 2025-07-24T05:19:47.0135525Z adding 'torch/autograd/grad_mode.py' 2025-07-24T05:19:47.0168352Z adding 'torch/autograd/gradcheck.py' 2025-07-24T05:19:47.0181984Z adding 'torch/autograd/graph.py' 2025-07-24T05:19:47.0199465Z adding 'torch/autograd/profiler.py' 2025-07-24T05:19:47.0205969Z adding 'torch/autograd/profiler_legacy.py' 2025-07-24T05:19:47.0220851Z adding 'torch/autograd/profiler_util.py' 2025-07-24T05:19:47.0225267Z adding 'torch/autograd/variable.py' 2025-07-24T05:19:47.0228336Z adding 'torch/autograd/_functions/__init__.py' 2025-07-24T05:19:47.0231577Z adding 'torch/autograd/_functions/tensor.py' 2025-07-24T05:19:47.0234875Z adding 'torch/autograd/_functions/utils.py' 2025-07-24T05:19:47.0239589Z adding 'torch/backends/__init__.py' 2025-07-24T05:19:47.0243258Z adding 'torch/backends/_coreml/__init__.py' 2025-07-24T05:19:47.0247201Z adding 'torch/backends/_coreml/preprocess.py' 2025-07-24T05:19:47.0250801Z adding 'torch/backends/_nnapi/__init__.py' 2025-07-24T05:19:47.0255156Z adding 'torch/backends/_nnapi/prepare.py' 2025-07-24T05:19:47.0278900Z adding 'torch/backends/_nnapi/serializer.py' 2025-07-24T05:19:47.0284479Z adding 'torch/backends/cpu/__init__.py' 2025-07-24T05:19:47.0291576Z adding 'torch/backends/cuda/__init__.py' 2025-07-24T05:19:47.0297261Z adding 'torch/backends/cudnn/__init__.py' 2025-07-24T05:19:47.0300878Z adding 'torch/backends/cudnn/rnn.py' 2025-07-24T05:19:47.0304892Z adding 'torch/backends/cusparselt/__init__.py' 2025-07-24T05:19:47.0308427Z adding 'torch/backends/kleidiai/__init__.py' 2025-07-24T05:19:47.0312410Z adding 'torch/backends/mha/__init__.py' 2025-07-24T05:19:47.0316764Z adding 'torch/backends/mkl/__init__.py' 2025-07-24T05:19:47.0321403Z adding 'torch/backends/mkldnn/__init__.py' 2025-07-24T05:19:47.0325690Z adding 'torch/backends/mps/__init__.py' 2025-07-24T05:19:47.0329192Z adding 'torch/backends/nnpack/__init__.py' 2025-07-24T05:19:47.0332753Z adding 'torch/backends/openmp/__init__.py' 2025-07-24T05:19:47.0337052Z adding 'torch/backends/opt_einsum/__init__.py' 2025-07-24T05:19:47.0341167Z adding 'torch/backends/quantized/__init__.py' 2025-07-24T05:19:47.0345341Z adding 'torch/backends/xeon/__init__.py' 2025-07-24T05:19:47.0393791Z adding 'torch/backends/xeon/run_cpu.py' 2025-07-24T05:19:47.0394143Z adding 'torch/backends/xnnpack/__init__.py' 2025-07-24T05:19:47.0573479Z adding 'torch/bin/FileStoreTest.exe' 2025-07-24T05:19:47.0806098Z adding 'torch/bin/TCPStoreTest.exe' 2025-07-24T05:19:47.1036626Z adding 'torch/bin/asmjit.dll' 2025-07-24T05:19:47.2723818Z adding 'torch/bin/fbgemm.dll' 2025-07-24T05:19:47.4270995Z adding 'torch/bin/protoc.exe' 2025-07-24T05:19:47.8637612Z adding 'torch/bin/test_api.exe' 2025-07-24T05:19:48.1364906Z adding 'torch/bin/test_jit.exe' 2025-07-24T05:19:48.2489996Z adding 'torch/bin/test_lazy.exe' 2025-07-24T05:19:48.3348498Z adding 'torch/bin/test_nativert.exe' 2025-07-24T05:19:48.6537675Z adding 'torch/bin/test_tensorexpr.exe' 2025-07-24T05:19:48.6747777Z adding 'torch/bin/tutorial_tensorexpr.exe' 2025-07-24T05:19:48.6761633Z adding 'torch/compiler/__init__.py' 2025-07-24T05:19:48.6768081Z adding 'torch/compiler/_cache.py' 2025-07-24T05:19:48.6772407Z adding 'torch/compiler/config.py' 2025-07-24T05:19:48.6776351Z adding 'torch/contrib/__init__.py' 2025-07-24T05:19:48.6780759Z adding 'torch/contrib/_tensorboard_vis.py' 2025-07-24T05:19:48.6785727Z adding 'torch/cpu/__init__.py' 2025-07-24T05:19:48.6789734Z adding 'torch/cpu/amp/__init__.py' 2025-07-24T05:19:48.6793101Z adding 'torch/cpu/amp/autocast_mode.py' 2025-07-24T05:19:48.6796103Z adding 'torch/cpu/amp/grad_scaler.py' 2025-07-24T05:19:48.6801766Z adding 'torch/csrc/inductor/aoti_runtime/model.h' 2025-07-24T05:19:48.6824667Z adding 'torch/cuda/__init__.py' 2025-07-24T05:19:48.6829635Z adding 'torch/cuda/_gpu_trace.py' 2025-07-24T05:19:48.6840343Z adding 'torch/cuda/_memory_viz.py' 2025-07-24T05:19:48.6844584Z adding 'torch/cuda/_pin_memory_utils.py' 2025-07-24T05:19:48.6852704Z adding 'torch/cuda/_sanitizer.py' 2025-07-24T05:19:48.6859423Z adding 'torch/cuda/_utils.py' 2025-07-24T05:19:48.6862825Z adding 'torch/cuda/comm.py' 2025-07-24T05:19:48.6865675Z adding 'torch/cuda/error.py' 2025-07-24T05:19:48.6869710Z adding 'torch/cuda/gds.py' 2025-07-24T05:19:48.6880552Z adding 'torch/cuda/graphs.py' 2025-07-24T05:19:48.6885296Z adding 'torch/cuda/jiterator.py' 2025-07-24T05:19:48.6902907Z adding 'torch/cuda/memory.py' 2025-07-24T05:19:48.6907507Z adding 'torch/cuda/nccl.py' 2025-07-24T05:19:48.6910931Z adding 'torch/cuda/nvtx.py' 2025-07-24T05:19:48.6914656Z adding 'torch/cuda/profiler.py' 2025-07-24T05:19:48.6918917Z adding 'torch/cuda/random.py' 2025-07-24T05:19:48.6921738Z adding 'torch/cuda/sparse.py' 2025-07-24T05:19:48.6926855Z adding 'torch/cuda/streams.py' 2025-07-24T05:19:48.6938748Z adding 'torch/cuda/tunable.py' 2025-07-24T05:19:48.6943166Z adding 'torch/cuda/amp/__init__.py' 2025-07-24T05:19:48.6946626Z adding 'torch/cuda/amp/autocast_mode.py' 2025-07-24T05:19:48.6949572Z adding 'torch/cuda/amp/common.py' 2025-07-24T05:19:48.6952830Z adding 'torch/cuda/amp/grad_scaler.py' 2025-07-24T05:19:48.6958594Z adding 'torch/distributed/__init__.py' 2025-07-24T05:19:48.6961950Z adding 'torch/distributed/_checkpointable.py' 2025-07-24T05:19:48.6965267Z adding 'torch/distributed/_composable_state.py' 2025-07-24T05:19:48.6969278Z adding 'torch/distributed/_dist2.py' 2025-07-24T05:19:48.6984646Z adding 'torch/distributed/_functional_collectives.py' 2025-07-24T05:19:48.6989137Z adding 'torch/distributed/_functional_collectives_impl.py' 2025-07-24T05:19:48.6993109Z adding 'torch/distributed/_serialization.py' 2025-07-24T05:19:48.7003820Z adding 'torch/distributed/_state_dict_utils.py' 2025-07-24T05:19:48.7008215Z adding 'torch/distributed/argparse_util.py' 2025-07-24T05:19:48.7011943Z adding 'torch/distributed/c10d_logger.py' 2025-07-24T05:19:48.7016778Z adding 'torch/distributed/collective_utils.py' 2025-07-24T05:19:48.7020129Z adding 'torch/distributed/constants.py' 2025-07-24T05:19:48.7038318Z adding 'torch/distributed/device_mesh.py' 2025-07-24T05:19:48.7110686Z adding 'torch/distributed/distributed_c10d.py' 2025-07-24T05:19:48.7120549Z adding 'torch/distributed/launch.py' 2025-07-24T05:19:48.7123871Z adding 'torch/distributed/logging_handlers.py' 2025-07-24T05:19:48.7127709Z adding 'torch/distributed/remote_device.py' 2025-07-24T05:19:48.7132992Z adding 'torch/distributed/rendezvous.py' 2025-07-24T05:19:48.7145642Z adding 'torch/distributed/run.py' 2025-07-24T05:19:48.7152472Z adding 'torch/distributed/utils.py' 2025-07-24T05:19:48.7156599Z adding 'torch/distributed/_composable/__init__.py' 2025-07-24T05:19:48.7160755Z adding 'torch/distributed/_composable/checkpoint_activation.py' 2025-07-24T05:19:48.7165938Z adding 'torch/distributed/_composable/contract.py' 2025-07-24T05:19:48.7171465Z adding 'torch/distributed/_composable/replicate.py' 2025-07-24T05:19:48.7175469Z adding 'torch/distributed/_composable/fsdp/__init__.py' 2025-07-24T05:19:48.7178339Z adding 'torch/distributed/_composable/fsdp/fully_shard.py' 2025-07-24T05:19:48.7181873Z adding 'torch/distributed/_shard/__init__.py' 2025-07-24T05:19:48.7184919Z adding 'torch/distributed/_shard/_utils.py' 2025-07-24T05:19:48.7192205Z adding 'torch/distributed/_shard/api.py' 2025-07-24T05:19:48.7196056Z adding 'torch/distributed/_shard/common_op_utils.py' 2025-07-24T05:19:48.7199636Z adding 'torch/distributed/_shard/metadata.py' 2025-07-24T05:19:48.7202933Z adding 'torch/distributed/_shard/op_registry_utils.py' 2025-07-24T05:19:48.7205931Z adding 'torch/distributed/_shard/sharder.py' 2025-07-24T05:19:48.7209734Z adding 'torch/distributed/_shard/checkpoint/__init__.py' 2025-07-24T05:19:48.7213881Z adding 'torch/distributed/_shard/sharded_optim/__init__.py' 2025-07-24T05:19:48.7217841Z adding 'torch/distributed/_shard/sharded_optim/api.py' 2025-07-24T05:19:48.7224904Z adding 'torch/distributed/_shard/sharded_tensor/__init__.py' 2025-07-24T05:19:48.7243176Z adding 'torch/distributed/_shard/sharded_tensor/api.py' 2025-07-24T05:19:48.7247692Z adding 'torch/distributed/_shard/sharded_tensor/logger.py' 2025-07-24T05:19:48.7250773Z adding 'torch/distributed/_shard/sharded_tensor/logging_handlers.py' 2025-07-24T05:19:48.7254230Z adding 'torch/distributed/_shard/sharded_tensor/metadata.py' 2025-07-24T05:19:48.7259241Z adding 'torch/distributed/_shard/sharded_tensor/reshard.py' 2025-07-24T05:19:48.7263151Z adding 'torch/distributed/_shard/sharded_tensor/shard.py' 2025-07-24T05:19:48.7268514Z adding 'torch/distributed/_shard/sharded_tensor/utils.py' 2025-07-24T05:19:48.7273059Z adding 'torch/distributed/_shard/sharded_tensor/_ops/__init__.py' 2025-07-24T05:19:48.7277084Z adding 'torch/distributed/_shard/sharded_tensor/_ops/_common.py' 2025-07-24T05:19:48.7280864Z adding 'torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py' 2025-07-24T05:19:48.7285177Z adding 'torch/distributed/_shard/sharded_tensor/_ops/init.py' 2025-07-24T05:19:48.7288511Z adding 'torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py' 2025-07-24T05:19:48.7293138Z adding 'torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py' 2025-07-24T05:19:48.7296902Z adding 'torch/distributed/_shard/sharding_plan/__init__.py' 2025-07-24T05:19:48.7300784Z adding 'torch/distributed/_shard/sharding_plan/api.py' 2025-07-24T05:19:48.7304750Z adding 'torch/distributed/_shard/sharding_spec/__init__.py' 2025-07-24T05:19:48.7310465Z adding 'torch/distributed/_shard/sharding_spec/_internals.py' 2025-07-24T05:19:48.7316174Z adding 'torch/distributed/_shard/sharding_spec/api.py' 2025-07-24T05:19:48.7321307Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py' 2025-07-24T05:19:48.7325442Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py' 2025-07-24T05:19:48.7331681Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py' 2025-07-24T05:19:48.7337695Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py' 2025-07-24T05:19:48.7345728Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py' 2025-07-24T05:19:48.7350478Z adding 'torch/distributed/_sharded_tensor/__init__.py' 2025-07-24T05:19:48.7353728Z adding 'torch/distributed/_sharding_spec/__init__.py' 2025-07-24T05:19:48.7375039Z adding 'torch/distributed/_symmetric_memory/__init__.py' 2025-07-24T05:19:48.7380712Z adding 'torch/distributed/_symmetric_memory/_nvshmem_triton.py' 2025-07-24T05:19:48.7385154Z adding 'torch/distributed/_tensor/__init__.py' 2025-07-24T05:19:48.7387861Z adding 'torch/distributed/_tensor/api.py' 2025-07-24T05:19:48.7390931Z adding 'torch/distributed/_tensor/placement_types.py' 2025-07-24T05:19:48.7394702Z adding 'torch/distributed/_tools/__init__.py' 2025-07-24T05:19:48.7398175Z adding 'torch/distributed/_tools/common_utils.py' 2025-07-24T05:19:48.7403006Z adding 'torch/distributed/_tools/fake_collectives.py' 2025-07-24T05:19:48.7411625Z adding 'torch/distributed/_tools/fsdp2_mem_tracker.py' 2025-07-24T05:19:48.7417621Z adding 'torch/distributed/_tools/ilp_utils.py' 2025-07-24T05:19:48.7432887Z adding 'torch/distributed/_tools/mem_tracker.py' 2025-07-24T05:19:48.7439520Z adding 'torch/distributed/_tools/memory_tracker.py' 2025-07-24T05:19:48.7444989Z adding 'torch/distributed/_tools/mod_tracker.py' 2025-07-24T05:19:48.7453578Z adding 'torch/distributed/_tools/runtime_estimator.py' 2025-07-24T05:19:48.7476265Z adding 'torch/distributed/_tools/sac_estimator.py' 2025-07-24T05:19:48.7476700Z adding 'torch/distributed/_tools/sac_ilp.py' 2025-07-24T05:19:48.7480424Z adding 'torch/distributed/algorithms/__init__.py' 2025-07-24T05:19:48.7486884Z adding 'torch/distributed/algorithms/join.py' 2025-07-24T05:19:48.7491084Z adding 'torch/distributed/algorithms/_checkpoint/__init__.py' 2025-07-24T05:19:48.7497344Z adding 'torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py' 2025-07-24T05:19:48.7501490Z adding 'torch/distributed/algorithms/_comm_hooks/__init__.py' 2025-07-24T05:19:48.7506082Z adding 'torch/distributed/algorithms/_comm_hooks/default_hooks.py' 2025-07-24T05:19:48.7509938Z adding 'torch/distributed/algorithms/_optimizer_overlap/__init__.py' 2025-07-24T05:19:48.7513881Z adding 'torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py' 2025-07-24T05:19:48.7517487Z adding 'torch/distributed/algorithms/_quantization/__init__.py' 2025-07-24T05:19:48.7521627Z adding 'torch/distributed/algorithms/_quantization/quantization.py' 2025-07-24T05:19:48.7527578Z adding 'torch/distributed/algorithms/ddp_comm_hooks/__init__.py' 2025-07-24T05:19:48.7533697Z adding 'torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py' 2025-07-24T05:19:48.7537472Z adding 'torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py' 2025-07-24T05:19:48.7541778Z adding 'torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py' 2025-07-24T05:19:48.7545792Z adding 'torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py' 2025-07-24T05:19:48.7550157Z adding 'torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py' 2025-07-24T05:19:48.7554490Z adding 'torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py' 2025-07-24T05:19:48.7568562Z adding 'torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py' 2025-07-24T05:19:48.7573910Z adding 'torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py' 2025-07-24T05:19:48.7577773Z adding 'torch/distributed/algorithms/model_averaging/__init__.py' 2025-07-24T05:19:48.7582062Z adding 'torch/distributed/algorithms/model_averaging/averagers.py' 2025-07-24T05:19:48.7587335Z adding 'torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py' 2025-07-24T05:19:48.7591160Z adding 'torch/distributed/algorithms/model_averaging/utils.py' 2025-07-24T05:19:48.7595223Z adding 'torch/distributed/autograd/__init__.py' 2025-07-24T05:19:48.7599778Z adding 'torch/distributed/checkpoint/__init__.py' 2025-07-24T05:19:48.7602956Z adding 'torch/distributed/checkpoint/_async_executor.py' 2025-07-24T05:19:48.7608376Z adding 'torch/distributed/checkpoint/_async_process_executor.py' 2025-07-24T05:19:48.7612074Z adding 'torch/distributed/checkpoint/_async_thread_executor.py' 2025-07-24T05:19:48.7615743Z adding 'torch/distributed/checkpoint/_checkpointer.py' 2025-07-24T05:19:48.7627617Z adding 'torch/distributed/checkpoint/_consolidate_hf_safetensors.py' 2025-07-24T05:19:48.7632021Z adding 'torch/distributed/checkpoint/_dedup_save_plans.py' 2025-07-24T05:19:48.7635444Z adding 'torch/distributed/checkpoint/_dedup_tensors.py' 2025-07-24T05:19:48.7640272Z adding 'torch/distributed/checkpoint/_extension.py' 2025-07-24T05:19:48.7644621Z adding 'torch/distributed/checkpoint/_fsspec_filesystem.py' 2025-07-24T05:19:48.7648258Z adding 'torch/distributed/checkpoint/_hf_utils.py' 2025-07-24T05:19:48.7651820Z adding 'torch/distributed/checkpoint/_nested_dict.py' 2025-07-24T05:19:48.7658090Z adding 'torch/distributed/checkpoint/_pg_transport.py' 2025-07-24T05:19:48.7662284Z adding 'torch/distributed/checkpoint/_sharded_tensor_utils.py' 2025-07-24T05:19:48.7668627Z adding 'torch/distributed/checkpoint/_state_dict_stager.py' 2025-07-24T05:19:48.7672189Z adding 'torch/distributed/checkpoint/_storage_utils.py' 2025-07-24T05:19:48.7676434Z adding 'torch/distributed/checkpoint/_traverse.py' 2025-07-24T05:19:48.7679552Z adding 'torch/distributed/checkpoint/_version.py' 2025-07-24T05:19:48.7682747Z adding 'torch/distributed/checkpoint/api.py' 2025-07-24T05:19:48.7692226Z adding 'torch/distributed/checkpoint/default_planner.py' 2025-07-24T05:19:48.7704448Z adding 'torch/distributed/checkpoint/filesystem.py' 2025-07-24T05:19:48.7710970Z adding 'torch/distributed/checkpoint/format_utils.py' 2025-07-24T05:19:48.7717371Z adding 'torch/distributed/checkpoint/hf_storage.py' 2025-07-24T05:19:48.7721695Z adding 'torch/distributed/checkpoint/logger.py' 2025-07-24T05:19:48.7724702Z adding 'torch/distributed/checkpoint/logging_handlers.py' 2025-07-24T05:19:48.7728759Z adding 'torch/distributed/checkpoint/metadata.py' 2025-07-24T05:19:48.7734828Z adding 'torch/distributed/checkpoint/optimizer.py' 2025-07-24T05:19:48.7741964Z adding 'torch/distributed/checkpoint/planner.py' 2025-07-24T05:19:48.7749011Z adding 'torch/distributed/checkpoint/planner_helpers.py' 2025-07-24T05:19:48.7753110Z adding 'torch/distributed/checkpoint/resharding.py' 2025-07-24T05:19:48.7759591Z adding 'torch/distributed/checkpoint/staging.py' 2025-07-24T05:19:48.7777832Z adding 'torch/distributed/checkpoint/state_dict.py' 2025-07-24T05:19:48.7784789Z adding 'torch/distributed/checkpoint/state_dict_loader.py' 2025-07-24T05:19:48.7791633Z adding 'torch/distributed/checkpoint/state_dict_saver.py' 2025-07-24T05:19:48.7795185Z adding 'torch/distributed/checkpoint/stateful.py' 2025-07-24T05:19:48.7799993Z adding 'torch/distributed/checkpoint/storage.py' 2025-07-24T05:19:48.7806713Z adding 'torch/distributed/checkpoint/utils.py' 2025-07-24T05:19:48.7811308Z adding 'torch/distributed/checkpoint/_experimental/__init__.py' 2025-07-24T05:19:48.7816319Z adding 'torch/distributed/checkpoint/_experimental/barriers.py' 2025-07-24T05:19:48.7821045Z adding 'torch/distributed/checkpoint/_experimental/builder.py' 2025-07-24T05:19:48.7826804Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_process.py' 2025-07-24T05:19:48.7832067Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_reader.py' 2025-07-24T05:19:48.7836222Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_writer.py' 2025-07-24T05:19:48.7841514Z adding 'torch/distributed/checkpoint/_experimental/checkpointer.py' 2025-07-24T05:19:48.7845167Z adding 'torch/distributed/checkpoint/_experimental/config.py' 2025-07-24T05:19:48.7850077Z adding 'torch/distributed/checkpoint/_experimental/staging.py' 2025-07-24T05:19:48.7853400Z adding 'torch/distributed/checkpoint/_experimental/types.py' 2025-07-24T05:19:48.7856723Z adding 'torch/distributed/checkpoint/_experimental/utils.py' 2025-07-24T05:19:48.7861479Z adding 'torch/distributed/elastic/__init__.py' 2025-07-24T05:19:48.7864818Z adding 'torch/distributed/elastic/control_plane.py' 2025-07-24T05:19:48.7868501Z adding 'torch/distributed/elastic/agent/__init__.py' 2025-07-24T05:19:48.7872641Z adding 'torch/distributed/elastic/agent/server/__init__.py' 2025-07-24T05:19:48.7887340Z adding 'torch/distributed/elastic/agent/server/api.py' 2025-07-24T05:19:48.7891801Z adding 'torch/distributed/elastic/agent/server/health_check_server.py' 2025-07-24T05:19:48.7898643Z adding 'torch/distributed/elastic/agent/server/local_elastic_agent.py' 2025-07-24T05:19:48.7904165Z adding 'torch/distributed/elastic/events/__init__.py' 2025-07-24T05:19:48.7908129Z adding 'torch/distributed/elastic/events/api.py' 2025-07-24T05:19:48.7911601Z adding 'torch/distributed/elastic/events/handlers.py' 2025-07-24T05:19:48.7916249Z adding 'torch/distributed/elastic/metrics/__init__.py' 2025-07-24T05:19:48.7920831Z adding 'torch/distributed/elastic/metrics/api.py' 2025-07-24T05:19:48.7926789Z adding 'torch/distributed/elastic/multiprocessing/__init__.py' 2025-07-24T05:19:48.7939404Z adding 'torch/distributed/elastic/multiprocessing/api.py' 2025-07-24T05:19:48.7944064Z adding 'torch/distributed/elastic/multiprocessing/redirects.py' 2025-07-24T05:19:48.7948377Z adding 'torch/distributed/elastic/multiprocessing/tail_log.py' 2025-07-24T05:19:48.7956753Z adding 'torch/distributed/elastic/multiprocessing/errors/__init__.py' 2025-07-24T05:19:48.7961883Z adding 'torch/distributed/elastic/multiprocessing/errors/error_handler.py' 2025-07-24T05:19:48.7965340Z adding 'torch/distributed/elastic/multiprocessing/errors/handlers.py' 2025-07-24T05:19:48.8001439Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py' 2025-07-24T05:19:48.8002111Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py' 2025-07-24T05:19:48.8002796Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py' 2025-07-24T05:19:48.8003364Z adding 'torch/distributed/elastic/rendezvous/__init__.py' 2025-07-24T05:19:48.8003778Z adding 'torch/distributed/elastic/rendezvous/_etcd_stub.py' 2025-07-24T05:19:48.8004170Z adding 'torch/distributed/elastic/rendezvous/api.py' 2025-07-24T05:19:48.8004629Z adding 'torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py' 2025-07-24T05:19:48.8015819Z adding 'torch/distributed/elastic/rendezvous/dynamic_rendezvous.py' 2025-07-24T05:19:48.8032091Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous.py' 2025-07-24T05:19:48.8037825Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py' 2025-07-24T05:19:48.8043106Z adding 'torch/distributed/elastic/rendezvous/etcd_server.py' 2025-07-24T05:19:48.8048087Z adding 'torch/distributed/elastic/rendezvous/etcd_store.py' 2025-07-24T05:19:48.8052578Z adding 'torch/distributed/elastic/rendezvous/registry.py' 2025-07-24T05:19:48.8055775Z adding 'torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py' 2025-07-24T05:19:48.8060826Z adding 'torch/distributed/elastic/rendezvous/utils.py' 2025-07-24T05:19:48.8065181Z adding 'torch/distributed/elastic/timer/__init__.py' 2025-07-24T05:19:48.8070527Z adding 'torch/distributed/elastic/timer/api.py' 2025-07-24T05:19:48.8073914Z adding 'torch/distributed/elastic/timer/debug_info_logging.py' 2025-07-24T05:19:48.8080916Z adding 'torch/distributed/elastic/timer/file_based_local_timer.py' 2025-07-24T05:19:48.8085400Z adding 'torch/distributed/elastic/timer/local_timer.py' 2025-07-24T05:19:48.8089294Z adding 'torch/distributed/elastic/utils/__init__.py' 2025-07-24T05:19:48.8092568Z adding 'torch/distributed/elastic/utils/api.py' 2025-07-24T05:19:48.8097019Z adding 'torch/distributed/elastic/utils/distributed.py' 2025-07-24T05:19:48.8100121Z adding 'torch/distributed/elastic/utils/log_level.py' 2025-07-24T05:19:48.8103558Z adding 'torch/distributed/elastic/utils/logging.py' 2025-07-24T05:19:48.8110709Z adding 'torch/distributed/elastic/utils/store.py' 2025-07-24T05:19:48.8114721Z adding 'torch/distributed/elastic/utils/data/__init__.py' 2025-07-24T05:19:48.8118165Z adding 'torch/distributed/elastic/utils/data/cycling_iterator.py' 2025-07-24T05:19:48.8121983Z adding 'torch/distributed/elastic/utils/data/elastic_distributed_sampler.py' 2025-07-24T05:19:48.8126349Z adding 'torch/distributed/fsdp/__init__.py' 2025-07-24T05:19:48.8136034Z adding 'torch/distributed/fsdp/_common_utils.py' 2025-07-24T05:19:48.8141090Z adding 'torch/distributed/fsdp/_debug_utils.py' 2025-07-24T05:19:48.8144816Z adding 'torch/distributed/fsdp/_dynamo_utils.py' 2025-07-24T05:19:48.8151206Z adding 'torch/distributed/fsdp/_exec_order_utils.py' 2025-07-24T05:19:48.8194071Z adding 'torch/distributed/fsdp/_flat_param.py' 2025-07-24T05:19:48.8200878Z adding 'torch/distributed/fsdp/_fsdp_extensions.py' 2025-07-24T05:19:48.8217770Z adding 'torch/distributed/fsdp/_init_utils.py' 2025-07-24T05:19:48.8222012Z adding 'torch/distributed/fsdp/_limiter_utils.py' 2025-07-24T05:19:48.8253691Z adding 'torch/distributed/fsdp/_optim_utils.py' 2025-07-24T05:19:48.8280198Z adding 'torch/distributed/fsdp/_runtime_utils.py' 2025-07-24T05:19:48.8285891Z adding 'torch/distributed/fsdp/_shard_utils.py' 2025-07-24T05:19:48.8296727Z adding 'torch/distributed/fsdp/_state_dict_utils.py' 2025-07-24T05:19:48.8303037Z adding 'torch/distributed/fsdp/_trace_utils.py' 2025-07-24T05:19:48.8307399Z adding 'torch/distributed/fsdp/_traversal_utils.py' 2025-07-24T05:19:48.8313188Z adding 'torch/distributed/fsdp/_unshard_param_utils.py' 2025-07-24T05:19:48.8319154Z adding 'torch/distributed/fsdp/_wrap_utils.py' 2025-07-24T05:19:48.8327307Z adding 'torch/distributed/fsdp/api.py' 2025-07-24T05:19:48.8360935Z adding 'torch/distributed/fsdp/fully_sharded_data_parallel.py' 2025-07-24T05:19:48.8370089Z adding 'torch/distributed/fsdp/sharded_grad_scaler.py' 2025-07-24T05:19:48.8379681Z adding 'torch/distributed/fsdp/wrap.py' 2025-07-24T05:19:48.8384233Z adding 'torch/distributed/fsdp/_fully_shard/__init__.py' 2025-07-24T05:19:48.8388950Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_api.py' 2025-07-24T05:19:48.8399383Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py' 2025-07-24T05:19:48.8404355Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_common.py' 2025-07-24T05:19:48.8409781Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_init.py' 2025-07-24T05:19:48.8424864Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param.py' 2025-07-24T05:19:48.8438740Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py' 2025-07-24T05:19:48.8446649Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_state.py' 2025-07-24T05:19:48.8459041Z adding 'torch/distributed/fsdp/_fully_shard/_fully_shard.py' 2025-07-24T05:19:48.8463615Z adding 'torch/distributed/launcher/__init__.py' 2025-07-24T05:19:48.8479684Z adding 'torch/distributed/launcher/api.py' 2025-07-24T05:19:48.8480023Z adding 'torch/distributed/nn/__init__.py' 2025-07-24T05:19:48.8480417Z adding 'torch/distributed/nn/functional.py' 2025-07-24T05:19:48.8485748Z adding 'torch/distributed/nn/api/__init__.py' 2025-07-24T05:19:48.8494642Z adding 'torch/distributed/nn/api/remote_module.py' 2025-07-24T05:19:48.8499106Z adding 'torch/distributed/nn/jit/__init__.py' 2025-07-24T05:19:48.8503855Z adding 'torch/distributed/nn/jit/instantiator.py' 2025-07-24T05:19:48.8507105Z adding 'torch/distributed/nn/jit/templates/__init__.py' 2025-07-24T05:19:48.8510788Z adding 'torch/distributed/nn/jit/templates/remote_module_template.py' 2025-07-24T05:19:48.8515184Z adding 'torch/distributed/optim/__init__.py' 2025-07-24T05:19:48.8518353Z adding 'torch/distributed/optim/_deprecation_warning.py' 2025-07-24T05:19:48.8522523Z adding 'torch/distributed/optim/apply_optimizer_in_backward.py' 2025-07-24T05:19:48.8526473Z adding 'torch/distributed/optim/functional_adadelta.py' 2025-07-24T05:19:48.8530927Z adding 'torch/distributed/optim/functional_adagrad.py' 2025-07-24T05:19:48.8535109Z adding 'torch/distributed/optim/functional_adam.py' 2025-07-24T05:19:48.8539186Z adding 'torch/distributed/optim/functional_adamax.py' 2025-07-24T05:19:48.8543567Z adding 'torch/distributed/optim/functional_adamw.py' 2025-07-24T05:19:48.8547677Z adding 'torch/distributed/optim/functional_rmsprop.py' 2025-07-24T05:19:48.8551566Z adding 'torch/distributed/optim/functional_rprop.py' 2025-07-24T05:19:48.8555724Z adding 'torch/distributed/optim/functional_sgd.py' 2025-07-24T05:19:48.8562443Z adding 'torch/distributed/optim/named_optimizer.py' 2025-07-24T05:19:48.8568163Z adding 'torch/distributed/optim/optimizer.py' 2025-07-24T05:19:48.8572349Z adding 'torch/distributed/optim/post_localSGD_optimizer.py' 2025-07-24T05:19:48.8575735Z adding 'torch/distributed/optim/utils.py' 2025-07-24T05:19:48.8600931Z adding 'torch/distributed/optim/zero_redundancy_optimizer.py' 2025-07-24T05:19:48.8606048Z adding 'torch/distributed/optim/zero_redundancy_optimizer.pyi' 2025-07-24T05:19:48.8626274Z adding 'torch/distributed/pipelining/_IR.py' 2025-07-24T05:19:48.8630553Z adding 'torch/distributed/pipelining/__init__.py' 2025-07-24T05:19:48.8637527Z adding 'torch/distributed/pipelining/_backward.py' 2025-07-24T05:19:48.8641120Z adding 'torch/distributed/pipelining/_debug.py' 2025-07-24T05:19:48.8645625Z adding 'torch/distributed/pipelining/_schedule_visualizer.py' 2025-07-24T05:19:48.8648909Z adding 'torch/distributed/pipelining/_unflatten.py' 2025-07-24T05:19:48.8660268Z adding 'torch/distributed/pipelining/_utils.py' 2025-07-24T05:19:48.8662870Z adding 'torch/distributed/pipelining/microbatch.py' 2025-07-24T05:19:48.8697341Z adding 'torch/distributed/pipelining/schedules.py' 2025-07-24T05:19:48.8722267Z adding 'torch/distributed/pipelining/stage.py' 2025-07-24T05:19:48.8729856Z adding 'torch/distributed/rpc/__init__.py' 2025-07-24T05:19:48.8733425Z adding 'torch/distributed/rpc/_utils.py' 2025-07-24T05:19:48.8745499Z adding 'torch/distributed/rpc/api.py' 2025-07-24T05:19:48.8753213Z adding 'torch/distributed/rpc/backend_registry.py' 2025-07-24T05:19:48.8756711Z adding 'torch/distributed/rpc/constants.py' 2025-07-24T05:19:48.8761493Z adding 'torch/distributed/rpc/functions.py' 2025-07-24T05:19:48.8767041Z adding 'torch/distributed/rpc/internal.py' 2025-07-24T05:19:48.8771885Z adding 'torch/distributed/rpc/options.py' 2025-07-24T05:19:48.8775540Z adding 'torch/distributed/rpc/rref_proxy.py' 2025-07-24T05:19:48.8780374Z adding 'torch/distributed/rpc/server_process_global_profiler.py' 2025-07-24T05:19:48.8785615Z adding 'torch/distributed/rpc/_testing/__init__.py' 2025-07-24T05:19:48.8789220Z adding 'torch/distributed/rpc/_testing/faulty_agent_backend_registry.py' 2025-07-24T05:19:48.8793412Z adding 'torch/distributed/tensor/__init__.py' 2025-07-24T05:19:48.8811600Z adding 'torch/distributed/tensor/_api.py' 2025-07-24T05:19:48.8819264Z adding 'torch/distributed/tensor/_collective_utils.py' 2025-07-24T05:19:48.8827371Z adding 'torch/distributed/tensor/_dispatch.py' 2025-07-24T05:19:48.8833144Z adding 'torch/distributed/tensor/_dtensor_spec.py' 2025-07-24T05:19:48.8842419Z adding 'torch/distributed/tensor/_op_schema.py' 2025-07-24T05:19:48.8849885Z adding 'torch/distributed/tensor/_random.py' 2025-07-24T05:19:48.8856807Z adding 'torch/distributed/tensor/_redistribute.py' 2025-07-24T05:19:48.8866595Z adding 'torch/distributed/tensor/_sharding_prop.py' 2025-07-24T05:19:48.8874253Z adding 'torch/distributed/tensor/_shards_wrapper.py' 2025-07-24T05:19:48.8879407Z adding 'torch/distributed/tensor/_tp_conv.py' 2025-07-24T05:19:48.8888183Z adding 'torch/distributed/tensor/_utils.py' 2025-07-24T05:19:48.8891634Z adding 'torch/distributed/tensor/device_mesh.py' 2025-07-24T05:19:48.8902960Z adding 'torch/distributed/tensor/placement_types.py' 2025-07-24T05:19:48.8907490Z adding 'torch/distributed/tensor/_ops/__init__.py' 2025-07-24T05:19:48.8913432Z adding 'torch/distributed/tensor/_ops/_common_rules.py' 2025-07-24T05:19:48.8917400Z adding 'torch/distributed/tensor/_ops/_conv_ops.py' 2025-07-24T05:19:48.8922183Z adding 'torch/distributed/tensor/_ops/_einsum_strategy.py' 2025-07-24T05:19:48.8927453Z adding 'torch/distributed/tensor/_ops/_embedding_ops.py' 2025-07-24T05:19:48.8940264Z adding 'torch/distributed/tensor/_ops/_math_ops.py' 2025-07-24T05:19:48.8951092Z adding 'torch/distributed/tensor/_ops/_matrix_ops.py' 2025-07-24T05:19:48.8960544Z adding 'torch/distributed/tensor/_ops/_pointwise_ops.py' 2025-07-24T05:19:48.8964374Z adding 'torch/distributed/tensor/_ops/_random_ops.py' 2025-07-24T05:19:48.8979505Z adding 'torch/distributed/tensor/_ops/_tensor_ops.py' 2025-07-24T05:19:48.8991099Z adding 'torch/distributed/tensor/_ops/_view_ops.py' 2025-07-24T05:19:48.8998108Z adding 'torch/distributed/tensor/_ops/utils.py' 2025-07-24T05:19:48.9002383Z adding 'torch/distributed/tensor/debug/__init__.py' 2025-07-24T05:19:48.9011486Z adding 'torch/distributed/tensor/debug/_comm_mode.py' 2025-07-24T05:19:48.9015933Z adding 'torch/distributed/tensor/debug/_op_coverage.py' 2025-07-24T05:19:48.9020780Z adding 'torch/distributed/tensor/debug/_visualize_sharding.py' 2025-07-24T05:19:48.9024914Z adding 'torch/distributed/tensor/experimental/__init__.py' 2025-07-24T05:19:48.9041356Z adding 'torch/distributed/tensor/experimental/_attention.py' 2025-07-24T05:19:48.9048020Z adding 'torch/distributed/tensor/experimental/_func_map.py' 2025-07-24T05:19:48.9052627Z adding 'torch/distributed/tensor/experimental/_register_sharding.py' 2025-07-24T05:19:48.9061839Z adding 'torch/distributed/tensor/experimental/_tp_transform.py' 2025-07-24T05:19:48.9066228Z adding 'torch/distributed/tensor/parallel/__init__.py' 2025-07-24T05:19:48.9069593Z adding 'torch/distributed/tensor/parallel/_data_parallel_utils.py' 2025-07-24T05:19:48.9073960Z adding 'torch/distributed/tensor/parallel/api.py' 2025-07-24T05:19:48.9078095Z adding 'torch/distributed/tensor/parallel/ddp.py' 2025-07-24T05:19:48.9084765Z adding 'torch/distributed/tensor/parallel/fsdp.py' 2025-07-24T05:19:48.9088846Z adding 'torch/distributed/tensor/parallel/input_reshard.py' 2025-07-24T05:19:48.9095880Z adding 'torch/distributed/tensor/parallel/loss.py' 2025-07-24T05:19:48.9106143Z adding 'torch/distributed/tensor/parallel/style.py' 2025-07-24T05:19:48.9112799Z adding 'torch/distributions/__init__.py' 2025-07-24T05:19:48.9116904Z adding 'torch/distributions/bernoulli.py' 2025-07-24T05:19:48.9120784Z adding 'torch/distributions/beta.py' 2025-07-24T05:19:48.9125113Z adding 'torch/distributions/binomial.py' 2025-07-24T05:19:48.9130808Z adding 'torch/distributions/categorical.py' 2025-07-24T05:19:48.9134745Z adding 'torch/distributions/cauchy.py' 2025-07-24T05:19:48.9137960Z adding 'torch/distributions/chi2.py' 2025-07-24T05:19:48.9143035Z adding 'torch/distributions/constraint_registry.py' 2025-07-24T05:19:48.9150597Z adding 'torch/distributions/constraints.py' 2025-07-24T05:19:48.9157416Z adding 'torch/distributions/continuous_bernoulli.py' 2025-07-24T05:19:48.9162952Z adding 'torch/distributions/dirichlet.py' 2025-07-24T05:19:48.9170149Z adding 'torch/distributions/distribution.py' 2025-07-24T05:19:48.9175359Z adding 'torch/distributions/exp_family.py' 2025-07-24T05:19:48.9178976Z adding 'torch/distributions/exponential.py' 2025-07-24T05:19:48.9184205Z adding 'torch/distributions/fishersnedecor.py' 2025-07-24T05:19:48.9189442Z adding 'torch/distributions/gamma.py' 2025-07-24T05:19:48.9195023Z adding 'torch/distributions/generalized_pareto.py' 2025-07-24T05:19:48.9200905Z adding 'torch/distributions/geometric.py' 2025-07-24T05:19:48.9205765Z adding 'torch/distributions/gumbel.py' 2025-07-24T05:19:48.9210826Z adding 'torch/distributions/half_cauchy.py' 2025-07-24T05:19:48.9214383Z adding 'torch/distributions/half_normal.py' 2025-07-24T05:19:48.9219732Z adding 'torch/distributions/independent.py' 2025-07-24T05:19:48.9224759Z adding 'torch/distributions/inverse_gamma.py' 2025-07-24T05:19:48.9237265Z adding 'torch/distributions/kl.py' 2025-07-24T05:19:48.9243191Z adding 'torch/distributions/kumaraswamy.py' 2025-07-24T05:19:48.9248295Z adding 'torch/distributions/laplace.py' 2025-07-24T05:19:48.9254331Z adding 'torch/distributions/lkj_cholesky.py' 2025-07-24T05:19:48.9259260Z adding 'torch/distributions/log_normal.py' 2025-07-24T05:19:48.9264015Z adding 'torch/distributions/logistic_normal.py' 2025-07-24T05:19:48.9270619Z adding 'torch/distributions/lowrank_multivariate_normal.py' 2025-07-24T05:19:48.9276922Z adding 'torch/distributions/mixture_same_family.py' 2025-07-24T05:19:48.9282860Z adding 'torch/distributions/multinomial.py' 2025-07-24T05:19:48.9289702Z adding 'torch/distributions/multivariate_normal.py' 2025-07-24T05:19:48.9295395Z adding 'torch/distributions/negative_binomial.py' 2025-07-24T05:19:48.9300649Z adding 'torch/distributions/normal.py' 2025-07-24T05:19:48.9306136Z adding 'torch/distributions/one_hot_categorical.py' 2025-07-24T05:19:48.9309742Z adding 'torch/distributions/pareto.py' 2025-07-24T05:19:48.9314914Z adding 'torch/distributions/poisson.py' 2025-07-24T05:19:48.9320426Z adding 'torch/distributions/relaxed_bernoulli.py' 2025-07-24T05:19:48.9325970Z adding 'torch/distributions/relaxed_categorical.py' 2025-07-24T05:19:48.9331285Z adding 'torch/distributions/studentT.py' 2025-07-24T05:19:48.9337571Z adding 'torch/distributions/transformed_distribution.py' 2025-07-24T05:19:48.9354456Z adding 'torch/distributions/transforms.py' 2025-07-24T05:19:48.9360487Z adding 'torch/distributions/uniform.py' 2025-07-24T05:19:48.9366916Z adding 'torch/distributions/utils.py' 2025-07-24T05:19:48.9372943Z adding 'torch/distributions/von_mises.py' 2025-07-24T05:19:48.9378044Z adding 'torch/distributions/weibull.py' 2025-07-24T05:19:48.9385346Z adding 'torch/distributions/wishart.py' 2025-07-24T05:19:48.9398197Z adding 'torch/export/__init__.py' 2025-07-24T05:19:48.9408593Z adding 'torch/export/_draft_export.py' 2025-07-24T05:19:48.9413801Z adding 'torch/export/_remove_auto_functionalized_pass.py' 2025-07-24T05:19:48.9419552Z adding 'torch/export/_remove_effect_tokens_pass.py' 2025-07-24T05:19:48.9424401Z adding 'torch/export/_safeguard.py' 2025-07-24T05:19:48.9433998Z adding 'torch/export/_swap.py' 2025-07-24T05:19:48.9473543Z adding 'torch/export/_trace.py' 2025-07-24T05:19:48.9481615Z adding 'torch/export/_tree_utils.py' 2025-07-24T05:19:48.9492404Z adding 'torch/export/_unlift.py' 2025-07-24T05:19:48.9497517Z adding 'torch/export/_wrapper_utils.py' 2025-07-24T05:19:48.9500444Z adding 'torch/export/custom_obj.py' 2025-07-24T05:19:48.9505298Z adding 'torch/export/custom_ops.py' 2025-07-24T05:19:48.9509319Z adding 'torch/export/decomp_utils.py' 2025-07-24T05:19:48.9532149Z adding 'torch/export/dynamic_shapes.py' 2025-07-24T05:19:48.9556437Z adding 'torch/export/exported_program.py' 2025-07-24T05:19:48.9567877Z adding 'torch/export/graph_signature.py' 2025-07-24T05:19:48.9593410Z adding 'torch/export/unflatten.py' 2025-07-24T05:19:48.9603081Z adding 'torch/export/experimental/__init__.py' 2025-07-24T05:19:48.9607967Z adding 'torch/export/experimental/_utils.py' 2025-07-24T05:19:48.9612237Z adding 'torch/export/passes/__init__.py' 2025-07-24T05:19:48.9617190Z adding 'torch/export/pt2_archive/__init__.py' 2025-07-24T05:19:48.9626323Z adding 'torch/export/pt2_archive/_package.py' 2025-07-24T05:19:48.9630681Z adding 'torch/export/pt2_archive/_package_weights.py' 2025-07-24T05:19:48.9634870Z adding 'torch/export/pt2_archive/constants.py' 2025-07-24T05:19:48.9647845Z adding 'torch/fft/__init__.py' 2025-07-24T05:19:48.9652834Z adding 'torch/func/__init__.py' 2025-07-24T05:19:48.9659787Z adding 'torch/futures/__init__.py' 2025-07-24T05:19:48.9665057Z adding 'torch/fx/__init__.py' 2025-07-24T05:19:48.9668293Z adding 'torch/fx/_compatibility.py' 2025-07-24T05:19:48.9676428Z adding 'torch/fx/_graph_pickler.py' 2025-07-24T05:19:48.9681646Z adding 'torch/fx/_lazy_graph_module.py' 2025-07-24T05:19:48.9685423Z adding 'torch/fx/_pytree.py' 2025-07-24T05:19:48.9704471Z adding 'torch/fx/_symbolic_trace.py' 2025-07-24T05:19:48.9708979Z adding 'torch/fx/_utils.py' 2025-07-24T05:19:48.9712176Z adding 'torch/fx/annotate.py' 2025-07-24T05:19:48.9715071Z adding 'torch/fx/config.py' 2025-07-24T05:19:48.9743180Z adding 'torch/fx/graph.py' 2025-07-24T05:19:48.9761367Z adding 'torch/fx/graph_module.py' 2025-07-24T05:19:48.9765918Z adding 'torch/fx/immutable_collections.py' 2025-07-24T05:19:48.9774122Z adding 'torch/fx/interpreter.py' 2025-07-24T05:19:48.9788442Z adding 'torch/fx/node.py' 2025-07-24T05:19:48.9799442Z adding 'torch/fx/operator_schemas.py' 2025-07-24T05:19:48.9811494Z adding 'torch/fx/proxy.py' 2025-07-24T05:19:48.9819495Z adding 'torch/fx/subgraph_rewriter.py' 2025-07-24T05:19:48.9823362Z adding 'torch/fx/tensor_type.py' 2025-07-24T05:19:48.9828758Z adding 'torch/fx/traceback.py' 2025-07-24T05:19:48.9833049Z adding 'torch/fx/experimental/__init__.py' 2025-07-24T05:19:48.9836161Z adding 'torch/fx/experimental/_backward_state.py' 2025-07-24T05:19:48.9840317Z adding 'torch/fx/experimental/_config.py' 2025-07-24T05:19:48.9843628Z adding 'torch/fx/experimental/_constant_symnode.py' 2025-07-24T05:19:48.9847501Z adding 'torch/fx/experimental/_dynamism.py' 2025-07-24T05:19:48.9863500Z adding 'torch/fx/experimental/accelerator_partitioner.py' 2025-07-24T05:19:48.9870786Z adding 'torch/fx/experimental/const_fold.py' 2025-07-24T05:19:48.9874188Z adding 'torch/fx/experimental/debug.py' 2025-07-24T05:19:48.9886665Z adding 'torch/fx/experimental/graph_gradual_typechecker.py' 2025-07-24T05:19:48.9893345Z adding 'torch/fx/experimental/merge_matmul.py' 2025-07-24T05:19:48.9899042Z adding 'torch/fx/experimental/meta_tracer.py' 2025-07-24T05:19:48.9903439Z adding 'torch/fx/experimental/normalize.py' 2025-07-24T05:19:48.9911223Z adding 'torch/fx/experimental/optimization.py' 2025-07-24T05:19:48.9917448Z adding 'torch/fx/experimental/partitioner_utils.py' 2025-07-24T05:19:48.9952914Z adding 'torch/fx/experimental/proxy_tensor.py' 2025-07-24T05:19:48.9963832Z adding 'torch/fx/experimental/recording.py' 2025-07-24T05:19:48.9967323Z adding 'torch/fx/experimental/refinement_types.py' 2025-07-24T05:19:48.9971494Z adding 'torch/fx/experimental/rewriter.py' 2025-07-24T05:19:48.9975807Z adding 'torch/fx/experimental/schema_type_annotation.py' 2025-07-24T05:19:49.0042565Z adding 'torch/fx/experimental/sym_node.py' 2025-07-24T05:19:49.0183048Z adding 'torch/fx/experimental/symbolic_shapes.py' 2025-07-24T05:19:49.0194102Z adding 'torch/fx/experimental/unify_refinements.py' 2025-07-24T05:19:49.0206862Z adding 'torch/fx/experimental/validator.py' 2025-07-24T05:19:49.0211690Z adding 'torch/fx/experimental/migrate_gradual_types/__init__.py' 2025-07-24T05:19:49.0217674Z adding 'torch/fx/experimental/migrate_gradual_types/constraint.py' 2025-07-24T05:19:49.0232676Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_generator.py' 2025-07-24T05:19:49.0247775Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_transformation.py' 2025-07-24T05:19:49.0252031Z adding 'torch/fx/experimental/migrate_gradual_types/operation.py' 2025-07-24T05:19:49.0258123Z adding 'torch/fx/experimental/migrate_gradual_types/transform_to_z3.py' 2025-07-24T05:19:49.0261684Z adding 'torch/fx/experimental/migrate_gradual_types/util.py' 2025-07-24T05:19:49.0264828Z adding 'torch/fx/experimental/migrate_gradual_types/z3_types.py' 2025-07-24T05:19:49.0268512Z adding 'torch/fx/experimental/unification/__init__.py' 2025-07-24T05:19:49.0271992Z adding 'torch/fx/experimental/unification/core.py' 2025-07-24T05:19:49.0274951Z adding 'torch/fx/experimental/unification/dispatch.py' 2025-07-24T05:19:49.0278711Z adding 'torch/fx/experimental/unification/match.py' 2025-07-24T05:19:49.0282320Z adding 'torch/fx/experimental/unification/more.py' 2025-07-24T05:19:49.0287862Z adding 'torch/fx/experimental/unification/unification_tools.py' 2025-07-24T05:19:49.0293253Z adding 'torch/fx/experimental/unification/utils.py' 2025-07-24T05:19:49.0298153Z adding 'torch/fx/experimental/unification/variable.py' 2025-07-24T05:19:49.0303331Z adding 'torch/fx/experimental/unification/multipledispatch/__init__.py' 2025-07-24T05:19:49.0307582Z adding 'torch/fx/experimental/unification/multipledispatch/conflict.py' 2025-07-24T05:19:49.0312473Z adding 'torch/fx/experimental/unification/multipledispatch/core.py' 2025-07-24T05:19:49.0321823Z adding 'torch/fx/experimental/unification/multipledispatch/dispatcher.py' 2025-07-24T05:19:49.0327458Z adding 'torch/fx/experimental/unification/multipledispatch/utils.py' 2025-07-24T05:19:49.0331287Z adding 'torch/fx/experimental/unification/multipledispatch/variadic.py' 2025-07-24T05:19:49.0336689Z adding 'torch/fx/passes/__init__.py' 2025-07-24T05:19:49.0353552Z adding 'torch/fx/passes/_tensorify_python_scalars.py' 2025-07-24T05:19:49.0354170Z adding 'torch/fx/passes/annotate_getitem_nodes.py' 2025-07-24T05:19:49.0356727Z adding 'torch/fx/passes/fake_tensor_prop.py' 2025-07-24T05:19:49.0365314Z adding 'torch/fx/passes/graph_drawer.py' 2025-07-24T05:19:49.0371019Z adding 'torch/fx/passes/graph_manipulation.py' 2025-07-24T05:19:49.0376975Z adding 'torch/fx/passes/graph_transform_observer.py' 2025-07-24T05:19:49.0392715Z adding 'torch/fx/passes/net_min_base.py' 2025-07-24T05:19:49.0399605Z adding 'torch/fx/passes/operator_support.py' 2025-07-24T05:19:49.0404924Z adding 'torch/fx/passes/param_fetch.py' 2025-07-24T05:19:49.0411061Z adding 'torch/fx/passes/pass_manager.py' 2025-07-24T05:19:49.0428242Z adding 'torch/fx/passes/reinplace.py' 2025-07-24T05:19:49.0441544Z adding 'torch/fx/passes/runtime_assert.py' 2025-07-24T05:19:49.0448509Z adding 'torch/fx/passes/shape_prop.py' 2025-07-24T05:19:49.0461206Z adding 'torch/fx/passes/split_module.py' 2025-07-24T05:19:49.0470570Z adding 'torch/fx/passes/split_utils.py' 2025-07-24T05:19:49.0508380Z adding 'torch/fx/passes/splitter_base.py' 2025-07-24T05:19:49.0516522Z adding 'torch/fx/passes/tools_common.py' 2025-07-24T05:19:49.0522295Z adding 'torch/fx/passes/backends/__init__.py' 2025-07-24T05:19:49.0527376Z adding 'torch/fx/passes/backends/cudagraphs.py' 2025-07-24T05:19:49.0531052Z adding 'torch/fx/passes/dialect/__init__.py' 2025-07-24T05:19:49.0534541Z adding 'torch/fx/passes/dialect/common/__init__.py' 2025-07-24T05:19:49.0540341Z adding 'torch/fx/passes/dialect/common/cse_pass.py' 2025-07-24T05:19:49.0544124Z adding 'torch/fx/passes/infra/__init__.py' 2025-07-24T05:19:49.0550878Z adding 'torch/fx/passes/infra/partitioner.py' 2025-07-24T05:19:49.0556479Z adding 'torch/fx/passes/infra/pass_base.py' 2025-07-24T05:19:49.0562340Z adding 'torch/fx/passes/infra/pass_manager.py' 2025-07-24T05:19:49.0566267Z adding 'torch/fx/passes/tests/__init__.py' 2025-07-24T05:19:49.0569438Z adding 'torch/fx/passes/tests/test_pass_manager.py' 2025-07-24T05:19:49.0573119Z adding 'torch/fx/passes/utils/__init__.py' 2025-07-24T05:19:49.0576617Z adding 'torch/fx/passes/utils/common.py' 2025-07-24T05:19:49.0582133Z adding 'torch/fx/passes/utils/fuser_utils.py' 2025-07-24T05:19:49.0591103Z adding 'torch/fx/passes/utils/matcher_utils.py' 2025-07-24T05:19:49.0595537Z adding 'torch/fx/passes/utils/matcher_with_name_node_map_utils.py' 2025-07-24T05:19:49.0600033Z adding 'torch/fx/passes/utils/source_matcher_utils.py' 2025-07-24T05:19:49.0609471Z adding 'torch/include/advisor-annotate.h' 2025-07-24T05:19:49.0622921Z adding 'torch/include/cpuinfo.h' 2025-07-24T05:19:49.0627348Z adding 'torch/include/dnnl.h' 2025-07-24T05:19:49.0630390Z adding 'torch/include/dnnl.hpp' 2025-07-24T05:19:49.0633961Z adding 'torch/include/dnnl_config.h' 2025-07-24T05:19:49.0638121Z adding 'torch/include/dnnl_debug.h' 2025-07-24T05:19:49.0641161Z adding 'torch/include/dnnl_ocl.h' 2025-07-24T05:19:49.0644165Z adding 'torch/include/dnnl_ocl.hpp' 2025-07-24T05:19:49.0647127Z adding 'torch/include/dnnl_sycl.h' 2025-07-24T05:19:49.0650166Z adding 'torch/include/dnnl_sycl.hpp' 2025-07-24T05:19:49.0653166Z adding 'torch/include/dnnl_sycl_types.h' 2025-07-24T05:19:49.0656119Z adding 'torch/include/dnnl_threadpool.h' 2025-07-24T05:19:49.0659083Z adding 'torch/include/dnnl_threadpool.hpp' 2025-07-24T05:19:49.0662090Z adding 'torch/include/dnnl_threadpool_iface.hpp' 2025-07-24T05:19:49.0665032Z adding 'torch/include/dnnl_types.h' 2025-07-24T05:19:49.0668020Z adding 'torch/include/dnnl_version.h' 2025-07-24T05:19:49.0670938Z adding 'torch/include/experiments-config.h' 2025-07-24T05:19:49.0673632Z adding 'torch/include/fp16.h' 2025-07-24T05:19:49.0678897Z adding 'torch/include/fxdiv.h' 2025-07-24T05:19:49.0682997Z adding 'torch/include/ittnotify-zca.h' 2025-07-24T05:19:49.0728846Z adding 'torch/include/ittnotify.h' 2025-07-24T05:19:49.0742734Z adding 'torch/include/jitprofiling.h' 2025-07-24T05:19:49.0746459Z adding 'torch/include/libittnotify.h' 2025-07-24T05:19:49.0749462Z adding 'torch/include/libshm.h' 2025-07-24T05:19:49.0759495Z adding 'torch/include/psimd.h' 2025-07-24T05:19:49.0774058Z adding 'torch/include/pthreadpool.h' 2025-07-24T05:19:49.0819086Z adding 'torch/include/sleef.h' 2025-07-24T05:19:49.0861653Z adding 'torch/include/xnnpack.h' 2025-07-24T05:19:49.0872971Z adding 'torch/include/ATen/ATen.h' 2025-07-24T05:19:49.0876406Z adding 'torch/include/ATen/AccumulateType.h' 2025-07-24T05:19:49.0879539Z adding 'torch/include/ATen/ArrayRef.h' 2025-07-24T05:19:49.0882251Z adding 'torch/include/ATen/Backend.h' 2025-07-24T05:19:49.0885044Z adding 'torch/include/ATen/Backtrace.h' 2025-07-24T05:19:49.0887988Z adding 'torch/include/ATen/BlasBackend.h' 2025-07-24T05:19:49.0893353Z adding 'torch/include/ATen/CPUApplyUtils.h' 2025-07-24T05:19:49.0896899Z adding 'torch/include/ATen/CPUFixedAllocator.h' 2025-07-24T05:19:49.0900228Z adding 'torch/include/ATen/CPUFunctions.h' 2025-07-24T05:19:49.0906421Z adding 'torch/include/ATen/CPUFunctions_inl.h' 2025-07-24T05:19:49.0910452Z adding 'torch/include/ATen/CPUGeneratorImpl.h' 2025-07-24T05:19:49.0914040Z adding 'torch/include/ATen/CUDAFunctions.h' 2025-07-24T05:19:49.0920819Z adding 'torch/include/ATen/CUDAFunctions_inl.h' 2025-07-24T05:19:49.0924920Z adding 'torch/include/ATen/CachedTensorUtils.h' 2025-07-24T05:19:49.0928352Z adding 'torch/include/ATen/CollapseDims.h' 2025-07-24T05:19:49.0931987Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions.h' 2025-07-24T05:19:49.0939181Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h' 2025-07-24T05:19:49.0943745Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h' 2025-07-24T05:19:49.0949076Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h' 2025-07-24T05:19:49.0953181Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions.h' 2025-07-24T05:19:49.0959647Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h' 2025-07-24T05:19:49.0964020Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h' 2025-07-24T05:19:49.0967285Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h' 2025-07-24T05:19:49.0970253Z adding 'torch/include/ATen/Config.h' 2025-07-24T05:19:49.0978561Z adding 'torch/include/ATen/Context.h' 2025-07-24T05:19:49.0996356Z adding 'torch/include/ATen/DLConvertor.h' 2025-07-24T05:19:49.0996670Z adding 'torch/include/ATen/Device.h' 2025-07-24T05:19:49.0996977Z adding 'torch/include/ATen/DeviceAccelerator.h' 2025-07-24T05:19:49.0997299Z adding 'torch/include/ATen/DeviceGuard.h' 2025-07-24T05:19:49.0997632Z adding 'torch/include/ATen/DimVector.h' 2025-07-24T05:19:49.0999821Z adding 'torch/include/ATen/Dimname.h' 2025-07-24T05:19:49.1008697Z adding 'torch/include/ATen/Dispatch.h' 2025-07-24T05:19:49.1017641Z adding 'torch/include/ATen/Dispatch_v2.h' 2025-07-24T05:19:49.1022279Z adding 'torch/include/ATen/DynamicLibrary.h' 2025-07-24T05:19:49.1025670Z adding 'torch/include/ATen/EmptyTensor.h' 2025-07-24T05:19:49.1028868Z adding 'torch/include/ATen/ExpandBase.h' 2025-07-24T05:19:49.1034810Z adding 'torch/include/ATen/ExpandUtils.h' 2025-07-24T05:19:49.1038632Z adding 'torch/include/ATen/Formatting.h' 2025-07-24T05:19:49.1041937Z adding 'torch/include/ATen/FuncTorchTLS.h' 2025-07-24T05:19:49.1047558Z adding 'torch/include/ATen/FunctionalStorageImpl.h' 2025-07-24T05:19:49.1054663Z adding 'torch/include/ATen/FunctionalTensorWrapper.h' 2025-07-24T05:19:49.1066186Z adding 'torch/include/ATen/Functions.h' 2025-07-24T05:19:49.1070260Z adding 'torch/include/ATen/Generator.h' 2025-07-24T05:19:49.1073808Z adding 'torch/include/ATen/InferSize.h' 2025-07-24T05:19:49.1076886Z adding 'torch/include/ATen/InitialTensorOptions.h' 2025-07-24T05:19:49.1079903Z adding 'torch/include/ATen/Layout.h' 2025-07-24T05:19:49.1082985Z adding 'torch/include/ATen/LegacyBatchedFallback.h' 2025-07-24T05:19:49.1087293Z adding 'torch/include/ATen/LegacyBatchedTensorImpl.h' 2025-07-24T05:19:49.1090468Z adding 'torch/include/ATen/LegacyVmapMode.h' 2025-07-24T05:19:49.1095421Z adding 'torch/include/ATen/LegacyVmapTransforms.h' 2025-07-24T05:19:49.1098660Z adding 'torch/include/ATen/LinalgBackend.h' 2025-07-24T05:19:49.1102214Z adding 'torch/include/ATen/MapAllocator.h' 2025-07-24T05:19:49.1105881Z adding 'torch/include/ATen/MatrixRef.h' 2025-07-24T05:19:49.1109028Z adding 'torch/include/ATen/MemoryOverlap.h' 2025-07-24T05:19:49.1112326Z adding 'torch/include/ATen/MetaFunctions.h' 2025-07-24T05:19:49.1116921Z adding 'torch/include/ATen/MetaFunctions_inl.h' 2025-07-24T05:19:49.1122218Z adding 'torch/include/ATen/MethodOperators.h' 2025-07-24T05:19:49.1125370Z adding 'torch/include/ATen/NamedTensor.h' 2025-07-24T05:19:49.1129601Z adding 'torch/include/ATen/NamedTensorUtils.h' 2025-07-24T05:19:49.1140627Z adding 'torch/include/ATen/NativeFunctions.h' 2025-07-24T05:19:49.1152252Z adding 'torch/include/ATen/NativeMetaFunctions.h' 2025-07-24T05:19:49.1159036Z adding 'torch/include/ATen/NestedTensorImpl.h' 2025-07-24T05:19:49.1162868Z adding 'torch/include/ATen/NumericUtils.h' 2025-07-24T05:19:49.1166223Z adding 'torch/include/ATen/OpMathType.h' 2025-07-24T05:19:49.1170314Z adding 'torch/include/ATen/OpaqueTensorImpl.h' 2025-07-24T05:19:49.1181426Z adding 'torch/include/ATen/Operators.h' 2025-07-24T05:19:49.1185780Z adding 'torch/include/ATen/PTThreadPool.h' 2025-07-24T05:19:49.1188542Z adding 'torch/include/ATen/PadNd.h' 2025-07-24T05:19:49.1191754Z adding 'torch/include/ATen/Parallel-inl.h' 2025-07-24T05:19:49.1195700Z adding 'torch/include/ATen/Parallel.h' 2025-07-24T05:19:49.1198934Z adding 'torch/include/ATen/ParallelFuture.h' 2025-07-24T05:19:49.1201744Z adding 'torch/include/ATen/ParallelNative.h' 2025-07-24T05:19:49.1204959Z adding 'torch/include/ATen/ParallelOpenMP.h' 2025-07-24T05:19:49.1208082Z adding 'torch/include/ATen/PythonTorchFunctionTLS.h' 2025-07-24T05:19:49.1211032Z adding 'torch/include/ATen/ROCmFABackend.h' 2025-07-24T05:19:49.1479704Z adding 'torch/include/ATen/RedispatchFunctions.h' 2025-07-24T05:19:49.1670000Z adding 'torch/include/ATen/RegistrationDeclarations.h' 2025-07-24T05:19:49.1695692Z adding 'torch/include/ATen/SDPBackend.h' 2025-07-24T05:19:49.1699266Z adding 'torch/include/ATen/SavedTensorHooks.h' 2025-07-24T05:19:49.1702100Z adding 'torch/include/ATen/Scalar.h' 2025-07-24T05:19:49.1705419Z adding 'torch/include/ATen/ScalarOps.h' 2025-07-24T05:19:49.1708258Z adding 'torch/include/ATen/ScalarType.h' 2025-07-24T05:19:49.1711174Z adding 'torch/include/ATen/SequenceNumber.h' 2025-07-24T05:19:49.1713860Z adding 'torch/include/ATen/SmallVector.h' 2025-07-24T05:19:49.1718471Z adding 'torch/include/ATen/SparseCsrTensorImpl.h' 2025-07-24T05:19:49.1724754Z adding 'torch/include/ATen/SparseCsrTensorUtils.h' 2025-07-24T05:19:49.1731482Z adding 'torch/include/ATen/SparseTensorImpl.h' 2025-07-24T05:19:49.1734690Z adding 'torch/include/ATen/Storage.h' 2025-07-24T05:19:49.1737880Z adding 'torch/include/ATen/StorageUtils.h' 2025-07-24T05:19:49.1740641Z adding 'torch/include/ATen/Tensor.h' 2025-07-24T05:19:49.1743342Z adding 'torch/include/ATen/TensorAccessor.h' 2025-07-24T05:19:49.1746970Z adding 'torch/include/ATen/TensorGeometry.h' 2025-07-24T05:19:49.1756802Z adding 'torch/include/ATen/TensorIndexing.h' 2025-07-24T05:19:49.1772417Z adding 'torch/include/ATen/TensorIterator.h' 2025-07-24T05:19:49.1776774Z adding 'torch/include/ATen/TensorIteratorInternal.h' 2025-07-24T05:19:49.1781317Z adding 'torch/include/ATen/TensorMeta.h' 2025-07-24T05:19:49.1785151Z adding 'torch/include/ATen/TensorNames.h' 2025-07-24T05:19:49.1788487Z adding 'torch/include/ATen/TensorOperators.h' 2025-07-24T05:19:49.1791281Z adding 'torch/include/ATen/TensorOptions.h' 2025-07-24T05:19:49.1794934Z adding 'torch/include/ATen/TensorSubclassLikeUtils.h' 2025-07-24T05:19:49.1799606Z adding 'torch/include/ATen/TensorUtils.h' 2025-07-24T05:19:49.1802885Z adding 'torch/include/ATen/ThreadLocalPythonObjects.h' 2025-07-24T05:19:49.1807032Z adding 'torch/include/ATen/ThreadLocalState.h' 2025-07-24T05:19:49.1811613Z adding 'torch/include/ATen/TracerMode.h' 2025-07-24T05:19:49.1814580Z adding 'torch/include/ATen/TypeDefault.h' 2025-07-24T05:19:49.1818281Z adding 'torch/include/ATen/Utils.h' 2025-07-24T05:19:49.1821289Z adding 'torch/include/ATen/Version.h' 2025-07-24T05:19:49.2020125Z adding 'torch/include/ATen/VmapGeneratedPlumbing.h' 2025-07-24T05:19:49.2044004Z adding 'torch/include/ATen/WrapDimUtils.h' 2025-07-24T05:19:49.2047371Z adding 'torch/include/ATen/WrapDimUtilsMulti.h' 2025-07-24T05:19:49.2058546Z adding 'torch/include/ATen/autocast_mode.h' 2025-07-24T05:19:49.2062535Z adding 'torch/include/ATen/ceil_div.h' 2025-07-24T05:19:49.2067122Z adding 'torch/include/ATen/code_template.h' 2025-07-24T05:19:49.2071193Z adding 'torch/include/ATen/cpp_custom_type_hack.h' 2025-07-24T05:19:49.2074181Z adding 'torch/include/ATen/div_rtn.h' 2025-07-24T05:19:49.2079977Z adding 'torch/include/ATen/dlpack.h' 2025-07-24T05:19:49.2083222Z adding 'torch/include/ATen/jit_macros.h' 2025-07-24T05:19:49.2086460Z adding 'torch/include/ATen/jiterator_macros.h' 2025-07-24T05:19:49.2095516Z adding 'torch/include/ATen/record_function.h' 2025-07-24T05:19:49.2101691Z adding 'torch/include/ATen/core/ATenGeneral.h' 2025-07-24T05:19:49.2103966Z adding 'torch/include/ATen/core/ATenOpList.h' 2025-07-24T05:19:49.2106971Z adding 'torch/include/ATen/core/ATen_fwd.h' 2025-07-24T05:19:49.2110761Z adding 'torch/include/ATen/core/ATen_pch.h' 2025-07-24T05:19:49.2114005Z adding 'torch/include/ATen/core/Array.h' 2025-07-24T05:19:49.2116779Z adding 'torch/include/ATen/core/Backtrace.h' 2025-07-24T05:19:49.2127645Z adding 'torch/include/ATen/core/CachingHostAllocator.h' 2025-07-24T05:19:49.2131394Z adding 'torch/include/ATen/core/CheckMemoryFormat.h' 2025-07-24T05:19:49.2135169Z adding 'torch/include/ATen/core/DeprecatedTypeProperties.h' 2025-07-24T05:19:49.2138399Z adding 'torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h' 2025-07-24T05:19:49.2144755Z adding 'torch/include/ATen/core/Dict.h' 2025-07-24T05:19:49.2149650Z adding 'torch/include/ATen/core/Dict_inl.h' 2025-07-24T05:19:49.2152705Z adding 'torch/include/ATen/core/DimVector.h' 2025-07-24T05:19:49.2155838Z adding 'torch/include/ATen/core/Dimname.h' 2025-07-24T05:19:49.2160960Z adding 'torch/include/ATen/core/DistributionsHelper.h' 2025-07-24T05:19:49.2164348Z adding 'torch/include/ATen/core/Formatting.h' 2025-07-24T05:19:49.2168896Z adding 'torch/include/ATen/core/Generator.h' 2025-07-24T05:19:49.2172326Z adding 'torch/include/ATen/core/GeneratorForPrivateuseone.h' 2025-07-24T05:19:49.2180370Z adding 'torch/include/ATen/core/IListRef.h' 2025-07-24T05:19:49.2184840Z adding 'torch/include/ATen/core/IListRef_inl.h' 2025-07-24T05:19:49.2189146Z adding 'torch/include/ATen/core/LegacyTypeDispatch.h' 2025-07-24T05:19:49.2195723Z adding 'torch/include/ATen/core/List.h' 2025-07-24T05:19:49.2201211Z adding 'torch/include/ATen/core/List_inl.h' 2025-07-24T05:19:49.2206202Z adding 'torch/include/ATen/core/MT19937RNGEngine.h' 2025-07-24T05:19:49.2210556Z adding 'torch/include/ATen/core/NamedTensor.h' 2025-07-24T05:19:49.2215286Z adding 'torch/include/ATen/core/NestedIntSymNodeImpl.h' 2025-07-24T05:19:49.2220564Z adding 'torch/include/ATen/core/PhiloxRNGEngine.h' 2025-07-24T05:19:49.2223913Z adding 'torch/include/ATen/core/PythonFallbackKernel.h' 2025-07-24T05:19:49.2226982Z adding 'torch/include/ATen/core/PythonOpRegistrationTrampoline.h' 2025-07-24T05:19:49.2230419Z adding 'torch/include/ATen/core/QuantizerBase.h' 2025-07-24T05:19:49.2233386Z adding 'torch/include/ATen/core/Range.h' 2025-07-24T05:19:49.2236300Z adding 'torch/include/ATen/core/Reduction.h' 2025-07-24T05:19:49.2239103Z adding 'torch/include/ATen/core/Scalar.h' 2025-07-24T05:19:49.2241784Z adding 'torch/include/ATen/core/ScalarType.h' 2025-07-24T05:19:49.2245109Z adding 'torch/include/ATen/core/Tensor.h' 2025-07-24T05:19:49.2249773Z adding 'torch/include/ATen/core/TensorAccessor.h' 2025-07-24T05:19:49.2264948Z adding 'torch/include/ATen/core/TensorBase.h' 2025-07-24T05:19:49.2321472Z adding 'torch/include/ATen/core/TensorBody.h' 2025-07-24T05:19:49.2331126Z adding 'torch/include/ATen/core/TorchDispatchUtils.h' 2025-07-24T05:19:49.2335494Z adding 'torch/include/ATen/core/TransformationHelper.h' 2025-07-24T05:19:49.2338611Z adding 'torch/include/ATen/core/UndefinedTensorImpl.h' 2025-07-24T05:19:49.2341614Z adding 'torch/include/ATen/core/UnsafeFromTH.h' 2025-07-24T05:19:49.2345435Z adding 'torch/include/ATen/core/VariableHooksInterface.h' 2025-07-24T05:19:49.2349301Z adding 'torch/include/ATen/core/Variadic.h' 2025-07-24T05:19:49.2352636Z adding 'torch/include/ATen/core/Vitals.h' 2025-07-24T05:19:49.2356826Z adding 'torch/include/ATen/core/alias_info.h' 2025-07-24T05:19:49.2372968Z adding 'torch/include/ATen/core/aten_interned_strings.h' 2025-07-24T05:19:49.2378603Z adding 'torch/include/ATen/core/blob.h' 2025-07-24T05:19:49.2382047Z adding 'torch/include/ATen/core/builtin_function.h' 2025-07-24T05:19:49.2388462Z adding 'torch/include/ATen/core/class_type.h' 2025-07-24T05:19:49.2392107Z adding 'torch/include/ATen/core/custom_class.h' 2025-07-24T05:19:49.2398355Z adding 'torch/include/ATen/core/dynamic_type.h' 2025-07-24T05:19:49.2401493Z adding 'torch/include/ATen/core/enum_tag.h' 2025-07-24T05:19:49.2404860Z adding 'torch/include/ATen/core/enum_type.h' 2025-07-24T05:19:49.2408809Z adding 'torch/include/ATen/core/function.h' 2025-07-24T05:19:49.2418910Z adding 'torch/include/ATen/core/function_schema.h' 2025-07-24T05:19:49.2422953Z adding 'torch/include/ATen/core/function_schema_inl.h' 2025-07-24T05:19:49.2426322Z adding 'torch/include/ATen/core/functional.h' 2025-07-24T05:19:49.2429680Z adding 'torch/include/ATen/core/grad_mode.h' 2025-07-24T05:19:49.2435426Z adding 'torch/include/ATen/core/interned_strings.h' 2025-07-24T05:19:49.2438615Z adding 'torch/include/ATen/core/interned_strings_class.h' 2025-07-24T05:19:49.2458714Z adding 'torch/include/ATen/core/ivalue.h' 2025-07-24T05:19:49.2489250Z adding 'torch/include/ATen/core/ivalue_inl.h' 2025-07-24T05:19:49.2513157Z adding 'torch/include/ATen/core/ivalue_to.h' 2025-07-24T05:19:49.2519554Z adding 'torch/include/ATen/core/jit_type.h' 2025-07-24T05:19:49.2531190Z adding 'torch/include/ATen/core/jit_type_base.h' 2025-07-24T05:19:49.2534278Z adding 'torch/include/ATen/core/operator_name.h' 2025-07-24T05:19:49.2538628Z adding 'torch/include/ATen/core/qualified_name.h' 2025-07-24T05:19:49.2542010Z adding 'torch/include/ATen/core/rref_interface.h' 2025-07-24T05:19:49.2546463Z adding 'torch/include/ATen/core/stack.h' 2025-07-24T05:19:49.2551191Z adding 'torch/include/ATen/core/symbol.h' 2025-07-24T05:19:49.2554920Z adding 'torch/include/ATen/core/type_factory.h' 2025-07-24T05:19:49.2558273Z adding 'torch/include/ATen/core/type_ptr.h' 2025-07-24T05:19:49.2561084Z adding 'torch/include/ATen/core/typeid.h' 2025-07-24T05:19:49.2569052Z adding 'torch/include/ATen/core/boxing/BoxedKernel.h' 2025-07-24T05:19:49.2572881Z adding 'torch/include/ATen/core/boxing/BoxedKernel_impl.h' 2025-07-24T05:19:49.2577614Z adding 'torch/include/ATen/core/boxing/KernelFunction.h' 2025-07-24T05:19:49.2583002Z adding 'torch/include/ATen/core/boxing/KernelFunction_impl.h' 2025-07-24T05:19:49.2586426Z adding 'torch/include/ATen/core/boxing/OperatorKernel.h' 2025-07-24T05:19:49.2590593Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h' 2025-07-24T05:19:49.2593898Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h' 2025-07-24T05:19:49.2599989Z adding 'torch/include/ATen/core/boxing/impl/boxing.h' 2025-07-24T05:19:49.2610046Z adding 'torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h' 2025-07-24T05:19:49.2614639Z adding 'torch/include/ATen/core/boxing/impl/test_helpers.h' 2025-07-24T05:19:49.2619241Z adding 'torch/include/ATen/core/dispatch/CppSignature.h' 2025-07-24T05:19:49.2624944Z adding 'torch/include/ATen/core/dispatch/DispatchKeyExtractor.h' 2025-07-24T05:19:49.2638125Z adding 'torch/include/ATen/core/dispatch/Dispatcher.h' 2025-07-24T05:19:49.2641977Z adding 'torch/include/ATen/core/dispatch/ObservedOperators.h' 2025-07-24T05:19:49.2648271Z adding 'torch/include/ATen/core/dispatch/OperatorEntry.h' 2025-07-24T05:19:49.2651896Z adding 'torch/include/ATen/core/dispatch/OperatorOptions.h' 2025-07-24T05:19:49.2654987Z adding 'torch/include/ATen/core/dispatch/RegistrationHandleRAII.h' 2025-07-24T05:19:49.2659337Z adding 'torch/include/ATen/core/op_registration/adaption.h' 2025-07-24T05:19:49.2663655Z adding 'torch/include/ATen/core/op_registration/infer_schema.h' 2025-07-24T05:19:49.2668257Z adding 'torch/include/ATen/core/op_registration/op_allowlist.h' 2025-07-24T05:19:49.2676610Z adding 'torch/include/ATen/core/op_registration/op_registration.h' 2025-07-24T05:19:49.2681342Z adding 'torch/include/ATen/cpu/FlushDenormal.h' 2025-07-24T05:19:49.2684369Z adding 'torch/include/ATen/cpu/Utils.h' 2025-07-24T05:19:49.2688582Z adding 'torch/include/ATen/cpu/vml.h' 2025-07-24T05:19:49.2692593Z adding 'torch/include/ATen/cpu/vec/functional.h' 2025-07-24T05:19:49.2697587Z adding 'torch/include/ATen/cpu/vec/functional_base.h' 2025-07-24T05:19:49.2704110Z adding 'torch/include/ATen/cpu/vec/functional_bfloat16.h' 2025-07-24T05:19:49.2707944Z adding 'torch/include/ATen/cpu/vec/intrinsics.h' 2025-07-24T05:19:49.2711148Z adding 'torch/include/ATen/cpu/vec/vec.h' 2025-07-24T05:19:49.2724430Z adding 'torch/include/ATen/cpu/vec/vec_base.h' 2025-07-24T05:19:49.2728966Z adding 'torch/include/ATen/cpu/vec/vec_convert.h' 2025-07-24T05:19:49.2732913Z adding 'torch/include/ATen/cpu/vec/vec_half.h' 2025-07-24T05:19:49.2737813Z adding 'torch/include/ATen/cpu/vec/vec_mask.h' 2025-07-24T05:19:49.2743168Z adding 'torch/include/ATen/cpu/vec/vec_n.h' 2025-07-24T05:19:49.2747396Z adding 'torch/include/ATen/cpu/vec/vec_quant.h' 2025-07-24T05:19:49.2752012Z adding 'torch/include/ATen/cpu/vec/sve/sve_helper.h' 2025-07-24T05:19:49.2758636Z adding 'torch/include/ATen/cpu/vec/sve/vec_bfloat16.h' 2025-07-24T05:19:49.2763607Z adding 'torch/include/ATen/cpu/vec/sve/vec_common_sve.h' 2025-07-24T05:19:49.2769865Z adding 'torch/include/ATen/cpu/vec/sve/vec_double.h' 2025-07-24T05:19:49.2778168Z adding 'torch/include/ATen/cpu/vec/sve/vec_float.h' 2025-07-24T05:19:49.2785753Z adding 'torch/include/ATen/cpu/vec/sve/vec_int.h' 2025-07-24T05:19:49.2792002Z adding 'torch/include/ATen/cpu/vec/sve/vec_qint.h' 2025-07-24T05:19:49.2796377Z adding 'torch/include/ATen/cpu/vec/vec128/vec128.h' 2025-07-24T05:19:49.2803613Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h' 2025-07-24T05:19:49.2807424Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_convert.h' 2025-07-24T05:19:49.2814410Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h' 2025-07-24T05:19:49.2821341Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h' 2025-07-24T05:19:49.2826488Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h' 2025-07-24T05:19:49.2831984Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h' 2025-07-24T05:19:49.2835201Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h' 2025-07-24T05:19:49.2840531Z adding 'torch/include/ATen/cpu/vec/vec256/vec256.h' 2025-07-24T05:19:49.2849231Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_16bit_float.h' 2025-07-24T05:19:49.2854826Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h' 2025-07-24T05:19:49.2861861Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h' 2025-07-24T05:19:49.2869899Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h' 2025-07-24T05:19:49.2875296Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_convert.h' 2025-07-24T05:19:49.2881117Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_double.h' 2025-07-24T05:19:49.2890001Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_float.h' 2025-07-24T05:19:49.2895095Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_half.h' 2025-07-24T05:19:49.2909779Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_int.h' 2025-07-24T05:19:49.2916062Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_mask.h' 2025-07-24T05:19:49.2927790Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_qint.h' 2025-07-24T05:19:49.2933378Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h' 2025-07-24T05:19:49.2938392Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h' 2025-07-24T05:19:49.2946643Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h' 2025-07-24T05:19:49.2955451Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h' 2025-07-24T05:19:49.2961791Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h' 2025-07-24T05:19:49.2968034Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h' 2025-07-24T05:19:49.2973672Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h' 2025-07-24T05:19:49.2978961Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h' 2025-07-24T05:19:49.2983992Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h' 2025-07-24T05:19:49.2989228Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h' 2025-07-24T05:19:49.2995702Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h' 2025-07-24T05:19:49.3004659Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h' 2025-07-24T05:19:49.3010903Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h' 2025-07-24T05:19:49.3038782Z adding 'torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h' 2025-07-24T05:19:49.3047941Z adding 'torch/include/ATen/cpu/vec/vec512/vec512.h' 2025-07-24T05:19:49.3065459Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h' 2025-07-24T05:19:49.3075095Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h' 2025-07-24T05:19:49.3085783Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h' 2025-07-24T05:19:49.3091313Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_convert.h' 2025-07-24T05:19:49.3097181Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_double.h' 2025-07-24T05:19:49.3107212Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float.h' 2025-07-24T05:19:49.3114471Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float8.h' 2025-07-24T05:19:49.3127281Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_int.h' 2025-07-24T05:19:49.3133713Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_mask.h' 2025-07-24T05:19:49.3145130Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_qint.h' 2025-07-24T05:19:49.3150979Z adding 'torch/include/ATen/cuda/ATenCUDAGeneral.h' 2025-07-24T05:19:49.3154208Z adding 'torch/include/ATen/cuda/ApplyGridUtils.cuh' 2025-07-24T05:19:49.3157813Z adding 'torch/include/ATen/cuda/AsmUtils.cuh' 2025-07-24T05:19:49.3164775Z adding 'torch/include/ATen/cuda/Atomic.cuh' 2025-07-24T05:19:49.3173072Z adding 'torch/include/ATen/cuda/CUDAApplyUtils.cuh' 2025-07-24T05:19:49.3178745Z adding 'torch/include/ATen/cuda/CUDABlas.h' 2025-07-24T05:19:49.3182040Z adding 'torch/include/ATen/cuda/CUDAContext.h' 2025-07-24T05:19:49.3185615Z adding 'torch/include/ATen/cuda/CUDAContextLight.h' 2025-07-24T05:19:49.3189002Z adding 'torch/include/ATen/cuda/CUDADataType.h' 2025-07-24T05:19:49.3192059Z adding 'torch/include/ATen/cuda/CUDADevice.h' 2025-07-24T05:19:49.3196926Z adding 'torch/include/ATen/cuda/CUDAEvent.h' 2025-07-24T05:19:49.3201778Z adding 'torch/include/ATen/cuda/CUDAGeneratorImpl.h' 2025-07-24T05:19:49.3205711Z adding 'torch/include/ATen/cuda/CUDAGraph.h' 2025-07-24T05:19:49.3209078Z adding 'torch/include/ATen/cuda/CUDAGraphsUtils.cuh' 2025-07-24T05:19:49.3212351Z adding 'torch/include/ATen/cuda/CUDASparse.h' 2025-07-24T05:19:49.3216809Z adding 'torch/include/ATen/cuda/CUDASparseBlas.h' 2025-07-24T05:19:49.3221456Z adding 'torch/include/ATen/cuda/CUDASparseDescriptors.h' 2025-07-24T05:19:49.3224581Z adding 'torch/include/ATen/cuda/CUDATensorMethods.cuh' 2025-07-24T05:19:49.3227452Z adding 'torch/include/ATen/cuda/CUDAUtils.h' 2025-07-24T05:19:49.3230824Z adding 'torch/include/ATen/cuda/CachingHostAllocator.h' 2025-07-24T05:19:49.3234265Z adding 'torch/include/ATen/cuda/DeviceUtils.cuh' 2025-07-24T05:19:49.3237299Z adding 'torch/include/ATen/cuda/EmptyTensor.h' 2025-07-24T05:19:49.3242135Z adding 'torch/include/ATen/cuda/Exceptions.h' 2025-07-24T05:19:49.3246035Z adding 'torch/include/ATen/cuda/NumericLimits.cuh' 2025-07-24T05:19:49.3249075Z adding 'torch/include/ATen/cuda/PeerToPeerAccess.h' 2025-07-24T05:19:49.3252295Z adding 'torch/include/ATen/cuda/PhiloxCudaState.h' 2025-07-24T05:19:49.3254655Z adding 'torch/include/ATen/cuda/PhiloxUtils.cuh' 2025-07-24T05:19:49.3257435Z adding 'torch/include/ATen/cuda/PinnedMemoryAllocator.h' 2025-07-24T05:19:49.3260616Z adding 'torch/include/ATen/cuda/ScanUtils.cuh' 2025-07-24T05:19:49.3263456Z adding 'torch/include/ATen/cuda/Sleep.h' 2025-07-24T05:19:49.3266464Z adding 'torch/include/ATen/cuda/ThrustAllocator.h' 2025-07-24T05:19:49.3269788Z adding 'torch/include/ATen/cuda/cub-RadixSortPairs.cuh' 2025-07-24T05:19:49.3277468Z adding 'torch/include/ATen/cuda/cub.cuh' 2025-07-24T05:19:49.3281814Z adding 'torch/include/ATen/cuda/cub.h' 2025-07-24T05:19:49.3285100Z adding 'torch/include/ATen/cuda/cub_definitions.cuh' 2025-07-24T05:19:49.3288231Z adding 'torch/include/ATen/cuda/jiterator.h' 2025-07-24T05:19:49.3292414Z adding 'torch/include/ATen/cuda/jiterator_impl.h' 2025-07-24T05:19:49.3295542Z adding 'torch/include/ATen/cuda/llvm_jit_strings.h' 2025-07-24T05:19:49.3299821Z adding 'torch/include/ATen/cuda/detail/CUDAHooks.h' 2025-07-24T05:19:49.3304899Z adding 'torch/include/ATen/cuda/detail/DeviceThreadHandles.h' 2025-07-24T05:19:49.3308215Z adding 'torch/include/ATen/cuda/detail/IndexUtils.cuh' 2025-07-24T05:19:49.3312240Z adding 'torch/include/ATen/cuda/detail/IntegerDivider.cuh' 2025-07-24T05:19:49.3315678Z adding 'torch/include/ATen/cuda/detail/KernelUtils.h' 2025-07-24T05:19:49.3318708Z adding 'torch/include/ATen/cuda/detail/LazyNVRTC.h' 2025-07-24T05:19:49.3322505Z adding 'torch/include/ATen/cuda/detail/OffsetCalculator.cuh' 2025-07-24T05:19:49.3325856Z adding 'torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh' 2025-07-24T05:19:49.3329530Z adding 'torch/include/ATen/cuda/detail/TensorInfo.cuh' 2025-07-24T05:19:49.3332898Z adding 'torch/include/ATen/cuda/detail/UnpackRaw.cuh' 2025-07-24T05:19:49.3339981Z adding 'torch/include/ATen/cuda/tunable/GemmCommon.h' 2025-07-24T05:19:49.3347058Z adding 'torch/include/ATen/cuda/tunable/GemmHipblaslt.h' 2025-07-24T05:19:49.3352746Z adding 'torch/include/ATen/cuda/tunable/GemmRocblas.h' 2025-07-24T05:19:49.3355547Z adding 'torch/include/ATen/cuda/tunable/StreamTimer.h' 2025-07-24T05:19:49.3360282Z adding 'torch/include/ATen/cuda/tunable/Tunable.h' 2025-07-24T05:19:49.3364840Z adding 'torch/include/ATen/cuda/tunable/TunableGemm.h' 2025-07-24T05:19:49.3371357Z adding 'torch/include/ATen/cuda/tunable/TunableOp.h' 2025-07-24T05:19:49.3379086Z adding 'torch/include/ATen/cudnn/Descriptors.h' 2025-07-24T05:19:49.3382530Z adding 'torch/include/ATen/cudnn/Handle.h' 2025-07-24T05:19:49.3385399Z adding 'torch/include/ATen/cudnn/Handles.h' 2025-07-24T05:19:49.3388407Z adding 'torch/include/ATen/cudnn/Types.h' 2025-07-24T05:19:49.3391424Z adding 'torch/include/ATen/cudnn/Utils.h' 2025-07-24T05:19:49.3394588Z adding 'torch/include/ATen/cudnn/cudnn-wrapper.h' 2025-07-24T05:19:49.3399407Z adding 'torch/include/ATen/detail/AcceleratorHooksInterface.h' 2025-07-24T05:19:49.3403626Z adding 'torch/include/ATen/detail/CUDAHooksInterface.h' 2025-07-24T05:19:49.3407449Z adding 'torch/include/ATen/detail/FunctionTraits.h' 2025-07-24T05:19:49.3410992Z adding 'torch/include/ATen/detail/HIPHooksInterface.h' 2025-07-24T05:19:49.3414236Z adding 'torch/include/ATen/detail/HPUHooksInterface.h' 2025-07-24T05:19:49.3417550Z adding 'torch/include/ATen/detail/IPUHooksInterface.h' 2025-07-24T05:19:49.3420762Z adding 'torch/include/ATen/detail/MAIAHooksInterface.h' 2025-07-24T05:19:49.3424452Z adding 'torch/include/ATen/detail/MPSHooksInterface.h' 2025-07-24T05:19:49.3428406Z adding 'torch/include/ATen/detail/MTIAHooksInterface.h' 2025-07-24T05:19:49.3431957Z adding 'torch/include/ATen/detail/PrivateUse1HooksInterface.h' 2025-07-24T05:19:49.3435509Z adding 'torch/include/ATen/detail/XPUHooksInterface.h' 2025-07-24T05:19:49.3439933Z adding 'torch/include/ATen/functorch/ADInterpreters.h' 2025-07-24T05:19:49.3446692Z adding 'torch/include/ATen/functorch/BatchRulesHelper.h' 2025-07-24T05:19:49.3450958Z adding 'torch/include/ATen/functorch/BatchedFallback.h' 2025-07-24T05:19:49.3455563Z adding 'torch/include/ATen/functorch/BatchedTensorImpl.h' 2025-07-24T05:19:49.3459698Z adding 'torch/include/ATen/functorch/BatchingMetaprogramming.h' 2025-07-24T05:19:49.3464210Z adding 'torch/include/ATen/functorch/DynamicLayer.h' 2025-07-24T05:19:49.3468128Z adding 'torch/include/ATen/functorch/FunctionalizeInterpreter.h' 2025-07-24T05:19:49.3473839Z adding 'torch/include/ATen/functorch/Interpreter.h' 2025-07-24T05:19:49.3479601Z adding 'torch/include/ATen/functorch/LegacyVmapTransforms.h' 2025-07-24T05:19:49.3482549Z adding 'torch/include/ATen/functorch/Macros.h' 2025-07-24T05:19:49.3486297Z adding 'torch/include/ATen/functorch/PlumbingHelper.h' 2025-07-24T05:19:49.3490595Z adding 'torch/include/ATen/functorch/TensorWrapper.h' 2025-07-24T05:19:49.3493803Z adding 'torch/include/ATen/functorch/VmapInterpreter.h' 2025-07-24T05:19:49.3498536Z adding 'torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h' 2025-07-24T05:19:49.3501603Z adding 'torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h' 2025-07-24T05:19:49.3524743Z adding 'torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h' 2025-07-24T05:19:49.3525319Z adding 'torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h' 2025-07-24T05:19:49.3525743Z adding 'torch/include/ATen/metal/Context.h' 2025-07-24T05:19:49.3526057Z adding 'torch/include/ATen/miopen/Descriptors.h' 2025-07-24T05:19:49.3526793Z adding 'torch/include/ATen/miopen/Exceptions.h' 2025-07-24T05:19:49.3530651Z adding 'torch/include/ATen/miopen/Handle.h' 2025-07-24T05:19:49.3532764Z adding 'torch/include/ATen/miopen/Types.h' 2025-07-24T05:19:49.3536713Z adding 'torch/include/ATen/miopen/Utils.h' 2025-07-24T05:19:49.3538870Z adding 'torch/include/ATen/miopen/miopen-wrapper.h' 2025-07-24T05:19:49.3542829Z adding 'torch/include/ATen/mps/EmptyTensor.h' 2025-07-24T05:19:49.3547098Z adding 'torch/include/ATen/mps/IndexKernels.h' 2025-07-24T05:19:49.3555884Z adding 'torch/include/ATen/mps/MPSAllocator.h' 2025-07-24T05:19:49.3560197Z adding 'torch/include/ATen/mps/MPSAllocatorInterface.h' 2025-07-24T05:19:49.3563609Z adding 'torch/include/ATen/mps/MPSDevice.h' 2025-07-24T05:19:49.3567452Z adding 'torch/include/ATen/mps/MPSEvent.h' 2025-07-24T05:19:49.3570823Z adding 'torch/include/ATen/mps/MPSGeneratorImpl.h' 2025-07-24T05:19:49.3575876Z adding 'torch/include/ATen/mps/MPSGuardImpl.h' 2025-07-24T05:19:49.3578618Z adding 'torch/include/ATen/mps/MPSHooks.h' 2025-07-24T05:19:49.3585808Z adding 'torch/include/ATen/mps/MPSProfiler.h' 2025-07-24T05:19:49.3590043Z adding 'torch/include/ATen/mps/MPSStream.h' 2025-07-24T05:19:49.3595961Z adding 'torch/include/ATen/native/Activation.h' 2025-07-24T05:19:49.3599523Z adding 'torch/include/ATen/native/AdaptivePooling.h' 2025-07-24T05:19:49.3602643Z adding 'torch/include/ATen/native/AmpKernels.h' 2025-07-24T05:19:49.3607051Z adding 'torch/include/ATen/native/BatchLinearAlgebra.h' 2025-07-24T05:19:49.3610910Z adding 'torch/include/ATen/native/BinaryOps.h' 2025-07-24T05:19:49.3615598Z adding 'torch/include/ATen/native/BucketizationUtils.h' 2025-07-24T05:19:49.3619941Z adding 'torch/include/ATen/native/CPUBlas.h' 2025-07-24T05:19:49.3623569Z adding 'torch/include/ATen/native/CPUFallback.h' 2025-07-24T05:19:49.3626557Z adding 'torch/include/ATen/native/CanUse32BitIndexMath.h' 2025-07-24T05:19:49.3630266Z adding 'torch/include/ATen/native/ComplexHelper.h' 2025-07-24T05:19:49.3633455Z adding 'torch/include/ATen/native/CompositeRandomAccessor.h' 2025-07-24T05:19:49.3637647Z adding 'torch/include/ATen/native/CompositeRandomAccessorCommon.h' 2025-07-24T05:19:49.3644406Z adding 'torch/include/ATen/native/ConvUtils.h' 2025-07-24T05:19:49.3647857Z adding 'torch/include/ATen/native/ConvolutionMM3d.h' 2025-07-24T05:19:49.3650721Z adding 'torch/include/ATen/native/Copy.h' 2025-07-24T05:19:49.3653556Z adding 'torch/include/ATen/native/Cross.h' 2025-07-24T05:19:49.3657827Z adding 'torch/include/ATen/native/DilatedConvolutionUtils.h' 2025-07-24T05:19:49.3663797Z adding 'torch/include/ATen/native/DispatchStub.h' 2025-07-24T05:19:49.3667198Z adding 'torch/include/ATen/native/Distance.h' 2025-07-24T05:19:49.3673704Z adding 'torch/include/ATen/native/DistributionTemplates.h' 2025-07-24T05:19:49.3682871Z adding 'torch/include/ATen/native/Distributions.h' 2025-07-24T05:19:49.3687270Z adding 'torch/include/ATen/native/EmbeddingBag.h' 2025-07-24T05:19:49.3690332Z adding 'torch/include/ATen/native/Fill.h' 2025-07-24T05:19:49.3696638Z adding 'torch/include/ATen/native/ForeachUtils.h' 2025-07-24T05:19:49.3700423Z adding 'torch/include/ATen/native/FractionalMaxPooling.h' 2025-07-24T05:19:49.3703397Z adding 'torch/include/ATen/native/FunctionOfAMatrixUtils.h' 2025-07-24T05:19:49.3706285Z adding 'torch/include/ATen/native/FusedAdagrad.h' 2025-07-24T05:19:49.3709293Z adding 'torch/include/ATen/native/FusedAdam.h' 2025-07-24T05:19:49.3712116Z adding 'torch/include/ATen/native/FusedSGD.h' 2025-07-24T05:19:49.3715137Z adding 'torch/include/ATen/native/Gelu.h' 2025-07-24T05:19:49.3719938Z adding 'torch/include/ATen/native/GridSampler.h' 2025-07-24T05:19:49.3723787Z adding 'torch/include/ATen/native/GridSamplerUtils.h' 2025-07-24T05:19:49.3726870Z adding 'torch/include/ATen/native/Histogram.h' 2025-07-24T05:19:49.3730006Z adding 'torch/include/ATen/native/IndexKernel.h' 2025-07-24T05:19:49.3734246Z adding 'torch/include/ATen/native/IndexingUtils.h' 2025-07-24T05:19:49.3737621Z adding 'torch/include/ATen/native/Lerp.h' 2025-07-24T05:19:49.3740967Z adding 'torch/include/ATen/native/LinearAlgebra.h' 2025-07-24T05:19:49.3751598Z adding 'torch/include/ATen/native/LinearAlgebraUtils.h' 2025-07-24T05:19:49.3755493Z adding 'torch/include/ATen/native/LossMulti.h' 2025-07-24T05:19:49.3801785Z adding 'torch/include/ATen/native/Math.h' 2025-07-24T05:19:49.3808339Z adding 'torch/include/ATen/native/MathBitFallThroughLists.h' 2025-07-24T05:19:49.3813692Z adding 'torch/include/ATen/native/MathBitsFallback.h' 2025-07-24T05:19:49.3817195Z adding 'torch/include/ATen/native/MaxPooling.h' 2025-07-24T05:19:49.3820363Z adding 'torch/include/ATen/native/NonEmptyUtils.h' 2025-07-24T05:19:49.3823765Z adding 'torch/include/ATen/native/NonSymbolicBC.h' 2025-07-24T05:19:49.3826980Z adding 'torch/include/ATen/native/Normalization.h' 2025-07-24T05:19:49.3830676Z adding 'torch/include/ATen/native/Padding.h' 2025-07-24T05:19:49.3833624Z adding 'torch/include/ATen/native/PixelShuffle.h' 2025-07-24T05:19:49.3836712Z adding 'torch/include/ATen/native/PointwiseOps.h' 2025-07-24T05:19:49.3842712Z adding 'torch/include/ATen/native/Pool.h' 2025-07-24T05:19:49.3845952Z adding 'torch/include/ATen/native/Pow.h' 2025-07-24T05:19:49.3849426Z adding 'torch/include/ATen/native/RNN.h' 2025-07-24T05:19:49.3852419Z adding 'torch/include/ATen/native/RangeFactories.h' 2025-07-24T05:19:49.3855948Z adding 'torch/include/ATen/native/RangeUtils.h' 2025-07-24T05:19:49.3859897Z adding 'torch/include/ATen/native/ReduceAllOps.h' 2025-07-24T05:19:49.3862278Z adding 'torch/include/ATen/native/ReduceOps.h' 2025-07-24T05:19:49.3868676Z adding 'torch/include/ATen/native/ReduceOpsUtils.h' 2025-07-24T05:19:49.3872376Z adding 'torch/include/ATen/native/ReductionType.h' 2025-07-24T05:19:49.3875594Z adding 'torch/include/ATen/native/Repeat.h' 2025-07-24T05:19:49.3880827Z adding 'torch/include/ATen/native/Resize.h' 2025-07-24T05:19:49.3884757Z adding 'torch/include/ATen/native/ResizeCommon.h' 2025-07-24T05:19:49.3888652Z adding 'torch/include/ATen/native/ScatterGatherChecks.h' 2025-07-24T05:19:49.3891666Z adding 'torch/include/ATen/native/SegmentReduce.h' 2025-07-24T05:19:49.3897382Z adding 'torch/include/ATen/native/SharedReduceOps.h' 2025-07-24T05:19:49.3901371Z adding 'torch/include/ATen/native/SobolEngineOpsUtils.h' 2025-07-24T05:19:49.3904430Z adding 'torch/include/ATen/native/Sorting.h' 2025-07-24T05:19:49.3907887Z adding 'torch/include/ATen/native/SortingUtils.h' 2025-07-24T05:19:49.3912514Z adding 'torch/include/ATen/native/SparseTensorUtils.h' 2025-07-24T05:19:49.3917246Z adding 'torch/include/ATen/native/SpectralOpsUtils.h' 2025-07-24T05:19:49.3920777Z adding 'torch/include/ATen/native/StridedRandomAccessor.h' 2025-07-24T05:19:49.3924410Z adding 'torch/include/ATen/native/TensorAdvancedIndexing.h' 2025-07-24T05:19:49.3928524Z adding 'torch/include/ATen/native/TensorAdvancedIndexingUtils.h' 2025-07-24T05:19:49.3931648Z adding 'torch/include/ATen/native/TensorCompare.h' 2025-07-24T05:19:49.3934754Z adding 'torch/include/ATen/native/TensorConversions.h' 2025-07-24T05:19:49.3938001Z adding 'torch/include/ATen/native/TensorDimApply.h' 2025-07-24T05:19:49.3942359Z adding 'torch/include/ATen/native/TensorFactories.h' 2025-07-24T05:19:49.3945637Z adding 'torch/include/ATen/native/TensorIterator.h' 2025-07-24T05:19:49.3948766Z adding 'torch/include/ATen/native/TensorIteratorDynamicCasting.h' 2025-07-24T05:19:49.3951796Z adding 'torch/include/ATen/native/TensorProperties.h' 2025-07-24T05:19:49.3955594Z adding 'torch/include/ATen/native/TensorShape.h' 2025-07-24T05:19:49.3959135Z adding 'torch/include/ATen/native/TensorTransformations.h' 2025-07-24T05:19:49.3962839Z adding 'torch/include/ATen/native/TopKImpl.h' 2025-07-24T05:19:49.3965845Z adding 'torch/include/ATen/native/TransposeType.h' 2025-07-24T05:19:49.3969335Z adding 'torch/include/ATen/native/TriangularOpsUtils.h' 2025-07-24T05:19:49.3972325Z adding 'torch/include/ATen/native/TypeProperties.h' 2025-07-24T05:19:49.3976036Z adding 'torch/include/ATen/native/UnaryOps.h' 2025-07-24T05:19:49.3979958Z adding 'torch/include/ATen/native/Unfold2d.h' 2025-07-24T05:19:49.3982483Z adding 'torch/include/ATen/native/Unfold3d.h' 2025-07-24T05:19:49.3986147Z adding 'torch/include/ATen/native/UnfoldBackward.h' 2025-07-24T05:19:49.3993609Z adding 'torch/include/ATen/native/UpSample.h' 2025-07-24T05:19:49.3997392Z adding 'torch/include/ATen/native/batch_norm.h' 2025-07-24T05:19:49.4000516Z adding 'torch/include/ATen/native/group_norm.h' 2025-07-24T05:19:49.4019209Z adding 'torch/include/ATen/native/im2col.h' 2025-07-24T05:19:49.4019565Z adding 'torch/include/ATen/native/im2col_shape_check.h' 2025-07-24T05:19:49.4019918Z adding 'torch/include/ATen/native/layer_norm.h' 2025-07-24T05:19:49.4020267Z adding 'torch/include/ATen/native/verbose_wrapper.h' 2025-07-24T05:19:49.4020622Z adding 'torch/include/ATen/native/vol2col.h' 2025-07-24T05:19:49.4026376Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.h' 2025-07-24T05:19:49.4029985Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/packed_params.h' 2025-07-24T05:19:49.4033849Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/qnnpack_utils.h' 2025-07-24T05:19:49.4038599Z adding 'torch/include/ATen/native/cpu/AtomicAddFloat.h' 2025-07-24T05:19:49.4041591Z adding 'torch/include/ATen/native/cpu/CatKernel.h' 2025-07-24T05:19:49.4044794Z adding 'torch/include/ATen/native/cpu/ChannelShuffleKernel.h' 2025-07-24T05:19:49.4047597Z adding 'torch/include/ATen/native/cpu/CopyKernel.h' 2025-07-24T05:19:49.4050552Z adding 'torch/include/ATen/native/cpu/DepthwiseConvKernel.h' 2025-07-24T05:19:49.4056298Z adding 'torch/include/ATen/native/cpu/DistributionTemplates.h' 2025-07-24T05:19:49.4060179Z adding 'torch/include/ATen/native/cpu/Elu.h' 2025-07-24T05:19:49.4063654Z adding 'torch/include/ATen/native/cpu/Gelu.h' 2025-07-24T05:19:49.4066804Z adding 'torch/include/ATen/native/cpu/GridSamplerKernel.h' 2025-07-24T05:19:49.4070543Z adding 'torch/include/ATen/native/cpu/IndexKernelUtils.h' 2025-07-24T05:19:49.4073710Z adding 'torch/include/ATen/native/cpu/Intrinsics.h' 2025-07-24T05:19:49.4077023Z adding 'torch/include/ATen/native/cpu/IsContiguous.h' 2025-07-24T05:19:49.4080606Z adding 'torch/include/ATen/native/cpu/LogAddExp.h' 2025-07-24T05:19:49.4086054Z adding 'torch/include/ATen/native/cpu/LogSoftmaxKernelImpl.h' 2025-07-24T05:19:49.4092230Z adding 'torch/include/ATen/native/cpu/Loops.h' 2025-07-24T05:19:49.4095628Z adding 'torch/include/ATen/native/cpu/MaxUnpoolKernel.h' 2025-07-24T05:19:49.4098578Z adding 'torch/include/ATen/native/cpu/PixelShuffleKernel.h' 2025-07-24T05:19:49.4104527Z adding 'torch/include/ATen/native/cpu/Reduce.h' 2025-07-24T05:19:49.4109195Z adding 'torch/include/ATen/native/cpu/ReduceUtils.h' 2025-07-24T05:19:49.4112752Z adding 'torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h' 2025-07-24T05:19:49.4115666Z adding 'torch/include/ATen/native/cpu/SampledAddmmKernel.h' 2025-07-24T05:19:49.4119983Z adding 'torch/include/ATen/native/cpu/SerialStackImpl.h' 2025-07-24T05:19:49.4123151Z adding 'torch/include/ATen/native/cpu/SoftmaxKernel.h' 2025-07-24T05:19:49.4126173Z adding 'torch/include/ATen/native/cpu/SpmmReduceKernel.h' 2025-07-24T05:19:49.4129054Z adding 'torch/include/ATen/native/cpu/StackKernel.h' 2025-07-24T05:19:49.4144564Z adding 'torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h' 2025-07-24T05:19:49.4148951Z adding 'torch/include/ATen/native/cpu/WeightNormKernel.h' 2025-07-24T05:19:49.4155183Z adding 'torch/include/ATen/native/cpu/avx_mathfun.h' 2025-07-24T05:19:49.4158846Z adding 'torch/include/ATen/native/cpu/int_mm_kernel.h' 2025-07-24T05:19:49.4162347Z adding 'torch/include/ATen/native/cpu/mixed_data_type.h' 2025-07-24T05:19:49.4167784Z adding 'torch/include/ATen/native/cpu/moments_utils.h' 2025-07-24T05:19:49.4173716Z adding 'torch/include/ATen/native/cpu/utils.h' 2025-07-24T05:19:49.4179041Z adding 'torch/include/ATen/native/cpu/zmath.h' 2025-07-24T05:19:49.4185826Z adding 'torch/include/ATen/native/cuda/Activation.h' 2025-07-24T05:19:49.4190146Z adding 'torch/include/ATen/native/cuda/BinaryInternal.h' 2025-07-24T05:19:49.4196040Z adding 'torch/include/ATen/native/cuda/CUDAJitLoops.cuh' 2025-07-24T05:19:49.4206547Z adding 'torch/include/ATen/native/cuda/CUDALoops.cuh' 2025-07-24T05:19:49.4210643Z adding 'torch/include/ATen/native/cuda/CompositeRandomAccessor.h' 2025-07-24T05:19:49.4213402Z adding 'torch/include/ATen/native/cuda/Copy.h' 2025-07-24T05:19:49.4221183Z adding 'torch/include/ATen/native/cuda/CuFFTPlanCache.h' 2025-07-24T05:19:49.4224893Z adding 'torch/include/ATen/native/cuda/CuFFTUtils.h' 2025-07-24T05:19:49.4227952Z adding 'torch/include/ATen/native/cuda/DeviceSqrt.cuh' 2025-07-24T05:19:49.4236729Z adding 'torch/include/ATen/native/cuda/DistributionTemplates.h' 2025-07-24T05:19:49.4240764Z adding 'torch/include/ATen/native/cuda/Distributions.h' 2025-07-24T05:19:49.4243627Z adding 'torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh' 2025-07-24T05:19:49.4248887Z adding 'torch/include/ATen/native/cuda/ForeachFunctors.cuh' 2025-07-24T05:19:49.4252521Z adding 'torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh' 2025-07-24T05:19:49.4257290Z adding 'torch/include/ATen/native/cuda/GridSampler.cuh' 2025-07-24T05:19:49.4260660Z adding 'torch/include/ATen/native/cuda/GridSampler.h' 2025-07-24T05:19:49.4263743Z adding 'torch/include/ATen/native/cuda/GroupMM.h' 2025-07-24T05:19:49.4269319Z adding 'torch/include/ATen/native/cuda/GroupMMCommon.cuh' 2025-07-24T05:19:49.4272518Z adding 'torch/include/ATen/native/cuda/IndexKernel.h' 2025-07-24T05:19:49.4275972Z adding 'torch/include/ATen/native/cuda/IndexKernelUtils.h' 2025-07-24T05:19:49.4280787Z adding 'torch/include/ATen/native/cuda/JitLoops.cuh' 2025-07-24T05:19:49.4286584Z adding 'torch/include/ATen/native/cuda/KernelUtils.cuh' 2025-07-24T05:19:49.4289901Z adding 'torch/include/ATen/native/cuda/LaunchUtils.h' 2025-07-24T05:19:49.4295160Z adding 'torch/include/ATen/native/cuda/Loops.cuh' 2025-07-24T05:19:49.4329707Z adding 'torch/include/ATen/native/cuda/Math.cuh' 2025-07-24T05:19:49.4340560Z adding 'torch/include/ATen/native/cuda/MemoryAccess.cuh' 2025-07-24T05:19:49.4344510Z adding 'torch/include/ATen/native/cuda/MiscUtils.h' 2025-07-24T05:19:49.4349988Z adding 'torch/include/ATen/native/cuda/MultiTensorApply.cuh' 2025-07-24T05:19:49.4368744Z adding 'torch/include/ATen/native/cuda/Normalization.cuh' 2025-07-24T05:19:49.4376653Z adding 'torch/include/ATen/native/cuda/PersistentSoftmax.cuh' 2025-07-24T05:19:49.4380493Z adding 'torch/include/ATen/native/cuda/Pow.cuh' 2025-07-24T05:19:49.4384135Z adding 'torch/include/ATen/native/cuda/Randperm.cuh' 2025-07-24T05:19:49.4401416Z adding 'torch/include/ATen/native/cuda/Reduce.cuh' 2025-07-24T05:19:49.4406451Z adding 'torch/include/ATen/native/cuda/ReduceOps.h' 2025-07-24T05:19:49.4408979Z adding 'torch/include/ATen/native/cuda/Resize.h' 2025-07-24T05:19:49.4412223Z adding 'torch/include/ATen/native/cuda/RowwiseScaledMM.h' 2025-07-24T05:19:49.4415033Z adding 'torch/include/ATen/native/cuda/ScaledGroupMM.h' 2025-07-24T05:19:49.4418119Z adding 'torch/include/ATen/native/cuda/ScanKernels.h' 2025-07-24T05:19:49.4425345Z adding 'torch/include/ATen/native/cuda/ScanUtils.cuh' 2025-07-24T05:19:49.4428956Z adding 'torch/include/ATen/native/cuda/Sort.h' 2025-07-24T05:19:49.4431889Z adding 'torch/include/ATen/native/cuda/SortStable.h' 2025-07-24T05:19:49.4437474Z adding 'torch/include/ATen/native/cuda/SortUtils.cuh' 2025-07-24T05:19:49.4441098Z adding 'torch/include/ATen/native/cuda/Sorting.h' 2025-07-24T05:19:49.4444953Z adding 'torch/include/ATen/native/cuda/SortingCommon.cuh' 2025-07-24T05:19:49.4451140Z adding 'torch/include/ATen/native/cuda/SortingRadixSelect.cuh' 2025-07-24T05:19:49.4459127Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.cuh' 2025-07-24T05:19:49.4462448Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.h' 2025-07-24T05:19:49.4465412Z adding 'torch/include/ATen/native/cuda/TensorTopK.h' 2025-07-24T05:19:49.4468266Z adding 'torch/include/ATen/native/cuda/UniqueCub.cuh' 2025-07-24T05:19:49.4473666Z adding 'torch/include/ATen/native/cuda/UpSample.cuh' 2025-07-24T05:19:49.4477843Z adding 'torch/include/ATen/native/cuda/block_reduce.cuh' 2025-07-24T05:19:49.4481313Z adding 'torch/include/ATen/native/cuda/cutlass_common.cuh' 2025-07-24T05:19:49.4484359Z adding 'torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh' 2025-07-24T05:19:49.4487358Z adding 'torch/include/ATen/native/cuda/fused_adam_impl.cuh' 2025-07-24T05:19:49.4491839Z adding 'torch/include/ATen/native/cuda/fused_adam_utils.cuh' 2025-07-24T05:19:49.4495189Z adding 'torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh' 2025-07-24T05:19:49.4498508Z adding 'torch/include/ATen/native/cuda/fused_adamw_impl.cuh' 2025-07-24T05:19:49.4502825Z adding 'torch/include/ATen/native/cuda/im2col.cuh' 2025-07-24T05:19:49.4507731Z adding 'torch/include/ATen/native/cuda/jit_utils.h' 2025-07-24T05:19:49.4516572Z adding 'torch/include/ATen/native/cuda/reduction_template.cuh' 2025-07-24T05:19:49.4520476Z adding 'torch/include/ATen/native/cuda/thread_constants.h' 2025-07-24T05:19:49.4525338Z adding 'torch/include/ATen/native/cuda/vol2col.cuh' 2025-07-24T05:19:49.4530079Z adding 'torch/include/ATen/native/hip/ck_bgemm.h' 2025-07-24T05:19:49.4532548Z adding 'torch/include/ATen/native/hip/ck_gemm.h' 2025-07-24T05:19:49.4537844Z adding 'torch/include/ATen/native/hip/ck_gemm_template.h' 2025-07-24T05:19:49.4542251Z adding 'torch/include/ATen/native/hip/ck_types.h' 2025-07-24T05:19:49.4545827Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_collection.h' 2025-07-24T05:19:49.4550123Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_template.h' 2025-07-24T05:19:49.4554304Z adding 'torch/include/ATen/native/kleidiai/kai_kernels.h' 2025-07-24T05:19:49.4557755Z adding 'torch/include/ATen/native/kleidiai/kai_pack.h' 2025-07-24T05:19:49.4561437Z adding 'torch/include/ATen/native/kleidiai/kai_ukernel_interface.h' 2025-07-24T05:19:49.4565845Z adding 'torch/include/ATen/native/mkldnn/xpu/Conv.h' 2025-07-24T05:19:49.4569391Z adding 'torch/include/ATen/native/mkldnn/xpu/FusionUtils.h' 2025-07-24T05:19:49.4576906Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Attr.h' 2025-07-24T05:19:49.4583947Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/DnnlExt.h' 2025-07-24T05:19:49.4587916Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/LRUCache.h' 2025-07-24T05:19:49.4591745Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Utils.h' 2025-07-24T05:19:49.4595585Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h' 2025-07-24T05:19:49.4600563Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h' 2025-07-24T05:19:49.4603548Z adding 'torch/include/ATen/native/mps/Copy.h' 2025-07-24T05:19:49.4606678Z adding 'torch/include/ATen/native/mps/MPSGraphSequoiaOps.h' 2025-07-24T05:19:49.4609900Z adding 'torch/include/ATen/native/mps/MPSGraphSonomaOps.h' 2025-07-24T05:19:49.4614016Z adding 'torch/include/ATen/native/mps/MPSGraphVenturaOps.h' 2025-07-24T05:19:49.4618449Z adding 'torch/include/ATen/native/mps/MetalShaderLibrary.h' 2025-07-24T05:19:49.4627254Z adding 'torch/include/ATen/native/mps/OperationUtils.h' 2025-07-24T05:19:49.4630891Z adding 'torch/include/ATen/native/mps/TensorFactory.h' 2025-07-24T05:19:49.4634702Z adding 'torch/include/ATen/native/mps/kernels/Pooling.h' 2025-07-24T05:19:49.4637759Z adding 'torch/include/ATen/native/mps/kernels/UpSample.h' 2025-07-24T05:19:49.4641460Z adding 'torch/include/ATen/native/mps/operations/BinaryKernel.h' 2025-07-24T05:19:49.4644566Z adding 'torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h' 2025-07-24T05:19:49.4647504Z adding 'torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h' 2025-07-24T05:19:49.4650513Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h' 2025-07-24T05:19:49.4653394Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h' 2025-07-24T05:19:49.4659199Z adding 'torch/include/ATen/native/mps/operations/MultiTensorApply.h' 2025-07-24T05:19:49.4663425Z adding 'torch/include/ATen/native/mtia/EmptyTensor.h' 2025-07-24T05:19:49.4667383Z adding 'torch/include/ATen/native/nested/NestedTensorBinaryOps.h' 2025-07-24T05:19:49.4670845Z adding 'torch/include/ATen/native/nested/NestedTensorMath.h' 2025-07-24T05:19:49.4674471Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h' 2025-07-24T05:19:49.4677552Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerUtils.h' 2025-07-24T05:19:49.4684265Z adding 'torch/include/ATen/native/nested/NestedTensorUtils.h' 2025-07-24T05:19:49.4688894Z adding 'torch/include/ATen/native/quantized/AffineQuantizer.h' 2025-07-24T05:19:49.4692238Z adding 'torch/include/ATen/native/quantized/AffineQuantizerBase.h' 2025-07-24T05:19:49.4695436Z adding 'torch/include/ATen/native/quantized/ConvUtils.h' 2025-07-24T05:19:49.4698312Z adding 'torch/include/ATen/native/quantized/Copy.h' 2025-07-24T05:19:49.4701443Z adding 'torch/include/ATen/native/quantized/FakeQuantAffine.h' 2025-07-24T05:19:49.4704385Z adding 'torch/include/ATen/native/quantized/IndexKernel.h' 2025-07-24T05:19:49.4707908Z adding 'torch/include/ATen/native/quantized/PackedParams.h' 2025-07-24T05:19:49.4710828Z adding 'torch/include/ATen/native/quantized/library.h' 2025-07-24T05:19:49.4716329Z adding 'torch/include/ATen/native/quantized/cpu/ACLUtils.h' 2025-07-24T05:19:49.4719571Z adding 'torch/include/ATen/native/quantized/cpu/BinaryOps.h' 2025-07-24T05:19:49.4722603Z adding 'torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h' 2025-07-24T05:19:49.4728290Z adding 'torch/include/ATen/native/quantized/cpu/OnednnUtils.h' 2025-07-24T05:19:49.4735266Z adding 'torch/include/ATen/native/quantized/cpu/QnnpackUtils.h' 2025-07-24T05:19:49.4740836Z adding 'torch/include/ATen/native/quantized/cpu/QuantUtils.h' 2025-07-24T05:19:49.4745284Z adding 'torch/include/ATen/native/quantized/cpu/QuantizedOps.h' 2025-07-24T05:19:49.4748430Z adding 'torch/include/ATen/native/quantized/cpu/RuyUtils.h' 2025-07-24T05:19:49.4753684Z adding 'torch/include/ATen/native/quantized/cpu/XnnpackUtils.h' 2025-07-24T05:19:49.4759764Z adding 'torch/include/ATen/native/quantized/cpu/conv_serialization.h' 2025-07-24T05:19:49.4765053Z adding 'torch/include/ATen/native/quantized/cpu/fbgemm_utils.h' 2025-07-24T05:19:49.4768262Z adding 'torch/include/ATen/native/quantized/cpu/init_qnnpack.h' 2025-07-24T05:19:49.4771436Z adding 'torch/include/ATen/native/quantized/cpu/qconv.h' 2025-07-24T05:19:49.4774562Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag.h' 2025-07-24T05:19:49.4777454Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h' 2025-07-24T05:19:49.4780530Z adding 'torch/include/ATen/native/quantized/cpu/qlinear.h' 2025-07-24T05:19:49.4786176Z adding 'torch/include/ATen/native/quantized/cudnn/utils.h' 2025-07-24T05:19:49.4790622Z adding 'torch/include/ATen/native/transformers/attention.h' 2025-07-24T05:19:49.4794201Z adding 'torch/include/ATen/native/transformers/sdp_utils.h' 2025-07-24T05:19:49.4800991Z adding 'torch/include/ATen/native/transformers/sdp_utils_cpp.h' 2025-07-24T05:19:49.4805176Z adding 'torch/include/ATen/native/transformers/cuda/sdp_utils.h' 2025-07-24T05:19:49.4809697Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/flash_api.h' 2025-07-24T05:19:49.4813355Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/static_switch.h' 2025-07-24T05:19:49.4818855Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h' 2025-07-24T05:19:49.4823875Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h' 2025-07-24T05:19:49.4853880Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h' 2025-07-24T05:19:49.4874062Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h' 2025-07-24T05:19:49.4878558Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/pytorch_utils.h' 2025-07-24T05:19:49.4886910Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_pipelined.h' 2025-07-24T05:19:49.4892060Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_rescale_output.h' 2025-07-24T05:19:49.4896711Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_thread_apply_logsumexp.h' 2025-07-24T05:19:49.4901296Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h' 2025-07-24T05:19:49.4905633Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h' 2025-07-24T05:19:49.4914398Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h' 2025-07-24T05:19:49.4921365Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h' 2025-07-24T05:19:49.4925830Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/find_default_mma.h' 2025-07-24T05:19:49.4931278Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_accum_lambda_iterator.h' 2025-07-24T05:19:49.4951579Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_from_smem.h' 2025-07-24T05:19:49.4959033Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/default_warp_iterator_from_smem.h' 2025-07-24T05:19:49.4966136Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h' 2025-07-24T05:19:49.4970372Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h' 2025-07-24T05:19:49.4981963Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h' 2025-07-24T05:19:49.4993836Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h' 2025-07-24T05:19:49.4998283Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/transpose_warp_iterator.h' 2025-07-24T05:19:49.5003820Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/warp_iterator_from_smem.h' 2025-07-24T05:19:49.5040763Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassB.h' 2025-07-24T05:19:49.5041535Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassF.h' 2025-07-24T05:19:49.5042270Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform/tile_smem_loader.h' 2025-07-24T05:19:49.5042927Z adding 'torch/include/ATen/native/transformers/hip/aotriton_adapter.h' 2025-07-24T05:19:49.5043800Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/flash_api.h' 2025-07-24T05:19:49.5048968Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/ck/me_ck_api.h' 2025-07-24T05:19:49.5052250Z adding 'torch/include/ATen/native/utils/Factory.h' 2025-07-24T05:19:49.5055577Z adding 'torch/include/ATen/native/utils/ParamUtils.h' 2025-07-24T05:19:49.5059019Z adding 'torch/include/ATen/native/utils/ParamsHash.h' 2025-07-24T05:19:49.5235817Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d.h' 2025-07-24T05:19:49.5239186Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h' 2025-07-24T05:19:49.5242589Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.5245499Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h' 2025-07-24T05:19:49.5248495Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h' 2025-07-24T05:19:49.5251453Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h' 2025-07-24T05:19:49.5254596Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h' 2025-07-24T05:19:49.5257820Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.5260763Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h' 2025-07-24T05:19:49.5263795Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h' 2025-07-24T05:19:49.5266842Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_native.h' 2025-07-24T05:19:49.5270000Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h' 2025-07-24T05:19:49.5273221Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d.h' 2025-07-24T05:19:49.5276415Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h' 2025-07-24T05:19:49.5279733Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.5282663Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-07-24T05:19:49.5285687Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-07-24T05:19:49.5288862Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h' 2025-07-24T05:19:49.5292030Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h' 2025-07-24T05:19:49.5295419Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.5298439Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h' 2025-07-24T05:19:49.5301612Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h' 2025-07-24T05:19:49.5304855Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_native.h' 2025-07-24T05:19:49.5307837Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h' 2025-07-24T05:19:49.5311021Z adding 'torch/include/ATen/ops/_add_batch_dim.h' 2025-07-24T05:19:49.5314250Z adding 'torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.5317682Z adding 'torch/include/ATen/ops/_add_batch_dim_native.h' 2025-07-24T05:19:49.5325441Z adding 'torch/include/ATen/ops/_add_batch_dim_ops.h' 2025-07-24T05:19:49.5328745Z adding 'torch/include/ATen/ops/_add_relu.h' 2025-07-24T05:19:49.5331492Z adding 'torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.5334626Z adding 'torch/include/ATen/ops/_add_relu_cpu_dispatch.h' 2025-07-24T05:19:49.5337707Z adding 'torch/include/ATen/ops/_add_relu_meta_dispatch.h' 2025-07-24T05:19:49.5340827Z adding 'torch/include/ATen/ops/_add_relu_native.h' 2025-07-24T05:19:49.5344479Z adding 'torch/include/ATen/ops/_add_relu_ops.h' 2025-07-24T05:19:49.5348360Z adding 'torch/include/ATen/ops/_addmm_activation.h' 2025-07-24T05:19:49.5351415Z adding 'torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:49.5354694Z adding 'torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h' 2025-07-24T05:19:49.5357766Z adding 'torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h' 2025-07-24T05:19:49.5361026Z adding 'torch/include/ATen/ops/_addmm_activation_meta.h' 2025-07-24T05:19:49.5364212Z adding 'torch/include/ATen/ops/_addmm_activation_meta_dispatch.h' 2025-07-24T05:19:49.5367534Z adding 'torch/include/ATen/ops/_addmm_activation_native.h' 2025-07-24T05:19:49.5371352Z adding 'torch/include/ATen/ops/_addmm_activation_ops.h' 2025-07-24T05:19:49.5374196Z adding 'torch/include/ATen/ops/_aminmax.h' 2025-07-24T05:19:49.5377643Z adding 'torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.5380748Z adding 'torch/include/ATen/ops/_aminmax_cpu_dispatch.h' 2025-07-24T05:19:49.5383925Z adding 'torch/include/ATen/ops/_aminmax_cuda_dispatch.h' 2025-07-24T05:19:49.5387068Z adding 'torch/include/ATen/ops/_aminmax_native.h' 2025-07-24T05:19:49.5390604Z adding 'torch/include/ATen/ops/_aminmax_ops.h' 2025-07-24T05:19:49.5394280Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h' 2025-07-24T05:19:49.5397565Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.5400932Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h' 2025-07-24T05:19:49.5404081Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h' 2025-07-24T05:19:49.5407380Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h' 2025-07-24T05:19:49.5410815Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h' 2025-07-24T05:19:49.5414058Z adding 'torch/include/ATen/ops/_amp_update_scale.h' 2025-07-24T05:19:49.5417651Z adding 'torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.5420688Z adding 'torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h' 2025-07-24T05:19:49.5423993Z adding 'torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h' 2025-07-24T05:19:49.5427138Z adding 'torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h' 2025-07-24T05:19:49.5430245Z adding 'torch/include/ATen/ops/_amp_update_scale_native.h' 2025-07-24T05:19:49.5433624Z adding 'torch/include/ATen/ops/_amp_update_scale_ops.h' 2025-07-24T05:19:49.5436919Z adding 'torch/include/ATen/ops/_assert_async.h' 2025-07-24T05:19:49.5440435Z adding 'torch/include/ATen/ops/_assert_async_cpu_dispatch.h' 2025-07-24T05:19:49.5443529Z adding 'torch/include/ATen/ops/_assert_async_cuda_dispatch.h' 2025-07-24T05:19:49.5446659Z adding 'torch/include/ATen/ops/_assert_async_native.h' 2025-07-24T05:19:49.5449828Z adding 'torch/include/ATen/ops/_assert_async_ops.h' 2025-07-24T05:19:49.5453034Z adding 'torch/include/ATen/ops/_assert_scalar.h' 2025-07-24T05:19:49.5456284Z adding 'torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.5459345Z adding 'torch/include/ATen/ops/_assert_scalar_native.h' 2025-07-24T05:19:49.5463491Z adding 'torch/include/ATen/ops/_assert_scalar_ops.h' 2025-07-24T05:19:49.5466858Z adding 'torch/include/ATen/ops/_assert_tensor_metadata.h' 2025-07-24T05:19:49.5470501Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.5473618Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h' 2025-07-24T05:19:49.5476887Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_native.h' 2025-07-24T05:19:49.5480755Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_ops.h' 2025-07-24T05:19:49.5483576Z adding 'torch/include/ATen/ops/_autocast_to_full_precision.h' 2025-07-24T05:19:49.5486854Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.5489780Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_native.h' 2025-07-24T05:19:49.5493019Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_ops.h' 2025-07-24T05:19:49.5496018Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision.h' 2025-07-24T05:19:49.5499481Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.5502382Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_native.h' 2025-07-24T05:19:49.5505675Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h' 2025-07-24T05:19:49.5508790Z adding 'torch/include/ATen/ops/_backward.h' 2025-07-24T05:19:49.5512010Z adding 'torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.5515060Z adding 'torch/include/ATen/ops/_backward_native.h' 2025-07-24T05:19:49.5518442Z adding 'torch/include/ATen/ops/_backward_ops.h' 2025-07-24T05:19:49.5532772Z adding 'torch/include/ATen/ops/_batch_norm_impl_index.h' 2025-07-24T05:19:49.5533208Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward.h' 2025-07-24T05:19:49.5533825Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.5534543Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h' 2025-07-24T05:19:49.5538752Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h' 2025-07-24T05:19:49.5541649Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.5544740Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_native.h' 2025-07-24T05:19:49.5547993Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_ops.h' 2025-07-24T05:19:49.5551487Z adding 'torch/include/ATen/ops/_batch_norm_no_update.h' 2025-07-24T05:19:49.5554986Z adding 'torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.5558218Z adding 'torch/include/ATen/ops/_batch_norm_no_update_native.h' 2025-07-24T05:19:49.5561581Z adding 'torch/include/ATen/ops/_batch_norm_no_update_ops.h' 2025-07-24T05:19:49.5565030Z adding 'torch/include/ATen/ops/_batch_norm_with_update.h' 2025-07-24T05:19:49.5568579Z adding 'torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.5571675Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h' 2025-07-24T05:19:49.5575006Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h' 2025-07-24T05:19:49.5578082Z adding 'torch/include/ATen/ops/_batch_norm_with_update_native.h' 2025-07-24T05:19:49.5581521Z adding 'torch/include/ATen/ops/_batch_norm_with_update_ops.h' 2025-07-24T05:19:49.5584876Z adding 'torch/include/ATen/ops/_cast_Byte.h' 2025-07-24T05:19:49.5588141Z adding 'torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.5591051Z adding 'torch/include/ATen/ops/_cast_Byte_native.h' 2025-07-24T05:19:49.5594176Z adding 'torch/include/ATen/ops/_cast_Byte_ops.h' 2025-07-24T05:19:49.5597217Z adding 'torch/include/ATen/ops/_cast_Char.h' 2025-07-24T05:19:49.5600617Z adding 'torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.5603452Z adding 'torch/include/ATen/ops/_cast_Char_native.h' 2025-07-24T05:19:49.5614924Z adding 'torch/include/ATen/ops/_cast_Char_ops.h' 2025-07-24T05:19:49.5615284Z adding 'torch/include/ATen/ops/_cast_Double.h' 2025-07-24T05:19:49.5615754Z adding 'torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.5616262Z adding 'torch/include/ATen/ops/_cast_Double_native.h' 2025-07-24T05:19:49.5618881Z adding 'torch/include/ATen/ops/_cast_Double_ops.h' 2025-07-24T05:19:49.5621888Z adding 'torch/include/ATen/ops/_cast_Float.h' 2025-07-24T05:19:49.5625110Z adding 'torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.5627993Z adding 'torch/include/ATen/ops/_cast_Float_native.h' 2025-07-24T05:19:49.5631197Z adding 'torch/include/ATen/ops/_cast_Float_ops.h' 2025-07-24T05:19:49.5634196Z adding 'torch/include/ATen/ops/_cast_Half.h' 2025-07-24T05:19:49.5637348Z adding 'torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.5640368Z adding 'torch/include/ATen/ops/_cast_Half_native.h' 2025-07-24T05:19:49.5643491Z adding 'torch/include/ATen/ops/_cast_Half_ops.h' 2025-07-24T05:19:49.5646555Z adding 'torch/include/ATen/ops/_cast_Int.h' 2025-07-24T05:19:49.5649872Z adding 'torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.5652729Z adding 'torch/include/ATen/ops/_cast_Int_native.h' 2025-07-24T05:19:49.5655745Z adding 'torch/include/ATen/ops/_cast_Int_ops.h' 2025-07-24T05:19:49.5658795Z adding 'torch/include/ATen/ops/_cast_Long.h' 2025-07-24T05:19:49.5662039Z adding 'torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.5664936Z adding 'torch/include/ATen/ops/_cast_Long_native.h' 2025-07-24T05:19:49.5668090Z adding 'torch/include/ATen/ops/_cast_Long_ops.h' 2025-07-24T05:19:49.5671262Z adding 'torch/include/ATen/ops/_cast_Short.h' 2025-07-24T05:19:49.5674428Z adding 'torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.5677448Z adding 'torch/include/ATen/ops/_cast_Short_native.h' 2025-07-24T05:19:49.5680646Z adding 'torch/include/ATen/ops/_cast_Short_ops.h' 2025-07-24T05:19:49.5683972Z adding 'torch/include/ATen/ops/_cdist_backward.h' 2025-07-24T05:19:49.5687545Z adding 'torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.5690460Z adding 'torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h' 2025-07-24T05:19:49.5693670Z adding 'torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h' 2025-07-24T05:19:49.5696799Z adding 'torch/include/ATen/ops/_cdist_backward_native.h' 2025-07-24T05:19:49.5700106Z adding 'torch/include/ATen/ops/_cdist_backward_ops.h' 2025-07-24T05:19:49.5703337Z adding 'torch/include/ATen/ops/_cdist_forward.h' 2025-07-24T05:19:49.5706862Z adding 'torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.5710256Z adding 'torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h' 2025-07-24T05:19:49.5713141Z adding 'torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h' 2025-07-24T05:19:49.5716391Z adding 'torch/include/ATen/ops/_cdist_forward_native.h' 2025-07-24T05:19:49.5719680Z adding 'torch/include/ATen/ops/_cdist_forward_ops.h' 2025-07-24T05:19:49.5723138Z adding 'torch/include/ATen/ops/_cholesky_solve_helper.h' 2025-07-24T05:19:49.5726504Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.5729599Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h' 2025-07-24T05:19:49.5733192Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h' 2025-07-24T05:19:49.5735759Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_native.h' 2025-07-24T05:19:49.5739280Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_ops.h' 2025-07-24T05:19:49.5742336Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor.h' 2025-07-24T05:19:49.5745772Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.5748608Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_native.h' 2025-07-24T05:19:49.5751913Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h' 2025-07-24T05:19:49.5754985Z adding 'torch/include/ATen/ops/_chunk_cat.h' 2025-07-24T05:19:49.5758540Z adding 'torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.5761812Z adding 'torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h' 2025-07-24T05:19:49.5764770Z adding 'torch/include/ATen/ops/_chunk_cat_native.h' 2025-07-24T05:19:49.5768018Z adding 'torch/include/ATen/ops/_chunk_cat_ops.h' 2025-07-24T05:19:49.5771125Z adding 'torch/include/ATen/ops/_coalesce.h' 2025-07-24T05:19:49.5774510Z adding 'torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.5777419Z adding 'torch/include/ATen/ops/_coalesce_native.h' 2025-07-24T05:19:49.5780857Z adding 'torch/include/ATen/ops/_coalesce_ops.h' 2025-07-24T05:19:49.5784023Z adding 'torch/include/ATen/ops/_coalesced.h' 2025-07-24T05:19:49.5787322Z adding 'torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.5790773Z adding 'torch/include/ATen/ops/_coalesced_meta_dispatch.h' 2025-07-24T05:19:49.5793419Z adding 'torch/include/ATen/ops/_coalesced_native.h' 2025-07-24T05:19:49.5796759Z adding 'torch/include/ATen/ops/_coalesced_ops.h' 2025-07-24T05:19:49.5800258Z adding 'torch/include/ATen/ops/_compute_linear_combination.h' 2025-07-24T05:19:49.5803644Z adding 'torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h' 2025-07-24T05:19:49.5806777Z adding 'torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h' 2025-07-24T05:19:49.5809864Z adding 'torch/include/ATen/ops/_compute_linear_combination_native.h' 2025-07-24T05:19:49.5813236Z adding 'torch/include/ATen/ops/_compute_linear_combination_ops.h' 2025-07-24T05:19:49.5816143Z adding 'torch/include/ATen/ops/_conj.h' 2025-07-24T05:19:49.5819516Z adding 'torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.5822533Z adding 'torch/include/ATen/ops/_conj_copy.h' 2025-07-24T05:19:49.5825935Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.5829126Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:49.5832152Z adding 'torch/include/ATen/ops/_conj_copy_native.h' 2025-07-24T05:19:49.5836153Z adding 'torch/include/ATen/ops/_conj_copy_ops.h' 2025-07-24T05:19:49.5839020Z adding 'torch/include/ATen/ops/_conj_native.h' 2025-07-24T05:19:49.5842296Z adding 'torch/include/ATen/ops/_conj_ops.h' 2025-07-24T05:19:49.5845360Z adding 'torch/include/ATen/ops/_conj_physical.h' 2025-07-24T05:19:49.5848787Z adding 'torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.5851726Z adding 'torch/include/ATen/ops/_conj_physical_native.h' 2025-07-24T05:19:49.5855143Z adding 'torch/include/ATen/ops/_conj_physical_ops.h' 2025-07-24T05:19:49.5859222Z adding 'torch/include/ATen/ops/_conv_depthwise2d.h' 2025-07-24T05:19:49.5862337Z adding 'torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h' 2025-07-24T05:19:49.5865584Z adding 'torch/include/ATen/ops/_conv_depthwise2d_native.h' 2025-07-24T05:19:49.5868861Z adding 'torch/include/ATen/ops/_conv_depthwise2d_ops.h' 2025-07-24T05:19:49.5872286Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h' 2025-07-24T05:19:49.5876035Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:49.5879344Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h' 2025-07-24T05:19:49.5882365Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h' 2025-07-24T05:19:49.5885405Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h' 2025-07-24T05:19:49.5888653Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h' 2025-07-24T05:19:49.5891713Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h' 2025-07-24T05:19:49.5895067Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h' 2025-07-24T05:19:49.5898304Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h' 2025-07-24T05:19:49.5901911Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:49.5904959Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h' 2025-07-24T05:19:49.5908114Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h' 2025-07-24T05:19:49.5911656Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h' 2025-07-24T05:19:49.5914397Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h' 2025-07-24T05:19:49.5917865Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h' 2025-07-24T05:19:49.5921003Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h' 2025-07-24T05:19:49.5924278Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack.h' 2025-07-24T05:19:49.5927427Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h' 2025-07-24T05:19:49.5930663Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h' 2025-07-24T05:19:49.5933779Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h' 2025-07-24T05:19:49.5936933Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h' 2025-07-24T05:19:49.5940769Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h' 2025-07-24T05:19:49.5943198Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_native.h' 2025-07-24T05:19:49.5946458Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h' 2025-07-24T05:19:49.5950283Z adding 'torch/include/ATen/ops/_convolution.h' 2025-07-24T05:19:49.5954284Z adding 'torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.5958076Z adding 'torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.5961010Z adding 'torch/include/ATen/ops/_convolution_double_backward.h' 2025-07-24T05:19:49.5964703Z adding 'torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.5967691Z adding 'torch/include/ATen/ops/_convolution_double_backward_native.h' 2025-07-24T05:19:49.5971171Z adding 'torch/include/ATen/ops/_convolution_double_backward_ops.h' 2025-07-24T05:19:49.5974799Z adding 'torch/include/ATen/ops/_convolution_mode.h' 2025-07-24T05:19:49.5977944Z adding 'torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.5981003Z adding 'torch/include/ATen/ops/_convolution_mode_native.h' 2025-07-24T05:19:49.5984223Z adding 'torch/include/ATen/ops/_convolution_mode_ops.h' 2025-07-24T05:19:49.5987493Z adding 'torch/include/ATen/ops/_convolution_native.h' 2025-07-24T05:19:49.5991352Z adding 'torch/include/ATen/ops/_convolution_ops.h' 2025-07-24T05:19:49.5994534Z adding 'torch/include/ATen/ops/_copy_from.h' 2025-07-24T05:19:49.5997728Z adding 'torch/include/ATen/ops/_copy_from_and_resize.h' 2025-07-24T05:19:49.6001038Z adding 'torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6004099Z adding 'torch/include/ATen/ops/_copy_from_and_resize_native.h' 2025-07-24T05:19:49.6007268Z adding 'torch/include/ATen/ops/_copy_from_and_resize_ops.h' 2025-07-24T05:19:49.6010503Z adding 'torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6013422Z adding 'torch/include/ATen/ops/_copy_from_native.h' 2025-07-24T05:19:49.6016626Z adding 'torch/include/ATen/ops/_copy_from_ops.h' 2025-07-24T05:19:49.6019844Z adding 'torch/include/ATen/ops/_cslt_compress.h' 2025-07-24T05:19:49.6022968Z adding 'torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h' 2025-07-24T05:19:49.6025871Z adding 'torch/include/ATen/ops/_cslt_compress_native.h' 2025-07-24T05:19:49.6028959Z adding 'torch/include/ATen/ops/_cslt_compress_ops.h' 2025-07-24T05:19:49.6032094Z adding 'torch/include/ATen/ops/_cslt_sparse_mm.h' 2025-07-24T05:19:49.6035267Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h' 2025-07-24T05:19:49.6038379Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_native.h' 2025-07-24T05:19:49.6041632Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_ops.h' 2025-07-24T05:19:49.6044773Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search.h' 2025-07-24T05:19:49.6047975Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h' 2025-07-24T05:19:49.6051138Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_native.h' 2025-07-24T05:19:49.6054322Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h' 2025-07-24T05:19:49.6057636Z adding 'torch/include/ATen/ops/_ctc_loss.h' 2025-07-24T05:19:49.6061053Z adding 'torch/include/ATen/ops/_ctc_loss_backward.h' 2025-07-24T05:19:49.6064475Z adding 'torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6068299Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h' 2025-07-24T05:19:49.6071456Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h' 2025-07-24T05:19:49.6074510Z adding 'torch/include/ATen/ops/_ctc_loss_backward_native.h' 2025-07-24T05:19:49.6077960Z adding 'torch/include/ATen/ops/_ctc_loss_backward_ops.h' 2025-07-24T05:19:49.6081694Z adding 'torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6084552Z adding 'torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h' 2025-07-24T05:19:49.6087584Z adding 'torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h' 2025-07-24T05:19:49.6090664Z adding 'torch/include/ATen/ops/_ctc_loss_meta_dispatch.h' 2025-07-24T05:19:49.6093752Z adding 'torch/include/ATen/ops/_ctc_loss_native.h' 2025-07-24T05:19:49.6097380Z adding 'torch/include/ATen/ops/_ctc_loss_ops.h' 2025-07-24T05:19:49.6100978Z adding 'torch/include/ATen/ops/_cudnn_attention_forward.h' 2025-07-24T05:19:49.6104349Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h' 2025-07-24T05:19:49.6107613Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_native.h' 2025-07-24T05:19:49.6110925Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_ops.h' 2025-07-24T05:19:49.6114171Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss.h' 2025-07-24T05:19:49.6117749Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6120907Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h' 2025-07-24T05:19:49.6123793Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_native.h' 2025-07-24T05:19:49.6127163Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_ops.h' 2025-07-24T05:19:49.6130543Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state.h' 2025-07-24T05:19:49.6133845Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6136971Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h' 2025-07-24T05:19:49.6139998Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_native.h' 2025-07-24T05:19:49.6143147Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h' 2025-07-24T05:19:49.6147059Z adding 'torch/include/ATen/ops/_cudnn_rnn.h' 2025-07-24T05:19:49.6151516Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward.h' 2025-07-24T05:19:49.6155721Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6159114Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h' 2025-07-24T05:19:49.6162301Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_native.h' 2025-07-24T05:19:49.6165959Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_ops.h' 2025-07-24T05:19:49.6169516Z adding 'torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6172685Z adding 'torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h' 2025-07-24T05:19:49.6176314Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h' 2025-07-24T05:19:49.6179892Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6182986Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h' 2025-07-24T05:19:49.6186053Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h' 2025-07-24T05:19:49.6189312Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h' 2025-07-24T05:19:49.6192570Z adding 'torch/include/ATen/ops/_cudnn_rnn_native.h' 2025-07-24T05:19:49.6196062Z adding 'torch/include/ATen/ops/_cudnn_rnn_ops.h' 2025-07-24T05:19:49.6199258Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache.h' 2025-07-24T05:19:49.6202499Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.6205371Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_native.h' 2025-07-24T05:19:49.6208440Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h' 2025-07-24T05:19:49.6211722Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h' 2025-07-24T05:19:49.6214839Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.6217605Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h' 2025-07-24T05:19:49.6220688Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h' 2025-07-24T05:19:49.6223652Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size.h' 2025-07-24T05:19:49.6226935Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.6229806Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h' 2025-07-24T05:19:49.6232909Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h' 2025-07-24T05:19:49.6235909Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h' 2025-07-24T05:19:49.6239268Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.6242146Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h' 2025-07-24T05:19:49.6245255Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h' 2025-07-24T05:19:49.6248503Z adding 'torch/include/ATen/ops/_cummax_helper.h' 2025-07-24T05:19:49.6251414Z adding 'torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h' 2025-07-24T05:19:49.6254926Z adding 'torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h' 2025-07-24T05:19:49.6257335Z adding 'torch/include/ATen/ops/_cummax_helper_native.h' 2025-07-24T05:19:49.6260446Z adding 'torch/include/ATen/ops/_cummax_helper_ops.h' 2025-07-24T05:19:49.6263444Z adding 'torch/include/ATen/ops/_cummin_helper.h' 2025-07-24T05:19:49.6266661Z adding 'torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h' 2025-07-24T05:19:49.6269729Z adding 'torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h' 2025-07-24T05:19:49.6273254Z adding 'torch/include/ATen/ops/_cummin_helper_native.h' 2025-07-24T05:19:49.6276446Z adding 'torch/include/ATen/ops/_cummin_helper_ops.h' 2025-07-24T05:19:49.6279647Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap.h' 2025-07-24T05:19:49.6282920Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.6285888Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_native.h' 2025-07-24T05:19:49.6288949Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_ops.h' 2025-07-24T05:19:49.6291756Z adding 'torch/include/ATen/ops/_dimI.h' 2025-07-24T05:19:49.6294693Z adding 'torch/include/ATen/ops/_dimI_native.h' 2025-07-24T05:19:49.6297726Z adding 'torch/include/ATen/ops/_dimI_ops.h' 2025-07-24T05:19:49.6300665Z adding 'torch/include/ATen/ops/_dimV.h' 2025-07-24T05:19:49.6303595Z adding 'torch/include/ATen/ops/_dimV_native.h' 2025-07-24T05:19:49.6306710Z adding 'torch/include/ATen/ops/_dimV_ops.h' 2025-07-24T05:19:49.6309722Z adding 'torch/include/ATen/ops/_dim_arange.h' 2025-07-24T05:19:49.6312851Z adding 'torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.6315680Z adding 'torch/include/ATen/ops/_dim_arange_native.h' 2025-07-24T05:19:49.6318904Z adding 'torch/include/ATen/ops/_dim_arange_ops.h' 2025-07-24T05:19:49.6321981Z adding 'torch/include/ATen/ops/_dirichlet_grad.h' 2025-07-24T05:19:49.6325314Z adding 'torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6328274Z adding 'torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h' 2025-07-24T05:19:49.6331244Z adding 'torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h' 2025-07-24T05:19:49.6334782Z adding 'torch/include/ATen/ops/_dirichlet_grad_native.h' 2025-07-24T05:19:49.6337578Z adding 'torch/include/ATen/ops/_dirichlet_grad_ops.h' 2025-07-24T05:19:49.6340721Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit.h' 2025-07-24T05:19:49.6343950Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h' 2025-07-24T05:19:49.6346871Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h' 2025-07-24T05:19:49.6350035Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h' 2025-07-24T05:19:49.6353114Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h' 2025-07-24T05:19:49.6356270Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h' 2025-07-24T05:19:49.6359438Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h' 2025-07-24T05:19:49.6362630Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h' 2025-07-24T05:19:49.6366166Z adding 'torch/include/ATen/ops/_efficient_attention_backward.h' 2025-07-24T05:19:49.6369546Z adding 'torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h' 2025-07-24T05:19:49.6372691Z adding 'torch/include/ATen/ops/_efficient_attention_backward_native.h' 2025-07-24T05:19:49.6376046Z adding 'torch/include/ATen/ops/_efficient_attention_backward_ops.h' 2025-07-24T05:19:49.6379580Z adding 'torch/include/ATen/ops/_efficient_attention_forward.h' 2025-07-24T05:19:49.6383005Z adding 'torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h' 2025-07-24T05:19:49.6386109Z adding 'torch/include/ATen/ops/_efficient_attention_forward_native.h' 2025-07-24T05:19:49.6389415Z adding 'torch/include/ATen/ops/_efficient_attention_forward_ops.h' 2025-07-24T05:19:49.6392955Z adding 'torch/include/ATen/ops/_efficientzerotensor.h' 2025-07-24T05:19:49.6396529Z adding 'torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6399623Z adding 'torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h' 2025-07-24T05:19:49.6402735Z adding 'torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h' 2025-07-24T05:19:49.6406297Z adding 'torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h' 2025-07-24T05:19:49.6409357Z adding 'torch/include/ATen/ops/_efficientzerotensor_native.h' 2025-07-24T05:19:49.6412603Z adding 'torch/include/ATen/ops/_efficientzerotensor_ops.h' 2025-07-24T05:19:49.6415924Z adding 'torch/include/ATen/ops/_embedding_bag.h' 2025-07-24T05:19:49.6419286Z adding 'torch/include/ATen/ops/_embedding_bag_backward.h' 2025-07-24T05:19:49.6422588Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h' 2025-07-24T05:19:49.6425779Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h' 2025-07-24T05:19:49.6428834Z adding 'torch/include/ATen/ops/_embedding_bag_backward_native.h' 2025-07-24T05:19:49.6432088Z adding 'torch/include/ATen/ops/_embedding_bag_backward_ops.h' 2025-07-24T05:19:49.6435681Z adding 'torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6438750Z adding 'torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h' 2025-07-24T05:19:49.6441907Z adding 'torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h' 2025-07-24T05:19:49.6445539Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward.h' 2025-07-24T05:19:49.6449169Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6452418Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h' 2025-07-24T05:19:49.6455528Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h' 2025-07-24T05:19:49.6458661Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_native.h' 2025-07-24T05:19:49.6462069Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h' 2025-07-24T05:19:49.6465475Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only.h' 2025-07-24T05:19:49.6468925Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6472075Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h' 2025-07-24T05:19:49.6475171Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h' 2025-07-24T05:19:49.6478266Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_native.h' 2025-07-24T05:19:49.6481717Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_ops.h' 2025-07-24T05:19:49.6484886Z adding 'torch/include/ATen/ops/_embedding_bag_native.h' 2025-07-24T05:19:49.6488297Z adding 'torch/include/ATen/ops/_embedding_bag_ops.h' 2025-07-24T05:19:49.6492019Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h' 2025-07-24T05:19:49.6495442Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6498567Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h' 2025-07-24T05:19:49.6501639Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h' 2025-07-24T05:19:49.6504711Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h' 2025-07-24T05:19:49.6508152Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h' 2025-07-24T05:19:49.6511435Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward.h' 2025-07-24T05:19:49.6514740Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.6517782Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h' 2025-07-24T05:19:49.6521066Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h' 2025-07-24T05:19:49.6524784Z adding 'torch/include/ATen/ops/_empty_affine_quantized.h' 2025-07-24T05:19:49.6528562Z adding 'torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6531574Z adding 'torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h' 2025-07-24T05:19:49.6534595Z adding 'torch/include/ATen/ops/_empty_affine_quantized_native.h' 2025-07-24T05:19:49.6538145Z adding 'torch/include/ATen/ops/_empty_affine_quantized_ops.h' 2025-07-24T05:19:49.6542054Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized.h' 2025-07-24T05:19:49.6545804Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6548958Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h' 2025-07-24T05:19:49.6552003Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h' 2025-07-24T05:19:49.6555397Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h' 2025-07-24T05:19:49.6558580Z adding 'torch/include/ATen/ops/_euclidean_dist.h' 2025-07-24T05:19:49.6561834Z adding 'torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6564761Z adding 'torch/include/ATen/ops/_euclidean_dist_native.h' 2025-07-24T05:19:49.6567958Z adding 'torch/include/ATen/ops/_euclidean_dist_ops.h' 2025-07-24T05:19:49.6571275Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h' 2025-07-24T05:19:49.6574473Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h' 2025-07-24T05:19:49.6577687Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h' 2025-07-24T05:19:49.6580880Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h' 2025-07-24T05:19:49.6583889Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h' 2025-07-24T05:19:49.6587045Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h' 2025-07-24T05:19:49.6590374Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6593904Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h' 2025-07-24T05:19:49.6596999Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h' 2025-07-24T05:19:49.6600236Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h' 2025-07-24T05:19:49.6603505Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h' 2025-07-24T05:19:49.6606641Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h' 2025-07-24T05:19:49.6609867Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h' 2025-07-24T05:19:49.6613078Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h' 2025-07-24T05:19:49.6616163Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h' 2025-07-24T05:19:49.6619306Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h' 2025-07-24T05:19:49.6622455Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h' 2025-07-24T05:19:49.6625652Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6628685Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h' 2025-07-24T05:19:49.6631822Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h' 2025-07-24T05:19:49.6634845Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h' 2025-07-24T05:19:49.6640983Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h' 2025-07-24T05:19:49.6642073Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h' 2025-07-24T05:19:49.6645651Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6673822Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h' 2025-07-24T05:19:49.6674159Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h' 2025-07-24T05:19:49.6674459Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h' 2025-07-24T05:19:49.6674751Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h' 2025-07-24T05:19:49.6674858Z adding 'torch/include/ATen/ops/_fft_c2c.h' 2025-07-24T05:19:49.6674998Z adding 'torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h' 2025-07-24T05:19:49.6675157Z adding 'torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h' 2025-07-24T05:19:49.6675283Z adding 'torch/include/ATen/ops/_fft_c2c_native.h' 2025-07-24T05:19:49.6677710Z adding 'torch/include/ATen/ops/_fft_c2c_ops.h' 2025-07-24T05:19:49.6681530Z adding 'torch/include/ATen/ops/_fft_c2r.h' 2025-07-24T05:19:49.6685150Z adding 'torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h' 2025-07-24T05:19:49.6687909Z adding 'torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h' 2025-07-24T05:19:49.6691095Z adding 'torch/include/ATen/ops/_fft_c2r_native.h' 2025-07-24T05:19:49.6694302Z adding 'torch/include/ATen/ops/_fft_c2r_ops.h' 2025-07-24T05:19:49.6697587Z adding 'torch/include/ATen/ops/_fft_r2c.h' 2025-07-24T05:19:49.6700809Z adding 'torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h' 2025-07-24T05:19:49.6704107Z adding 'torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h' 2025-07-24T05:19:49.6707504Z adding 'torch/include/ATen/ops/_fft_r2c_native.h' 2025-07-24T05:19:49.6710547Z adding 'torch/include/ATen/ops/_fft_r2c_ops.h' 2025-07-24T05:19:49.6713786Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h' 2025-07-24T05:19:49.6717061Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h' 2025-07-24T05:19:49.6720422Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h' 2025-07-24T05:19:49.6723316Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h' 2025-07-24T05:19:49.6726606Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h' 2025-07-24T05:19:49.6730448Z adding 'torch/include/ATen/ops/_flash_attention_backward.h' 2025-07-24T05:19:49.6733486Z adding 'torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h' 2025-07-24T05:19:49.6736714Z adding 'torch/include/ATen/ops/_flash_attention_backward_native.h' 2025-07-24T05:19:49.6740070Z adding 'torch/include/ATen/ops/_flash_attention_backward_ops.h' 2025-07-24T05:19:49.6743726Z adding 'torch/include/ATen/ops/_flash_attention_forward.h' 2025-07-24T05:19:49.6747668Z adding 'torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h' 2025-07-24T05:19:49.6750561Z adding 'torch/include/ATen/ops/_flash_attention_forward_native.h' 2025-07-24T05:19:49.6754023Z adding 'torch/include/ATen/ops/_flash_attention_forward_ops.h' 2025-07-24T05:19:49.6757327Z adding 'torch/include/ATen/ops/_foobar.h' 2025-07-24T05:19:49.6760811Z adding 'torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6763688Z adding 'torch/include/ATen/ops/_foobar_cpu_dispatch.h' 2025-07-24T05:19:49.6766837Z adding 'torch/include/ATen/ops/_foobar_native.h' 2025-07-24T05:19:49.6770649Z adding 'torch/include/ATen/ops/_foobar_ops.h' 2025-07-24T05:19:49.6773441Z adding 'torch/include/ATen/ops/_foreach_abs.h' 2025-07-24T05:19:49.6777013Z adding 'torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6779996Z adding 'torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h' 2025-07-24T05:19:49.6782906Z adding 'torch/include/ATen/ops/_foreach_abs_native.h' 2025-07-24T05:19:49.6786088Z adding 'torch/include/ATen/ops/_foreach_abs_ops.h' 2025-07-24T05:19:49.6789383Z adding 'torch/include/ATen/ops/_foreach_acos.h' 2025-07-24T05:19:49.6792722Z adding 'torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6795662Z adding 'torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h' 2025-07-24T05:19:49.6798746Z adding 'torch/include/ATen/ops/_foreach_acos_native.h' 2025-07-24T05:19:49.6801928Z adding 'torch/include/ATen/ops/_foreach_acos_ops.h' 2025-07-24T05:19:49.6805613Z adding 'torch/include/ATen/ops/_foreach_add.h' 2025-07-24T05:19:49.6809233Z adding 'torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6812284Z adding 'torch/include/ATen/ops/_foreach_add_cuda_dispatch.h' 2025-07-24T05:19:49.6815423Z adding 'torch/include/ATen/ops/_foreach_add_native.h' 2025-07-24T05:19:49.6819278Z adding 'torch/include/ATen/ops/_foreach_add_ops.h' 2025-07-24T05:19:49.6822935Z adding 'torch/include/ATen/ops/_foreach_addcdiv.h' 2025-07-24T05:19:49.6826574Z adding 'torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6829708Z adding 'torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h' 2025-07-24T05:19:49.6832830Z adding 'torch/include/ATen/ops/_foreach_addcdiv_native.h' 2025-07-24T05:19:49.6836762Z adding 'torch/include/ATen/ops/_foreach_addcdiv_ops.h' 2025-07-24T05:19:49.6840588Z adding 'torch/include/ATen/ops/_foreach_addcmul.h' 2025-07-24T05:19:49.6844144Z adding 'torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6847167Z adding 'torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h' 2025-07-24T05:19:49.6850373Z adding 'torch/include/ATen/ops/_foreach_addcmul_native.h' 2025-07-24T05:19:49.6854066Z adding 'torch/include/ATen/ops/_foreach_addcmul_ops.h' 2025-07-24T05:19:49.6857426Z adding 'torch/include/ATen/ops/_foreach_asin.h' 2025-07-24T05:19:49.6860717Z adding 'torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6863625Z adding 'torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h' 2025-07-24T05:19:49.6866613Z adding 'torch/include/ATen/ops/_foreach_asin_native.h' 2025-07-24T05:19:49.6869870Z adding 'torch/include/ATen/ops/_foreach_asin_ops.h' 2025-07-24T05:19:49.6872987Z adding 'torch/include/ATen/ops/_foreach_atan.h' 2025-07-24T05:19:49.6876142Z adding 'torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6879280Z adding 'torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h' 2025-07-24T05:19:49.6882266Z adding 'torch/include/ATen/ops/_foreach_atan_native.h' 2025-07-24T05:19:49.6885482Z adding 'torch/include/ATen/ops/_foreach_atan_ops.h' 2025-07-24T05:19:49.6888649Z adding 'torch/include/ATen/ops/_foreach_ceil.h' 2025-07-24T05:19:49.6892738Z adding 'torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6896153Z adding 'torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h' 2025-07-24T05:19:49.6899340Z adding 'torch/include/ATen/ops/_foreach_ceil_native.h' 2025-07-24T05:19:49.6902287Z adding 'torch/include/ATen/ops/_foreach_ceil_ops.h' 2025-07-24T05:19:49.6905621Z adding 'torch/include/ATen/ops/_foreach_clamp_max.h' 2025-07-24T05:19:49.6909182Z adding 'torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6912403Z adding 'torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h' 2025-07-24T05:19:49.6915388Z adding 'torch/include/ATen/ops/_foreach_clamp_max_native.h' 2025-07-24T05:19:49.6918995Z adding 'torch/include/ATen/ops/_foreach_clamp_max_ops.h' 2025-07-24T05:19:49.6922412Z adding 'torch/include/ATen/ops/_foreach_clamp_min.h' 2025-07-24T05:19:49.6925886Z adding 'torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6928950Z adding 'torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h' 2025-07-24T05:19:49.6932113Z adding 'torch/include/ATen/ops/_foreach_clamp_min_native.h' 2025-07-24T05:19:49.6935683Z adding 'torch/include/ATen/ops/_foreach_clamp_min_ops.h' 2025-07-24T05:19:49.6939023Z adding 'torch/include/ATen/ops/_foreach_copy.h' 2025-07-24T05:19:49.6942211Z adding 'torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6945172Z adding 'torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h' 2025-07-24T05:19:49.6948158Z adding 'torch/include/ATen/ops/_foreach_copy_native.h' 2025-07-24T05:19:49.6951781Z adding 'torch/include/ATen/ops/_foreach_copy_ops.h' 2025-07-24T05:19:49.6954906Z adding 'torch/include/ATen/ops/_foreach_cos.h' 2025-07-24T05:19:49.6958216Z adding 'torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6961181Z adding 'torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h' 2025-07-24T05:19:49.6964162Z adding 'torch/include/ATen/ops/_foreach_cos_native.h' 2025-07-24T05:19:49.6967357Z adding 'torch/include/ATen/ops/_foreach_cos_ops.h' 2025-07-24T05:19:49.6970436Z adding 'torch/include/ATen/ops/_foreach_cosh.h' 2025-07-24T05:19:49.6973712Z adding 'torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6976771Z adding 'torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h' 2025-07-24T05:19:49.6979738Z adding 'torch/include/ATen/ops/_foreach_cosh_native.h' 2025-07-24T05:19:49.6982877Z adding 'torch/include/ATen/ops/_foreach_cosh_ops.h' 2025-07-24T05:19:49.6986315Z adding 'torch/include/ATen/ops/_foreach_div.h' 2025-07-24T05:19:49.6990188Z adding 'torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.6993296Z adding 'torch/include/ATen/ops/_foreach_div_cuda_dispatch.h' 2025-07-24T05:19:49.6996311Z adding 'torch/include/ATen/ops/_foreach_div_native.h' 2025-07-24T05:19:49.7000195Z adding 'torch/include/ATen/ops/_foreach_div_ops.h' 2025-07-24T05:19:49.7003485Z adding 'torch/include/ATen/ops/_foreach_erf.h' 2025-07-24T05:19:49.7006746Z adding 'torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7009752Z adding 'torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h' 2025-07-24T05:19:49.7012720Z adding 'torch/include/ATen/ops/_foreach_erf_native.h' 2025-07-24T05:19:49.7015941Z adding 'torch/include/ATen/ops/_foreach_erf_ops.h' 2025-07-24T05:19:49.7019032Z adding 'torch/include/ATen/ops/_foreach_erfc.h' 2025-07-24T05:19:49.7022997Z adding 'torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7026113Z adding 'torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h' 2025-07-24T05:19:49.7029119Z adding 'torch/include/ATen/ops/_foreach_erfc_native.h' 2025-07-24T05:19:49.7032283Z adding 'torch/include/ATen/ops/_foreach_erfc_ops.h' 2025-07-24T05:19:49.7035778Z adding 'torch/include/ATen/ops/_foreach_exp.h' 2025-07-24T05:19:49.7039169Z adding 'torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7042291Z adding 'torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h' 2025-07-24T05:19:49.7045274Z adding 'torch/include/ATen/ops/_foreach_exp_native.h' 2025-07-24T05:19:49.7048508Z adding 'torch/include/ATen/ops/_foreach_exp_ops.h' 2025-07-24T05:19:49.7051604Z adding 'torch/include/ATen/ops/_foreach_expm1.h' 2025-07-24T05:19:49.7054934Z adding 'torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7057833Z adding 'torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h' 2025-07-24T05:19:49.7060801Z adding 'torch/include/ATen/ops/_foreach_expm1_native.h' 2025-07-24T05:19:49.7064096Z adding 'torch/include/ATen/ops/_foreach_expm1_ops.h' 2025-07-24T05:19:49.7067127Z adding 'torch/include/ATen/ops/_foreach_floor.h' 2025-07-24T05:19:49.7070353Z adding 'torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7073331Z adding 'torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h' 2025-07-24T05:19:49.7076378Z adding 'torch/include/ATen/ops/_foreach_floor_native.h' 2025-07-24T05:19:49.7079696Z adding 'torch/include/ATen/ops/_foreach_floor_ops.h' 2025-07-24T05:19:49.7082729Z adding 'torch/include/ATen/ops/_foreach_frac.h' 2025-07-24T05:19:49.7086030Z adding 'torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7089214Z adding 'torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h' 2025-07-24T05:19:49.7092186Z adding 'torch/include/ATen/ops/_foreach_frac_native.h' 2025-07-24T05:19:49.7095363Z adding 'torch/include/ATen/ops/_foreach_frac_ops.h' 2025-07-24T05:19:49.7098703Z adding 'torch/include/ATen/ops/_foreach_lerp.h' 2025-07-24T05:19:49.7102247Z adding 'torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7105300Z adding 'torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h' 2025-07-24T05:19:49.7108346Z adding 'torch/include/ATen/ops/_foreach_lerp_native.h' 2025-07-24T05:19:49.7111947Z adding 'torch/include/ATen/ops/_foreach_lerp_ops.h' 2025-07-24T05:19:49.7115267Z adding 'torch/include/ATen/ops/_foreach_lgamma.h' 2025-07-24T05:19:49.7118639Z adding 'torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7121608Z adding 'torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h' 2025-07-24T05:19:49.7124574Z adding 'torch/include/ATen/ops/_foreach_lgamma_native.h' 2025-07-24T05:19:49.7127872Z adding 'torch/include/ATen/ops/_foreach_lgamma_ops.h' 2025-07-24T05:19:49.7130956Z adding 'torch/include/ATen/ops/_foreach_log.h' 2025-07-24T05:19:49.7133952Z adding 'torch/include/ATen/ops/_foreach_log10.h' 2025-07-24T05:19:49.7137210Z adding 'torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7140280Z adding 'torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h' 2025-07-24T05:19:49.7143316Z adding 'torch/include/ATen/ops/_foreach_log10_native.h' 2025-07-24T05:19:49.7146399Z adding 'torch/include/ATen/ops/_foreach_log10_ops.h' 2025-07-24T05:19:49.7149523Z adding 'torch/include/ATen/ops/_foreach_log1p.h' 2025-07-24T05:19:49.7152859Z adding 'torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7155807Z adding 'torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h' 2025-07-24T05:19:49.7158850Z adding 'torch/include/ATen/ops/_foreach_log1p_native.h' 2025-07-24T05:19:49.7162028Z adding 'torch/include/ATen/ops/_foreach_log1p_ops.h' 2025-07-24T05:19:49.7165104Z adding 'torch/include/ATen/ops/_foreach_log2.h' 2025-07-24T05:19:49.7168371Z adding 'torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7171301Z adding 'torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h' 2025-07-24T05:19:49.7174297Z adding 'torch/include/ATen/ops/_foreach_log2_native.h' 2025-07-24T05:19:49.7177468Z adding 'torch/include/ATen/ops/_foreach_log2_ops.h' 2025-07-24T05:19:49.7180727Z adding 'torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7183910Z adding 'torch/include/ATen/ops/_foreach_log_cuda_dispatch.h' 2025-07-24T05:19:49.7186885Z adding 'torch/include/ATen/ops/_foreach_log_native.h' 2025-07-24T05:19:49.7190094Z adding 'torch/include/ATen/ops/_foreach_log_ops.h' 2025-07-24T05:19:49.7193690Z adding 'torch/include/ATen/ops/_foreach_max.h' 2025-07-24T05:19:49.7198649Z adding 'torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7201700Z adding 'torch/include/ATen/ops/_foreach_max_cuda_dispatch.h' 2025-07-24T05:19:49.7204830Z adding 'torch/include/ATen/ops/_foreach_max_native.h' 2025-07-24T05:19:49.7208010Z adding 'torch/include/ATen/ops/_foreach_max_ops.h' 2025-07-24T05:19:49.7211540Z adding 'torch/include/ATen/ops/_foreach_maximum.h' 2025-07-24T05:19:49.7214989Z adding 'torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7218288Z adding 'torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h' 2025-07-24T05:19:49.7221642Z adding 'torch/include/ATen/ops/_foreach_maximum_native.h' 2025-07-24T05:19:49.7225168Z adding 'torch/include/ATen/ops/_foreach_maximum_ops.h' 2025-07-24T05:19:49.7228774Z adding 'torch/include/ATen/ops/_foreach_minimum.h' 2025-07-24T05:19:49.7232303Z adding 'torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7235485Z adding 'torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h' 2025-07-24T05:19:49.7239227Z adding 'torch/include/ATen/ops/_foreach_minimum_native.h' 2025-07-24T05:19:49.7242833Z adding 'torch/include/ATen/ops/_foreach_minimum_ops.h' 2025-07-24T05:19:49.7246326Z adding 'torch/include/ATen/ops/_foreach_mul.h' 2025-07-24T05:19:49.7250357Z adding 'torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7252972Z adding 'torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h' 2025-07-24T05:19:49.7256377Z adding 'torch/include/ATen/ops/_foreach_mul_native.h' 2025-07-24T05:19:49.7260136Z adding 'torch/include/ATen/ops/_foreach_mul_ops.h' 2025-07-24T05:19:49.7263642Z adding 'torch/include/ATen/ops/_foreach_neg.h' 2025-07-24T05:19:49.7267885Z adding 'torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7270116Z adding 'torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h' 2025-07-24T05:19:49.7273570Z adding 'torch/include/ATen/ops/_foreach_neg_native.h' 2025-07-24T05:19:49.7276457Z adding 'torch/include/ATen/ops/_foreach_neg_ops.h' 2025-07-24T05:19:49.7279851Z adding 'torch/include/ATen/ops/_foreach_norm.h' 2025-07-24T05:19:49.7283186Z adding 'torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7286475Z adding 'torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h' 2025-07-24T05:19:49.7289481Z adding 'torch/include/ATen/ops/_foreach_norm_native.h' 2025-07-24T05:19:49.7292864Z adding 'torch/include/ATen/ops/_foreach_norm_ops.h' 2025-07-24T05:19:49.7296398Z adding 'torch/include/ATen/ops/_foreach_pow.h' 2025-07-24T05:19:49.7299780Z adding 'torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7302962Z adding 'torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h' 2025-07-24T05:19:49.7306086Z adding 'torch/include/ATen/ops/_foreach_pow_native.h' 2025-07-24T05:19:49.7309918Z adding 'torch/include/ATen/ops/_foreach_pow_ops.h' 2025-07-24T05:19:49.7313580Z adding 'torch/include/ATen/ops/_foreach_reciprocal.h' 2025-07-24T05:19:49.7316749Z adding 'torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7320058Z adding 'torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h' 2025-07-24T05:19:49.7323071Z adding 'torch/include/ATen/ops/_foreach_reciprocal_native.h' 2025-07-24T05:19:49.7326452Z adding 'torch/include/ATen/ops/_foreach_reciprocal_ops.h' 2025-07-24T05:19:49.7329549Z adding 'torch/include/ATen/ops/_foreach_round.h' 2025-07-24T05:19:49.7333021Z adding 'torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7336505Z adding 'torch/include/ATen/ops/_foreach_round_cuda_dispatch.h' 2025-07-24T05:19:49.7339175Z adding 'torch/include/ATen/ops/_foreach_round_native.h' 2025-07-24T05:19:49.7342539Z adding 'torch/include/ATen/ops/_foreach_round_ops.h' 2025-07-24T05:19:49.7345689Z adding 'torch/include/ATen/ops/_foreach_rsqrt.h' 2025-07-24T05:19:49.7349130Z adding 'torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7352074Z adding 'torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h' 2025-07-24T05:19:49.7355233Z adding 'torch/include/ATen/ops/_foreach_rsqrt_native.h' 2025-07-24T05:19:49.7358942Z adding 'torch/include/ATen/ops/_foreach_rsqrt_ops.h' 2025-07-24T05:19:49.7361899Z adding 'torch/include/ATen/ops/_foreach_sigmoid.h' 2025-07-24T05:19:49.7365284Z adding 'torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7368449Z adding 'torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h' 2025-07-24T05:19:49.7371508Z adding 'torch/include/ATen/ops/_foreach_sigmoid_native.h' 2025-07-24T05:19:49.7374684Z adding 'torch/include/ATen/ops/_foreach_sigmoid_ops.h' 2025-07-24T05:19:49.7377975Z adding 'torch/include/ATen/ops/_foreach_sign.h' 2025-07-24T05:19:49.7381314Z adding 'torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7384545Z adding 'torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h' 2025-07-24T05:19:49.7387827Z adding 'torch/include/ATen/ops/_foreach_sign_native.h' 2025-07-24T05:19:49.7390758Z adding 'torch/include/ATen/ops/_foreach_sign_ops.h' 2025-07-24T05:19:49.7394378Z adding 'torch/include/ATen/ops/_foreach_sin.h' 2025-07-24T05:19:49.7397720Z adding 'torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7400878Z adding 'torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h' 2025-07-24T05:19:49.7403925Z adding 'torch/include/ATen/ops/_foreach_sin_native.h' 2025-07-24T05:19:49.7407302Z adding 'torch/include/ATen/ops/_foreach_sin_ops.h' 2025-07-24T05:19:49.7410648Z adding 'torch/include/ATen/ops/_foreach_sinh.h' 2025-07-24T05:19:49.7413813Z adding 'torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7416934Z adding 'torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h' 2025-07-24T05:19:49.7419959Z adding 'torch/include/ATen/ops/_foreach_sinh_native.h' 2025-07-24T05:19:49.7423277Z adding 'torch/include/ATen/ops/_foreach_sinh_ops.h' 2025-07-24T05:19:49.7426400Z adding 'torch/include/ATen/ops/_foreach_sqrt.h' 2025-07-24T05:19:49.7429845Z adding 'torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7432888Z adding 'torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h' 2025-07-24T05:19:49.7436038Z adding 'torch/include/ATen/ops/_foreach_sqrt_native.h' 2025-07-24T05:19:49.7439661Z adding 'torch/include/ATen/ops/_foreach_sqrt_ops.h' 2025-07-24T05:19:49.7442829Z adding 'torch/include/ATen/ops/_foreach_sub.h' 2025-07-24T05:19:49.7446372Z adding 'torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7449456Z adding 'torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h' 2025-07-24T05:19:49.7452790Z adding 'torch/include/ATen/ops/_foreach_sub_native.h' 2025-07-24T05:19:49.7456814Z adding 'torch/include/ATen/ops/_foreach_sub_ops.h' 2025-07-24T05:19:49.7459859Z adding 'torch/include/ATen/ops/_foreach_tan.h' 2025-07-24T05:19:49.7463242Z adding 'torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7466236Z adding 'torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h' 2025-07-24T05:19:49.7469448Z adding 'torch/include/ATen/ops/_foreach_tan_native.h' 2025-07-24T05:19:49.7472605Z adding 'torch/include/ATen/ops/_foreach_tan_ops.h' 2025-07-24T05:19:49.7475862Z adding 'torch/include/ATen/ops/_foreach_tanh.h' 2025-07-24T05:19:49.7479412Z adding 'torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7482423Z adding 'torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h' 2025-07-24T05:19:49.7485621Z adding 'torch/include/ATen/ops/_foreach_tanh_native.h' 2025-07-24T05:19:49.7488790Z adding 'torch/include/ATen/ops/_foreach_tanh_ops.h' 2025-07-24T05:19:49.7492050Z adding 'torch/include/ATen/ops/_foreach_trunc.h' 2025-07-24T05:19:49.7495373Z adding 'torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7498428Z adding 'torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h' 2025-07-24T05:19:49.7501414Z adding 'torch/include/ATen/ops/_foreach_trunc_native.h' 2025-07-24T05:19:49.7504893Z adding 'torch/include/ATen/ops/_foreach_trunc_ops.h' 2025-07-24T05:19:49.7508507Z adding 'torch/include/ATen/ops/_foreach_zero.h' 2025-07-24T05:19:49.7511352Z adding 'torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7514437Z adding 'torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h' 2025-07-24T05:19:49.7517445Z adding 'torch/include/ATen/ops/_foreach_zero_native.h' 2025-07-24T05:19:49.7520899Z adding 'torch/include/ATen/ops/_foreach_zero_ops.h' 2025-07-24T05:19:49.7524063Z adding 'torch/include/ATen/ops/_functional_assert_async.h' 2025-07-24T05:19:49.7527189Z adding 'torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h' 2025-07-24T05:19:49.7531078Z adding 'torch/include/ATen/ops/_functional_assert_async_native.h' 2025-07-24T05:19:49.7533490Z adding 'torch/include/ATen/ops/_functional_assert_async_ops.h' 2025-07-24T05:19:49.7536589Z adding 'torch/include/ATen/ops/_functional_assert_scalar.h' 2025-07-24T05:19:49.7539993Z adding 'torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7542861Z adding 'torch/include/ATen/ops/_functional_assert_scalar_native.h' 2025-07-24T05:19:49.7547043Z adding 'torch/include/ATen/ops/_functional_assert_scalar_ops.h' 2025-07-24T05:19:49.7549200Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range.h' 2025-07-24T05:19:49.7552438Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7555471Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h' 2025-07-24T05:19:49.7558976Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7561813Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h' 2025-07-24T05:19:49.7564963Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h' 2025-07-24T05:19:49.7567940Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_native.h' 2025-07-24T05:19:49.7571107Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_ops.h' 2025-07-24T05:19:49.7574604Z adding 'torch/include/ATen/ops/_fused_adagrad.h' 2025-07-24T05:19:49.7578344Z adding 'torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7581508Z adding 'torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h' 2025-07-24T05:19:49.7584630Z adding 'torch/include/ATen/ops/_fused_adagrad_native.h' 2025-07-24T05:19:49.7588499Z adding 'torch/include/ATen/ops/_fused_adagrad_ops.h' 2025-07-24T05:19:49.7592333Z adding 'torch/include/ATen/ops/_fused_adam.h' 2025-07-24T05:19:49.7595987Z adding 'torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7599383Z adding 'torch/include/ATen/ops/_fused_adam_cpu_dispatch.h' 2025-07-24T05:19:49.7602595Z adding 'torch/include/ATen/ops/_fused_adam_cuda_dispatch.h' 2025-07-24T05:19:49.7605785Z adding 'torch/include/ATen/ops/_fused_adam_native.h' 2025-07-24T05:19:49.7609707Z adding 'torch/include/ATen/ops/_fused_adam_ops.h' 2025-07-24T05:19:49.7613669Z adding 'torch/include/ATen/ops/_fused_adamw.h' 2025-07-24T05:19:49.7617317Z adding 'torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7620353Z adding 'torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h' 2025-07-24T05:19:49.7623490Z adding 'torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h' 2025-07-24T05:19:49.7626725Z adding 'torch/include/ATen/ops/_fused_adamw_native.h' 2025-07-24T05:19:49.7630612Z adding 'torch/include/ATen/ops/_fused_adamw_ops.h' 2025-07-24T05:19:49.7634198Z adding 'torch/include/ATen/ops/_fused_dropout.h' 2025-07-24T05:19:49.7637557Z adding 'torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7640673Z adding 'torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h' 2025-07-24T05:19:49.7643702Z adding 'torch/include/ATen/ops/_fused_dropout_native.h' 2025-07-24T05:19:49.7646982Z adding 'torch/include/ATen/ops/_fused_dropout_ops.h' 2025-07-24T05:19:49.7650499Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h' 2025-07-24T05:19:49.7653884Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7656929Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h' 2025-07-24T05:19:49.7660077Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h' 2025-07-24T05:19:49.7663314Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h' 2025-07-24T05:19:49.7666947Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h' 2025-07-24T05:19:49.7669962Z adding 'torch/include/ATen/ops/_fused_rms_norm.h' 2025-07-24T05:19:49.7673067Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward.h' 2025-07-24T05:19:49.7676303Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_cuda_dispatch.h' 2025-07-24T05:19:49.7679414Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_native.h' 2025-07-24T05:19:49.7682551Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_ops.h' 2025-07-24T05:19:49.7685981Z adding 'torch/include/ATen/ops/_fused_rms_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.7688986Z adding 'torch/include/ATen/ops/_fused_rms_norm_cuda_dispatch.h' 2025-07-24T05:19:49.7691977Z adding 'torch/include/ATen/ops/_fused_rms_norm_native.h' 2025-07-24T05:19:49.7695148Z adding 'torch/include/ATen/ops/_fused_rms_norm_ops.h' 2025-07-24T05:19:49.7698235Z adding 'torch/include/ATen/ops/_fused_sdp_choice.h' 2025-07-24T05:19:49.7701445Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h' 2025-07-24T05:19:49.7704561Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h' 2025-07-24T05:19:49.7707678Z adding 'torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h' 2025-07-24T05:19:49.7710714Z adding 'torch/include/ATen/ops/_fused_sdp_choice_native.h' 2025-07-24T05:19:49.7713857Z adding 'torch/include/ATen/ops/_fused_sdp_choice_ops.h' 2025-07-24T05:19:49.7717352Z adding 'torch/include/ATen/ops/_fused_sgd.h' 2025-07-24T05:19:49.7721048Z adding 'torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7724138Z adding 'torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h' 2025-07-24T05:19:49.7727581Z adding 'torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h' 2025-07-24T05:19:49.7737737Z adding 'torch/include/ATen/ops/_fused_sgd_native.h' 2025-07-24T05:19:49.7739010Z adding 'torch/include/ATen/ops/_fused_sgd_ops.h' 2025-07-24T05:19:49.7740638Z adding 'torch/include/ATen/ops/_fw_primal.h' 2025-07-24T05:19:49.7744076Z adding 'torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7746714Z adding 'torch/include/ATen/ops/_fw_primal_copy.h' 2025-07-24T05:19:49.7750091Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7753341Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:49.7756296Z adding 'torch/include/ATen/ops/_fw_primal_copy_native.h' 2025-07-24T05:19:49.7759587Z adding 'torch/include/ATen/ops/_fw_primal_copy_ops.h' 2025-07-24T05:19:49.7762735Z adding 'torch/include/ATen/ops/_fw_primal_native.h' 2025-07-24T05:19:49.7766665Z adding 'torch/include/ATen/ops/_fw_primal_ops.h' 2025-07-24T05:19:49.7769618Z adding 'torch/include/ATen/ops/_gather_sparse_backward.h' 2025-07-24T05:19:49.7773742Z adding 'torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.7776629Z adding 'torch/include/ATen/ops/_gather_sparse_backward_native.h' 2025-07-24T05:19:49.7779984Z adding 'torch/include/ATen/ops/_gather_sparse_backward_ops.h' 2025-07-24T05:19:49.7783544Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h' 2025-07-24T05:19:49.7786553Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h' 2025-07-24T05:19:49.7789983Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.7792818Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h' 2025-07-24T05:19:49.7796113Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h' 2025-07-24T05:19:49.7799469Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7802602Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h' 2025-07-24T05:19:49.7806400Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h' 2025-07-24T05:19:49.7809091Z adding 'torch/include/ATen/ops/_grouped_mm.h' 2025-07-24T05:19:49.7812490Z adding 'torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h' 2025-07-24T05:19:49.7815272Z adding 'torch/include/ATen/ops/_grouped_mm_native.h' 2025-07-24T05:19:49.7818540Z adding 'torch/include/ATen/ops/_grouped_mm_ops.h' 2025-07-24T05:19:49.7821662Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type.h' 2025-07-24T05:19:49.7825051Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.7827970Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h' 2025-07-24T05:19:49.7831336Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h' 2025-07-24T05:19:49.7834304Z adding 'torch/include/ATen/ops/_has_same_storage_numel.h' 2025-07-24T05:19:49.7837589Z adding 'torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7840656Z adding 'torch/include/ATen/ops/_has_same_storage_numel_native.h' 2025-07-24T05:19:49.7843769Z adding 'torch/include/ATen/ops/_has_same_storage_numel_ops.h' 2025-07-24T05:19:49.7847051Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges.h' 2025-07-24T05:19:49.7850360Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7853586Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h' 2025-07-24T05:19:49.7856625Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_native.h' 2025-07-24T05:19:49.7860154Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_ops.h' 2025-07-24T05:19:49.7863584Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts.h' 2025-07-24T05:19:49.7866721Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7869888Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h' 2025-07-24T05:19:49.7872925Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h' 2025-07-24T05:19:49.7876490Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h' 2025-07-24T05:19:49.7879798Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors.h' 2025-07-24T05:19:49.7883181Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7886684Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h' 2025-07-24T05:19:49.7889376Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h' 2025-07-24T05:19:49.7892850Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h' 2025-07-24T05:19:49.7896032Z adding 'torch/include/ATen/ops/_index_put_impl.h' 2025-07-24T05:19:49.7899505Z adding 'torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7902549Z adding 'torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h' 2025-07-24T05:19:49.7905808Z adding 'torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h' 2025-07-24T05:19:49.7909521Z adding 'torch/include/ATen/ops/_index_put_impl_meta_dispatch.h' 2025-07-24T05:19:49.7912192Z adding 'torch/include/ATen/ops/_index_put_impl_native.h' 2025-07-24T05:19:49.7915624Z adding 'torch/include/ATen/ops/_index_put_impl_ops.h' 2025-07-24T05:19:49.7918717Z adding 'torch/include/ATen/ops/_indices.h' 2025-07-24T05:19:49.7921938Z adding 'torch/include/ATen/ops/_indices_copy.h' 2025-07-24T05:19:49.7925250Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7928583Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:49.7931387Z adding 'torch/include/ATen/ops/_indices_copy_native.h' 2025-07-24T05:19:49.7934701Z adding 'torch/include/ATen/ops/_indices_copy_ops.h' 2025-07-24T05:19:49.7938061Z adding 'torch/include/ATen/ops/_indices_native.h' 2025-07-24T05:19:49.7940989Z adding 'torch/include/ATen/ops/_indices_ops.h' 2025-07-24T05:19:49.7944188Z adding 'torch/include/ATen/ops/_int_mm.h' 2025-07-24T05:19:49.7947400Z adding 'torch/include/ATen/ops/_int_mm_cpu_dispatch.h' 2025-07-24T05:19:49.7950596Z adding 'torch/include/ATen/ops/_int_mm_cuda_dispatch.h' 2025-07-24T05:19:49.7953718Z adding 'torch/include/ATen/ops/_int_mm_native.h' 2025-07-24T05:19:49.7957092Z adding 'torch/include/ATen/ops/_int_mm_ops.h' 2025-07-24T05:19:49.7960251Z adding 'torch/include/ATen/ops/_is_all_true.h' 2025-07-24T05:19:49.7963572Z adding 'torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7966679Z adding 'torch/include/ATen/ops/_is_all_true_native.h' 2025-07-24T05:19:49.7969613Z adding 'torch/include/ATen/ops/_is_all_true_ops.h' 2025-07-24T05:19:49.7972814Z adding 'torch/include/ATen/ops/_is_any_true.h' 2025-07-24T05:19:49.7975982Z adding 'torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.7978980Z adding 'torch/include/ATen/ops/_is_any_true_native.h' 2025-07-24T05:19:49.7982103Z adding 'torch/include/ATen/ops/_is_any_true_ops.h' 2025-07-24T05:19:49.7985316Z adding 'torch/include/ATen/ops/_is_zerotensor.h' 2025-07-24T05:19:49.7988538Z adding 'torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.7991627Z adding 'torch/include/ATen/ops/_is_zerotensor_native.h' 2025-07-24T05:19:49.7995349Z adding 'torch/include/ATen/ops/_is_zerotensor_ops.h' 2025-07-24T05:19:49.7998140Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward.h' 2025-07-24T05:19:49.8001520Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h' 2025-07-24T05:19:49.8004563Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h' 2025-07-24T05:19:49.8007809Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h' 2025-07-24T05:19:49.8010919Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h' 2025-07-24T05:19:49.8013948Z adding 'torch/include/ATen/ops/_lazy_clone.h' 2025-07-24T05:19:49.8017134Z adding 'torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8020145Z adding 'torch/include/ATen/ops/_lazy_clone_native.h' 2025-07-24T05:19:49.8023225Z adding 'torch/include/ATen/ops/_lazy_clone_ops.h' 2025-07-24T05:19:49.8026412Z adding 'torch/include/ATen/ops/_linalg_check_errors.h' 2025-07-24T05:19:49.8030619Z adding 'torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8032842Z adding 'torch/include/ATen/ops/_linalg_check_errors_native.h' 2025-07-24T05:19:49.8036524Z adding 'torch/include/ATen/ops/_linalg_check_errors_ops.h' 2025-07-24T05:19:49.8039315Z adding 'torch/include/ATen/ops/_linalg_det.h' 2025-07-24T05:19:49.8042933Z adding 'torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:49.8045911Z adding 'torch/include/ATen/ops/_linalg_det_cpu_dispatch.h' 2025-07-24T05:19:49.8049098Z adding 'torch/include/ATen/ops/_linalg_det_cuda_dispatch.h' 2025-07-24T05:19:49.8052077Z adding 'torch/include/ATen/ops/_linalg_det_meta.h' 2025-07-24T05:19:49.8055487Z adding 'torch/include/ATen/ops/_linalg_det_meta_dispatch.h' 2025-07-24T05:19:49.8058414Z adding 'torch/include/ATen/ops/_linalg_det_native.h' 2025-07-24T05:19:49.8061574Z adding 'torch/include/ATen/ops/_linalg_det_ops.h' 2025-07-24T05:19:49.8065645Z adding 'torch/include/ATen/ops/_linalg_eigh.h' 2025-07-24T05:19:49.8068244Z adding 'torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:49.8071203Z adding 'torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h' 2025-07-24T05:19:49.8074312Z adding 'torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h' 2025-07-24T05:19:49.8077251Z adding 'torch/include/ATen/ops/_linalg_eigh_meta.h' 2025-07-24T05:19:49.8081742Z adding 'torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h' 2025-07-24T05:19:49.8083808Z adding 'torch/include/ATen/ops/_linalg_eigh_native.h' 2025-07-24T05:19:49.8087070Z adding 'torch/include/ATen/ops/_linalg_eigh_ops.h' 2025-07-24T05:19:49.8090174Z adding 'torch/include/ATen/ops/_linalg_eigvals.h' 2025-07-24T05:19:49.8093215Z adding 'torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h' 2025-07-24T05:19:49.8096242Z adding 'torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h' 2025-07-24T05:19:49.8099179Z adding 'torch/include/ATen/ops/_linalg_eigvals_native.h' 2025-07-24T05:19:49.8102274Z adding 'torch/include/ATen/ops/_linalg_eigvals_ops.h' 2025-07-24T05:19:49.8105397Z adding 'torch/include/ATen/ops/_linalg_slogdet.h' 2025-07-24T05:19:49.8108728Z adding 'torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:49.8112789Z adding 'torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h' 2025-07-24T05:19:49.8114988Z adding 'torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h' 2025-07-24T05:19:49.8118064Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta.h' 2025-07-24T05:19:49.8121190Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h' 2025-07-24T05:19:49.8124172Z adding 'torch/include/ATen/ops/_linalg_slogdet_native.h' 2025-07-24T05:19:49.8127476Z adding 'torch/include/ATen/ops/_linalg_slogdet_ops.h' 2025-07-24T05:19:49.8130634Z adding 'torch/include/ATen/ops/_linalg_solve_ex.h' 2025-07-24T05:19:49.8133964Z adding 'torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:49.8136904Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h' 2025-07-24T05:19:49.8139994Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h' 2025-07-24T05:19:49.8142998Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta.h' 2025-07-24T05:19:49.8146169Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h' 2025-07-24T05:19:49.8149121Z adding 'torch/include/ATen/ops/_linalg_solve_ex_native.h' 2025-07-24T05:19:49.8152367Z adding 'torch/include/ATen/ops/_linalg_solve_ex_ops.h' 2025-07-24T05:19:49.8155789Z adding 'torch/include/ATen/ops/_linalg_svd.h' 2025-07-24T05:19:49.8159290Z adding 'torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:49.8162240Z adding 'torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h' 2025-07-24T05:19:49.8165352Z adding 'torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h' 2025-07-24T05:19:49.8168468Z adding 'torch/include/ATen/ops/_linalg_svd_meta.h' 2025-07-24T05:19:49.8171634Z adding 'torch/include/ATen/ops/_linalg_svd_meta_dispatch.h' 2025-07-24T05:19:49.8174666Z adding 'torch/include/ATen/ops/_linalg_svd_native.h' 2025-07-24T05:19:49.8177963Z adding 'torch/include/ATen/ops/_linalg_svd_ops.h' 2025-07-24T05:19:49.8181017Z adding 'torch/include/ATen/ops/_local_scalar_dense.h' 2025-07-24T05:19:49.8184102Z adding 'torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h' 2025-07-24T05:19:49.8187131Z adding 'torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h' 2025-07-24T05:19:49.8190172Z adding 'torch/include/ATen/ops/_local_scalar_dense_native.h' 2025-07-24T05:19:49.8193422Z adding 'torch/include/ATen/ops/_local_scalar_dense_ops.h' 2025-07-24T05:19:49.8196436Z adding 'torch/include/ATen/ops/_log_softmax.h' 2025-07-24T05:19:49.8200058Z adding 'torch/include/ATen/ops/_log_softmax_backward_data.h' 2025-07-24T05:19:49.8203017Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:49.8205976Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h' 2025-07-24T05:19:49.8209057Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h' 2025-07-24T05:19:49.8212038Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta.h' 2025-07-24T05:19:49.8215123Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h' 2025-07-24T05:19:49.8218052Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_native.h' 2025-07-24T05:19:49.8221242Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_ops.h' 2025-07-24T05:19:49.8224575Z adding 'torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:49.8227460Z adding 'torch/include/ATen/ops/_log_softmax_cpu_dispatch.h' 2025-07-24T05:19:49.8230631Z adding 'torch/include/ATen/ops/_log_softmax_cuda_dispatch.h' 2025-07-24T05:19:49.8233537Z adding 'torch/include/ATen/ops/_log_softmax_meta.h' 2025-07-24T05:19:49.8236520Z adding 'torch/include/ATen/ops/_log_softmax_meta_dispatch.h' 2025-07-24T05:19:49.8239630Z adding 'torch/include/ATen/ops/_log_softmax_native.h' 2025-07-24T05:19:49.8242767Z adding 'torch/include/ATen/ops/_log_softmax_ops.h' 2025-07-24T05:19:49.8245842Z adding 'torch/include/ATen/ops/_logcumsumexp.h' 2025-07-24T05:19:49.8248987Z adding 'torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h' 2025-07-24T05:19:49.8252090Z adding 'torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h' 2025-07-24T05:19:49.8255042Z adding 'torch/include/ATen/ops/_logcumsumexp_native.h' 2025-07-24T05:19:49.8258169Z adding 'torch/include/ATen/ops/_logcumsumexp_ops.h' 2025-07-24T05:19:49.8261431Z adding 'torch/include/ATen/ops/_lstm_mps.h' 2025-07-24T05:19:49.8264792Z adding 'torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8267741Z adding 'torch/include/ATen/ops/_lstm_mps_native.h' 2025-07-24T05:19:49.8271115Z adding 'torch/include/ATen/ops/_lstm_mps_ops.h' 2025-07-24T05:19:49.8274242Z adding 'torch/include/ATen/ops/_lu_with_info.h' 2025-07-24T05:19:49.8277578Z adding 'torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.8280556Z adding 'torch/include/ATen/ops/_lu_with_info_native.h' 2025-07-24T05:19:49.8283598Z adding 'torch/include/ATen/ops/_lu_with_info_ops.h' 2025-07-24T05:19:49.8286714Z adding 'torch/include/ATen/ops/_make_dep_token.h' 2025-07-24T05:19:49.8289875Z adding 'torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h' 2025-07-24T05:19:49.8292826Z adding 'torch/include/ATen/ops/_make_dep_token_native.h' 2025-07-24T05:19:49.8295935Z adding 'torch/include/ATen/ops/_make_dep_token_ops.h' 2025-07-24T05:19:49.8298926Z adding 'torch/include/ATen/ops/_make_dual.h' 2025-07-24T05:19:49.8302139Z adding 'torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8305086Z adding 'torch/include/ATen/ops/_make_dual_copy.h' 2025-07-24T05:19:49.8308464Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8311559Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:49.8314245Z adding 'torch/include/ATen/ops/_make_dual_copy_native.h' 2025-07-24T05:19:49.8317430Z adding 'torch/include/ATen/ops/_make_dual_copy_ops.h' 2025-07-24T05:19:49.8320574Z adding 'torch/include/ATen/ops/_make_dual_native.h' 2025-07-24T05:19:49.8323710Z adding 'torch/include/ATen/ops/_make_dual_ops.h' 2025-07-24T05:19:49.8326924Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor.h' 2025-07-24T05:19:49.8330228Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8333285Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h' 2025-07-24T05:19:49.8336312Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h' 2025-07-24T05:19:49.8339311Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h' 2025-07-24T05:19:49.8342555Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h' 2025-07-24T05:19:49.8345852Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h' 2025-07-24T05:19:49.8349145Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8352216Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h' 2025-07-24T05:19:49.8355230Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h' 2025-07-24T05:19:49.8358235Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h' 2025-07-24T05:19:49.8361501Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h' 2025-07-24T05:19:49.8364587Z adding 'torch/include/ATen/ops/_masked_scale.h' 2025-07-24T05:19:49.8367836Z adding 'torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8370769Z adding 'torch/include/ATen/ops/_masked_scale_cuda_dispatch.h' 2025-07-24T05:19:49.8373725Z adding 'torch/include/ATen/ops/_masked_scale_native.h' 2025-07-24T05:19:49.8376901Z adding 'torch/include/ATen/ops/_masked_scale_ops.h' 2025-07-24T05:19:49.8380080Z adding 'torch/include/ATen/ops/_masked_softmax.h' 2025-07-24T05:19:49.8383269Z adding 'torch/include/ATen/ops/_masked_softmax_backward.h' 2025-07-24T05:19:49.8386479Z adding 'torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8389487Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h' 2025-07-24T05:19:49.8392513Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h' 2025-07-24T05:19:49.8395530Z adding 'torch/include/ATen/ops/_masked_softmax_backward_native.h' 2025-07-24T05:19:49.8398858Z adding 'torch/include/ATen/ops/_masked_softmax_backward_ops.h' 2025-07-24T05:19:49.8402089Z adding 'torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8405094Z adding 'torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h' 2025-07-24T05:19:49.8408143Z adding 'torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h' 2025-07-24T05:19:49.8411225Z adding 'torch/include/ATen/ops/_masked_softmax_native.h' 2025-07-24T05:19:49.8414422Z adding 'torch/include/ATen/ops/_masked_softmax_ops.h' 2025-07-24T05:19:49.8417510Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear.h' 2025-07-24T05:19:49.8420675Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h' 2025-07-24T05:19:49.8423615Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_native.h' 2025-07-24T05:19:49.8426785Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_ops.h' 2025-07-24T05:19:49.8429838Z adding 'torch/include/ATen/ops/_mkldnn_reshape.h' 2025-07-24T05:19:49.8433063Z adding 'torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8435996Z adding 'torch/include/ATen/ops/_mkldnn_reshape_native.h' 2025-07-24T05:19:49.8439323Z adding 'torch/include/ATen/ops/_mkldnn_reshape_ops.h' 2025-07-24T05:19:49.8442486Z adding 'torch/include/ATen/ops/_mkldnn_transpose.h' 2025-07-24T05:19:49.8446091Z adding 'torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8448856Z adding 'torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h' 2025-07-24T05:19:49.8452157Z adding 'torch/include/ATen/ops/_mkldnn_transpose_native.h' 2025-07-24T05:19:49.8455193Z adding 'torch/include/ATen/ops/_mkldnn_transpose_ops.h' 2025-07-24T05:19:49.8458969Z adding 'torch/include/ATen/ops/_mps_convolution.h' 2025-07-24T05:19:49.8463344Z adding 'torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8465875Z adding 'torch/include/ATen/ops/_mps_convolution_native.h' 2025-07-24T05:19:49.8469292Z adding 'torch/include/ATen/ops/_mps_convolution_ops.h' 2025-07-24T05:19:49.8472911Z adding 'torch/include/ATen/ops/_mps_convolution_transpose.h' 2025-07-24T05:19:49.8476662Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8480368Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_native.h' 2025-07-24T05:19:49.8483424Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_ops.h' 2025-07-24T05:19:49.8487063Z adding 'torch/include/ATen/ops/_native_batch_norm_legit.h' 2025-07-24T05:19:49.8490509Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8493808Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h' 2025-07-24T05:19:49.8497128Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h' 2025-07-24T05:19:49.8501726Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_native.h' 2025-07-24T05:19:49.8504787Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training.h' 2025-07-24T05:19:49.8508243Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8511347Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h' 2025-07-24T05:19:49.8514918Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h' 2025-07-24T05:19:49.8518551Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_ops.h' 2025-07-24T05:19:49.8522343Z adding 'torch/include/ATen/ops/_native_multi_head_attention.h' 2025-07-24T05:19:49.8525847Z adding 'torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8528990Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h' 2025-07-24T05:19:49.8532503Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h' 2025-07-24T05:19:49.8535498Z adding 'torch/include/ATen/ops/_native_multi_head_attention_native.h' 2025-07-24T05:19:49.8571108Z adding 'torch/include/ATen/ops/_native_multi_head_attention_ops.h' 2025-07-24T05:19:49.8571236Z adding 'torch/include/ATen/ops/_neg_view.h' 2025-07-24T05:19:49.8571496Z adding 'torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8571619Z adding 'torch/include/ATen/ops/_neg_view_copy.h' 2025-07-24T05:19:49.8571874Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8572193Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:49.8572348Z adding 'torch/include/ATen/ops/_neg_view_copy_native.h' 2025-07-24T05:19:49.8572559Z adding 'torch/include/ATen/ops/_neg_view_copy_ops.h' 2025-07-24T05:19:49.8572679Z adding 'torch/include/ATen/ops/_neg_view_native.h' 2025-07-24T05:19:49.8572804Z adding 'torch/include/ATen/ops/_neg_view_ops.h' 2025-07-24T05:19:49.8574155Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h' 2025-07-24T05:19:49.8577590Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h' 2025-07-24T05:19:49.8580726Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h' 2025-07-24T05:19:49.8583821Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h' 2025-07-24T05:19:49.8586898Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h' 2025-07-24T05:19:49.8590179Z adding 'torch/include/ATen/ops/_nested_from_padded.h' 2025-07-24T05:19:49.8593388Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example.h' 2025-07-24T05:19:49.8596881Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8600020Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h' 2025-07-24T05:19:49.8603259Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h' 2025-07-24T05:19:49.8606494Z adding 'torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8609546Z adding 'torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h' 2025-07-24T05:19:49.8612622Z adding 'torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h' 2025-07-24T05:19:49.8615691Z adding 'torch/include/ATen/ops/_nested_from_padded_native.h' 2025-07-24T05:19:49.8618836Z adding 'torch/include/ATen/ops/_nested_from_padded_ops.h' 2025-07-24T05:19:49.8622281Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor.h' 2025-07-24T05:19:49.8625285Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_native.h' 2025-07-24T05:19:49.8628483Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_ops.h' 2025-07-24T05:19:49.8631554Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy.h' 2025-07-24T05:19:49.8634549Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_native.h' 2025-07-24T05:19:49.8637466Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h' 2025-07-24T05:19:49.8640565Z adding 'torch/include/ATen/ops/_nested_get_lengths.h' 2025-07-24T05:19:49.8643478Z adding 'torch/include/ATen/ops/_nested_get_lengths_native.h' 2025-07-24T05:19:49.8646607Z adding 'torch/include/ATen/ops/_nested_get_lengths_ops.h' 2025-07-24T05:19:49.8649609Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen.h' 2025-07-24T05:19:49.8652858Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_native.h' 2025-07-24T05:19:49.8655695Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_ops.h' 2025-07-24T05:19:49.8658670Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen.h' 2025-07-24T05:19:49.8661597Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_native.h' 2025-07-24T05:19:49.8664730Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_ops.h' 2025-07-24T05:19:49.8667728Z adding 'torch/include/ATen/ops/_nested_get_offsets.h' 2025-07-24T05:19:49.8670578Z adding 'torch/include/ATen/ops/_nested_get_offsets_native.h' 2025-07-24T05:19:49.8673596Z adding 'torch/include/ATen/ops/_nested_get_offsets_ops.h' 2025-07-24T05:19:49.8676573Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx.h' 2025-07-24T05:19:49.8679624Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_native.h' 2025-07-24T05:19:49.8682708Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_ops.h' 2025-07-24T05:19:49.8685680Z adding 'torch/include/ATen/ops/_nested_get_values.h' 2025-07-24T05:19:49.8688773Z adding 'torch/include/ATen/ops/_nested_get_values_copy.h' 2025-07-24T05:19:49.8692003Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8695440Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:49.8698235Z adding 'torch/include/ATen/ops/_nested_get_values_copy_native.h' 2025-07-24T05:19:49.8701299Z adding 'torch/include/ATen/ops/_nested_get_values_copy_ops.h' 2025-07-24T05:19:49.8704196Z adding 'torch/include/ATen/ops/_nested_get_values_native.h' 2025-07-24T05:19:49.8707500Z adding 'torch/include/ATen/ops/_nested_get_values_ops.h' 2025-07-24T05:19:49.8710854Z adding 'torch/include/ATen/ops/_nested_select_backward.h' 2025-07-24T05:19:49.8713903Z adding 'torch/include/ATen/ops/_nested_select_backward_native.h' 2025-07-24T05:19:49.8717038Z adding 'torch/include/ATen/ops/_nested_select_backward_ops.h' 2025-07-24T05:19:49.8720199Z adding 'torch/include/ATen/ops/_nested_sum_backward.h' 2025-07-24T05:19:49.8723307Z adding 'torch/include/ATen/ops/_nested_sum_backward_native.h' 2025-07-24T05:19:49.8726418Z adding 'torch/include/ATen/ops/_nested_sum_backward_ops.h' 2025-07-24T05:19:49.8729442Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask.h' 2025-07-24T05:19:49.8732695Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8735682Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h' 2025-07-24T05:19:49.8738954Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h' 2025-07-24T05:19:49.8741948Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h' 2025-07-24T05:19:49.8745055Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h' 2025-07-24T05:19:49.8748035Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h' 2025-07-24T05:19:49.8751015Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h' 2025-07-24T05:19:49.8754071Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h' 2025-07-24T05:19:49.8756980Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_native.h' 2025-07-24T05:19:49.8760289Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_ops.h' 2025-07-24T05:19:49.8763529Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list.h' 2025-07-24T05:19:49.8766922Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8769737Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h' 2025-07-24T05:19:49.8772964Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h' 2025-07-24T05:19:49.8775977Z adding 'torch/include/ATen/ops/_nested_tensor_size.h' 2025-07-24T05:19:49.8779174Z adding 'torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8781976Z adding 'torch/include/ATen/ops/_nested_tensor_size_native.h' 2025-07-24T05:19:49.8785118Z adding 'torch/include/ATen/ops/_nested_tensor_size_ops.h' 2025-07-24T05:19:49.8788252Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h' 2025-07-24T05:19:49.8791250Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h' 2025-07-24T05:19:49.8794326Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h' 2025-07-24T05:19:49.8797354Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets.h' 2025-07-24T05:19:49.8800707Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8803561Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h' 2025-07-24T05:19:49.8806713Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h' 2025-07-24T05:19:49.8812656Z adding 'torch/include/ATen/ops/_nested_tensor_strides.h' 2025-07-24T05:19:49.8813497Z adding 'torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8816513Z adding 'torch/include/ATen/ops/_nested_tensor_strides_native.h' 2025-07-24T05:19:49.8856710Z adding 'torch/include/ATen/ops/_nested_tensor_strides_ops.h' 2025-07-24T05:19:49.8856956Z adding 'torch/include/ATen/ops/_nested_view_from_buffer.h' 2025-07-24T05:19:49.8857145Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy.h' 2025-07-24T05:19:49.8857517Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8857897Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:49.8858114Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h' 2025-07-24T05:19:49.8858301Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h' 2025-07-24T05:19:49.8858499Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h' 2025-07-24T05:19:49.8858701Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h' 2025-07-24T05:19:49.8858885Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_native.h' 2025-07-24T05:19:49.8859047Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_ops.h' 2025-07-24T05:19:49.8859197Z adding 'torch/include/ATen/ops/_nested_view_from_jagged.h' 2025-07-24T05:19:49.8862594Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy.h' 2025-07-24T05:19:49.8865608Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8869060Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:49.8872009Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h' 2025-07-24T05:19:49.8875357Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h' 2025-07-24T05:19:49.8878485Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_native.h' 2025-07-24T05:19:49.8881833Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_ops.h' 2025-07-24T05:19:49.8885517Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h' 2025-07-24T05:19:49.8898306Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8898647Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h' 2025-07-24T05:19:49.8898991Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h' 2025-07-24T05:19:49.8899132Z adding 'torch/include/ATen/ops/_nnpack_available.h' 2025-07-24T05:19:49.8901345Z adding 'torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.8904094Z adding 'torch/include/ATen/ops/_nnpack_available_native.h' 2025-07-24T05:19:49.8907121Z adding 'torch/include/ATen/ops/_nnpack_available_ops.h' 2025-07-24T05:19:49.8910735Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution.h' 2025-07-24T05:19:49.8914248Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8917218Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_native.h' 2025-07-24T05:19:49.8920800Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h' 2025-07-24T05:19:49.8923682Z adding 'torch/include/ATen/ops/_nnz.h' 2025-07-24T05:19:49.8926560Z adding 'torch/include/ATen/ops/_nnz_native.h' 2025-07-24T05:19:49.8929588Z adding 'torch/include/ATen/ops/_nnz_ops.h' 2025-07-24T05:19:49.8932755Z adding 'torch/include/ATen/ops/_pack_padded_sequence.h' 2025-07-24T05:19:49.8935921Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward.h' 2025-07-24T05:19:49.8939219Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.8942093Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_native.h' 2025-07-24T05:19:49.8945394Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h' 2025-07-24T05:19:49.8949010Z adding 'torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.8952109Z adding 'torch/include/ATen/ops/_pack_padded_sequence_native.h' 2025-07-24T05:19:49.8955146Z adding 'torch/include/ATen/ops/_pack_padded_sequence_ops.h' 2025-07-24T05:19:49.8958402Z adding 'torch/include/ATen/ops/_pad_circular.h' 2025-07-24T05:19:49.8961642Z adding 'torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.8964483Z adding 'torch/include/ATen/ops/_pad_circular_native.h' 2025-07-24T05:19:49.8967544Z adding 'torch/include/ATen/ops/_pad_circular_ops.h' 2025-07-24T05:19:49.8970665Z adding 'torch/include/ATen/ops/_pad_enum.h' 2025-07-24T05:19:49.8973932Z adding 'torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.8976828Z adding 'torch/include/ATen/ops/_pad_enum_native.h' 2025-07-24T05:19:49.8979953Z adding 'torch/include/ATen/ops/_pad_enum_ops.h' 2025-07-24T05:19:49.8983068Z adding 'torch/include/ATen/ops/_pad_packed_sequence.h' 2025-07-24T05:19:49.8986457Z adding 'torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.8989355Z adding 'torch/include/ATen/ops/_pad_packed_sequence_native.h' 2025-07-24T05:19:49.8992463Z adding 'torch/include/ATen/ops/_pad_packed_sequence_ops.h' 2025-07-24T05:19:49.8995713Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward.h' 2025-07-24T05:19:49.8999051Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h' 2025-07-24T05:19:49.9002239Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h' 2025-07-24T05:19:49.9005223Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h' 2025-07-24T05:19:49.9008502Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h' 2025-07-24T05:19:49.9011646Z adding 'torch/include/ATen/ops/_pdist_backward.h' 2025-07-24T05:19:49.9014972Z adding 'torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9018078Z adding 'torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h' 2025-07-24T05:19:49.9021145Z adding 'torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h' 2025-07-24T05:19:49.9024232Z adding 'torch/include/ATen/ops/_pdist_backward_native.h' 2025-07-24T05:19:49.9027425Z adding 'torch/include/ATen/ops/_pdist_backward_ops.h' 2025-07-24T05:19:49.9030714Z adding 'torch/include/ATen/ops/_pdist_forward.h' 2025-07-24T05:19:49.9033968Z adding 'torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9037122Z adding 'torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h' 2025-07-24T05:19:49.9040295Z adding 'torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h' 2025-07-24T05:19:49.9043541Z adding 'torch/include/ATen/ops/_pdist_forward_native.h' 2025-07-24T05:19:49.9046723Z adding 'torch/include/ATen/ops/_pdist_forward_ops.h' 2025-07-24T05:19:49.9050106Z adding 'torch/include/ATen/ops/_pin_memory.h' 2025-07-24T05:19:49.9053389Z adding 'torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9056510Z adding 'torch/include/ATen/ops/_pin_memory_native.h' 2025-07-24T05:19:49.9060130Z adding 'torch/include/ATen/ops/_pin_memory_ops.h' 2025-07-24T05:19:49.9063654Z adding 'torch/include/ATen/ops/_prelu_kernel.h' 2025-07-24T05:19:49.9067140Z adding 'torch/include/ATen/ops/_prelu_kernel_backward.h' 2025-07-24T05:19:49.9070752Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h' 2025-07-24T05:19:49.9074258Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h' 2025-07-24T05:19:49.9077678Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_native.h' 2025-07-24T05:19:49.9081491Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_ops.h' 2025-07-24T05:19:49.9085060Z adding 'torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h' 2025-07-24T05:19:49.9088631Z adding 'torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h' 2025-07-24T05:19:49.9092020Z adding 'torch/include/ATen/ops/_prelu_kernel_native.h' 2025-07-24T05:19:49.9095449Z adding 'torch/include/ATen/ops/_prelu_kernel_ops.h' 2025-07-24T05:19:49.9098442Z adding 'torch/include/ATen/ops/_print.h' 2025-07-24T05:19:49.9101815Z adding 'torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9104661Z adding 'torch/include/ATen/ops/_print_native.h' 2025-07-24T05:19:49.9107882Z adding 'torch/include/ATen/ops/_print_ops.h' 2025-07-24T05:19:49.9110931Z adding 'torch/include/ATen/ops/_propagate_xla_data.h' 2025-07-24T05:19:49.9114389Z adding 'torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.9117259Z adding 'torch/include/ATen/ops/_propagate_xla_data_native.h' 2025-07-24T05:19:49.9120664Z adding 'torch/include/ATen/ops/_propagate_xla_data_ops.h' 2025-07-24T05:19:49.9123853Z adding 'torch/include/ATen/ops/_remove_batch_dim.h' 2025-07-24T05:19:49.9127122Z adding 'torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.9130174Z adding 'torch/include/ATen/ops/_remove_batch_dim_native.h' 2025-07-24T05:19:49.9133491Z adding 'torch/include/ATen/ops/_remove_batch_dim_ops.h' 2025-07-24T05:19:49.9136601Z adding 'torch/include/ATen/ops/_reshape_alias.h' 2025-07-24T05:19:49.9139834Z adding 'torch/include/ATen/ops/_reshape_alias_copy.h' 2025-07-24T05:19:49.9143277Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9146710Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:49.9149485Z adding 'torch/include/ATen/ops/_reshape_alias_copy_native.h' 2025-07-24T05:19:49.9152656Z adding 'torch/include/ATen/ops/_reshape_alias_copy_ops.h' 2025-07-24T05:19:49.9155744Z adding 'torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h' 2025-07-24T05:19:49.9158884Z adding 'torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h' 2025-07-24T05:19:49.9161920Z adding 'torch/include/ATen/ops/_reshape_alias_meta_dispatch.h' 2025-07-24T05:19:49.9164817Z adding 'torch/include/ATen/ops/_reshape_alias_native.h' 2025-07-24T05:19:49.9167934Z adding 'torch/include/ATen/ops/_reshape_alias_ops.h' 2025-07-24T05:19:49.9171127Z adding 'torch/include/ATen/ops/_reshape_copy.h' 2025-07-24T05:19:49.9174337Z adding 'torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9177304Z adding 'torch/include/ATen/ops/_reshape_copy_native.h' 2025-07-24T05:19:49.9180321Z adding 'torch/include/ATen/ops/_reshape_copy_ops.h' 2025-07-24T05:19:49.9183323Z adding 'torch/include/ATen/ops/_reshape_from_tensor.h' 2025-07-24T05:19:49.9186570Z adding 'torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.9189402Z adding 'torch/include/ATen/ops/_reshape_from_tensor_native.h' 2025-07-24T05:19:49.9192462Z adding 'torch/include/ATen/ops/_reshape_from_tensor_ops.h' 2025-07-24T05:19:49.9195844Z adding 'torch/include/ATen/ops/_resize_output.h' 2025-07-24T05:19:49.9199459Z adding 'torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9202519Z adding 'torch/include/ATen/ops/_resize_output_meta_dispatch.h' 2025-07-24T05:19:49.9205520Z adding 'torch/include/ATen/ops/_resize_output_native.h' 2025-07-24T05:19:49.9208733Z adding 'torch/include/ATen/ops/_resize_output_ops.h' 2025-07-24T05:19:49.9211841Z adding 'torch/include/ATen/ops/_rowwise_prune.h' 2025-07-24T05:19:49.9215036Z adding 'torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.9217868Z adding 'torch/include/ATen/ops/_rowwise_prune_native.h' 2025-07-24T05:19:49.9220965Z adding 'torch/include/ATen/ops/_rowwise_prune_ops.h' 2025-07-24T05:19:49.9223991Z adding 'torch/include/ATen/ops/_safe_softmax.h' 2025-07-24T05:19:49.9227215Z adding 'torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9230026Z adding 'torch/include/ATen/ops/_safe_softmax_native.h' 2025-07-24T05:19:49.9233120Z adding 'torch/include/ATen/ops/_safe_softmax_ops.h' 2025-07-24T05:19:49.9278979Z adding 'torch/include/ATen/ops/_sample_dirichlet.h' 2025-07-24T05:19:49.9282364Z adding 'torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9285426Z adding 'torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h' 2025-07-24T05:19:49.9288613Z adding 'torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h' 2025-07-24T05:19:49.9291592Z adding 'torch/include/ATen/ops/_sample_dirichlet_native.h' 2025-07-24T05:19:49.9294762Z adding 'torch/include/ATen/ops/_sample_dirichlet_ops.h' 2025-07-24T05:19:49.9297833Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16.h' 2025-07-24T05:19:49.9301065Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.9303905Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_native.h' 2025-07-24T05:19:49.9306941Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h' 2025-07-24T05:19:49.9310122Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math.h' 2025-07-24T05:19:49.9313482Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.9316512Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h' 2025-07-24T05:19:49.9319916Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h' 2025-07-24T05:19:49.9323183Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h' 2025-07-24T05:19:49.9326168Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h' 2025-07-24T05:19:49.9329370Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h' 2025-07-24T05:19:49.9332702Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h' 2025-07-24T05:19:49.9336136Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h' 2025-07-24T05:19:49.9339513Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h' 2025-07-24T05:19:49.9342567Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h' 2025-07-24T05:19:49.9345836Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h' 2025-07-24T05:19:49.9349066Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h' 2025-07-24T05:19:49.9352078Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h' 2025-07-24T05:19:49.9355529Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h' 2025-07-24T05:19:49.9358863Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h' 2025-07-24T05:19:49.9362090Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h' 2025-07-24T05:19:49.9365320Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h' 2025-07-24T05:19:49.9368370Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h' 2025-07-24T05:19:49.9371697Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h' 2025-07-24T05:19:49.9374868Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h' 2025-07-24T05:19:49.9377929Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h' 2025-07-24T05:19:49.9381112Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h' 2025-07-24T05:19:49.9384269Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention.h' 2025-07-24T05:19:49.9387635Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h' 2025-07-24T05:19:49.9391013Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h' 2025-07-24T05:19:49.9394317Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h' 2025-07-24T05:19:49.9397482Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h' 2025-07-24T05:19:49.9400715Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h' 2025-07-24T05:19:49.9403799Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h' 2025-07-24T05:19:49.9406973Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h' 2025-07-24T05:19:49.9410156Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h' 2025-07-24T05:19:49.9413169Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h' 2025-07-24T05:19:49.9416383Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h' 2025-07-24T05:19:49.9419515Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h' 2025-07-24T05:19:49.9422515Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h' 2025-07-24T05:19:49.9425682Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h' 2025-07-24T05:19:49.9428730Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h' 2025-07-24T05:19:49.9431960Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h' 2025-07-24T05:19:49.9435197Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h' 2025-07-24T05:19:49.9438854Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h' 2025-07-24T05:19:49.9442445Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9445384Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h' 2025-07-24T05:19:49.9448648Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h' 2025-07-24T05:19:49.9452032Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9454992Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h' 2025-07-24T05:19:49.9458384Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h' 2025-07-24T05:19:49.9461915Z adding 'torch/include/ATen/ops/_scaled_grouped_mm.h' 2025-07-24T05:19:49.9464893Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h' 2025-07-24T05:19:49.9467928Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_native.h' 2025-07-24T05:19:49.9471143Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_ops.h' 2025-07-24T05:19:49.9474524Z adding 'torch/include/ATen/ops/_scaled_mm.h' 2025-07-24T05:19:49.9477913Z adding 'torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h' 2025-07-24T05:19:49.9481234Z adding 'torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h' 2025-07-24T05:19:49.9484371Z adding 'torch/include/ATen/ops/_scaled_mm_native.h' 2025-07-24T05:19:49.9487707Z adding 'torch/include/ATen/ops/_scaled_mm_ops.h' 2025-07-24T05:19:49.9491147Z adding 'torch/include/ATen/ops/_segment_reduce_backward.h' 2025-07-24T05:19:49.9494542Z adding 'torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9497748Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h' 2025-07-24T05:19:49.9500843Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h' 2025-07-24T05:19:49.9504060Z adding 'torch/include/ATen/ops/_segment_reduce_backward_native.h' 2025-07-24T05:19:49.9507706Z adding 'torch/include/ATen/ops/_segment_reduce_backward_ops.h' 2025-07-24T05:19:49.9510479Z adding 'torch/include/ATen/ops/_shape_as_tensor.h' 2025-07-24T05:19:49.9513825Z adding 'torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.9516975Z adding 'torch/include/ATen/ops/_shape_as_tensor_native.h' 2025-07-24T05:19:49.9520380Z adding 'torch/include/ATen/ops/_shape_as_tensor_ops.h' 2025-07-24T05:19:49.9524824Z adding 'torch/include/ATen/ops/_slow_conv2d_backward.h' 2025-07-24T05:19:49.9528242Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9531521Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h' 2025-07-24T05:19:49.9534799Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h' 2025-07-24T05:19:49.9538140Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_native.h' 2025-07-24T05:19:49.9541984Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_ops.h' 2025-07-24T05:19:49.9545309Z adding 'torch/include/ATen/ops/_slow_conv2d_forward.h' 2025-07-24T05:19:49.9568939Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h' 2025-07-24T05:19:49.9569154Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h' 2025-07-24T05:19:49.9569314Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_native.h' 2025-07-24T05:19:49.9569469Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_ops.h' 2025-07-24T05:19:49.9569598Z adding 'torch/include/ATen/ops/_sobol_engine_draw.h' 2025-07-24T05:19:49.9569874Z adding 'torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.9570452Z adding 'torch/include/ATen/ops/_sobol_engine_draw_native.h' 2025-07-24T05:19:49.9580283Z adding 'torch/include/ATen/ops/_sobol_engine_draw_ops.h' 2025-07-24T05:19:49.9580484Z adding 'torch/include/ATen/ops/_sobol_engine_ff.h' 2025-07-24T05:19:49.9580813Z adding 'torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.9583873Z adding 'torch/include/ATen/ops/_sobol_engine_ff_native.h' 2025-07-24T05:19:49.9587236Z adding 'torch/include/ATen/ops/_sobol_engine_ff_ops.h' 2025-07-24T05:19:49.9590472Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state.h' 2025-07-24T05:19:49.9593884Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.9596679Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_native.h' 2025-07-24T05:19:49.9600094Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h' 2025-07-24T05:19:49.9604414Z adding 'torch/include/ATen/ops/_sobol_engine_scramble.h' 2025-07-24T05:19:49.9606539Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.9609479Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_native.h' 2025-07-24T05:19:49.9612527Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_ops.h' 2025-07-24T05:19:49.9615751Z adding 'torch/include/ATen/ops/_softmax.h' 2025-07-24T05:19:49.9618953Z adding 'torch/include/ATen/ops/_softmax_backward_data.h' 2025-07-24T05:19:49.9622388Z adding 'torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:49.9625324Z adding 'torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h' 2025-07-24T05:19:49.9628430Z adding 'torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h' 2025-07-24T05:19:49.9631576Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta.h' 2025-07-24T05:19:49.9634730Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h' 2025-07-24T05:19:49.9637844Z adding 'torch/include/ATen/ops/_softmax_backward_data_native.h' 2025-07-24T05:19:49.9641115Z adding 'torch/include/ATen/ops/_softmax_backward_data_ops.h' 2025-07-24T05:19:49.9644374Z adding 'torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:49.9647278Z adding 'torch/include/ATen/ops/_softmax_cpu_dispatch.h' 2025-07-24T05:19:49.9650328Z adding 'torch/include/ATen/ops/_softmax_cuda_dispatch.h' 2025-07-24T05:19:49.9653264Z adding 'torch/include/ATen/ops/_softmax_meta.h' 2025-07-24T05:19:49.9656322Z adding 'torch/include/ATen/ops/_softmax_meta_dispatch.h' 2025-07-24T05:19:49.9659280Z adding 'torch/include/ATen/ops/_softmax_native.h' 2025-07-24T05:19:49.9662588Z adding 'torch/include/ATen/ops/_softmax_ops.h' 2025-07-24T05:19:49.9665750Z adding 'torch/include/ATen/ops/_sparse_addmm.h' 2025-07-24T05:19:49.9668996Z adding 'torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9671891Z adding 'torch/include/ATen/ops/_sparse_addmm_native.h' 2025-07-24T05:19:49.9675070Z adding 'torch/include/ATen/ops/_sparse_addmm_ops.h' 2025-07-24T05:19:49.9678258Z adding 'torch/include/ATen/ops/_sparse_broadcast_to.h' 2025-07-24T05:19:49.9681348Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy.h' 2025-07-24T05:19:49.9684600Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9687785Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:49.9690606Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h' 2025-07-24T05:19:49.9693772Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h' 2025-07-24T05:19:49.9696763Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_native.h' 2025-07-24T05:19:49.9700197Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_ops.h' 2025-07-24T05:19:49.9703497Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h' 2025-07-24T05:19:49.9706824Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.9709796Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h' 2025-07-24T05:19:49.9713055Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h' 2025-07-24T05:19:49.9716191Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h' 2025-07-24T05:19:49.9719589Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.9722481Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h' 2025-07-24T05:19:49.9725666Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h' 2025-07-24T05:19:49.9729108Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h' 2025-07-24T05:19:49.9732617Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.9735570Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h' 2025-07-24T05:19:49.9738743Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h' 2025-07-24T05:19:49.9742006Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h' 2025-07-24T05:19:49.9745260Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9748187Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h' 2025-07-24T05:19:49.9751371Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h' 2025-07-24T05:19:49.9754799Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h' 2025-07-24T05:19:49.9758358Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.9761311Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h' 2025-07-24T05:19:49.9764547Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h' 2025-07-24T05:19:49.9767791Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h' 2025-07-24T05:19:49.9771622Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h' 2025-07-24T05:19:49.9775239Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9778373Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h' 2025-07-24T05:19:49.9781454Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h' 2025-07-24T05:19:49.9784779Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h' 2025-07-24T05:19:49.9788007Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9791046Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h' 2025-07-24T05:19:49.9794076Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h' 2025-07-24T05:19:49.9797324Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h' 2025-07-24T05:19:49.9800656Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h' 2025-07-24T05:19:49.9804002Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.9806855Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h' 2025-07-24T05:19:49.9810035Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h' 2025-07-24T05:19:49.9813203Z adding 'torch/include/ATen/ops/_sparse_csr_prod.h' 2025-07-24T05:19:49.9816488Z adding 'torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9819402Z adding 'torch/include/ATen/ops/_sparse_csr_prod_native.h' 2025-07-24T05:19:49.9822726Z adding 'torch/include/ATen/ops/_sparse_csr_prod_ops.h' 2025-07-24T05:19:49.9825859Z adding 'torch/include/ATen/ops/_sparse_csr_sum.h' 2025-07-24T05:19:49.9829044Z adding 'torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9831927Z adding 'torch/include/ATen/ops/_sparse_csr_sum_native.h' 2025-07-24T05:19:49.9835120Z adding 'torch/include/ATen/ops/_sparse_csr_sum_ops.h' 2025-07-24T05:19:49.9838534Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h' 2025-07-24T05:19:49.9841821Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.9844697Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h' 2025-07-24T05:19:49.9847835Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h' 2025-07-24T05:19:49.9850951Z adding 'torch/include/ATen/ops/_sparse_log_softmax.h' 2025-07-24T05:19:49.9854060Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data.h' 2025-07-24T05:19:49.9857284Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9860353Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h' 2025-07-24T05:19:49.9863504Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h' 2025-07-24T05:19:49.9866897Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9869941Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.9872938Z adding 'torch/include/ATen/ops/_sparse_log_softmax_native.h' 2025-07-24T05:19:49.9876591Z adding 'torch/include/ATen/ops/_sparse_log_softmax_ops.h' 2025-07-24T05:19:49.9879617Z adding 'torch/include/ATen/ops/_sparse_mask_projection.h' 2025-07-24T05:19:49.9883120Z adding 'torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:49.9886274Z adding 'torch/include/ATen/ops/_sparse_mask_projection_native.h' 2025-07-24T05:19:49.9889631Z adding 'torch/include/ATen/ops/_sparse_mask_projection_ops.h' 2025-07-24T05:19:49.9892613Z adding 'torch/include/ATen/ops/_sparse_mm.h' 2025-07-24T05:19:49.9895969Z adding 'torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:49.9899015Z adding 'torch/include/ATen/ops/_sparse_mm_native.h' 2025-07-24T05:19:49.9901994Z adding 'torch/include/ATen/ops/_sparse_mm_ops.h' 2025-07-24T05:19:49.9905137Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl.h' 2025-07-24T05:19:49.9908307Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h' 2025-07-24T05:19:49.9911477Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h' 2025-07-24T05:19:49.9914566Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h' 2025-07-24T05:19:49.9917587Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h' 2025-07-24T05:19:49.9920818Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h' 2025-07-24T05:19:49.9924014Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm.h' 2025-07-24T05:19:49.9927133Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h' 2025-07-24T05:19:49.9930264Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h' 2025-07-24T05:19:49.9933395Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h' 2025-07-24T05:19:49.9936542Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply.h' 2025-07-24T05:19:49.9940094Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h' 2025-07-24T05:19:49.9942768Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h' 2025-07-24T05:19:49.9946259Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h' 2025-07-24T05:19:49.9948869Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h' 2025-07-24T05:19:49.9952065Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h' 2025-07-24T05:19:49.9955027Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_native.h' 2025-07-24T05:19:49.9958335Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h' 2025-07-24T05:19:49.9961422Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear.h' 2025-07-24T05:19:49.9964692Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h' 2025-07-24T05:19:49.9967730Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_native.h' 2025-07-24T05:19:49.9971051Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h' 2025-07-24T05:19:49.9974338Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm.h' 2025-07-24T05:19:49.9977408Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h' 2025-07-24T05:19:49.9980551Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_native.h' 2025-07-24T05:19:49.9983706Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h' 2025-07-24T05:19:49.9986894Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile.h' 2025-07-24T05:19:49.9990069Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h' 2025-07-24T05:19:49.9993188Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_native.h' 2025-07-24T05:19:49.9996337Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h' 2025-07-24T05:19:49.9999808Z adding 'torch/include/ATen/ops/_sparse_softmax.h' 2025-07-24T05:19:50.0003359Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data.h' 2025-07-24T05:19:50.0006412Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0009472Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_native.h' 2025-07-24T05:19:50.0012665Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h' 2025-07-24T05:19:50.0016652Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0020204Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.0022980Z adding 'torch/include/ATen/ops/_sparse_softmax_native.h' 2025-07-24T05:19:50.0026376Z adding 'torch/include/ATen/ops/_sparse_softmax_ops.h' 2025-07-24T05:19:50.0029578Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul.h' 2025-07-24T05:19:50.0032992Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0035886Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_native.h' 2025-07-24T05:19:50.0039276Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_ops.h' 2025-07-24T05:19:50.0042506Z adding 'torch/include/ATen/ops/_sparse_sum.h' 2025-07-24T05:19:50.0045812Z adding 'torch/include/ATen/ops/_sparse_sum_backward.h' 2025-07-24T05:19:50.0068970Z adding 'torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0069153Z adding 'torch/include/ATen/ops/_sparse_sum_backward_native.h' 2025-07-24T05:19:50.0069302Z adding 'torch/include/ATen/ops/_sparse_sum_backward_ops.h' 2025-07-24T05:19:50.0069551Z adding 'torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0069855Z adding 'torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.0069984Z adding 'torch/include/ATen/ops/_sparse_sum_native.h' 2025-07-24T05:19:50.0070779Z adding 'torch/include/ATen/ops/_sparse_sum_ops.h' 2025-07-24T05:19:50.0074798Z adding 'torch/include/ATen/ops/_spdiags.h' 2025-07-24T05:19:50.0077732Z adding 'torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0080986Z adding 'torch/include/ATen/ops/_spdiags_cpu_dispatch.h' 2025-07-24T05:19:50.0083997Z adding 'torch/include/ATen/ops/_spdiags_native.h' 2025-07-24T05:19:50.0087389Z adding 'torch/include/ATen/ops/_spdiags_ops.h' 2025-07-24T05:19:50.0090469Z adding 'torch/include/ATen/ops/_spsolve.h' 2025-07-24T05:19:50.0093623Z adding 'torch/include/ATen/ops/_spsolve_native.h' 2025-07-24T05:19:50.0096726Z adding 'torch/include/ATen/ops/_spsolve_ops.h' 2025-07-24T05:19:50.0099771Z adding 'torch/include/ATen/ops/_stack.h' 2025-07-24T05:19:50.0104044Z adding 'torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0106252Z adding 'torch/include/ATen/ops/_stack_cpu_dispatch.h' 2025-07-24T05:19:50.0109226Z adding 'torch/include/ATen/ops/_stack_native.h' 2025-07-24T05:19:50.0112412Z adding 'torch/include/ATen/ops/_stack_ops.h' 2025-07-24T05:19:50.0115483Z adding 'torch/include/ATen/ops/_standard_gamma.h' 2025-07-24T05:19:50.0120122Z adding 'torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0122086Z adding 'torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h' 2025-07-24T05:19:50.0125131Z adding 'torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h' 2025-07-24T05:19:50.0128167Z adding 'torch/include/ATen/ops/_standard_gamma_grad.h' 2025-07-24T05:19:50.0131444Z adding 'torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0134374Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h' 2025-07-24T05:19:50.0137419Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h' 2025-07-24T05:19:50.0140363Z adding 'torch/include/ATen/ops/_standard_gamma_grad_native.h' 2025-07-24T05:19:50.0143538Z adding 'torch/include/ATen/ops/_standard_gamma_grad_ops.h' 2025-07-24T05:19:50.0146551Z adding 'torch/include/ATen/ops/_standard_gamma_native.h' 2025-07-24T05:19:50.0150672Z adding 'torch/include/ATen/ops/_standard_gamma_ops.h' 2025-07-24T05:19:50.0152996Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults.h' 2025-07-24T05:19:50.0156302Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.0168300Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_native.h' 2025-07-24T05:19:50.0168489Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_ops.h' 2025-07-24T05:19:50.0168680Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch.h' 2025-07-24T05:19:50.0171670Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0174559Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.0177453Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h' 2025-07-24T05:19:50.0180649Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h' 2025-07-24T05:19:50.0183729Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h' 2025-07-24T05:19:50.0187087Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0190035Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h' 2025-07-24T05:19:50.0193328Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0196502Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.0199436Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h' 2025-07-24T05:19:50.0202584Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h' 2025-07-24T05:19:50.0206245Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h' 2025-07-24T05:19:50.0208866Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h' 2025-07-24T05:19:50.0211822Z adding 'torch/include/ATen/ops/_test_check_tensor.h' 2025-07-24T05:19:50.0215234Z adding 'torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.0217995Z adding 'torch/include/ATen/ops/_test_check_tensor_native.h' 2025-07-24T05:19:50.0221042Z adding 'torch/include/ATen/ops/_test_check_tensor_ops.h' 2025-07-24T05:19:50.0224134Z adding 'torch/include/ATen/ops/_test_functorch_fallback.h' 2025-07-24T05:19:50.0227367Z adding 'torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0230310Z adding 'torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h' 2025-07-24T05:19:50.0233263Z adding 'torch/include/ATen/ops/_test_functorch_fallback_native.h' 2025-07-24T05:19:50.0236515Z adding 'torch/include/ATen/ops/_test_functorch_fallback_ops.h' 2025-07-24T05:19:50.0239753Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist.h' 2025-07-24T05:19:50.0243032Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0245980Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h' 2025-07-24T05:19:50.0248966Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_native.h' 2025-07-24T05:19:50.0252112Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_ops.h' 2025-07-24T05:19:50.0255258Z adding 'torch/include/ATen/ops/_test_optional_floatlist.h' 2025-07-24T05:19:50.0258814Z adding 'torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0261815Z adding 'torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h' 2025-07-24T05:19:50.0264830Z adding 'torch/include/ATen/ops/_test_optional_floatlist_native.h' 2025-07-24T05:19:50.0267954Z adding 'torch/include/ATen/ops/_test_optional_floatlist_ops.h' 2025-07-24T05:19:50.0271054Z adding 'torch/include/ATen/ops/_test_optional_intlist.h' 2025-07-24T05:19:50.0274406Z adding 'torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0277384Z adding 'torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h' 2025-07-24T05:19:50.0280450Z adding 'torch/include/ATen/ops/_test_optional_intlist_native.h' 2025-07-24T05:19:50.0283670Z adding 'torch/include/ATen/ops/_test_optional_intlist_ops.h' 2025-07-24T05:19:50.0286773Z adding 'torch/include/ATen/ops/_test_parallel_materialize.h' 2025-07-24T05:19:50.0290006Z adding 'torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0292891Z adding 'torch/include/ATen/ops/_test_parallel_materialize_native.h' 2025-07-24T05:19:50.0295996Z adding 'torch/include/ATen/ops/_test_parallel_materialize_ops.h' 2025-07-24T05:19:50.0298992Z adding 'torch/include/ATen/ops/_test_serialization_subcmul.h' 2025-07-24T05:19:50.0302197Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.0305044Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_native.h' 2025-07-24T05:19:50.0308301Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_ops.h' 2025-07-24T05:19:50.0311373Z adding 'torch/include/ATen/ops/_test_string_default.h' 2025-07-24T05:19:50.0314805Z adding 'torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.0317712Z adding 'torch/include/ATen/ops/_test_string_default_native.h' 2025-07-24T05:19:50.0321093Z adding 'torch/include/ATen/ops/_test_string_default_ops.h' 2025-07-24T05:19:50.0324632Z adding 'torch/include/ATen/ops/_test_warn_in_autograd.h' 2025-07-24T05:19:50.0327569Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0330570Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_native.h' 2025-07-24T05:19:50.0333780Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_ops.h' 2025-07-24T05:19:50.0337143Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h' 2025-07-24T05:19:50.0340474Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.0343593Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h' 2025-07-24T05:19:50.0347351Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h' 2025-07-24T05:19:50.0350064Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h' 2025-07-24T05:19:50.0353627Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.0356552Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h' 2025-07-24T05:19:50.0359998Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h' 2025-07-24T05:19:50.0363597Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell.h' 2025-07-24T05:19:50.0366650Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h' 2025-07-24T05:19:50.0370372Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0373128Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h' 2025-07-24T05:19:50.0376394Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h' 2025-07-24T05:19:50.0379618Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h' 2025-07-24T05:19:50.0383094Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0386129Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h' 2025-07-24T05:19:50.0389313Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_native.h' 2025-07-24T05:19:50.0393138Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h' 2025-07-24T05:19:50.0396015Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell.h' 2025-07-24T05:19:50.0399498Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h' 2025-07-24T05:19:50.0402852Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.0406183Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h' 2025-07-24T05:19:50.0409630Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0412798Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h' 2025-07-24T05:19:50.0416026Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h' 2025-07-24T05:19:50.0419300Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h' 2025-07-24T05:19:50.0422523Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h' 2025-07-24T05:19:50.0425748Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h' 2025-07-24T05:19:50.0429393Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0432464Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h' 2025-07-24T05:19:50.0435637Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h' 2025-07-24T05:19:50.0439261Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h' 2025-07-24T05:19:50.0442515Z adding 'torch/include/ATen/ops/_to_copy.h' 2025-07-24T05:19:50.0446390Z adding 'torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0449408Z adding 'torch/include/ATen/ops/_to_copy_native.h' 2025-07-24T05:19:50.0452909Z adding 'torch/include/ATen/ops/_to_copy_ops.h' 2025-07-24T05:19:50.0456364Z adding 'torch/include/ATen/ops/_to_cpu.h' 2025-07-24T05:19:50.0459333Z adding 'torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.0462326Z adding 'torch/include/ATen/ops/_to_cpu_native.h' 2025-07-24T05:19:50.0465442Z adding 'torch/include/ATen/ops/_to_cpu_ops.h' 2025-07-24T05:19:50.0468674Z adding 'torch/include/ATen/ops/_to_dense.h' 2025-07-24T05:19:50.0471982Z adding 'torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0475139Z adding 'torch/include/ATen/ops/_to_dense_native.h' 2025-07-24T05:19:50.0478822Z adding 'torch/include/ATen/ops/_to_dense_ops.h' 2025-07-24T05:19:50.0481794Z adding 'torch/include/ATen/ops/_to_sparse.h' 2025-07-24T05:19:50.0485040Z adding 'torch/include/ATen/ops/_to_sparse_bsc.h' 2025-07-24T05:19:50.0488271Z adding 'torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0491399Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h' 2025-07-24T05:19:50.0494478Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h' 2025-07-24T05:19:50.0497668Z adding 'torch/include/ATen/ops/_to_sparse_bsc_native.h' 2025-07-24T05:19:50.0500894Z adding 'torch/include/ATen/ops/_to_sparse_bsc_ops.h' 2025-07-24T05:19:50.0504234Z adding 'torch/include/ATen/ops/_to_sparse_bsr.h' 2025-07-24T05:19:50.0507552Z adding 'torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0510563Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h' 2025-07-24T05:19:50.0513840Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h' 2025-07-24T05:19:50.0516796Z adding 'torch/include/ATen/ops/_to_sparse_bsr_native.h' 2025-07-24T05:19:50.0520442Z adding 'torch/include/ATen/ops/_to_sparse_bsr_ops.h' 2025-07-24T05:19:50.0523725Z adding 'torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0526918Z adding 'torch/include/ATen/ops/_to_sparse_cpu_dispatch.h' 2025-07-24T05:19:50.0530592Z adding 'torch/include/ATen/ops/_to_sparse_csc.h' 2025-07-24T05:19:50.0533381Z adding 'torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0536848Z adding 'torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h' 2025-07-24T05:19:50.0539594Z adding 'torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h' 2025-07-24T05:19:50.0542724Z adding 'torch/include/ATen/ops/_to_sparse_csc_native.h' 2025-07-24T05:19:50.0545914Z adding 'torch/include/ATen/ops/_to_sparse_csc_ops.h' 2025-07-24T05:19:50.0549170Z adding 'torch/include/ATen/ops/_to_sparse_csr.h' 2025-07-24T05:19:50.0552443Z adding 'torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0556927Z adding 'torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h' 2025-07-24T05:19:50.0559221Z adding 'torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h' 2025-07-24T05:19:50.0567583Z adding 'torch/include/ATen/ops/_to_sparse_csr_native.h' 2025-07-24T05:19:50.0567731Z adding 'torch/include/ATen/ops/_to_sparse_csr_ops.h' 2025-07-24T05:19:50.0569355Z adding 'torch/include/ATen/ops/_to_sparse_cuda_dispatch.h' 2025-07-24T05:19:50.0573618Z adding 'torch/include/ATen/ops/_to_sparse_native.h' 2025-07-24T05:19:50.0576037Z adding 'torch/include/ATen/ops/_to_sparse_ops.h' 2025-07-24T05:19:50.0579655Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured.h' 2025-07-24T05:19:50.0582521Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h' 2025-07-24T05:19:50.0585715Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_native.h' 2025-07-24T05:19:50.0588704Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_ops.h' 2025-07-24T05:19:50.0592099Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv.h' 2025-07-24T05:19:50.0595416Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0598520Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h' 2025-07-24T05:19:50.0602830Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h' 2025-07-24T05:19:50.0604833Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h' 2025-07-24T05:19:50.0608100Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h' 2025-07-24T05:19:50.0611505Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd.h' 2025-07-24T05:19:50.0614969Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0618258Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h' 2025-07-24T05:19:50.0621545Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h' 2025-07-24T05:19:50.0624627Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h' 2025-07-24T05:19:50.0628125Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h' 2025-07-24T05:19:50.0631309Z adding 'torch/include/ATen/ops/_trilinear.h' 2025-07-24T05:19:50.0634803Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0638128Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.0641090Z adding 'torch/include/ATen/ops/_trilinear_native.h' 2025-07-24T05:19:50.0644299Z adding 'torch/include/ATen/ops/_trilinear_ops.h' 2025-07-24T05:19:50.0647645Z adding 'torch/include/ATen/ops/_triton_multi_head_attention.h' 2025-07-24T05:19:50.0651210Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0654260Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h' 2025-07-24T05:19:50.0657282Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_native.h' 2025-07-24T05:19:50.0660593Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_ops.h' 2025-07-24T05:19:50.0663853Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention.h' 2025-07-24T05:19:50.0667158Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0670794Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h' 2025-07-24T05:19:50.0673137Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_native.h' 2025-07-24T05:19:50.0676279Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h' 2025-07-24T05:19:50.0679456Z adding 'torch/include/ATen/ops/_unique.h' 2025-07-24T05:19:50.0682631Z adding 'torch/include/ATen/ops/_unique2.h' 2025-07-24T05:19:50.0685931Z adding 'torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0688910Z adding 'torch/include/ATen/ops/_unique2_cpu_dispatch.h' 2025-07-24T05:19:50.0691985Z adding 'torch/include/ATen/ops/_unique2_cuda_dispatch.h' 2025-07-24T05:19:50.0694999Z adding 'torch/include/ATen/ops/_unique2_native.h' 2025-07-24T05:19:50.0698248Z adding 'torch/include/ATen/ops/_unique2_ops.h' 2025-07-24T05:19:50.0701506Z adding 'torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0704447Z adding 'torch/include/ATen/ops/_unique_cpu_dispatch.h' 2025-07-24T05:19:50.0707739Z adding 'torch/include/ATen/ops/_unique_cuda_dispatch.h' 2025-07-24T05:19:50.0710878Z adding 'torch/include/ATen/ops/_unique_native.h' 2025-07-24T05:19:50.0714086Z adding 'torch/include/ATen/ops/_unique_ops.h' 2025-07-24T05:19:50.0717132Z adding 'torch/include/ATen/ops/_unpack_dual.h' 2025-07-24T05:19:50.0720496Z adding 'torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.0723344Z adding 'torch/include/ATen/ops/_unpack_dual_native.h' 2025-07-24T05:19:50.0726434Z adding 'torch/include/ATen/ops/_unpack_dual_ops.h' 2025-07-24T05:19:50.0729470Z adding 'torch/include/ATen/ops/_unsafe_index.h' 2025-07-24T05:19:50.0732708Z adding 'torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0735579Z adding 'torch/include/ATen/ops/_unsafe_index_native.h' 2025-07-24T05:19:50.0738757Z adding 'torch/include/ATen/ops/_unsafe_index_ops.h' 2025-07-24T05:19:50.0741818Z adding 'torch/include/ATen/ops/_unsafe_index_put.h' 2025-07-24T05:19:50.0745044Z adding 'torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0747891Z adding 'torch/include/ATen/ops/_unsafe_index_put_native.h' 2025-07-24T05:19:50.0751009Z adding 'torch/include/ATen/ops/_unsafe_index_put_ops.h' 2025-07-24T05:19:50.0754716Z adding 'torch/include/ATen/ops/_unsafe_masked_index.h' 2025-07-24T05:19:50.0758140Z adding 'torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0761124Z adding 'torch/include/ATen/ops/_unsafe_masked_index_native.h' 2025-07-24T05:19:50.0764249Z adding 'torch/include/ATen/ops/_unsafe_masked_index_ops.h' 2025-07-24T05:19:50.0767364Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h' 2025-07-24T05:19:50.0770608Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0773469Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h' 2025-07-24T05:19:50.0776602Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h' 2025-07-24T05:19:50.0779848Z adding 'torch/include/ATen/ops/_unsafe_view.h' 2025-07-24T05:19:50.0783171Z adding 'torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.0786066Z adding 'torch/include/ATen/ops/_unsafe_view_native.h' 2025-07-24T05:19:50.0789205Z adding 'torch/include/ATen/ops/_unsafe_view_ops.h' 2025-07-24T05:19:50.0792850Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa.h' 2025-07-24T05:19:50.0796634Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h' 2025-07-24T05:19:50.0800379Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.0803498Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h' 2025-07-24T05:19:50.0807163Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h' 2025-07-24T05:19:50.0810031Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h' 2025-07-24T05:19:50.0813366Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h' 2025-07-24T05:19:50.0816461Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h' 2025-07-24T05:19:50.0820035Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h' 2025-07-24T05:19:50.0824025Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.0826703Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.0830208Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h' 2025-07-24T05:19:50.0833105Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h' 2025-07-24T05:19:50.0836272Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h' 2025-07-24T05:19:50.0839618Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h' 2025-07-24T05:19:50.0842893Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h' 2025-07-24T05:19:50.0846308Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h' 2025-07-24T05:19:50.0850139Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa.h' 2025-07-24T05:19:50.0854037Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h' 2025-07-24T05:19:50.0857640Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.0860889Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h' 2025-07-24T05:19:50.0864577Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h' 2025-07-24T05:19:50.0867349Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h' 2025-07-24T05:19:50.0870713Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h' 2025-07-24T05:19:50.0873834Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h' 2025-07-24T05:19:50.0877284Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h' 2025-07-24T05:19:50.0880793Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.0883984Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.0887403Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h' 2025-07-24T05:19:50.0890421Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h' 2025-07-24T05:19:50.0893614Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h' 2025-07-24T05:19:50.0896811Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h' 2025-07-24T05:19:50.0900059Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h' 2025-07-24T05:19:50.0903438Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h' 2025-07-24T05:19:50.0907178Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d.h' 2025-07-24T05:19:50.0911061Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h' 2025-07-24T05:19:50.0914545Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.0917789Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h' 2025-07-24T05:19:50.0921331Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h' 2025-07-24T05:19:50.0924271Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h' 2025-07-24T05:19:50.0927604Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h' 2025-07-24T05:19:50.0930695Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h' 2025-07-24T05:19:50.0934063Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h' 2025-07-24T05:19:50.0937441Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.0940634Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.0944181Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h' 2025-07-24T05:19:50.0947037Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h' 2025-07-24T05:19:50.0950278Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h' 2025-07-24T05:19:50.0953413Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h' 2025-07-24T05:19:50.0956624Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_native.h' 2025-07-24T05:19:50.0960029Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h' 2025-07-24T05:19:50.0963804Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d.h' 2025-07-24T05:19:50.0967655Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h' 2025-07-24T05:19:50.0971271Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.0974476Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h' 2025-07-24T05:19:50.0977708Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h' 2025-07-24T05:19:50.0980951Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h' 2025-07-24T05:19:50.0984396Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h' 2025-07-24T05:19:50.0987384Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h' 2025-07-24T05:19:50.0990798Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h' 2025-07-24T05:19:50.0994270Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.0997474Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1000703Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h' 2025-07-24T05:19:50.1004038Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h' 2025-07-24T05:19:50.1007207Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h' 2025-07-24T05:19:50.1010431Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h' 2025-07-24T05:19:50.1013918Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_native.h' 2025-07-24T05:19:50.1017331Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h' 2025-07-24T05:19:50.1021154Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d.h' 2025-07-24T05:19:50.1025077Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h' 2025-07-24T05:19:50.1028658Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.1031893Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h' 2025-07-24T05:19:50.1035259Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h' 2025-07-24T05:19:50.1038525Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h' 2025-07-24T05:19:50.1042032Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h' 2025-07-24T05:19:50.1045037Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h' 2025-07-24T05:19:50.1048482Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h' 2025-07-24T05:19:50.1051873Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.1055156Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1066464Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h' 2025-07-24T05:19:50.1066683Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h' 2025-07-24T05:19:50.1066914Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h' 2025-07-24T05:19:50.1069047Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h' 2025-07-24T05:19:50.1072438Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_native.h' 2025-07-24T05:19:50.1075689Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h' 2025-07-24T05:19:50.1079155Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss.h' 2025-07-24T05:19:50.1082334Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h' 2025-07-24T05:19:50.1085540Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h' 2025-07-24T05:19:50.1088745Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h' 2025-07-24T05:19:50.1091997Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h' 2025-07-24T05:19:50.1095191Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1098040Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h' 2025-07-24T05:19:50.1101593Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h' 2025-07-24T05:19:50.1104403Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices.h' 2025-07-24T05:19:50.1107562Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h' 2025-07-24T05:19:50.1110603Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h' 2025-07-24T05:19:50.1113572Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h' 2025-07-24T05:19:50.1116812Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h' 2025-07-24T05:19:50.1120077Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h' 2025-07-24T05:19:50.1123315Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1126193Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h' 2025-07-24T05:19:50.1129380Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h' 2025-07-24T05:19:50.1132449Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h' 2025-07-24T05:19:50.1135691Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1138597Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h' 2025-07-24T05:19:50.1141728Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h' 2025-07-24T05:19:50.1144841Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h' 2025-07-24T05:19:50.1148846Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1151271Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h' 2025-07-24T05:19:50.1154487Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h' 2025-07-24T05:19:50.1157575Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h' 2025-07-24T05:19:50.1161071Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1163914Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h' 2025-07-24T05:19:50.1167057Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h' 2025-07-24T05:19:50.1170145Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h' 2025-07-24T05:19:50.1173409Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1176342Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h' 2025-07-24T05:19:50.1179494Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h' 2025-07-24T05:19:50.1182566Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h' 2025-07-24T05:19:50.1185871Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1188733Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h' 2025-07-24T05:19:50.1191865Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h' 2025-07-24T05:19:50.1194726Z adding 'torch/include/ATen/ops/_values.h' 2025-07-24T05:19:50.1197875Z adding 'torch/include/ATen/ops/_values_copy.h' 2025-07-24T05:19:50.1201351Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.1204650Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.1207507Z adding 'torch/include/ATen/ops/_values_copy_native.h' 2025-07-24T05:19:50.1210594Z adding 'torch/include/ATen/ops/_values_copy_ops.h' 2025-07-24T05:19:50.1213567Z adding 'torch/include/ATen/ops/_values_native.h' 2025-07-24T05:19:50.1216822Z adding 'torch/include/ATen/ops/_values_ops.h' 2025-07-24T05:19:50.1219758Z adding 'torch/include/ATen/ops/_version.h' 2025-07-24T05:19:50.1222961Z adding 'torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1225833Z adding 'torch/include/ATen/ops/_version_native.h' 2025-07-24T05:19:50.1228865Z adding 'torch/include/ATen/ops/_version_ops.h' 2025-07-24T05:19:50.1231940Z adding 'torch/include/ATen/ops/_weight_int4pack_mm.h' 2025-07-24T05:19:50.1235074Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h' 2025-07-24T05:19:50.1238187Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h' 2025-07-24T05:19:50.1241327Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h' 2025-07-24T05:19:50.1244281Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h' 2025-07-24T05:19:50.1247377Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h' 2025-07-24T05:19:50.1250365Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_native.h' 2025-07-24T05:19:50.1253481Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_ops.h' 2025-07-24T05:19:50.1256655Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros.h' 2025-07-24T05:19:50.1259620Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_native.h' 2025-07-24T05:19:50.1262724Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_ops.h' 2025-07-24T05:19:50.1265669Z adding 'torch/include/ATen/ops/_weight_int8pack_mm.h' 2025-07-24T05:19:50.1268787Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h' 2025-07-24T05:19:50.1271714Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_native.h' 2025-07-24T05:19:50.1274780Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_ops.h' 2025-07-24T05:19:50.1277840Z adding 'torch/include/ATen/ops/_weight_norm.h' 2025-07-24T05:19:50.1281114Z adding 'torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1284138Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward.h' 2025-07-24T05:19:50.1287540Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1290456Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h' 2025-07-24T05:19:50.1293557Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h' 2025-07-24T05:19:50.1296609Z adding 'torch/include/ATen/ops/_weight_norm_interface.h' 2025-07-24T05:19:50.1299791Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward.h' 2025-07-24T05:19:50.1303091Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.1306254Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h' 2025-07-24T05:19:50.1309326Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h' 2025-07-24T05:19:50.1312457Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_native.h' 2025-07-24T05:19:50.1315754Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_ops.h' 2025-07-24T05:19:50.1319410Z adding 'torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.1322559Z adding 'torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h' 2025-07-24T05:19:50.1325591Z adding 'torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h' 2025-07-24T05:19:50.1328733Z adding 'torch/include/ATen/ops/_weight_norm_interface_native.h' 2025-07-24T05:19:50.1331989Z adding 'torch/include/ATen/ops/_weight_norm_interface_ops.h' 2025-07-24T05:19:50.1335109Z adding 'torch/include/ATen/ops/_weight_norm_native.h' 2025-07-24T05:19:50.1338208Z adding 'torch/include/ATen/ops/_weight_norm_ops.h' 2025-07-24T05:19:50.1341475Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack.h' 2025-07-24T05:19:50.1344812Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1347794Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_native.h' 2025-07-24T05:19:50.1351526Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_ops.h' 2025-07-24T05:19:50.1354278Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h' 2025-07-24T05:19:50.1357853Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1360857Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h' 2025-07-24T05:19:50.1364146Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h' 2025-07-24T05:19:50.1367165Z adding 'torch/include/ATen/ops/abs.h' 2025-07-24T05:19:50.1370516Z adding 'torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.1373951Z adding 'torch/include/ATen/ops/abs_cpu_dispatch.h' 2025-07-24T05:19:50.1376714Z adding 'torch/include/ATen/ops/abs_cuda_dispatch.h' 2025-07-24T05:19:50.1379912Z adding 'torch/include/ATen/ops/abs_native.h' 2025-07-24T05:19:50.1383569Z adding 'torch/include/ATen/ops/abs_ops.h' 2025-07-24T05:19:50.1386598Z adding 'torch/include/ATen/ops/absolute.h' 2025-07-24T05:19:50.1389807Z adding 'torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1392738Z adding 'torch/include/ATen/ops/absolute_native.h' 2025-07-24T05:19:50.1395961Z adding 'torch/include/ATen/ops/absolute_ops.h' 2025-07-24T05:19:50.1399429Z adding 'torch/include/ATen/ops/acos.h' 2025-07-24T05:19:50.1403063Z adding 'torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.1405790Z adding 'torch/include/ATen/ops/acos_cpu_dispatch.h' 2025-07-24T05:19:50.1409011Z adding 'torch/include/ATen/ops/acos_cuda_dispatch.h' 2025-07-24T05:19:50.1412027Z adding 'torch/include/ATen/ops/acos_meta.h' 2025-07-24T05:19:50.1415203Z adding 'torch/include/ATen/ops/acos_meta_dispatch.h' 2025-07-24T05:19:50.1418181Z adding 'torch/include/ATen/ops/acos_native.h' 2025-07-24T05:19:50.1421469Z adding 'torch/include/ATen/ops/acos_ops.h' 2025-07-24T05:19:50.1424592Z adding 'torch/include/ATen/ops/acosh.h' 2025-07-24T05:19:50.1428168Z adding 'torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.1431410Z adding 'torch/include/ATen/ops/acosh_cpu_dispatch.h' 2025-07-24T05:19:50.1434241Z adding 'torch/include/ATen/ops/acosh_cuda_dispatch.h' 2025-07-24T05:19:50.1437525Z adding 'torch/include/ATen/ops/acosh_meta.h' 2025-07-24T05:19:50.1440604Z adding 'torch/include/ATen/ops/acosh_meta_dispatch.h' 2025-07-24T05:19:50.1443727Z adding 'torch/include/ATen/ops/acosh_native.h' 2025-07-24T05:19:50.1446931Z adding 'torch/include/ATen/ops/acosh_ops.h' 2025-07-24T05:19:50.1450245Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d.h' 2025-07-24T05:19:50.1453599Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.1456889Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1460040Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_native.h' 2025-07-24T05:19:50.1463196Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_ops.h' 2025-07-24T05:19:50.1466628Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d.h' 2025-07-24T05:19:50.1470004Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1473169Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h' 2025-07-24T05:19:50.1476316Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h' 2025-07-24T05:19:50.1479663Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_native.h' 2025-07-24T05:19:50.1482998Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_ops.h' 2025-07-24T05:19:50.1486396Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d.h' 2025-07-24T05:19:50.1489782Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward.h' 2025-07-24T05:19:50.1492959Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-07-24T05:19:50.1496850Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-07-24T05:19:50.1500320Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h' 2025-07-24T05:19:50.1503237Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h' 2025-07-24T05:19:50.1506659Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1509711Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h' 2025-07-24T05:19:50.1512983Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h' 2025-07-24T05:19:50.1516016Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_native.h' 2025-07-24T05:19:50.1519435Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_ops.h' 2025-07-24T05:19:50.1522523Z adding 'torch/include/ATen/ops/adaptive_max_pool1d.h' 2025-07-24T05:19:50.1526050Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1529394Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_native.h' 2025-07-24T05:19:50.1532200Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_ops.h' 2025-07-24T05:19:50.1535529Z adding 'torch/include/ATen/ops/adaptive_max_pool2d.h' 2025-07-24T05:19:50.1544272Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward.h' 2025-07-24T05:19:50.1548070Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.1551066Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h' 2025-07-24T05:19:50.1554336Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h' 2025-07-24T05:19:50.1557622Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h' 2025-07-24T05:19:50.1560768Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h' 2025-07-24T05:19:50.1577219Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h' 2025-07-24T05:19:50.1577446Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h' 2025-07-24T05:19:50.1577865Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.1578060Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h' 2025-07-24T05:19:50.1578361Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h' 2025-07-24T05:19:50.1581431Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta.h' 2025-07-24T05:19:50.1584760Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h' 2025-07-24T05:19:50.1589227Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_native.h' 2025-07-24T05:19:50.1592281Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_ops.h' 2025-07-24T05:19:50.1595622Z adding 'torch/include/ATen/ops/adaptive_max_pool3d.h' 2025-07-24T05:19:50.1598944Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward.h' 2025-07-24T05:19:50.1602593Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.1605603Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h' 2025-07-24T05:19:50.1608637Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h' 2025-07-24T05:19:50.1611792Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h' 2025-07-24T05:19:50.1615131Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h' 2025-07-24T05:19:50.1617972Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h' 2025-07-24T05:19:50.1621127Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h' 2025-07-24T05:19:50.1624381Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.1628384Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h' 2025-07-24T05:19:50.1630602Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h' 2025-07-24T05:19:50.1633567Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta.h' 2025-07-24T05:19:50.1636703Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h' 2025-07-24T05:19:50.1639842Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_native.h' 2025-07-24T05:19:50.1643018Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_ops.h' 2025-07-24T05:19:50.1646157Z adding 'torch/include/ATen/ops/add.h' 2025-07-24T05:19:50.1649410Z adding 'torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.1652548Z adding 'torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.1655448Z adding 'torch/include/ATen/ops/add_cpu_dispatch.h' 2025-07-24T05:19:50.1659012Z adding 'torch/include/ATen/ops/add_cuda_dispatch.h' 2025-07-24T05:19:50.1661646Z adding 'torch/include/ATen/ops/add_meta.h' 2025-07-24T05:19:50.1664734Z adding 'torch/include/ATen/ops/add_meta_dispatch.h' 2025-07-24T05:19:50.1667904Z adding 'torch/include/ATen/ops/add_native.h' 2025-07-24T05:19:50.1671350Z adding 'torch/include/ATen/ops/add_ops.h' 2025-07-24T05:19:50.1674587Z adding 'torch/include/ATen/ops/addbmm.h' 2025-07-24T05:19:50.1677823Z adding 'torch/include/ATen/ops/addbmm_cpu_dispatch.h' 2025-07-24T05:19:50.1680963Z adding 'torch/include/ATen/ops/addbmm_cuda_dispatch.h' 2025-07-24T05:19:50.1684060Z adding 'torch/include/ATen/ops/addbmm_meta_dispatch.h' 2025-07-24T05:19:50.1687030Z adding 'torch/include/ATen/ops/addbmm_native.h' 2025-07-24T05:19:50.1690257Z adding 'torch/include/ATen/ops/addbmm_ops.h' 2025-07-24T05:19:50.1693394Z adding 'torch/include/ATen/ops/addcdiv.h' 2025-07-24T05:19:50.1696727Z adding 'torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.1699622Z adding 'torch/include/ATen/ops/addcdiv_cpu_dispatch.h' 2025-07-24T05:19:50.1702672Z adding 'torch/include/ATen/ops/addcdiv_cuda_dispatch.h' 2025-07-24T05:19:50.1705639Z adding 'torch/include/ATen/ops/addcdiv_meta.h' 2025-07-24T05:19:50.1708743Z adding 'torch/include/ATen/ops/addcdiv_meta_dispatch.h' 2025-07-24T05:19:50.1711711Z adding 'torch/include/ATen/ops/addcdiv_native.h' 2025-07-24T05:19:50.1714985Z adding 'torch/include/ATen/ops/addcdiv_ops.h' 2025-07-24T05:19:50.1718169Z adding 'torch/include/ATen/ops/addcmul.h' 2025-07-24T05:19:50.1721677Z adding 'torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.1724614Z adding 'torch/include/ATen/ops/addcmul_cpu_dispatch.h' 2025-07-24T05:19:50.1727657Z adding 'torch/include/ATen/ops/addcmul_cuda_dispatch.h' 2025-07-24T05:19:50.1730629Z adding 'torch/include/ATen/ops/addcmul_meta.h' 2025-07-24T05:19:50.1733731Z adding 'torch/include/ATen/ops/addcmul_meta_dispatch.h' 2025-07-24T05:19:50.1736684Z adding 'torch/include/ATen/ops/addcmul_native.h' 2025-07-24T05:19:50.1739902Z adding 'torch/include/ATen/ops/addcmul_ops.h' 2025-07-24T05:19:50.1743188Z adding 'torch/include/ATen/ops/addmm.h' 2025-07-24T05:19:50.1746531Z adding 'torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.1749528Z adding 'torch/include/ATen/ops/addmm_cpu_dispatch.h' 2025-07-24T05:19:50.1752633Z adding 'torch/include/ATen/ops/addmm_cuda_dispatch.h' 2025-07-24T05:19:50.1755629Z adding 'torch/include/ATen/ops/addmm_meta.h' 2025-07-24T05:19:50.1758854Z adding 'torch/include/ATen/ops/addmm_meta_dispatch.h' 2025-07-24T05:19:50.1762061Z adding 'torch/include/ATen/ops/addmm_native.h' 2025-07-24T05:19:50.1765768Z adding 'torch/include/ATen/ops/addmm_ops.h' 2025-07-24T05:19:50.1769002Z adding 'torch/include/ATen/ops/addmv.h' 2025-07-24T05:19:50.1772362Z adding 'torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.1775290Z adding 'torch/include/ATen/ops/addmv_cpu_dispatch.h' 2025-07-24T05:19:50.1778375Z adding 'torch/include/ATen/ops/addmv_cuda_dispatch.h' 2025-07-24T05:19:50.1781406Z adding 'torch/include/ATen/ops/addmv_meta.h' 2025-07-24T05:19:50.1784794Z adding 'torch/include/ATen/ops/addmv_meta_dispatch.h' 2025-07-24T05:19:50.1787564Z adding 'torch/include/ATen/ops/addmv_native.h' 2025-07-24T05:19:50.1790868Z adding 'torch/include/ATen/ops/addmv_ops.h' 2025-07-24T05:19:50.1794023Z adding 'torch/include/ATen/ops/addr.h' 2025-07-24T05:19:50.1797273Z adding 'torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.1800405Z adding 'torch/include/ATen/ops/addr_cpu_dispatch.h' 2025-07-24T05:19:50.1803466Z adding 'torch/include/ATen/ops/addr_cuda_dispatch.h' 2025-07-24T05:19:50.1806490Z adding 'torch/include/ATen/ops/addr_native.h' 2025-07-24T05:19:50.1809768Z adding 'torch/include/ATen/ops/addr_ops.h' 2025-07-24T05:19:50.1812779Z adding 'torch/include/ATen/ops/adjoint.h' 2025-07-24T05:19:50.1815934Z adding 'torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1818726Z adding 'torch/include/ATen/ops/adjoint_native.h' 2025-07-24T05:19:50.1822119Z adding 'torch/include/ATen/ops/adjoint_ops.h' 2025-07-24T05:19:50.1825856Z adding 'torch/include/ATen/ops/affine_grid_generator.h' 2025-07-24T05:19:50.1828966Z adding 'torch/include/ATen/ops/affine_grid_generator_backward.h' 2025-07-24T05:19:50.1832428Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1835305Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_native.h' 2025-07-24T05:19:50.1838663Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_ops.h' 2025-07-24T05:19:50.1842075Z adding 'torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.1845119Z adding 'torch/include/ATen/ops/affine_grid_generator_native.h' 2025-07-24T05:19:50.1848761Z adding 'torch/include/ATen/ops/affine_grid_generator_ops.h' 2025-07-24T05:19:50.1851421Z adding 'torch/include/ATen/ops/alias.h' 2025-07-24T05:19:50.1855233Z adding 'torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.1857776Z adding 'torch/include/ATen/ops/alias_copy.h' 2025-07-24T05:19:50.1861109Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.1864336Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.1867224Z adding 'torch/include/ATen/ops/alias_copy_native.h' 2025-07-24T05:19:50.1870401Z adding 'torch/include/ATen/ops/alias_copy_ops.h' 2025-07-24T05:19:50.1873500Z adding 'torch/include/ATen/ops/alias_native.h' 2025-07-24T05:19:50.1876580Z adding 'torch/include/ATen/ops/alias_ops.h' 2025-07-24T05:19:50.1879801Z adding 'torch/include/ATen/ops/align_as.h' 2025-07-24T05:19:50.1883185Z adding 'torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1886031Z adding 'torch/include/ATen/ops/align_as_native.h' 2025-07-24T05:19:50.1889426Z adding 'torch/include/ATen/ops/align_as_ops.h' 2025-07-24T05:19:50.1892261Z adding 'torch/include/ATen/ops/align_tensors.h' 2025-07-24T05:19:50.1895620Z adding 'torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1898462Z adding 'torch/include/ATen/ops/align_tensors_native.h' 2025-07-24T05:19:50.1901589Z adding 'torch/include/ATen/ops/align_tensors_ops.h' 2025-07-24T05:19:50.1904477Z adding 'torch/include/ATen/ops/align_to.h' 2025-07-24T05:19:50.1907791Z adding 'torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1910807Z adding 'torch/include/ATen/ops/align_to_native.h' 2025-07-24T05:19:50.1914398Z adding 'torch/include/ATen/ops/align_to_ops.h' 2025-07-24T05:19:50.1917999Z adding 'torch/include/ATen/ops/all.h' 2025-07-24T05:19:50.1921319Z adding 'torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.1924646Z adding 'torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.1927703Z adding 'torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1930891Z adding 'torch/include/ATen/ops/all_cpu_dispatch.h' 2025-07-24T05:19:50.1934580Z adding 'torch/include/ATen/ops/all_cuda_dispatch.h' 2025-07-24T05:19:50.1937535Z adding 'torch/include/ATen/ops/all_meta.h' 2025-07-24T05:19:50.1940788Z adding 'torch/include/ATen/ops/all_meta_dispatch.h' 2025-07-24T05:19:50.1943902Z adding 'torch/include/ATen/ops/all_native.h' 2025-07-24T05:19:50.1947514Z adding 'torch/include/ATen/ops/all_ops.h' 2025-07-24T05:19:50.1950705Z adding 'torch/include/ATen/ops/allclose.h' 2025-07-24T05:19:50.1954044Z adding 'torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.1956873Z adding 'torch/include/ATen/ops/allclose_native.h' 2025-07-24T05:19:50.1960274Z adding 'torch/include/ATen/ops/allclose_ops.h' 2025-07-24T05:19:50.1963777Z adding 'torch/include/ATen/ops/alpha_dropout.h' 2025-07-24T05:19:50.1966964Z adding 'torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.1969660Z adding 'torch/include/ATen/ops/alpha_dropout_native.h' 2025-07-24T05:19:50.1972783Z adding 'torch/include/ATen/ops/alpha_dropout_ops.h' 2025-07-24T05:19:50.1976019Z adding 'torch/include/ATen/ops/amax.h' 2025-07-24T05:19:50.1979337Z adding 'torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.1982427Z adding 'torch/include/ATen/ops/amax_cpu_dispatch.h' 2025-07-24T05:19:50.1985479Z adding 'torch/include/ATen/ops/amax_cuda_dispatch.h' 2025-07-24T05:19:50.1988617Z adding 'torch/include/ATen/ops/amax_meta.h' 2025-07-24T05:19:50.1991971Z adding 'torch/include/ATen/ops/amax_meta_dispatch.h' 2025-07-24T05:19:50.1994800Z adding 'torch/include/ATen/ops/amax_native.h' 2025-07-24T05:19:50.1998171Z adding 'torch/include/ATen/ops/amax_ops.h' 2025-07-24T05:19:50.2001321Z adding 'torch/include/ATen/ops/amin.h' 2025-07-24T05:19:50.2004738Z adding 'torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.2007635Z adding 'torch/include/ATen/ops/amin_cpu_dispatch.h' 2025-07-24T05:19:50.2010872Z adding 'torch/include/ATen/ops/amin_cuda_dispatch.h' 2025-07-24T05:19:50.2013854Z adding 'torch/include/ATen/ops/amin_meta.h' 2025-07-24T05:19:50.2017154Z adding 'torch/include/ATen/ops/amin_meta_dispatch.h' 2025-07-24T05:19:50.2020546Z adding 'torch/include/ATen/ops/amin_native.h' 2025-07-24T05:19:50.2023357Z adding 'torch/include/ATen/ops/amin_ops.h' 2025-07-24T05:19:50.2026713Z adding 'torch/include/ATen/ops/aminmax.h' 2025-07-24T05:19:50.2029943Z adding 'torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.2032969Z adding 'torch/include/ATen/ops/aminmax_cpu_dispatch.h' 2025-07-24T05:19:50.2036100Z adding 'torch/include/ATen/ops/aminmax_cuda_dispatch.h' 2025-07-24T05:19:50.2039364Z adding 'torch/include/ATen/ops/aminmax_meta.h' 2025-07-24T05:19:50.2042476Z adding 'torch/include/ATen/ops/aminmax_meta_dispatch.h' 2025-07-24T05:19:50.2045615Z adding 'torch/include/ATen/ops/aminmax_native.h' 2025-07-24T05:19:50.2049180Z adding 'torch/include/ATen/ops/aminmax_ops.h' 2025-07-24T05:19:50.2052008Z adding 'torch/include/ATen/ops/and.h' 2025-07-24T05:19:50.2055503Z adding 'torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.2058266Z adding 'torch/include/ATen/ops/and_native.h' 2025-07-24T05:19:50.2061650Z adding 'torch/include/ATen/ops/and_ops.h' 2025-07-24T05:19:50.2064782Z adding 'torch/include/ATen/ops/angle.h' 2025-07-24T05:19:50.2078678Z adding 'torch/include/ATen/ops/angle_cpu_dispatch.h' 2025-07-24T05:19:50.2079077Z adding 'torch/include/ATen/ops/angle_cuda_dispatch.h' 2025-07-24T05:19:50.2079433Z adding 'torch/include/ATen/ops/angle_native.h' 2025-07-24T05:19:50.2079761Z adding 'torch/include/ATen/ops/angle_ops.h' 2025-07-24T05:19:50.2081964Z adding 'torch/include/ATen/ops/any.h' 2025-07-24T05:19:50.2095035Z adding 'torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.2095687Z adding 'torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.2096309Z adding 'torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.2096766Z adding 'torch/include/ATen/ops/any_cpu_dispatch.h' 2025-07-24T05:19:50.2099004Z adding 'torch/include/ATen/ops/any_cuda_dispatch.h' 2025-07-24T05:19:50.2102224Z adding 'torch/include/ATen/ops/any_meta.h' 2025-07-24T05:19:50.2105368Z adding 'torch/include/ATen/ops/any_meta_dispatch.h' 2025-07-24T05:19:50.2108619Z adding 'torch/include/ATen/ops/any_native.h' 2025-07-24T05:19:50.2112744Z adding 'torch/include/ATen/ops/any_ops.h' 2025-07-24T05:19:50.2115784Z adding 'torch/include/ATen/ops/arange.h' 2025-07-24T05:19:50.2119464Z adding 'torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.2122478Z adding 'torch/include/ATen/ops/arange_cpu_dispatch.h' 2025-07-24T05:19:50.2125542Z adding 'torch/include/ATen/ops/arange_cuda_dispatch.h' 2025-07-24T05:19:50.2129927Z adding 'torch/include/ATen/ops/arange_meta_dispatch.h' 2025-07-24T05:19:50.2132173Z adding 'torch/include/ATen/ops/arange_native.h' 2025-07-24T05:19:50.2135698Z adding 'torch/include/ATen/ops/arange_ops.h' 2025-07-24T05:19:50.2138946Z adding 'torch/include/ATen/ops/arccos.h' 2025-07-24T05:19:50.2142201Z adding 'torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.2145939Z adding 'torch/include/ATen/ops/arccos_native.h' 2025-07-24T05:19:50.2148426Z adding 'torch/include/ATen/ops/arccos_ops.h' 2025-07-24T05:19:50.2151513Z adding 'torch/include/ATen/ops/arccosh.h' 2025-07-24T05:19:50.2154748Z adding 'torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.2157631Z adding 'torch/include/ATen/ops/arccosh_native.h' 2025-07-24T05:19:50.2160939Z adding 'torch/include/ATen/ops/arccosh_ops.h' 2025-07-24T05:19:50.2164038Z adding 'torch/include/ATen/ops/arcsin.h' 2025-07-24T05:19:50.2167292Z adding 'torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.2170384Z adding 'torch/include/ATen/ops/arcsin_native.h' 2025-07-24T05:19:50.2173284Z adding 'torch/include/ATen/ops/arcsin_ops.h' 2025-07-24T05:19:50.2176595Z adding 'torch/include/ATen/ops/arcsinh.h' 2025-07-24T05:19:50.2179756Z adding 'torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.2182725Z adding 'torch/include/ATen/ops/arcsinh_native.h' 2025-07-24T05:19:50.2185674Z adding 'torch/include/ATen/ops/arcsinh_ops.h' 2025-07-24T05:19:50.2188765Z adding 'torch/include/ATen/ops/arctan.h' 2025-07-24T05:19:50.2191814Z adding 'torch/include/ATen/ops/arctan2.h' 2025-07-24T05:19:50.2195029Z adding 'torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.2197958Z adding 'torch/include/ATen/ops/arctan2_native.h' 2025-07-24T05:19:50.2201168Z adding 'torch/include/ATen/ops/arctan2_ops.h' 2025-07-24T05:19:50.2204407Z adding 'torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.2207245Z adding 'torch/include/ATen/ops/arctan_native.h' 2025-07-24T05:19:50.2210409Z adding 'torch/include/ATen/ops/arctan_ops.h' 2025-07-24T05:19:50.2213676Z adding 'torch/include/ATen/ops/arctanh.h' 2025-07-24T05:19:50.2216835Z adding 'torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.2219661Z adding 'torch/include/ATen/ops/arctanh_native.h' 2025-07-24T05:19:50.2222962Z adding 'torch/include/ATen/ops/arctanh_ops.h' 2025-07-24T05:19:50.2226087Z adding 'torch/include/ATen/ops/argmax.h' 2025-07-24T05:19:50.2229494Z adding 'torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.2232668Z adding 'torch/include/ATen/ops/argmax_cpu_dispatch.h' 2025-07-24T05:19:50.2236261Z adding 'torch/include/ATen/ops/argmax_cuda_dispatch.h' 2025-07-24T05:19:50.2239519Z adding 'torch/include/ATen/ops/argmax_meta.h' 2025-07-24T05:19:50.2242657Z adding 'torch/include/ATen/ops/argmax_meta_dispatch.h' 2025-07-24T05:19:50.2245646Z adding 'torch/include/ATen/ops/argmax_native.h' 2025-07-24T05:19:50.2248823Z adding 'torch/include/ATen/ops/argmax_ops.h' 2025-07-24T05:19:50.2251933Z adding 'torch/include/ATen/ops/argmin.h' 2025-07-24T05:19:50.2255270Z adding 'torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.2258154Z adding 'torch/include/ATen/ops/argmin_cpu_dispatch.h' 2025-07-24T05:19:50.2261200Z adding 'torch/include/ATen/ops/argmin_cuda_dispatch.h' 2025-07-24T05:19:50.2264179Z adding 'torch/include/ATen/ops/argmin_meta.h' 2025-07-24T05:19:50.2267265Z adding 'torch/include/ATen/ops/argmin_meta_dispatch.h' 2025-07-24T05:19:50.2270252Z adding 'torch/include/ATen/ops/argmin_native.h' 2025-07-24T05:19:50.2273398Z adding 'torch/include/ATen/ops/argmin_ops.h' 2025-07-24T05:19:50.2276582Z adding 'torch/include/ATen/ops/argsort.h' 2025-07-24T05:19:50.2279987Z adding 'torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.2282900Z adding 'torch/include/ATen/ops/argsort_native.h' 2025-07-24T05:19:50.2286217Z adding 'torch/include/ATen/ops/argsort_ops.h' 2025-07-24T05:19:50.2289264Z adding 'torch/include/ATen/ops/argwhere.h' 2025-07-24T05:19:50.2292450Z adding 'torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.2295265Z adding 'torch/include/ATen/ops/argwhere_native.h' 2025-07-24T05:19:50.2298298Z adding 'torch/include/ATen/ops/argwhere_ops.h' 2025-07-24T05:19:50.2301585Z adding 'torch/include/ATen/ops/as_strided.h' 2025-07-24T05:19:50.2305020Z adding 'torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.2308276Z adding 'torch/include/ATen/ops/as_strided_copy.h' 2025-07-24T05:19:50.2311708Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.2315149Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.2318069Z adding 'torch/include/ATen/ops/as_strided_copy_native.h' 2025-07-24T05:19:50.2321288Z adding 'torch/include/ATen/ops/as_strided_copy_ops.h' 2025-07-24T05:19:50.2324479Z adding 'torch/include/ATen/ops/as_strided_cpu_dispatch.h' 2025-07-24T05:19:50.2327596Z adding 'torch/include/ATen/ops/as_strided_cuda_dispatch.h' 2025-07-24T05:19:50.2330742Z adding 'torch/include/ATen/ops/as_strided_meta_dispatch.h' 2025-07-24T05:19:50.2334045Z adding 'torch/include/ATen/ops/as_strided_native.h' 2025-07-24T05:19:50.2337197Z adding 'torch/include/ATen/ops/as_strided_ops.h' 2025-07-24T05:19:50.2340785Z adding 'torch/include/ATen/ops/as_strided_scatter.h' 2025-07-24T05:19:50.2344276Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.2347608Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.2350647Z adding 'torch/include/ATen/ops/as_strided_scatter_native.h' 2025-07-24T05:19:50.2353837Z adding 'torch/include/ATen/ops/as_strided_scatter_ops.h' 2025-07-24T05:19:50.2357030Z adding 'torch/include/ATen/ops/asin.h' 2025-07-24T05:19:50.2360562Z adding 'torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.2363538Z adding 'torch/include/ATen/ops/asin_cpu_dispatch.h' 2025-07-24T05:19:50.2366609Z adding 'torch/include/ATen/ops/asin_cuda_dispatch.h' 2025-07-24T05:19:50.2369699Z adding 'torch/include/ATen/ops/asin_meta.h' 2025-07-24T05:19:50.2372746Z adding 'torch/include/ATen/ops/asin_meta_dispatch.h' 2025-07-24T05:19:50.2376159Z adding 'torch/include/ATen/ops/asin_native.h' 2025-07-24T05:19:50.2379220Z adding 'torch/include/ATen/ops/asin_ops.h' 2025-07-24T05:19:50.2382393Z adding 'torch/include/ATen/ops/asinh.h' 2025-07-24T05:19:50.2385872Z adding 'torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.2388888Z adding 'torch/include/ATen/ops/asinh_cpu_dispatch.h' 2025-07-24T05:19:50.2392050Z adding 'torch/include/ATen/ops/asinh_cuda_dispatch.h' 2025-07-24T05:19:50.2395018Z adding 'torch/include/ATen/ops/asinh_meta.h' 2025-07-24T05:19:50.2398361Z adding 'torch/include/ATen/ops/asinh_meta_dispatch.h' 2025-07-24T05:19:50.2401361Z adding 'torch/include/ATen/ops/asinh_native.h' 2025-07-24T05:19:50.2404674Z adding 'torch/include/ATen/ops/asinh_ops.h' 2025-07-24T05:19:50.2408207Z adding 'torch/include/ATen/ops/atan.h' 2025-07-24T05:19:50.2411010Z adding 'torch/include/ATen/ops/atan2.h' 2025-07-24T05:19:50.2414545Z adding 'torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.2417377Z adding 'torch/include/ATen/ops/atan2_cpu_dispatch.h' 2025-07-24T05:19:50.2420549Z adding 'torch/include/ATen/ops/atan2_cuda_dispatch.h' 2025-07-24T05:19:50.2423526Z adding 'torch/include/ATen/ops/atan2_meta.h' 2025-07-24T05:19:50.2426718Z adding 'torch/include/ATen/ops/atan2_meta_dispatch.h' 2025-07-24T05:19:50.2429694Z adding 'torch/include/ATen/ops/atan2_native.h' 2025-07-24T05:19:50.2433041Z adding 'torch/include/ATen/ops/atan2_ops.h' 2025-07-24T05:19:50.2436984Z adding 'torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.2439649Z adding 'torch/include/ATen/ops/atan_cpu_dispatch.h' 2025-07-24T05:19:50.2442979Z adding 'torch/include/ATen/ops/atan_cuda_dispatch.h' 2025-07-24T05:19:50.2445787Z adding 'torch/include/ATen/ops/atan_meta.h' 2025-07-24T05:19:50.2448956Z adding 'torch/include/ATen/ops/atan_meta_dispatch.h' 2025-07-24T05:19:50.2451972Z adding 'torch/include/ATen/ops/atan_native.h' 2025-07-24T05:19:50.2455300Z adding 'torch/include/ATen/ops/atan_ops.h' 2025-07-24T05:19:50.2458414Z adding 'torch/include/ATen/ops/atanh.h' 2025-07-24T05:19:50.2462019Z adding 'torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.2465436Z adding 'torch/include/ATen/ops/atanh_cpu_dispatch.h' 2025-07-24T05:19:50.2468089Z adding 'torch/include/ATen/ops/atanh_cuda_dispatch.h' 2025-07-24T05:19:50.2471147Z adding 'torch/include/ATen/ops/atanh_meta.h' 2025-07-24T05:19:50.2474202Z adding 'torch/include/ATen/ops/atanh_meta_dispatch.h' 2025-07-24T05:19:50.2477341Z adding 'torch/include/ATen/ops/atanh_native.h' 2025-07-24T05:19:50.2480681Z adding 'torch/include/ATen/ops/atanh_ops.h' 2025-07-24T05:19:50.2484034Z adding 'torch/include/ATen/ops/atleast_1d.h' 2025-07-24T05:19:50.2487235Z adding 'torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.2490254Z adding 'torch/include/ATen/ops/atleast_1d_native.h' 2025-07-24T05:19:50.2493979Z adding 'torch/include/ATen/ops/atleast_1d_ops.h' 2025-07-24T05:19:50.2496607Z adding 'torch/include/ATen/ops/atleast_2d.h' 2025-07-24T05:19:50.2500574Z adding 'torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.2502859Z adding 'torch/include/ATen/ops/atleast_2d_native.h' 2025-07-24T05:19:50.2506091Z adding 'torch/include/ATen/ops/atleast_2d_ops.h' 2025-07-24T05:19:50.2509185Z adding 'torch/include/ATen/ops/atleast_3d.h' 2025-07-24T05:19:50.2512554Z adding 'torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.2515435Z adding 'torch/include/ATen/ops/atleast_3d_native.h' 2025-07-24T05:19:50.2518957Z adding 'torch/include/ATen/ops/atleast_3d_ops.h' 2025-07-24T05:19:50.2522076Z adding 'torch/include/ATen/ops/avg_pool1d.h' 2025-07-24T05:19:50.2525542Z adding 'torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.2528721Z adding 'torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.2531635Z adding 'torch/include/ATen/ops/avg_pool1d_native.h' 2025-07-24T05:19:50.2534977Z adding 'torch/include/ATen/ops/avg_pool1d_ops.h' 2025-07-24T05:19:50.2538227Z adding 'torch/include/ATen/ops/avg_pool2d.h' 2025-07-24T05:19:50.2541688Z adding 'torch/include/ATen/ops/avg_pool2d_backward.h' 2025-07-24T05:19:50.2545181Z adding 'torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.2548280Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h' 2025-07-24T05:19:50.2551568Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h' 2025-07-24T05:19:50.2554587Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta.h' 2025-07-24T05:19:50.2557920Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h' 2025-07-24T05:19:50.2561404Z adding 'torch/include/ATen/ops/avg_pool2d_backward_native.h' 2025-07-24T05:19:50.2564875Z adding 'torch/include/ATen/ops/avg_pool2d_backward_ops.h' 2025-07-24T05:19:50.2582957Z adding 'torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.2583561Z adding 'torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h' 2025-07-24T05:19:50.2583971Z adding 'torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h' 2025-07-24T05:19:50.2584341Z adding 'torch/include/ATen/ops/avg_pool2d_meta.h' 2025-07-24T05:19:50.2584814Z adding 'torch/include/ATen/ops/avg_pool2d_meta_dispatch.h' 2025-07-24T05:19:50.2585846Z adding 'torch/include/ATen/ops/avg_pool2d_native.h' 2025-07-24T05:19:50.2589297Z adding 'torch/include/ATen/ops/avg_pool2d_ops.h' 2025-07-24T05:19:50.2592587Z adding 'torch/include/ATen/ops/avg_pool3d.h' 2025-07-24T05:19:50.2596021Z adding 'torch/include/ATen/ops/avg_pool3d_backward.h' 2025-07-24T05:19:50.2600859Z adding 'torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.2602735Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h' 2025-07-24T05:19:50.2606743Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h' 2025-07-24T05:19:50.2609136Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta.h' 2025-07-24T05:19:50.2612299Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h' 2025-07-24T05:19:50.2615388Z adding 'torch/include/ATen/ops/avg_pool3d_backward_native.h' 2025-07-24T05:19:50.2618883Z adding 'torch/include/ATen/ops/avg_pool3d_backward_ops.h' 2025-07-24T05:19:50.2622285Z adding 'torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.2625304Z adding 'torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h' 2025-07-24T05:19:50.2628938Z adding 'torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h' 2025-07-24T05:19:50.2631508Z adding 'torch/include/ATen/ops/avg_pool3d_meta.h' 2025-07-24T05:19:50.2634853Z adding 'torch/include/ATen/ops/avg_pool3d_meta_dispatch.h' 2025-07-24T05:19:50.2638021Z adding 'torch/include/ATen/ops/avg_pool3d_native.h' 2025-07-24T05:19:50.2641373Z adding 'torch/include/ATen/ops/avg_pool3d_ops.h' 2025-07-24T05:19:50.2644636Z adding 'torch/include/ATen/ops/baddbmm.h' 2025-07-24T05:19:50.2648039Z adding 'torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.2651009Z adding 'torch/include/ATen/ops/baddbmm_cpu_dispatch.h' 2025-07-24T05:19:50.2654182Z adding 'torch/include/ATen/ops/baddbmm_cuda_dispatch.h' 2025-07-24T05:19:50.2657172Z adding 'torch/include/ATen/ops/baddbmm_meta.h' 2025-07-24T05:19:50.2660267Z adding 'torch/include/ATen/ops/baddbmm_meta_dispatch.h' 2025-07-24T05:19:50.2663401Z adding 'torch/include/ATen/ops/baddbmm_native.h' 2025-07-24T05:19:50.2666943Z adding 'torch/include/ATen/ops/baddbmm_ops.h' 2025-07-24T05:19:50.2670398Z adding 'torch/include/ATen/ops/bartlett_window.h' 2025-07-24T05:19:50.2673796Z adding 'torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.2676776Z adding 'torch/include/ATen/ops/bartlett_window_native.h' 2025-07-24T05:19:50.2680276Z adding 'torch/include/ATen/ops/bartlett_window_ops.h' 2025-07-24T05:19:50.2683416Z adding 'torch/include/ATen/ops/batch_norm.h' 2025-07-24T05:19:50.2686549Z adding 'torch/include/ATen/ops/batch_norm_backward.h' 2025-07-24T05:19:50.2689752Z adding 'torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h' 2025-07-24T05:19:50.2692926Z adding 'torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h' 2025-07-24T05:19:50.2696124Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt.h' 2025-07-24T05:19:50.2699434Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.2702446Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h' 2025-07-24T05:19:50.2705451Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_native.h' 2025-07-24T05:19:50.2708703Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_ops.h' 2025-07-24T05:19:50.2711827Z adding 'torch/include/ATen/ops/batch_norm_backward_native.h' 2025-07-24T05:19:50.2715086Z adding 'torch/include/ATen/ops/batch_norm_backward_ops.h' 2025-07-24T05:19:50.2718475Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce.h' 2025-07-24T05:19:50.2722023Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.2725046Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h' 2025-07-24T05:19:50.2728199Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_native.h' 2025-07-24T05:19:50.2737183Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_ops.h' 2025-07-24T05:19:50.2738058Z adding 'torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.2740803Z adding 'torch/include/ATen/ops/batch_norm_elemt.h' 2025-07-24T05:19:50.2744281Z adding 'torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h' 2025-07-24T05:19:50.2747185Z adding 'torch/include/ATen/ops/batch_norm_elemt_native.h' 2025-07-24T05:19:50.2750529Z adding 'torch/include/ATen/ops/batch_norm_elemt_ops.h' 2025-07-24T05:19:50.2754282Z adding 'torch/include/ATen/ops/batch_norm_gather_stats.h' 2025-07-24T05:19:50.2757279Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.2760590Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h' 2025-07-24T05:19:50.2763617Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_native.h' 2025-07-24T05:19:50.2767092Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_ops.h' 2025-07-24T05:19:50.2770403Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h' 2025-07-24T05:19:50.2774022Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.2777349Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h' 2025-07-24T05:19:50.2780174Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h' 2025-07-24T05:19:50.2783620Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h' 2025-07-24T05:19:50.2786628Z adding 'torch/include/ATen/ops/batch_norm_native.h' 2025-07-24T05:19:50.2789929Z adding 'torch/include/ATen/ops/batch_norm_ops.h' 2025-07-24T05:19:50.2793043Z adding 'torch/include/ATen/ops/batch_norm_stats.h' 2025-07-24T05:19:50.2796476Z adding 'torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.2800539Z adding 'torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h' 2025-07-24T05:19:50.2802685Z adding 'torch/include/ATen/ops/batch_norm_stats_native.h' 2025-07-24T05:19:50.2806321Z adding 'torch/include/ATen/ops/batch_norm_stats_ops.h' 2025-07-24T05:19:50.2809250Z adding 'torch/include/ATen/ops/batch_norm_update_stats.h' 2025-07-24T05:19:50.2812694Z adding 'torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.2815722Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h' 2025-07-24T05:19:50.2818947Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h' 2025-07-24T05:19:50.2821944Z adding 'torch/include/ATen/ops/batch_norm_update_stats_native.h' 2025-07-24T05:19:50.2825344Z adding 'torch/include/ATen/ops/batch_norm_update_stats_ops.h' 2025-07-24T05:19:50.2829029Z adding 'torch/include/ATen/ops/bernoulli.h' 2025-07-24T05:19:50.2832053Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.2835371Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.2838456Z adding 'torch/include/ATen/ops/bernoulli_cpu_dispatch.h' 2025-07-24T05:19:50.2841709Z adding 'torch/include/ATen/ops/bernoulli_cuda_dispatch.h' 2025-07-24T05:19:50.2844743Z adding 'torch/include/ATen/ops/bernoulli_meta_dispatch.h' 2025-07-24T05:19:50.2847935Z adding 'torch/include/ATen/ops/bernoulli_native.h' 2025-07-24T05:19:50.2851530Z adding 'torch/include/ATen/ops/bernoulli_ops.h' 2025-07-24T05:19:50.2854806Z adding 'torch/include/ATen/ops/bilinear.h' 2025-07-24T05:19:50.2858198Z adding 'torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.2861064Z adding 'torch/include/ATen/ops/bilinear_native.h' 2025-07-24T05:19:50.2864330Z adding 'torch/include/ATen/ops/bilinear_ops.h' 2025-07-24T05:19:50.2867503Z adding 'torch/include/ATen/ops/binary_cross_entropy.h' 2025-07-24T05:19:50.2870874Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward.h' 2025-07-24T05:19:50.2874578Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h' 2025-07-24T05:19:50.2877379Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h' 2025-07-24T05:19:50.2880699Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_native.h' 2025-07-24T05:19:50.2884036Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_ops.h' 2025-07-24T05:19:50.2887289Z adding 'torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h' 2025-07-24T05:19:50.2890399Z adding 'torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h' 2025-07-24T05:19:50.2893548Z adding 'torch/include/ATen/ops/binary_cross_entropy_native.h' 2025-07-24T05:19:50.2897339Z adding 'torch/include/ATen/ops/binary_cross_entropy_ops.h' 2025-07-24T05:19:50.2900141Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits.h' 2025-07-24T05:19:50.2903877Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.2906582Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h' 2025-07-24T05:19:50.2909945Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h' 2025-07-24T05:19:50.2913265Z adding 'torch/include/ATen/ops/bincount.h' 2025-07-24T05:19:50.2916744Z adding 'torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.2920427Z adding 'torch/include/ATen/ops/bincount_cpu_dispatch.h' 2025-07-24T05:19:50.2923034Z adding 'torch/include/ATen/ops/bincount_cuda_dispatch.h' 2025-07-24T05:19:50.2926116Z adding 'torch/include/ATen/ops/bincount_native.h' 2025-07-24T05:19:50.2929344Z adding 'torch/include/ATen/ops/bincount_ops.h' 2025-07-24T05:19:50.2932602Z adding 'torch/include/ATen/ops/binomial.h' 2025-07-24T05:19:50.2935864Z adding 'torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.2938979Z adding 'torch/include/ATen/ops/binomial_cpu_dispatch.h' 2025-07-24T05:19:50.2942032Z adding 'torch/include/ATen/ops/binomial_cuda_dispatch.h' 2025-07-24T05:19:50.2945130Z adding 'torch/include/ATen/ops/binomial_native.h' 2025-07-24T05:19:50.2949762Z adding 'torch/include/ATen/ops/binomial_ops.h' 2025-07-24T05:19:50.2951832Z adding 'torch/include/ATen/ops/bitwise_and.h' 2025-07-24T05:19:50.2955283Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.2958488Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.2961512Z adding 'torch/include/ATen/ops/bitwise_and_cpu_dispatch.h' 2025-07-24T05:19:50.2964598Z adding 'torch/include/ATen/ops/bitwise_and_cuda_dispatch.h' 2025-07-24T05:19:50.2967737Z adding 'torch/include/ATen/ops/bitwise_and_meta.h' 2025-07-24T05:19:50.2970842Z adding 'torch/include/ATen/ops/bitwise_and_meta_dispatch.h' 2025-07-24T05:19:50.2974040Z adding 'torch/include/ATen/ops/bitwise_and_native.h' 2025-07-24T05:19:50.2978412Z adding 'torch/include/ATen/ops/bitwise_and_ops.h' 2025-07-24T05:19:50.2981874Z adding 'torch/include/ATen/ops/bitwise_left_shift.h' 2025-07-24T05:19:50.2985478Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.2989431Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.2991744Z adding 'torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h' 2025-07-24T05:19:50.2995229Z adding 'torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h' 2025-07-24T05:19:50.2998002Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta.h' 2025-07-24T05:19:50.3001289Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h' 2025-07-24T05:19:50.3004325Z adding 'torch/include/ATen/ops/bitwise_left_shift_native.h' 2025-07-24T05:19:50.3007978Z adding 'torch/include/ATen/ops/bitwise_left_shift_ops.h' 2025-07-24T05:19:50.3011163Z adding 'torch/include/ATen/ops/bitwise_not.h' 2025-07-24T05:19:50.3014623Z adding 'torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.3017649Z adding 'torch/include/ATen/ops/bitwise_not_cpu_dispatch.h' 2025-07-24T05:19:50.3020705Z adding 'torch/include/ATen/ops/bitwise_not_cuda_dispatch.h' 2025-07-24T05:19:50.3024002Z adding 'torch/include/ATen/ops/bitwise_not_meta.h' 2025-07-24T05:19:50.3026890Z adding 'torch/include/ATen/ops/bitwise_not_meta_dispatch.h' 2025-07-24T05:19:50.3030001Z adding 'torch/include/ATen/ops/bitwise_not_native.h' 2025-07-24T05:19:50.3033152Z adding 'torch/include/ATen/ops/bitwise_not_ops.h' 2025-07-24T05:19:50.3036546Z adding 'torch/include/ATen/ops/bitwise_or.h' 2025-07-24T05:19:50.3040018Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3043307Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.3046512Z adding 'torch/include/ATen/ops/bitwise_or_cpu_dispatch.h' 2025-07-24T05:19:50.3049687Z adding 'torch/include/ATen/ops/bitwise_or_cuda_dispatch.h' 2025-07-24T05:19:50.3052633Z adding 'torch/include/ATen/ops/bitwise_or_meta.h' 2025-07-24T05:19:50.3055624Z adding 'torch/include/ATen/ops/bitwise_or_meta_dispatch.h' 2025-07-24T05:19:50.3058660Z adding 'torch/include/ATen/ops/bitwise_or_native.h' 2025-07-24T05:19:50.3062039Z adding 'torch/include/ATen/ops/bitwise_or_ops.h' 2025-07-24T05:19:50.3065589Z adding 'torch/include/ATen/ops/bitwise_right_shift.h' 2025-07-24T05:19:50.3068936Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3072164Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.3075051Z adding 'torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h' 2025-07-24T05:19:50.3079453Z adding 'torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h' 2025-07-24T05:19:50.3081385Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta.h' 2025-07-24T05:19:50.3084475Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h' 2025-07-24T05:19:50.3087492Z adding 'torch/include/ATen/ops/bitwise_right_shift_native.h' 2025-07-24T05:19:50.3091004Z adding 'torch/include/ATen/ops/bitwise_right_shift_ops.h' 2025-07-24T05:19:50.3094262Z adding 'torch/include/ATen/ops/bitwise_xor.h' 2025-07-24T05:19:50.3097583Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3108968Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.3110559Z adding 'torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h' 2025-07-24T05:19:50.3110987Z adding 'torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h' 2025-07-24T05:19:50.3111369Z adding 'torch/include/ATen/ops/bitwise_xor_meta.h' 2025-07-24T05:19:50.3112784Z adding 'torch/include/ATen/ops/bitwise_xor_meta_dispatch.h' 2025-07-24T05:19:50.3115802Z adding 'torch/include/ATen/ops/bitwise_xor_native.h' 2025-07-24T05:19:50.3125188Z adding 'torch/include/ATen/ops/bitwise_xor_ops.h' 2025-07-24T05:19:50.3128697Z adding 'torch/include/ATen/ops/blackman_window.h' 2025-07-24T05:19:50.3132141Z adding 'torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3135051Z adding 'torch/include/ATen/ops/blackman_window_native.h' 2025-07-24T05:19:50.3138377Z adding 'torch/include/ATen/ops/blackman_window_ops.h' 2025-07-24T05:19:50.3141458Z adding 'torch/include/ATen/ops/block_diag.h' 2025-07-24T05:19:50.3144931Z adding 'torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3147825Z adding 'torch/include/ATen/ops/block_diag_native.h' 2025-07-24T05:19:50.3150960Z adding 'torch/include/ATen/ops/block_diag_ops.h' 2025-07-24T05:19:50.3154074Z adding 'torch/include/ATen/ops/bmm.h' 2025-07-24T05:19:50.3157353Z adding 'torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.3160405Z adding 'torch/include/ATen/ops/bmm_cpu_dispatch.h' 2025-07-24T05:19:50.3163464Z adding 'torch/include/ATen/ops/bmm_cuda_dispatch.h' 2025-07-24T05:19:50.3166574Z adding 'torch/include/ATen/ops/bmm_meta.h' 2025-07-24T05:19:50.3169653Z adding 'torch/include/ATen/ops/bmm_meta_dispatch.h' 2025-07-24T05:19:50.3172729Z adding 'torch/include/ATen/ops/bmm_native.h' 2025-07-24T05:19:50.3176009Z adding 'torch/include/ATen/ops/bmm_ops.h' 2025-07-24T05:19:50.3179116Z adding 'torch/include/ATen/ops/broadcast_tensors.h' 2025-07-24T05:19:50.3182333Z adding 'torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3185163Z adding 'torch/include/ATen/ops/broadcast_tensors_native.h' 2025-07-24T05:19:50.3188185Z adding 'torch/include/ATen/ops/broadcast_tensors_ops.h' 2025-07-24T05:19:50.3191262Z adding 'torch/include/ATen/ops/broadcast_to.h' 2025-07-24T05:19:50.3194480Z adding 'torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3197326Z adding 'torch/include/ATen/ops/broadcast_to_native.h' 2025-07-24T05:19:50.3200561Z adding 'torch/include/ATen/ops/broadcast_to_ops.h' 2025-07-24T05:19:50.3203729Z adding 'torch/include/ATen/ops/bucketize.h' 2025-07-24T05:19:50.3207047Z adding 'torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3209977Z adding 'torch/include/ATen/ops/bucketize_cpu_dispatch.h' 2025-07-24T05:19:50.3213061Z adding 'torch/include/ATen/ops/bucketize_cuda_dispatch.h' 2025-07-24T05:19:50.3216094Z adding 'torch/include/ATen/ops/bucketize_native.h' 2025-07-24T05:19:50.3219405Z adding 'torch/include/ATen/ops/bucketize_ops.h' 2025-07-24T05:19:50.3222474Z adding 'torch/include/ATen/ops/can_cast.h' 2025-07-24T05:19:50.3225652Z adding 'torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3228662Z adding 'torch/include/ATen/ops/can_cast_native.h' 2025-07-24T05:19:50.3231704Z adding 'torch/include/ATen/ops/can_cast_ops.h' 2025-07-24T05:19:50.3234709Z adding 'torch/include/ATen/ops/cartesian_prod.h' 2025-07-24T05:19:50.3237987Z adding 'torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3240938Z adding 'torch/include/ATen/ops/cartesian_prod_native.h' 2025-07-24T05:19:50.3243927Z adding 'torch/include/ATen/ops/cartesian_prod_ops.h' 2025-07-24T05:19:50.3247040Z adding 'torch/include/ATen/ops/cat.h' 2025-07-24T05:19:50.3250337Z adding 'torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.3253349Z adding 'torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3256330Z adding 'torch/include/ATen/ops/cat_cpu_dispatch.h' 2025-07-24T05:19:50.3259376Z adding 'torch/include/ATen/ops/cat_cuda_dispatch.h' 2025-07-24T05:19:50.3262952Z adding 'torch/include/ATen/ops/cat_meta.h' 2025-07-24T05:19:50.3266168Z adding 'torch/include/ATen/ops/cat_meta_dispatch.h' 2025-07-24T05:19:50.3269473Z adding 'torch/include/ATen/ops/cat_native.h' 2025-07-24T05:19:50.3272888Z adding 'torch/include/ATen/ops/cat_ops.h' 2025-07-24T05:19:50.3276078Z adding 'torch/include/ATen/ops/cauchy.h' 2025-07-24T05:19:50.3279575Z adding 'torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3282543Z adding 'torch/include/ATen/ops/cauchy_cpu_dispatch.h' 2025-07-24T05:19:50.3285744Z adding 'torch/include/ATen/ops/cauchy_cuda_dispatch.h' 2025-07-24T05:19:50.3288790Z adding 'torch/include/ATen/ops/cauchy_meta_dispatch.h' 2025-07-24T05:19:50.3291949Z adding 'torch/include/ATen/ops/cauchy_native.h' 2025-07-24T05:19:50.3295252Z adding 'torch/include/ATen/ops/cauchy_ops.h' 2025-07-24T05:19:50.3298385Z adding 'torch/include/ATen/ops/ccol_indices.h' 2025-07-24T05:19:50.3301767Z adding 'torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3304605Z adding 'torch/include/ATen/ops/ccol_indices_copy.h' 2025-07-24T05:19:50.3307955Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3311131Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.3314013Z adding 'torch/include/ATen/ops/ccol_indices_copy_native.h' 2025-07-24T05:19:50.3317165Z adding 'torch/include/ATen/ops/ccol_indices_copy_ops.h' 2025-07-24T05:19:50.3320410Z adding 'torch/include/ATen/ops/ccol_indices_native.h' 2025-07-24T05:19:50.3323512Z adding 'torch/include/ATen/ops/ccol_indices_ops.h' 2025-07-24T05:19:50.3326703Z adding 'torch/include/ATen/ops/cdist.h' 2025-07-24T05:19:50.3330317Z adding 'torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3332886Z adding 'torch/include/ATen/ops/cdist_native.h' 2025-07-24T05:19:50.3336351Z adding 'torch/include/ATen/ops/cdist_ops.h' 2025-07-24T05:19:50.3339290Z adding 'torch/include/ATen/ops/ceil.h' 2025-07-24T05:19:50.3342693Z adding 'torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.3345619Z adding 'torch/include/ATen/ops/ceil_cpu_dispatch.h' 2025-07-24T05:19:50.3348834Z adding 'torch/include/ATen/ops/ceil_cuda_dispatch.h' 2025-07-24T05:19:50.3351799Z adding 'torch/include/ATen/ops/ceil_meta.h' 2025-07-24T05:19:50.3355059Z adding 'torch/include/ATen/ops/ceil_meta_dispatch.h' 2025-07-24T05:19:50.3358851Z adding 'torch/include/ATen/ops/ceil_native.h' 2025-07-24T05:19:50.3361562Z adding 'torch/include/ATen/ops/ceil_ops.h' 2025-07-24T05:19:50.3364937Z adding 'torch/include/ATen/ops/celu.h' 2025-07-24T05:19:50.3368050Z adding 'torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3371300Z adding 'torch/include/ATen/ops/celu_native.h' 2025-07-24T05:19:50.3374308Z adding 'torch/include/ATen/ops/celu_ops.h' 2025-07-24T05:19:50.3377594Z adding 'torch/include/ATen/ops/chain_matmul.h' 2025-07-24T05:19:50.3380876Z adding 'torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3383905Z adding 'torch/include/ATen/ops/chain_matmul_native.h' 2025-07-24T05:19:50.3387827Z adding 'torch/include/ATen/ops/chain_matmul_ops.h' 2025-07-24T05:19:50.3390155Z adding 'torch/include/ATen/ops/chalf.h' 2025-07-24T05:19:50.3393584Z adding 'torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3396343Z adding 'torch/include/ATen/ops/chalf_native.h' 2025-07-24T05:19:50.3399655Z adding 'torch/include/ATen/ops/chalf_ops.h' 2025-07-24T05:19:50.3402958Z adding 'torch/include/ATen/ops/channel_shuffle.h' 2025-07-24T05:19:50.3406434Z adding 'torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3409381Z adding 'torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h' 2025-07-24T05:19:50.3412577Z adding 'torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h' 2025-07-24T05:19:50.3415649Z adding 'torch/include/ATen/ops/channel_shuffle_native.h' 2025-07-24T05:19:50.3418938Z adding 'torch/include/ATen/ops/channel_shuffle_ops.h' 2025-07-24T05:19:50.3422374Z adding 'torch/include/ATen/ops/cholesky.h' 2025-07-24T05:19:50.3425295Z adding 'torch/include/ATen/ops/cholesky_cpu_dispatch.h' 2025-07-24T05:19:50.3428498Z adding 'torch/include/ATen/ops/cholesky_cuda_dispatch.h' 2025-07-24T05:19:50.3431546Z adding 'torch/include/ATen/ops/cholesky_inverse.h' 2025-07-24T05:19:50.3434846Z adding 'torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h' 2025-07-24T05:19:50.3438058Z adding 'torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h' 2025-07-24T05:19:50.3441176Z adding 'torch/include/ATen/ops/cholesky_inverse_native.h' 2025-07-24T05:19:50.3444857Z adding 'torch/include/ATen/ops/cholesky_inverse_ops.h' 2025-07-24T05:19:50.3447422Z adding 'torch/include/ATen/ops/cholesky_native.h' 2025-07-24T05:19:50.3450975Z adding 'torch/include/ATen/ops/cholesky_ops.h' 2025-07-24T05:19:50.3453859Z adding 'torch/include/ATen/ops/cholesky_solve.h' 2025-07-24T05:19:50.3457204Z adding 'torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3460091Z adding 'torch/include/ATen/ops/cholesky_solve_native.h' 2025-07-24T05:19:50.3463597Z adding 'torch/include/ATen/ops/cholesky_solve_ops.h' 2025-07-24T05:19:50.3466737Z adding 'torch/include/ATen/ops/choose_qparams_optimized.h' 2025-07-24T05:19:50.3470150Z adding 'torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3473496Z adding 'torch/include/ATen/ops/choose_qparams_optimized_native.h' 2025-07-24T05:19:50.3476256Z adding 'torch/include/ATen/ops/choose_qparams_optimized_ops.h' 2025-07-24T05:19:50.3479566Z adding 'torch/include/ATen/ops/chunk.h' 2025-07-24T05:19:50.3482798Z adding 'torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3485812Z adding 'torch/include/ATen/ops/chunk_native.h' 2025-07-24T05:19:50.3488931Z adding 'torch/include/ATen/ops/chunk_ops.h' 2025-07-24T05:19:50.3492338Z adding 'torch/include/ATen/ops/clamp.h' 2025-07-24T05:19:50.3495790Z adding 'torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.3498920Z adding 'torch/include/ATen/ops/clamp_cpu_dispatch.h' 2025-07-24T05:19:50.3502460Z adding 'torch/include/ATen/ops/clamp_cuda_dispatch.h' 2025-07-24T05:19:50.3505427Z adding 'torch/include/ATen/ops/clamp_max.h' 2025-07-24T05:19:50.3508945Z adding 'torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.3511826Z adding 'torch/include/ATen/ops/clamp_max_cpu_dispatch.h' 2025-07-24T05:19:50.3515308Z adding 'torch/include/ATen/ops/clamp_max_cuda_dispatch.h' 2025-07-24T05:19:50.3518207Z adding 'torch/include/ATen/ops/clamp_max_meta.h' 2025-07-24T05:19:50.3521485Z adding 'torch/include/ATen/ops/clamp_max_meta_dispatch.h' 2025-07-24T05:19:50.3525098Z adding 'torch/include/ATen/ops/clamp_max_native.h' 2025-07-24T05:19:50.3528011Z adding 'torch/include/ATen/ops/clamp_max_ops.h' 2025-07-24T05:19:50.3531230Z adding 'torch/include/ATen/ops/clamp_meta.h' 2025-07-24T05:19:50.3534457Z adding 'torch/include/ATen/ops/clamp_meta_dispatch.h' 2025-07-24T05:19:50.3538507Z adding 'torch/include/ATen/ops/clamp_min.h' 2025-07-24T05:19:50.3541914Z adding 'torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.3544876Z adding 'torch/include/ATen/ops/clamp_min_cpu_dispatch.h' 2025-07-24T05:19:50.3548435Z adding 'torch/include/ATen/ops/clamp_min_cuda_dispatch.h' 2025-07-24T05:19:50.3551133Z adding 'torch/include/ATen/ops/clamp_min_meta.h' 2025-07-24T05:19:50.3554421Z adding 'torch/include/ATen/ops/clamp_min_meta_dispatch.h' 2025-07-24T05:19:50.3557430Z adding 'torch/include/ATen/ops/clamp_min_native.h' 2025-07-24T05:19:50.3561060Z adding 'torch/include/ATen/ops/clamp_min_ops.h' 2025-07-24T05:19:50.3564277Z adding 'torch/include/ATen/ops/clamp_native.h' 2025-07-24T05:19:50.3567914Z adding 'torch/include/ATen/ops/clamp_ops.h' 2025-07-24T05:19:50.3571400Z adding 'torch/include/ATen/ops/clip.h' 2025-07-24T05:19:50.3574813Z adding 'torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3577959Z adding 'torch/include/ATen/ops/clip_native.h' 2025-07-24T05:19:50.3581401Z adding 'torch/include/ATen/ops/clip_ops.h' 2025-07-24T05:19:50.3584799Z adding 'torch/include/ATen/ops/clone.h' 2025-07-24T05:19:50.3588028Z adding 'torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3590899Z adding 'torch/include/ATen/ops/clone_native.h' 2025-07-24T05:19:50.3594374Z adding 'torch/include/ATen/ops/clone_ops.h' 2025-07-24T05:19:50.3597189Z adding 'torch/include/ATen/ops/coalesce.h' 2025-07-24T05:19:50.3600485Z adding 'torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3603307Z adding 'torch/include/ATen/ops/coalesce_native.h' 2025-07-24T05:19:50.3606372Z adding 'torch/include/ATen/ops/coalesce_ops.h' 2025-07-24T05:19:50.3610400Z adding 'torch/include/ATen/ops/col2im.h' 2025-07-24T05:19:50.3613229Z adding 'torch/include/ATen/ops/col2im_cpu_dispatch.h' 2025-07-24T05:19:50.3616407Z adding 'torch/include/ATen/ops/col2im_cuda_dispatch.h' 2025-07-24T05:19:50.3619465Z adding 'torch/include/ATen/ops/col2im_native.h' 2025-07-24T05:19:50.3622692Z adding 'torch/include/ATen/ops/col2im_ops.h' 2025-07-24T05:19:50.3625748Z adding 'torch/include/ATen/ops/col_indices.h' 2025-07-24T05:19:50.3628940Z adding 'torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3631831Z adding 'torch/include/ATen/ops/col_indices_copy.h' 2025-07-24T05:19:50.3635102Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3638340Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.3641486Z adding 'torch/include/ATen/ops/col_indices_copy_native.h' 2025-07-24T05:19:50.3644438Z adding 'torch/include/ATen/ops/col_indices_copy_ops.h' 2025-07-24T05:19:50.3647389Z adding 'torch/include/ATen/ops/col_indices_native.h' 2025-07-24T05:19:50.3650438Z adding 'torch/include/ATen/ops/col_indices_ops.h' 2025-07-24T05:19:50.3653489Z adding 'torch/include/ATen/ops/column_stack.h' 2025-07-24T05:19:50.3656654Z adding 'torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3659418Z adding 'torch/include/ATen/ops/column_stack_native.h' 2025-07-24T05:19:50.3662530Z adding 'torch/include/ATen/ops/column_stack_ops.h' 2025-07-24T05:19:50.3665440Z adding 'torch/include/ATen/ops/combinations.h' 2025-07-24T05:19:50.3668671Z adding 'torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3671480Z adding 'torch/include/ATen/ops/combinations_native.h' 2025-07-24T05:19:50.3674524Z adding 'torch/include/ATen/ops/combinations_ops.h' 2025-07-24T05:19:50.3677594Z adding 'torch/include/ATen/ops/complex.h' 2025-07-24T05:19:50.3680997Z adding 'torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3683979Z adding 'torch/include/ATen/ops/complex_cpu_dispatch.h' 2025-07-24T05:19:50.3687027Z adding 'torch/include/ATen/ops/complex_cuda_dispatch.h' 2025-07-24T05:19:50.3689989Z adding 'torch/include/ATen/ops/complex_native.h' 2025-07-24T05:19:50.3693172Z adding 'torch/include/ATen/ops/complex_ops.h' 2025-07-24T05:19:50.3697352Z adding 'torch/include/ATen/ops/concat.h' 2025-07-24T05:19:50.3699745Z adding 'torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3702618Z adding 'torch/include/ATen/ops/concat_native.h' 2025-07-24T05:19:50.3705892Z adding 'torch/include/ATen/ops/concat_ops.h' 2025-07-24T05:19:50.3709094Z adding 'torch/include/ATen/ops/concatenate.h' 2025-07-24T05:19:50.3713088Z adding 'torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3716108Z adding 'torch/include/ATen/ops/concatenate_native.h' 2025-07-24T05:19:50.3719537Z adding 'torch/include/ATen/ops/concatenate_ops.h' 2025-07-24T05:19:50.3722553Z adding 'torch/include/ATen/ops/conj.h' 2025-07-24T05:19:50.3725755Z adding 'torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3728785Z adding 'torch/include/ATen/ops/conj_native.h' 2025-07-24T05:19:50.3731858Z adding 'torch/include/ATen/ops/conj_ops.h' 2025-07-24T05:19:50.3734939Z adding 'torch/include/ATen/ops/conj_physical.h' 2025-07-24T05:19:50.3738133Z adding 'torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3741171Z adding 'torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3744096Z adding 'torch/include/ATen/ops/conj_physical_cpu_dispatch.h' 2025-07-24T05:19:50.3747125Z adding 'torch/include/ATen/ops/conj_physical_cuda_dispatch.h' 2025-07-24T05:19:50.3750049Z adding 'torch/include/ATen/ops/conj_physical_native.h' 2025-07-24T05:19:50.3753204Z adding 'torch/include/ATen/ops/conj_physical_ops.h' 2025-07-24T05:19:50.3756542Z adding 'torch/include/ATen/ops/constant_pad_nd.h' 2025-07-24T05:19:50.3760027Z adding 'torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3762900Z adding 'torch/include/ATen/ops/constant_pad_nd_native.h' 2025-07-24T05:19:50.3766088Z adding 'torch/include/ATen/ops/constant_pad_nd_ops.h' 2025-07-24T05:19:50.3769071Z adding 'torch/include/ATen/ops/contiguous.h' 2025-07-24T05:19:50.3772241Z adding 'torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3775057Z adding 'torch/include/ATen/ops/contiguous_native.h' 2025-07-24T05:19:50.3778110Z adding 'torch/include/ATen/ops/contiguous_ops.h' 2025-07-24T05:19:50.3781482Z adding 'torch/include/ATen/ops/conv1d.h' 2025-07-24T05:19:50.3784944Z adding 'torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3787883Z adding 'torch/include/ATen/ops/conv1d_native.h' 2025-07-24T05:19:50.3791084Z adding 'torch/include/ATen/ops/conv1d_ops.h' 2025-07-24T05:19:50.3794464Z adding 'torch/include/ATen/ops/conv2d.h' 2025-07-24T05:19:50.3798332Z adding 'torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3801033Z adding 'torch/include/ATen/ops/conv2d_native.h' 2025-07-24T05:19:50.3804435Z adding 'torch/include/ATen/ops/conv2d_ops.h' 2025-07-24T05:19:50.3807867Z adding 'torch/include/ATen/ops/conv3d.h' 2025-07-24T05:19:50.3811473Z adding 'torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3814362Z adding 'torch/include/ATen/ops/conv3d_native.h' 2025-07-24T05:19:50.3817757Z adding 'torch/include/ATen/ops/conv3d_ops.h' 2025-07-24T05:19:50.3821563Z adding 'torch/include/ATen/ops/conv_depthwise3d.h' 2025-07-24T05:19:50.3825197Z adding 'torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3828403Z adding 'torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h' 2025-07-24T05:19:50.3831398Z adding 'torch/include/ATen/ops/conv_depthwise3d_native.h' 2025-07-24T05:19:50.3834820Z adding 'torch/include/ATen/ops/conv_depthwise3d_ops.h' 2025-07-24T05:19:50.3838729Z adding 'torch/include/ATen/ops/conv_tbc.h' 2025-07-24T05:19:50.3841298Z adding 'torch/include/ATen/ops/conv_tbc_backward.h' 2025-07-24T05:19:50.3844704Z adding 'torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3847635Z adding 'torch/include/ATen/ops/conv_tbc_backward_native.h' 2025-07-24T05:19:50.3851230Z adding 'torch/include/ATen/ops/conv_tbc_backward_ops.h' 2025-07-24T05:19:50.3854446Z adding 'torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3857537Z adding 'torch/include/ATen/ops/conv_tbc_native.h' 2025-07-24T05:19:50.3861225Z adding 'torch/include/ATen/ops/conv_tbc_ops.h' 2025-07-24T05:19:50.3864138Z adding 'torch/include/ATen/ops/conv_transpose1d.h' 2025-07-24T05:19:50.3867704Z adding 'torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3870604Z adding 'torch/include/ATen/ops/conv_transpose1d_native.h' 2025-07-24T05:19:50.3873911Z adding 'torch/include/ATen/ops/conv_transpose1d_ops.h' 2025-07-24T05:19:50.3877243Z adding 'torch/include/ATen/ops/conv_transpose2d.h' 2025-07-24T05:19:50.3880857Z adding 'torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3884236Z adding 'torch/include/ATen/ops/conv_transpose2d_native.h' 2025-07-24T05:19:50.3887068Z adding 'torch/include/ATen/ops/conv_transpose2d_ops.h' 2025-07-24T05:19:50.3890643Z adding 'torch/include/ATen/ops/conv_transpose3d.h' 2025-07-24T05:19:50.3894056Z adding 'torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.3897114Z adding 'torch/include/ATen/ops/conv_transpose3d_native.h' 2025-07-24T05:19:50.3900315Z adding 'torch/include/ATen/ops/conv_transpose3d_ops.h' 2025-07-24T05:19:50.3904008Z adding 'torch/include/ATen/ops/convolution.h' 2025-07-24T05:19:50.3908206Z adding 'torch/include/ATen/ops/convolution_backward.h' 2025-07-24T05:19:50.3911957Z adding 'torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3915409Z adding 'torch/include/ATen/ops/convolution_backward_cuda_dispatch.h' 2025-07-24T05:19:50.3919044Z adding 'torch/include/ATen/ops/convolution_backward_native.h' 2025-07-24T05:19:50.3922164Z adding 'torch/include/ATen/ops/convolution_backward_ops.h' 2025-07-24T05:19:50.3926147Z adding 'torch/include/ATen/ops/convolution_backward_overrideable.h' 2025-07-24T05:19:50.3930248Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3933089Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_native.h' 2025-07-24T05:19:50.3936612Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_ops.h' 2025-07-24T05:19:50.3939981Z adding 'torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3943078Z adding 'torch/include/ATen/ops/convolution_native.h' 2025-07-24T05:19:50.3946358Z adding 'torch/include/ATen/ops/convolution_ops.h' 2025-07-24T05:19:50.3950231Z adding 'torch/include/ATen/ops/convolution_overrideable.h' 2025-07-24T05:19:50.3954005Z adding 'torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3957014Z adding 'torch/include/ATen/ops/convolution_overrideable_native.h' 2025-07-24T05:19:50.3960603Z adding 'torch/include/ATen/ops/convolution_overrideable_ops.h' 2025-07-24T05:19:50.3963667Z adding 'torch/include/ATen/ops/copy.h' 2025-07-24T05:19:50.3967041Z adding 'torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3970646Z adding 'torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.3973219Z adding 'torch/include/ATen/ops/copy_meta_dispatch.h' 2025-07-24T05:19:50.3976439Z adding 'torch/include/ATen/ops/copy_native.h' 2025-07-24T05:19:50.3979566Z adding 'torch/include/ATen/ops/copy_ops.h' 2025-07-24T05:19:50.3982915Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse.h' 2025-07-24T05:19:50.3986211Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.3989305Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h' 2025-07-24T05:19:50.3992351Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_native.h' 2025-07-24T05:19:50.3995656Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_ops.h' 2025-07-24T05:19:50.3999287Z adding 'torch/include/ATen/ops/copysign.h' 2025-07-24T05:19:50.4002331Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4005568Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.4008441Z adding 'torch/include/ATen/ops/copysign_cpu_dispatch.h' 2025-07-24T05:19:50.4011614Z adding 'torch/include/ATen/ops/copysign_cuda_dispatch.h' 2025-07-24T05:19:50.4014598Z adding 'torch/include/ATen/ops/copysign_meta.h' 2025-07-24T05:19:50.4017828Z adding 'torch/include/ATen/ops/copysign_meta_dispatch.h' 2025-07-24T05:19:50.4020802Z adding 'torch/include/ATen/ops/copysign_native.h' 2025-07-24T05:19:50.4024331Z adding 'torch/include/ATen/ops/copysign_ops.h' 2025-07-24T05:19:50.4027852Z adding 'torch/include/ATen/ops/corrcoef.h' 2025-07-24T05:19:50.4030727Z adding 'torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4033650Z adding 'torch/include/ATen/ops/corrcoef_native.h' 2025-07-24T05:19:50.4036713Z adding 'torch/include/ATen/ops/corrcoef_ops.h' 2025-07-24T05:19:50.4039992Z adding 'torch/include/ATen/ops/cos.h' 2025-07-24T05:19:50.4043310Z adding 'torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.4046339Z adding 'torch/include/ATen/ops/cos_cpu_dispatch.h' 2025-07-24T05:19:50.4049421Z adding 'torch/include/ATen/ops/cos_cuda_dispatch.h' 2025-07-24T05:19:50.4052544Z adding 'torch/include/ATen/ops/cos_meta.h' 2025-07-24T05:19:50.4056070Z adding 'torch/include/ATen/ops/cos_meta_dispatch.h' 2025-07-24T05:19:50.4058696Z adding 'torch/include/ATen/ops/cos_native.h' 2025-07-24T05:19:50.4062009Z adding 'torch/include/ATen/ops/cos_ops.h' 2025-07-24T05:19:50.4065099Z adding 'torch/include/ATen/ops/cosh.h' 2025-07-24T05:19:50.4068483Z adding 'torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.4071381Z adding 'torch/include/ATen/ops/cosh_cpu_dispatch.h' 2025-07-24T05:19:50.4096577Z adding 'torch/include/ATen/ops/cosh_cuda_dispatch.h' 2025-07-24T05:19:50.4096699Z adding 'torch/include/ATen/ops/cosh_meta.h' 2025-07-24T05:19:50.4096840Z adding 'torch/include/ATen/ops/cosh_meta_dispatch.h' 2025-07-24T05:19:50.4096945Z adding 'torch/include/ATen/ops/cosh_native.h' 2025-07-24T05:19:50.4097046Z adding 'torch/include/ATen/ops/cosh_ops.h' 2025-07-24T05:19:50.4097198Z adding 'torch/include/ATen/ops/cosine_embedding_loss.h' 2025-07-24T05:19:50.4097488Z adding 'torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4098785Z adding 'torch/include/ATen/ops/cosine_embedding_loss_native.h' 2025-07-24T05:19:50.4102628Z adding 'torch/include/ATen/ops/cosine_embedding_loss_ops.h' 2025-07-24T05:19:50.4105087Z adding 'torch/include/ATen/ops/cosine_similarity.h' 2025-07-24T05:19:50.4108833Z adding 'torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4111665Z adding 'torch/include/ATen/ops/cosine_similarity_native.h' 2025-07-24T05:19:50.4114687Z adding 'torch/include/ATen/ops/cosine_similarity_ops.h' 2025-07-24T05:19:50.4117853Z adding 'torch/include/ATen/ops/count_nonzero.h' 2025-07-24T05:19:50.4121335Z adding 'torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4124264Z adding 'torch/include/ATen/ops/count_nonzero_cpu_dispatch.h' 2025-07-24T05:19:50.4127293Z adding 'torch/include/ATen/ops/count_nonzero_cuda_dispatch.h' 2025-07-24T05:19:50.4130340Z adding 'torch/include/ATen/ops/count_nonzero_native.h' 2025-07-24T05:19:50.4133790Z adding 'torch/include/ATen/ops/count_nonzero_ops.h' 2025-07-24T05:19:50.4136980Z adding 'torch/include/ATen/ops/cov.h' 2025-07-24T05:19:50.4140213Z adding 'torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4143159Z adding 'torch/include/ATen/ops/cov_native.h' 2025-07-24T05:19:50.4146176Z adding 'torch/include/ATen/ops/cov_ops.h' 2025-07-24T05:19:50.4149454Z adding 'torch/include/ATen/ops/cross.h' 2025-07-24T05:19:50.4152668Z adding 'torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4155795Z adding 'torch/include/ATen/ops/cross_entropy_loss.h' 2025-07-24T05:19:50.4159258Z adding 'torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4162153Z adding 'torch/include/ATen/ops/cross_entropy_loss_native.h' 2025-07-24T05:19:50.4165251Z adding 'torch/include/ATen/ops/cross_entropy_loss_ops.h' 2025-07-24T05:19:50.4168179Z adding 'torch/include/ATen/ops/cross_native.h' 2025-07-24T05:19:50.4171537Z adding 'torch/include/ATen/ops/cross_ops.h' 2025-07-24T05:19:50.4174271Z adding 'torch/include/ATen/ops/crow_indices.h' 2025-07-24T05:19:50.4177456Z adding 'torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4180450Z adding 'torch/include/ATen/ops/crow_indices_copy.h' 2025-07-24T05:19:50.4183674Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4186785Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.4189552Z adding 'torch/include/ATen/ops/crow_indices_copy_native.h' 2025-07-24T05:19:50.4192665Z adding 'torch/include/ATen/ops/crow_indices_copy_ops.h' 2025-07-24T05:19:50.4195633Z adding 'torch/include/ATen/ops/crow_indices_native.h' 2025-07-24T05:19:50.4198794Z adding 'torch/include/ATen/ops/crow_indices_ops.h' 2025-07-24T05:19:50.4201904Z adding 'torch/include/ATen/ops/ctc_loss.h' 2025-07-24T05:19:50.4205195Z adding 'torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4208102Z adding 'torch/include/ATen/ops/ctc_loss_native.h' 2025-07-24T05:19:50.4211319Z adding 'torch/include/ATen/ops/ctc_loss_ops.h' 2025-07-24T05:19:50.4214525Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator.h' 2025-07-24T05:19:50.4217689Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h' 2025-07-24T05:19:50.4220968Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4223938Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h' 2025-07-24T05:19:50.4226924Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h' 2025-07-24T05:19:50.4230233Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h' 2025-07-24T05:19:50.4233463Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4236433Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h' 2025-07-24T05:19:50.4239550Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_native.h' 2025-07-24T05:19:50.4242709Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h' 2025-07-24T05:19:50.4245958Z adding 'torch/include/ATen/ops/cudnn_batch_norm.h' 2025-07-24T05:19:50.4249268Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward.h' 2025-07-24T05:19:50.4252695Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4255691Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h' 2025-07-24T05:19:50.4258707Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_native.h' 2025-07-24T05:19:50.4262029Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h' 2025-07-24T05:19:50.4265364Z adding 'torch/include/ATen/ops/cudnn_batch_norm_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4268380Z adding 'torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h' 2025-07-24T05:19:50.4271402Z adding 'torch/include/ATen/ops/cudnn_batch_norm_native.h' 2025-07-24T05:19:50.4274751Z adding 'torch/include/ATen/ops/cudnn_batch_norm_ops.h' 2025-07-24T05:19:50.4278478Z adding 'torch/include/ATen/ops/cudnn_convolution.h' 2025-07-24T05:19:50.4282184Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu.h' 2025-07-24T05:19:50.4285718Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4288796Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h' 2025-07-24T05:19:50.4292045Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_native.h' 2025-07-24T05:19:50.4295360Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h' 2025-07-24T05:19:50.4298587Z adding 'torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h' 2025-07-24T05:19:50.4301598Z adding 'torch/include/ATen/ops/cudnn_convolution_native.h' 2025-07-24T05:19:50.4304797Z adding 'torch/include/ATen/ops/cudnn_convolution_ops.h' 2025-07-24T05:19:50.4308332Z adding 'torch/include/ATen/ops/cudnn_convolution_relu.h' 2025-07-24T05:19:50.4311841Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4314887Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h' 2025-07-24T05:19:50.4317984Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_native.h' 2025-07-24T05:19:50.4321187Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_ops.h' 2025-07-24T05:19:50.4324825Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose.h' 2025-07-24T05:19:50.4328385Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4331459Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h' 2025-07-24T05:19:50.4334492Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_native.h' 2025-07-24T05:19:50.4337800Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_ops.h' 2025-07-24T05:19:50.4340817Z adding 'torch/include/ATen/ops/cudnn_grid_sampler.h' 2025-07-24T05:19:50.4343943Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward.h' 2025-07-24T05:19:50.4347187Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4350153Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h' 2025-07-24T05:19:50.4353084Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h' 2025-07-24T05:19:50.4356282Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h' 2025-07-24T05:19:50.4359638Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4362590Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h' 2025-07-24T05:19:50.4365838Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_native.h' 2025-07-24T05:19:50.4368720Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_ops.h' 2025-07-24T05:19:50.4371698Z adding 'torch/include/ATen/ops/cudnn_is_acceptable.h' 2025-07-24T05:19:50.4374877Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4377683Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_native.h' 2025-07-24T05:19:50.4380826Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_ops.h' 2025-07-24T05:19:50.4383846Z adding 'torch/include/ATen/ops/cummax.h' 2025-07-24T05:19:50.4387273Z adding 'torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4390400Z adding 'torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4393394Z adding 'torch/include/ATen/ops/cummax_native.h' 2025-07-24T05:19:50.4397135Z adding 'torch/include/ATen/ops/cummax_ops.h' 2025-07-24T05:19:50.4400095Z adding 'torch/include/ATen/ops/cummaxmin_backward.h' 2025-07-24T05:19:50.4403571Z adding 'torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4406465Z adding 'torch/include/ATen/ops/cummaxmin_backward_native.h' 2025-07-24T05:19:50.4409731Z adding 'torch/include/ATen/ops/cummaxmin_backward_ops.h' 2025-07-24T05:19:50.4412931Z adding 'torch/include/ATen/ops/cummin.h' 2025-07-24T05:19:50.4416354Z adding 'torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4419728Z adding 'torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4422493Z adding 'torch/include/ATen/ops/cummin_native.h' 2025-07-24T05:19:50.4425906Z adding 'torch/include/ATen/ops/cummin_ops.h' 2025-07-24T05:19:50.4429193Z adding 'torch/include/ATen/ops/cumprod.h' 2025-07-24T05:19:50.4432429Z adding 'torch/include/ATen/ops/cumprod_backward.h' 2025-07-24T05:19:50.4435651Z adding 'torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4439020Z adding 'torch/include/ATen/ops/cumprod_backward_native.h' 2025-07-24T05:19:50.4441888Z adding 'torch/include/ATen/ops/cumprod_backward_ops.h' 2025-07-24T05:19:50.4445406Z adding 'torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.4448554Z adding 'torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4452072Z adding 'torch/include/ATen/ops/cumprod_cpu_dispatch.h' 2025-07-24T05:19:50.4455359Z adding 'torch/include/ATen/ops/cumprod_cuda_dispatch.h' 2025-07-24T05:19:50.4458389Z adding 'torch/include/ATen/ops/cumprod_meta.h' 2025-07-24T05:19:50.4461649Z adding 'torch/include/ATen/ops/cumprod_meta_dispatch.h' 2025-07-24T05:19:50.4464659Z adding 'torch/include/ATen/ops/cumprod_native.h' 2025-07-24T05:19:50.4468296Z adding 'torch/include/ATen/ops/cumprod_ops.h' 2025-07-24T05:19:50.4471663Z adding 'torch/include/ATen/ops/cumsum.h' 2025-07-24T05:19:50.4475011Z adding 'torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.4478515Z adding 'torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4481562Z adding 'torch/include/ATen/ops/cumsum_cpu_dispatch.h' 2025-07-24T05:19:50.4484790Z adding 'torch/include/ATen/ops/cumsum_cuda_dispatch.h' 2025-07-24T05:19:50.4488388Z adding 'torch/include/ATen/ops/cumsum_meta.h' 2025-07-24T05:19:50.4491034Z adding 'torch/include/ATen/ops/cumsum_meta_dispatch.h' 2025-07-24T05:19:50.4494178Z adding 'torch/include/ATen/ops/cumsum_native.h' 2025-07-24T05:19:50.4497549Z adding 'torch/include/ATen/ops/cumsum_ops.h' 2025-07-24T05:19:50.4500892Z adding 'torch/include/ATen/ops/cumulative_trapezoid.h' 2025-07-24T05:19:50.4504169Z adding 'torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4507174Z adding 'torch/include/ATen/ops/cumulative_trapezoid_native.h' 2025-07-24T05:19:50.4510274Z adding 'torch/include/ATen/ops/cumulative_trapezoid_ops.h' 2025-07-24T05:19:50.4513294Z adding 'torch/include/ATen/ops/data.h' 2025-07-24T05:19:50.4516460Z adding 'torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4519690Z adding 'torch/include/ATen/ops/data_native.h' 2025-07-24T05:19:50.4522783Z adding 'torch/include/ATen/ops/data_ops.h' 2025-07-24T05:19:50.4525718Z adding 'torch/include/ATen/ops/deg2rad.h' 2025-07-24T05:19:50.4529159Z adding 'torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4531933Z adding 'torch/include/ATen/ops/deg2rad_native.h' 2025-07-24T05:19:50.4535235Z adding 'torch/include/ATen/ops/deg2rad_ops.h' 2025-07-24T05:19:50.4538197Z adding 'torch/include/ATen/ops/dense_dim.h' 2025-07-24T05:19:50.4541519Z adding 'torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4544335Z adding 'torch/include/ATen/ops/dense_dim_native.h' 2025-07-24T05:19:50.4547548Z adding 'torch/include/ATen/ops/dense_dim_ops.h' 2025-07-24T05:19:50.4550798Z adding 'torch/include/ATen/ops/dequantize.h' 2025-07-24T05:19:50.4554200Z adding 'torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4557580Z adding 'torch/include/ATen/ops/dequantize_cpu_dispatch.h' 2025-07-24T05:19:50.4560397Z adding 'torch/include/ATen/ops/dequantize_cuda_dispatch.h' 2025-07-24T05:19:50.4563574Z adding 'torch/include/ATen/ops/dequantize_native.h' 2025-07-24T05:19:50.4566831Z adding 'torch/include/ATen/ops/dequantize_ops.h' 2025-07-24T05:19:50.4570005Z adding 'torch/include/ATen/ops/det.h' 2025-07-24T05:19:50.4573182Z adding 'torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4576544Z adding 'torch/include/ATen/ops/det_native.h' 2025-07-24T05:19:50.4579411Z adding 'torch/include/ATen/ops/det_ops.h' 2025-07-24T05:19:50.4601176Z adding 'torch/include/ATen/ops/detach.h' 2025-07-24T05:19:50.4601447Z adding 'torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4601559Z adding 'torch/include/ATen/ops/detach_copy.h' 2025-07-24T05:19:50.4601821Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4602143Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.4602280Z adding 'torch/include/ATen/ops/detach_copy_native.h' 2025-07-24T05:19:50.4603316Z adding 'torch/include/ATen/ops/detach_copy_ops.h' 2025-07-24T05:19:50.4607253Z adding 'torch/include/ATen/ops/detach_native.h' 2025-07-24T05:19:50.4609589Z adding 'torch/include/ATen/ops/detach_ops.h' 2025-07-24T05:19:50.4613264Z adding 'torch/include/ATen/ops/diag.h' 2025-07-24T05:19:50.4616061Z adding 'torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4619305Z adding 'torch/include/ATen/ops/diag_embed.h' 2025-07-24T05:19:50.4622463Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4625759Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.4628564Z adding 'torch/include/ATen/ops/diag_embed_native.h' 2025-07-24T05:19:50.4631759Z adding 'torch/include/ATen/ops/diag_embed_ops.h' 2025-07-24T05:19:50.4634706Z adding 'torch/include/ATen/ops/diag_native.h' 2025-07-24T05:19:50.4638131Z adding 'torch/include/ATen/ops/diag_ops.h' 2025-07-24T05:19:50.4641223Z adding 'torch/include/ATen/ops/diagflat.h' 2025-07-24T05:19:50.4644428Z adding 'torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4647231Z adding 'torch/include/ATen/ops/diagflat_native.h' 2025-07-24T05:19:50.4650292Z adding 'torch/include/ATen/ops/diagflat_ops.h' 2025-07-24T05:19:50.4653841Z adding 'torch/include/ATen/ops/diagonal.h' 2025-07-24T05:19:50.4657034Z adding 'torch/include/ATen/ops/diagonal_backward.h' 2025-07-24T05:19:50.4660516Z adding 'torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4663429Z adding 'torch/include/ATen/ops/diagonal_backward_native.h' 2025-07-24T05:19:50.4666659Z adding 'torch/include/ATen/ops/diagonal_backward_ops.h' 2025-07-24T05:19:50.4669858Z adding 'torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4672948Z adding 'torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4675913Z adding 'torch/include/ATen/ops/diagonal_copy.h' 2025-07-24T05:19:50.4679375Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4683292Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.4685384Z adding 'torch/include/ATen/ops/diagonal_copy_native.h' 2025-07-24T05:19:50.4688577Z adding 'torch/include/ATen/ops/diagonal_copy_ops.h' 2025-07-24T05:19:50.4691602Z adding 'torch/include/ATen/ops/diagonal_native.h' 2025-07-24T05:19:50.4694786Z adding 'torch/include/ATen/ops/diagonal_ops.h' 2025-07-24T05:19:50.4697948Z adding 'torch/include/ATen/ops/diagonal_scatter.h' 2025-07-24T05:19:50.4701313Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4704455Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.4707299Z adding 'torch/include/ATen/ops/diagonal_scatter_native.h' 2025-07-24T05:19:50.4710664Z adding 'torch/include/ATen/ops/diagonal_scatter_ops.h' 2025-07-24T05:19:50.4713839Z adding 'torch/include/ATen/ops/diff.h' 2025-07-24T05:19:50.4717166Z adding 'torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4720210Z adding 'torch/include/ATen/ops/diff_native.h' 2025-07-24T05:19:50.4723390Z adding 'torch/include/ATen/ops/diff_ops.h' 2025-07-24T05:19:50.4726738Z adding 'torch/include/ATen/ops/digamma.h' 2025-07-24T05:19:50.4729828Z adding 'torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.4732765Z adding 'torch/include/ATen/ops/digamma_cpu_dispatch.h' 2025-07-24T05:19:50.4735837Z adding 'torch/include/ATen/ops/digamma_cuda_dispatch.h' 2025-07-24T05:19:50.4738770Z adding 'torch/include/ATen/ops/digamma_meta.h' 2025-07-24T05:19:50.4741821Z adding 'torch/include/ATen/ops/digamma_meta_dispatch.h' 2025-07-24T05:19:50.4744728Z adding 'torch/include/ATen/ops/digamma_native.h' 2025-07-24T05:19:50.4747869Z adding 'torch/include/ATen/ops/digamma_ops.h' 2025-07-24T05:19:50.4750964Z adding 'torch/include/ATen/ops/dist.h' 2025-07-24T05:19:50.4754216Z adding 'torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4757077Z adding 'torch/include/ATen/ops/dist_native.h' 2025-07-24T05:19:50.4760443Z adding 'torch/include/ATen/ops/dist_ops.h' 2025-07-24T05:19:50.4763727Z adding 'torch/include/ATen/ops/div.h' 2025-07-24T05:19:50.4767083Z adding 'torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4770290Z adding 'torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.4773232Z adding 'torch/include/ATen/ops/div_cpu_dispatch.h' 2025-07-24T05:19:50.4776363Z adding 'torch/include/ATen/ops/div_cuda_dispatch.h' 2025-07-24T05:19:50.4779383Z adding 'torch/include/ATen/ops/div_meta.h' 2025-07-24T05:19:50.4782589Z adding 'torch/include/ATen/ops/div_meta_dispatch.h' 2025-07-24T05:19:50.4785761Z adding 'torch/include/ATen/ops/div_native.h' 2025-07-24T05:19:50.4789460Z adding 'torch/include/ATen/ops/div_ops.h' 2025-07-24T05:19:50.4792832Z adding 'torch/include/ATen/ops/divide.h' 2025-07-24T05:19:50.4796199Z adding 'torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4799349Z adding 'torch/include/ATen/ops/divide_native.h' 2025-07-24T05:19:50.4802947Z adding 'torch/include/ATen/ops/divide_ops.h' 2025-07-24T05:19:50.4806198Z adding 'torch/include/ATen/ops/dot.h' 2025-07-24T05:19:50.4809384Z adding 'torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4812321Z adding 'torch/include/ATen/ops/dot_cpu_dispatch.h' 2025-07-24T05:19:50.4815324Z adding 'torch/include/ATen/ops/dot_cuda_dispatch.h' 2025-07-24T05:19:50.4818256Z adding 'torch/include/ATen/ops/dot_native.h' 2025-07-24T05:19:50.4821358Z adding 'torch/include/ATen/ops/dot_ops.h' 2025-07-24T05:19:50.4824367Z adding 'torch/include/ATen/ops/dropout.h' 2025-07-24T05:19:50.4827726Z adding 'torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4830546Z adding 'torch/include/ATen/ops/dropout_native.h' 2025-07-24T05:19:50.4833646Z adding 'torch/include/ATen/ops/dropout_ops.h' 2025-07-24T05:19:50.4836674Z adding 'torch/include/ATen/ops/dsplit.h' 2025-07-24T05:19:50.4840022Z adding 'torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4842886Z adding 'torch/include/ATen/ops/dsplit_native.h' 2025-07-24T05:19:50.4846048Z adding 'torch/include/ATen/ops/dsplit_ops.h' 2025-07-24T05:19:50.4849086Z adding 'torch/include/ATen/ops/dstack.h' 2025-07-24T05:19:50.4852308Z adding 'torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4855206Z adding 'torch/include/ATen/ops/dstack_native.h' 2025-07-24T05:19:50.4858522Z adding 'torch/include/ATen/ops/dstack_ops.h' 2025-07-24T05:19:50.4861567Z adding 'torch/include/ATen/ops/einsum.h' 2025-07-24T05:19:50.4864815Z adding 'torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4867597Z adding 'torch/include/ATen/ops/einsum_native.h' 2025-07-24T05:19:50.4870655Z adding 'torch/include/ATen/ops/einsum_ops.h' 2025-07-24T05:19:50.4873743Z adding 'torch/include/ATen/ops/elu.h' 2025-07-24T05:19:50.4876880Z adding 'torch/include/ATen/ops/elu_backward.h' 2025-07-24T05:19:50.4880386Z adding 'torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.4883377Z adding 'torch/include/ATen/ops/elu_backward_cpu_dispatch.h' 2025-07-24T05:19:50.4886480Z adding 'torch/include/ATen/ops/elu_backward_cuda_dispatch.h' 2025-07-24T05:19:50.4890394Z adding 'torch/include/ATen/ops/elu_backward_meta.h' 2025-07-24T05:19:50.4893277Z adding 'torch/include/ATen/ops/elu_backward_meta_dispatch.h' 2025-07-24T05:19:50.4896942Z adding 'torch/include/ATen/ops/elu_backward_native.h' 2025-07-24T05:19:50.4900558Z adding 'torch/include/ATen/ops/elu_backward_ops.h' 2025-07-24T05:19:50.4904223Z adding 'torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.4907625Z adding 'torch/include/ATen/ops/elu_cpu_dispatch.h' 2025-07-24T05:19:50.4910429Z adding 'torch/include/ATen/ops/elu_cuda_dispatch.h' 2025-07-24T05:19:50.4913605Z adding 'torch/include/ATen/ops/elu_meta.h' 2025-07-24T05:19:50.4916665Z adding 'torch/include/ATen/ops/elu_meta_dispatch.h' 2025-07-24T05:19:50.4919904Z adding 'torch/include/ATen/ops/elu_native.h' 2025-07-24T05:19:50.4923129Z adding 'torch/include/ATen/ops/elu_ops.h' 2025-07-24T05:19:50.4926773Z adding 'torch/include/ATen/ops/embedding.h' 2025-07-24T05:19:50.4930523Z adding 'torch/include/ATen/ops/embedding_backward.h' 2025-07-24T05:19:50.4933571Z adding 'torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4936558Z adding 'torch/include/ATen/ops/embedding_backward_native.h' 2025-07-24T05:19:50.4939692Z adding 'torch/include/ATen/ops/embedding_backward_ops.h' 2025-07-24T05:19:50.4943029Z adding 'torch/include/ATen/ops/embedding_bag.h' 2025-07-24T05:19:50.4946396Z adding 'torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.4949515Z adding 'torch/include/ATen/ops/embedding_bag_native.h' 2025-07-24T05:19:50.4953132Z adding 'torch/include/ATen/ops/embedding_bag_ops.h' 2025-07-24T05:19:50.4956339Z adding 'torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4959918Z adding 'torch/include/ATen/ops/embedding_dense_backward.h' 2025-07-24T05:19:50.4963390Z adding 'torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4966645Z adding 'torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h' 2025-07-24T05:19:50.4970381Z adding 'torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h' 2025-07-24T05:19:50.4972931Z adding 'torch/include/ATen/ops/embedding_dense_backward_native.h' 2025-07-24T05:19:50.4976500Z adding 'torch/include/ATen/ops/embedding_dense_backward_ops.h' 2025-07-24T05:19:50.4979724Z adding 'torch/include/ATen/ops/embedding_native.h' 2025-07-24T05:19:50.4982664Z adding 'torch/include/ATen/ops/embedding_ops.h' 2025-07-24T05:19:50.4985790Z adding 'torch/include/ATen/ops/embedding_renorm.h' 2025-07-24T05:19:50.4989219Z adding 'torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.4992194Z adding 'torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h' 2025-07-24T05:19:50.4995368Z adding 'torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h' 2025-07-24T05:19:50.4998936Z adding 'torch/include/ATen/ops/embedding_renorm_meta_dispatch.h' 2025-07-24T05:19:50.5001681Z adding 'torch/include/ATen/ops/embedding_renorm_native.h' 2025-07-24T05:19:50.5005061Z adding 'torch/include/ATen/ops/embedding_renorm_ops.h' 2025-07-24T05:19:50.5008203Z adding 'torch/include/ATen/ops/embedding_sparse_backward.h' 2025-07-24T05:19:50.5011650Z adding 'torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5014432Z adding 'torch/include/ATen/ops/embedding_sparse_backward_native.h' 2025-07-24T05:19:50.5017652Z adding 'torch/include/ATen/ops/embedding_sparse_backward_ops.h' 2025-07-24T05:19:50.5021749Z adding 'torch/include/ATen/ops/empty.h' 2025-07-24T05:19:50.5025010Z adding 'torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.5028268Z adding 'torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5031304Z adding 'torch/include/ATen/ops/empty_cpu_dispatch.h' 2025-07-24T05:19:50.5034806Z adding 'torch/include/ATen/ops/empty_cuda_dispatch.h' 2025-07-24T05:19:50.5038149Z adding 'torch/include/ATen/ops/empty_like.h' 2025-07-24T05:19:50.5041660Z adding 'torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.5045069Z adding 'torch/include/ATen/ops/empty_like_native.h' 2025-07-24T05:19:50.5048047Z adding 'torch/include/ATen/ops/empty_like_ops.h' 2025-07-24T05:19:50.5051366Z adding 'torch/include/ATen/ops/empty_meta_dispatch.h' 2025-07-24T05:19:50.5054554Z adding 'torch/include/ATen/ops/empty_native.h' 2025-07-24T05:19:50.5058203Z adding 'torch/include/ATen/ops/empty_ops.h' 2025-07-24T05:19:50.5062221Z adding 'torch/include/ATen/ops/empty_permuted.h' 2025-07-24T05:19:50.5065510Z adding 'torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.5068584Z adding 'torch/include/ATen/ops/empty_permuted_native.h' 2025-07-24T05:19:50.5071866Z adding 'torch/include/ATen/ops/empty_permuted_ops.h' 2025-07-24T05:19:50.5075312Z adding 'torch/include/ATen/ops/empty_quantized.h' 2025-07-24T05:19:50.5084527Z adding 'torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.5084752Z adding 'torch/include/ATen/ops/empty_quantized_native.h' 2025-07-24T05:19:50.5085690Z adding 'torch/include/ATen/ops/empty_quantized_ops.h' 2025-07-24T05:19:50.5104388Z adding 'torch/include/ATen/ops/empty_strided.h' 2025-07-24T05:19:50.5104720Z adding 'torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.5104884Z adding 'torch/include/ATen/ops/empty_strided_cpu_dispatch.h' 2025-07-24T05:19:50.5105051Z adding 'torch/include/ATen/ops/empty_strided_cuda_dispatch.h' 2025-07-24T05:19:50.5105217Z adding 'torch/include/ATen/ops/empty_strided_meta_dispatch.h' 2025-07-24T05:19:50.5106888Z adding 'torch/include/ATen/ops/empty_strided_native.h' 2025-07-24T05:19:50.5110397Z adding 'torch/include/ATen/ops/empty_strided_ops.h' 2025-07-24T05:19:50.5113448Z adding 'torch/include/ATen/ops/eq.h' 2025-07-24T05:19:50.5117160Z adding 'torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.5119997Z adding 'torch/include/ATen/ops/eq_cpu_dispatch.h' 2025-07-24T05:19:50.5123245Z adding 'torch/include/ATen/ops/eq_cuda_dispatch.h' 2025-07-24T05:19:50.5126262Z adding 'torch/include/ATen/ops/eq_meta.h' 2025-07-24T05:19:50.5129601Z adding 'torch/include/ATen/ops/eq_meta_dispatch.h' 2025-07-24T05:19:50.5132777Z adding 'torch/include/ATen/ops/eq_native.h' 2025-07-24T05:19:50.5136362Z adding 'torch/include/ATen/ops/eq_ops.h' 2025-07-24T05:19:50.5139678Z adding 'torch/include/ATen/ops/equal.h' 2025-07-24T05:19:50.5142779Z adding 'torch/include/ATen/ops/equal_cpu_dispatch.h' 2025-07-24T05:19:50.5145768Z adding 'torch/include/ATen/ops/equal_cuda_dispatch.h' 2025-07-24T05:19:50.5148950Z adding 'torch/include/ATen/ops/equal_native.h' 2025-07-24T05:19:50.5151779Z adding 'torch/include/ATen/ops/equal_ops.h' 2025-07-24T05:19:50.5155536Z adding 'torch/include/ATen/ops/erf.h' 2025-07-24T05:19:50.5158305Z adding 'torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.5161245Z adding 'torch/include/ATen/ops/erf_cpu_dispatch.h' 2025-07-24T05:19:50.5164273Z adding 'torch/include/ATen/ops/erf_cuda_dispatch.h' 2025-07-24T05:19:50.5167219Z adding 'torch/include/ATen/ops/erf_meta.h' 2025-07-24T05:19:50.5170344Z adding 'torch/include/ATen/ops/erf_meta_dispatch.h' 2025-07-24T05:19:50.5173228Z adding 'torch/include/ATen/ops/erf_native.h' 2025-07-24T05:19:50.5176364Z adding 'torch/include/ATen/ops/erf_ops.h' 2025-07-24T05:19:50.5179454Z adding 'torch/include/ATen/ops/erfc.h' 2025-07-24T05:19:50.5182708Z adding 'torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.5186239Z adding 'torch/include/ATen/ops/erfc_cpu_dispatch.h' 2025-07-24T05:19:50.5189522Z adding 'torch/include/ATen/ops/erfc_cuda_dispatch.h' 2025-07-24T05:19:50.5192556Z adding 'torch/include/ATen/ops/erfc_meta.h' 2025-07-24T05:19:50.5195625Z adding 'torch/include/ATen/ops/erfc_meta_dispatch.h' 2025-07-24T05:19:50.5198685Z adding 'torch/include/ATen/ops/erfc_native.h' 2025-07-24T05:19:50.5201843Z adding 'torch/include/ATen/ops/erfc_ops.h' 2025-07-24T05:19:50.5204888Z adding 'torch/include/ATen/ops/erfinv.h' 2025-07-24T05:19:50.5208172Z adding 'torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.5211020Z adding 'torch/include/ATen/ops/erfinv_cpu_dispatch.h' 2025-07-24T05:19:50.5214067Z adding 'torch/include/ATen/ops/erfinv_cuda_dispatch.h' 2025-07-24T05:19:50.5217057Z adding 'torch/include/ATen/ops/erfinv_meta.h' 2025-07-24T05:19:50.5220133Z adding 'torch/include/ATen/ops/erfinv_meta_dispatch.h' 2025-07-24T05:19:50.5223122Z adding 'torch/include/ATen/ops/erfinv_native.h' 2025-07-24T05:19:50.5226300Z adding 'torch/include/ATen/ops/erfinv_ops.h' 2025-07-24T05:19:50.5229351Z adding 'torch/include/ATen/ops/exp.h' 2025-07-24T05:19:50.5232431Z adding 'torch/include/ATen/ops/exp2.h' 2025-07-24T05:19:50.5235775Z adding 'torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.5238914Z adding 'torch/include/ATen/ops/exp2_cpu_dispatch.h' 2025-07-24T05:19:50.5241982Z adding 'torch/include/ATen/ops/exp2_cuda_dispatch.h' 2025-07-24T05:19:50.5244944Z adding 'torch/include/ATen/ops/exp2_meta.h' 2025-07-24T05:19:50.5247997Z adding 'torch/include/ATen/ops/exp2_meta_dispatch.h' 2025-07-24T05:19:50.5250925Z adding 'torch/include/ATen/ops/exp2_native.h' 2025-07-24T05:19:50.5254031Z adding 'torch/include/ATen/ops/exp2_ops.h' 2025-07-24T05:19:50.5257274Z adding 'torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.5260144Z adding 'torch/include/ATen/ops/exp_cpu_dispatch.h' 2025-07-24T05:19:50.5263190Z adding 'torch/include/ATen/ops/exp_cuda_dispatch.h' 2025-07-24T05:19:50.5266137Z adding 'torch/include/ATen/ops/exp_meta.h' 2025-07-24T05:19:50.5269173Z adding 'torch/include/ATen/ops/exp_meta_dispatch.h' 2025-07-24T05:19:50.5272126Z adding 'torch/include/ATen/ops/exp_native.h' 2025-07-24T05:19:50.5275268Z adding 'torch/include/ATen/ops/exp_ops.h' 2025-07-24T05:19:50.5278412Z adding 'torch/include/ATen/ops/expand.h' 2025-07-24T05:19:50.5281387Z adding 'torch/include/ATen/ops/expand_as.h' 2025-07-24T05:19:50.5284607Z adding 'torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5287466Z adding 'torch/include/ATen/ops/expand_as_native.h' 2025-07-24T05:19:50.5290530Z adding 'torch/include/ATen/ops/expand_as_ops.h' 2025-07-24T05:19:50.5293763Z adding 'torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.5296950Z adding 'torch/include/ATen/ops/expand_copy.h' 2025-07-24T05:19:50.5300350Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.5303524Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.5306313Z adding 'torch/include/ATen/ops/expand_copy_native.h' 2025-07-24T05:19:50.5309466Z adding 'torch/include/ATen/ops/expand_copy_ops.h' 2025-07-24T05:19:50.5312479Z adding 'torch/include/ATen/ops/expand_native.h' 2025-07-24T05:19:50.5315551Z adding 'torch/include/ATen/ops/expand_ops.h' 2025-07-24T05:19:50.5318726Z adding 'torch/include/ATen/ops/expm1.h' 2025-07-24T05:19:50.5322529Z adding 'torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.5324895Z adding 'torch/include/ATen/ops/expm1_cpu_dispatch.h' 2025-07-24T05:19:50.5327938Z adding 'torch/include/ATen/ops/expm1_cuda_dispatch.h' 2025-07-24T05:19:50.5330849Z adding 'torch/include/ATen/ops/expm1_meta.h' 2025-07-24T05:19:50.5333909Z adding 'torch/include/ATen/ops/expm1_meta_dispatch.h' 2025-07-24T05:19:50.5336887Z adding 'torch/include/ATen/ops/expm1_native.h' 2025-07-24T05:19:50.5340019Z adding 'torch/include/ATen/ops/expm1_ops.h' 2025-07-24T05:19:50.5343176Z adding 'torch/include/ATen/ops/exponential.h' 2025-07-24T05:19:50.5346402Z adding 'torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.5349344Z adding 'torch/include/ATen/ops/exponential_cpu_dispatch.h' 2025-07-24T05:19:50.5352391Z adding 'torch/include/ATen/ops/exponential_cuda_dispatch.h' 2025-07-24T05:19:50.5355401Z adding 'torch/include/ATen/ops/exponential_meta_dispatch.h' 2025-07-24T05:19:50.5358486Z adding 'torch/include/ATen/ops/exponential_native.h' 2025-07-24T05:19:50.5361735Z adding 'torch/include/ATen/ops/exponential_ops.h' 2025-07-24T05:19:50.5365435Z adding 'torch/include/ATen/ops/eye.h' 2025-07-24T05:19:50.5368984Z adding 'torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.5372042Z adding 'torch/include/ATen/ops/eye_cpu_dispatch.h' 2025-07-24T05:19:50.5375142Z adding 'torch/include/ATen/ops/eye_cuda_dispatch.h' 2025-07-24T05:19:50.5378195Z adding 'torch/include/ATen/ops/eye_meta_dispatch.h' 2025-07-24T05:19:50.5381218Z adding 'torch/include/ATen/ops/eye_native.h' 2025-07-24T05:19:50.5384521Z adding 'torch/include/ATen/ops/eye_ops.h' 2025-07-24T05:19:50.5387732Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine.h' 2025-07-24T05:19:50.5390957Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h' 2025-07-24T05:19:50.5394218Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h' 2025-07-24T05:19:50.5397523Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5400640Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h' 2025-07-24T05:19:50.5403754Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h' 2025-07-24T05:19:50.5407202Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.5410413Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h' 2025-07-24T05:19:50.5413452Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h' 2025-07-24T05:19:50.5416582Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h' 2025-07-24T05:19:50.5419877Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h' 2025-07-24T05:19:50.5423353Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5426207Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h' 2025-07-24T05:19:50.5429543Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h' 2025-07-24T05:19:50.5433199Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine.h' 2025-07-24T05:19:50.5436000Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h' 2025-07-24T05:19:50.5439441Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h' 2025-07-24T05:19:50.5442645Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5445629Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h' 2025-07-24T05:19:50.5448781Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h' 2025-07-24T05:19:50.5452145Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.5455165Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h' 2025-07-24T05:19:50.5458453Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h' 2025-07-24T05:19:50.5461909Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h' 2025-07-24T05:19:50.5464886Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h' 2025-07-24T05:19:50.5468266Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5471419Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h' 2025-07-24T05:19:50.5474771Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h' 2025-07-24T05:19:50.5477869Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight.h' 2025-07-24T05:19:50.5481287Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5484782Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h' 2025-07-24T05:19:50.5487666Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5490954Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h' 2025-07-24T05:19:50.5493841Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h' 2025-07-24T05:19:50.5496898Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h' 2025-07-24T05:19:50.5500015Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h' 2025-07-24T05:19:50.5503430Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight.h' 2025-07-24T05:19:50.5506539Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5509754Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h' 2025-07-24T05:19:50.5513555Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5516037Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h' 2025-07-24T05:19:50.5519585Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h' 2025-07-24T05:19:50.5522520Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h' 2025-07-24T05:19:50.5525797Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h' 2025-07-24T05:19:50.5528898Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight.h' 2025-07-24T05:19:50.5532323Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5535206Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h' 2025-07-24T05:19:50.5538472Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h' 2025-07-24T05:19:50.5542029Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h' 2025-07-24T05:19:50.5544774Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5547908Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h' 2025-07-24T05:19:50.5550845Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h' 2025-07-24T05:19:50.5553974Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h' 2025-07-24T05:19:50.5557268Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5560341Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h' 2025-07-24T05:19:50.5563495Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h' 2025-07-24T05:19:50.5566698Z adding 'torch/include/ATen/ops/feature_alpha_dropout.h' 2025-07-24T05:19:50.5570044Z adding 'torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5572916Z adding 'torch/include/ATen/ops/feature_alpha_dropout_native.h' 2025-07-24T05:19:50.5576312Z adding 'torch/include/ATen/ops/feature_alpha_dropout_ops.h' 2025-07-24T05:19:50.5579184Z adding 'torch/include/ATen/ops/feature_dropout.h' 2025-07-24T05:19:50.5584424Z adding 'torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5585676Z adding 'torch/include/ATen/ops/feature_dropout_native.h' 2025-07-24T05:19:50.5588797Z adding 'torch/include/ATen/ops/feature_dropout_ops.h' 2025-07-24T05:19:50.5628182Z adding 'torch/include/ATen/ops/fft_fft.h' 2025-07-24T05:19:50.5628314Z adding 'torch/include/ATen/ops/fft_fft2.h' 2025-07-24T05:19:50.5628568Z adding 'torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5628691Z adding 'torch/include/ATen/ops/fft_fft2_native.h' 2025-07-24T05:19:50.5628820Z adding 'torch/include/ATen/ops/fft_fft2_ops.h' 2025-07-24T05:19:50.5629070Z adding 'torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5629186Z adding 'torch/include/ATen/ops/fft_fft_native.h' 2025-07-24T05:19:50.5629304Z adding 'torch/include/ATen/ops/fft_fft_ops.h' 2025-07-24T05:19:50.5629410Z adding 'torch/include/ATen/ops/fft_fftfreq.h' 2025-07-24T05:19:50.5629659Z adding 'torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.5629796Z adding 'torch/include/ATen/ops/fft_fftfreq_native.h' 2025-07-24T05:19:50.5632130Z adding 'torch/include/ATen/ops/fft_fftfreq_ops.h' 2025-07-24T05:19:50.5635782Z adding 'torch/include/ATen/ops/fft_fftn.h' 2025-07-24T05:19:50.5640409Z adding 'torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5642454Z adding 'torch/include/ATen/ops/fft_fftn_native.h' 2025-07-24T05:19:50.5646300Z adding 'torch/include/ATen/ops/fft_fftn_ops.h' 2025-07-24T05:19:50.5648941Z adding 'torch/include/ATen/ops/fft_fftshift.h' 2025-07-24T05:19:50.5652480Z adding 'torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5655170Z adding 'torch/include/ATen/ops/fft_fftshift_native.h' 2025-07-24T05:19:50.5658274Z adding 'torch/include/ATen/ops/fft_fftshift_ops.h' 2025-07-24T05:19:50.5661612Z adding 'torch/include/ATen/ops/fft_hfft.h' 2025-07-24T05:19:50.5665310Z adding 'torch/include/ATen/ops/fft_hfft2.h' 2025-07-24T05:19:50.5668732Z adding 'torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5671639Z adding 'torch/include/ATen/ops/fft_hfft2_native.h' 2025-07-24T05:19:50.5674812Z adding 'torch/include/ATen/ops/fft_hfft2_ops.h' 2025-07-24T05:19:50.5679780Z adding 'torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5681372Z adding 'torch/include/ATen/ops/fft_hfft_native.h' 2025-07-24T05:19:50.5684545Z adding 'torch/include/ATen/ops/fft_hfft_ops.h' 2025-07-24T05:19:50.5687950Z adding 'torch/include/ATen/ops/fft_hfftn.h' 2025-07-24T05:19:50.5691456Z adding 'torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5694263Z adding 'torch/include/ATen/ops/fft_hfftn_native.h' 2025-07-24T05:19:50.5697490Z adding 'torch/include/ATen/ops/fft_hfftn_ops.h' 2025-07-24T05:19:50.5700889Z adding 'torch/include/ATen/ops/fft_ifft.h' 2025-07-24T05:19:50.5704395Z adding 'torch/include/ATen/ops/fft_ifft2.h' 2025-07-24T05:19:50.5707836Z adding 'torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5710899Z adding 'torch/include/ATen/ops/fft_ifft2_native.h' 2025-07-24T05:19:50.5714120Z adding 'torch/include/ATen/ops/fft_ifft2_ops.h' 2025-07-24T05:19:50.5717415Z adding 'torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5720441Z adding 'torch/include/ATen/ops/fft_ifft_native.h' 2025-07-24T05:19:50.5723647Z adding 'torch/include/ATen/ops/fft_ifft_ops.h' 2025-07-24T05:19:50.5727106Z adding 'torch/include/ATen/ops/fft_ifftn.h' 2025-07-24T05:19:50.5730481Z adding 'torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5733393Z adding 'torch/include/ATen/ops/fft_ifftn_native.h' 2025-07-24T05:19:50.5736569Z adding 'torch/include/ATen/ops/fft_ifftn_ops.h' 2025-07-24T05:19:50.5739624Z adding 'torch/include/ATen/ops/fft_ifftshift.h' 2025-07-24T05:19:50.5743004Z adding 'torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5745882Z adding 'torch/include/ATen/ops/fft_ifftshift_native.h' 2025-07-24T05:19:50.5748950Z adding 'torch/include/ATen/ops/fft_ifftshift_ops.h' 2025-07-24T05:19:50.5752267Z adding 'torch/include/ATen/ops/fft_ihfft.h' 2025-07-24T05:19:50.5755733Z adding 'torch/include/ATen/ops/fft_ihfft2.h' 2025-07-24T05:19:50.5759251Z adding 'torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5762216Z adding 'torch/include/ATen/ops/fft_ihfft2_native.h' 2025-07-24T05:19:50.5766073Z adding 'torch/include/ATen/ops/fft_ihfft2_ops.h' 2025-07-24T05:19:50.5768946Z adding 'torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5771843Z adding 'torch/include/ATen/ops/fft_ihfft_native.h' 2025-07-24T05:19:50.5775087Z adding 'torch/include/ATen/ops/fft_ihfft_ops.h' 2025-07-24T05:19:50.5778725Z adding 'torch/include/ATen/ops/fft_ihfftn.h' 2025-07-24T05:19:50.5788982Z adding 'torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5789131Z adding 'torch/include/ATen/ops/fft_ihfftn_native.h' 2025-07-24T05:19:50.5790952Z adding 'torch/include/ATen/ops/fft_ihfftn_ops.h' 2025-07-24T05:19:50.5794206Z adding 'torch/include/ATen/ops/fft_irfft.h' 2025-07-24T05:19:50.5797670Z adding 'torch/include/ATen/ops/fft_irfft2.h' 2025-07-24T05:19:50.5801234Z adding 'torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5804142Z adding 'torch/include/ATen/ops/fft_irfft2_native.h' 2025-07-24T05:19:50.5807336Z adding 'torch/include/ATen/ops/fft_irfft2_ops.h' 2025-07-24T05:19:50.5810761Z adding 'torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5813653Z adding 'torch/include/ATen/ops/fft_irfft_native.h' 2025-07-24T05:19:50.5816932Z adding 'torch/include/ATen/ops/fft_irfft_ops.h' 2025-07-24T05:19:50.5820413Z adding 'torch/include/ATen/ops/fft_irfftn.h' 2025-07-24T05:19:50.5823917Z adding 'torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5826864Z adding 'torch/include/ATen/ops/fft_irfftn_native.h' 2025-07-24T05:19:50.5830052Z adding 'torch/include/ATen/ops/fft_irfftn_ops.h' 2025-07-24T05:19:50.5833478Z adding 'torch/include/ATen/ops/fft_rfft.h' 2025-07-24T05:19:50.5836997Z adding 'torch/include/ATen/ops/fft_rfft2.h' 2025-07-24T05:19:50.5841033Z adding 'torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5843797Z adding 'torch/include/ATen/ops/fft_rfft2_native.h' 2025-07-24T05:19:50.5846998Z adding 'torch/include/ATen/ops/fft_rfft2_ops.h' 2025-07-24T05:19:50.5850382Z adding 'torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5853202Z adding 'torch/include/ATen/ops/fft_rfft_native.h' 2025-07-24T05:19:50.5856414Z adding 'torch/include/ATen/ops/fft_rfft_ops.h' 2025-07-24T05:19:50.5859641Z adding 'torch/include/ATen/ops/fft_rfftfreq.h' 2025-07-24T05:19:50.5862961Z adding 'torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.5865857Z adding 'torch/include/ATen/ops/fft_rfftfreq_native.h' 2025-07-24T05:19:50.5869246Z adding 'torch/include/ATen/ops/fft_rfftfreq_ops.h' 2025-07-24T05:19:50.5872677Z adding 'torch/include/ATen/ops/fft_rfftn.h' 2025-07-24T05:19:50.5876152Z adding 'torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5879224Z adding 'torch/include/ATen/ops/fft_rfftn_native.h' 2025-07-24T05:19:50.5882458Z adding 'torch/include/ATen/ops/fft_rfftn_ops.h' 2025-07-24T05:19:50.5885741Z adding 'torch/include/ATen/ops/fill.h' 2025-07-24T05:19:50.5889037Z adding 'torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.5891992Z adding 'torch/include/ATen/ops/fill_cpu_dispatch.h' 2025-07-24T05:19:50.5895025Z adding 'torch/include/ATen/ops/fill_cuda_dispatch.h' 2025-07-24T05:19:50.5897891Z adding 'torch/include/ATen/ops/fill_diagonal.h' 2025-07-24T05:19:50.5901069Z adding 'torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5903913Z adding 'torch/include/ATen/ops/fill_diagonal_native.h' 2025-07-24T05:19:50.5906958Z adding 'torch/include/ATen/ops/fill_diagonal_ops.h' 2025-07-24T05:19:50.5910020Z adding 'torch/include/ATen/ops/fill_meta_dispatch.h' 2025-07-24T05:19:50.5913062Z adding 'torch/include/ATen/ops/fill_native.h' 2025-07-24T05:19:50.5916448Z adding 'torch/include/ATen/ops/fill_ops.h' 2025-07-24T05:19:50.5919723Z adding 'torch/include/ATen/ops/fix.h' 2025-07-24T05:19:50.5922996Z adding 'torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5926533Z adding 'torch/include/ATen/ops/fix_native.h' 2025-07-24T05:19:50.5929796Z adding 'torch/include/ATen/ops/fix_ops.h' 2025-07-24T05:19:50.5933000Z adding 'torch/include/ATen/ops/flatten.h' 2025-07-24T05:19:50.5936298Z adding 'torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5939232Z adding 'torch/include/ATen/ops/flatten_dense_tensors.h' 2025-07-24T05:19:50.5942526Z adding 'torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5945355Z adding 'torch/include/ATen/ops/flatten_dense_tensors_native.h' 2025-07-24T05:19:50.5948444Z adding 'torch/include/ATen/ops/flatten_dense_tensors_ops.h' 2025-07-24T05:19:50.5951447Z adding 'torch/include/ATen/ops/flatten_native.h' 2025-07-24T05:19:50.5954825Z adding 'torch/include/ATen/ops/flatten_ops.h' 2025-07-24T05:19:50.5957989Z adding 'torch/include/ATen/ops/flip.h' 2025-07-24T05:19:50.5961340Z adding 'torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.5964233Z adding 'torch/include/ATen/ops/flip_cpu_dispatch.h' 2025-07-24T05:19:50.5967888Z adding 'torch/include/ATen/ops/flip_cuda_dispatch.h' 2025-07-24T05:19:50.5970369Z adding 'torch/include/ATen/ops/flip_native.h' 2025-07-24T05:19:50.5973599Z adding 'torch/include/ATen/ops/flip_ops.h' 2025-07-24T05:19:50.5976691Z adding 'torch/include/ATen/ops/fliplr.h' 2025-07-24T05:19:50.5980126Z adding 'torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5982913Z adding 'torch/include/ATen/ops/fliplr_native.h' 2025-07-24T05:19:50.5986139Z adding 'torch/include/ATen/ops/fliplr_ops.h' 2025-07-24T05:19:50.5989130Z adding 'torch/include/ATen/ops/flipud.h' 2025-07-24T05:19:50.5992474Z adding 'torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.5995320Z adding 'torch/include/ATen/ops/flipud_native.h' 2025-07-24T05:19:50.5998716Z adding 'torch/include/ATen/ops/flipud_ops.h' 2025-07-24T05:19:50.6038109Z adding 'torch/include/ATen/ops/float_power.h' 2025-07-24T05:19:50.6038396Z adding 'torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.6038526Z adding 'torch/include/ATen/ops/float_power_native.h' 2025-07-24T05:19:50.6038643Z adding 'torch/include/ATen/ops/float_power_ops.h' 2025-07-24T05:19:50.6038738Z adding 'torch/include/ATen/ops/floor.h' 2025-07-24T05:19:50.6039037Z adding 'torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.6039173Z adding 'torch/include/ATen/ops/floor_cpu_dispatch.h' 2025-07-24T05:19:50.6039306Z adding 'torch/include/ATen/ops/floor_cuda_dispatch.h' 2025-07-24T05:19:50.6039434Z adding 'torch/include/ATen/ops/floor_divide.h' 2025-07-24T05:19:50.6039690Z adding 'torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.6039846Z adding 'torch/include/ATen/ops/floor_divide_cpu_dispatch.h' 2025-07-24T05:19:50.6041617Z adding 'torch/include/ATen/ops/floor_divide_cuda_dispatch.h' 2025-07-24T05:19:50.6044774Z adding 'torch/include/ATen/ops/floor_divide_meta_dispatch.h' 2025-07-24T05:19:50.6050110Z adding 'torch/include/ATen/ops/floor_divide_native.h' 2025-07-24T05:19:50.6057198Z adding 'torch/include/ATen/ops/floor_divide_ops.h' 2025-07-24T05:19:50.6060342Z adding 'torch/include/ATen/ops/floor_meta.h' 2025-07-24T05:19:50.6063670Z adding 'torch/include/ATen/ops/floor_meta_dispatch.h' 2025-07-24T05:19:50.6066744Z adding 'torch/include/ATen/ops/floor_native.h' 2025-07-24T05:19:50.6069941Z adding 'torch/include/ATen/ops/floor_ops.h' 2025-07-24T05:19:50.6073253Z adding 'torch/include/ATen/ops/fmax.h' 2025-07-24T05:19:50.6076639Z adding 'torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.6079654Z adding 'torch/include/ATen/ops/fmax_cpu_dispatch.h' 2025-07-24T05:19:50.6082738Z adding 'torch/include/ATen/ops/fmax_cuda_dispatch.h' 2025-07-24T05:19:50.6085702Z adding 'torch/include/ATen/ops/fmax_meta.h' 2025-07-24T05:19:50.6089243Z adding 'torch/include/ATen/ops/fmax_meta_dispatch.h' 2025-07-24T05:19:50.6091854Z adding 'torch/include/ATen/ops/fmax_native.h' 2025-07-24T05:19:50.6095012Z adding 'torch/include/ATen/ops/fmax_ops.h' 2025-07-24T05:19:50.6098063Z adding 'torch/include/ATen/ops/fmin.h' 2025-07-24T05:19:50.6101415Z adding 'torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.6104298Z adding 'torch/include/ATen/ops/fmin_cpu_dispatch.h' 2025-07-24T05:19:50.6107341Z adding 'torch/include/ATen/ops/fmin_cuda_dispatch.h' 2025-07-24T05:19:50.6110273Z adding 'torch/include/ATen/ops/fmin_meta.h' 2025-07-24T05:19:50.6113351Z adding 'torch/include/ATen/ops/fmin_meta_dispatch.h' 2025-07-24T05:19:50.6116279Z adding 'torch/include/ATen/ops/fmin_native.h' 2025-07-24T05:19:50.6119880Z adding 'torch/include/ATen/ops/fmin_ops.h' 2025-07-24T05:19:50.6122823Z adding 'torch/include/ATen/ops/fmod.h' 2025-07-24T05:19:50.6126111Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.6129214Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.6132121Z adding 'torch/include/ATen/ops/fmod_cpu_dispatch.h' 2025-07-24T05:19:50.6135128Z adding 'torch/include/ATen/ops/fmod_cuda_dispatch.h' 2025-07-24T05:19:50.6138049Z adding 'torch/include/ATen/ops/fmod_meta.h' 2025-07-24T05:19:50.6141124Z adding 'torch/include/ATen/ops/fmod_meta_dispatch.h' 2025-07-24T05:19:50.6144132Z adding 'torch/include/ATen/ops/fmod_native.h' 2025-07-24T05:19:50.6147486Z adding 'torch/include/ATen/ops/fmod_ops.h' 2025-07-24T05:19:50.6150612Z adding 'torch/include/ATen/ops/frac.h' 2025-07-24T05:19:50.6153870Z adding 'torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.6156926Z adding 'torch/include/ATen/ops/frac_cpu_dispatch.h' 2025-07-24T05:19:50.6160167Z adding 'torch/include/ATen/ops/frac_cuda_dispatch.h' 2025-07-24T05:19:50.6163108Z adding 'torch/include/ATen/ops/frac_meta.h' 2025-07-24T05:19:50.6166221Z adding 'torch/include/ATen/ops/frac_meta_dispatch.h' 2025-07-24T05:19:50.6169138Z adding 'torch/include/ATen/ops/frac_native.h' 2025-07-24T05:19:50.6172341Z adding 'torch/include/ATen/ops/frac_ops.h' 2025-07-24T05:19:50.6176254Z adding 'torch/include/ATen/ops/fractional_max_pool2d.h' 2025-07-24T05:19:50.6178989Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward.h' 2025-07-24T05:19:50.6182434Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.6185400Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h' 2025-07-24T05:19:50.6188511Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h' 2025-07-24T05:19:50.6191469Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h' 2025-07-24T05:19:50.6194679Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h' 2025-07-24T05:19:50.6197682Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_native.h' 2025-07-24T05:19:50.6201018Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h' 2025-07-24T05:19:50.6204316Z adding 'torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.6207274Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h' 2025-07-24T05:19:50.6210383Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h' 2025-07-24T05:19:50.6213343Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta.h' 2025-07-24T05:19:50.6216468Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h' 2025-07-24T05:19:50.6219767Z adding 'torch/include/ATen/ops/fractional_max_pool2d_native.h' 2025-07-24T05:19:50.6223016Z adding 'torch/include/ATen/ops/fractional_max_pool2d_ops.h' 2025-07-24T05:19:50.6226215Z adding 'torch/include/ATen/ops/fractional_max_pool3d.h' 2025-07-24T05:19:50.6229398Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward.h' 2025-07-24T05:19:50.6232561Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h' 2025-07-24T05:19:50.6235697Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h' 2025-07-24T05:19:50.6238856Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_native.h' 2025-07-24T05:19:50.6242233Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h' 2025-07-24T05:19:50.6245541Z adding 'torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.6248469Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h' 2025-07-24T05:19:50.6251584Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h' 2025-07-24T05:19:50.6255453Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta.h' 2025-07-24T05:19:50.6259130Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h' 2025-07-24T05:19:50.6262236Z adding 'torch/include/ATen/ops/fractional_max_pool3d_native.h' 2025-07-24T05:19:50.6265440Z adding 'torch/include/ATen/ops/fractional_max_pool3d_ops.h' 2025-07-24T05:19:50.6268538Z adding 'torch/include/ATen/ops/frexp.h' 2025-07-24T05:19:50.6271755Z adding 'torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.6274671Z adding 'torch/include/ATen/ops/frexp_cpu_dispatch.h' 2025-07-24T05:19:50.6277870Z adding 'torch/include/ATen/ops/frexp_cuda_dispatch.h' 2025-07-24T05:19:50.6280968Z adding 'torch/include/ATen/ops/frexp_native.h' 2025-07-24T05:19:50.6284257Z adding 'torch/include/ATen/ops/frexp_ops.h' 2025-07-24T05:19:50.6287381Z adding 'torch/include/ATen/ops/frobenius_norm.h' 2025-07-24T05:19:50.6290822Z adding 'torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.6293654Z adding 'torch/include/ATen/ops/frobenius_norm_native.h' 2025-07-24T05:19:50.6296953Z adding 'torch/include/ATen/ops/frobenius_norm_ops.h' 2025-07-24T05:19:50.6300709Z adding 'torch/include/ATen/ops/from_blob.h' 2025-07-24T05:19:50.6304037Z adding 'torch/include/ATen/ops/from_file.h' 2025-07-24T05:19:50.6307465Z adding 'torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.6310515Z adding 'torch/include/ATen/ops/from_file_cpu_dispatch.h' 2025-07-24T05:19:50.6313730Z adding 'torch/include/ATen/ops/from_file_native.h' 2025-07-24T05:19:50.6317508Z adding 'torch/include/ATen/ops/from_file_ops.h' 2025-07-24T05:19:50.6320935Z adding 'torch/include/ATen/ops/full.h' 2025-07-24T05:19:50.6324646Z adding 'torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.6327844Z adding 'torch/include/ATen/ops/full_like.h' 2025-07-24T05:19:50.6331439Z adding 'torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.6334488Z adding 'torch/include/ATen/ops/full_like_native.h' 2025-07-24T05:19:50.6337877Z adding 'torch/include/ATen/ops/full_like_ops.h' 2025-07-24T05:19:50.6340983Z adding 'torch/include/ATen/ops/full_native.h' 2025-07-24T05:19:50.6352312Z adding 'torch/include/ATen/ops/full_ops.h' 2025-07-24T05:19:50.6355687Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h' 2025-07-24T05:19:50.6359234Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.6362214Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h' 2025-07-24T05:19:50.6365619Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h' 2025-07-24T05:19:50.6369040Z adding 'torch/include/ATen/ops/gather.h' 2025-07-24T05:19:50.6371987Z adding 'torch/include/ATen/ops/gather_backward.h' 2025-07-24T05:19:50.6375368Z adding 'torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.6378193Z adding 'torch/include/ATen/ops/gather_backward_native.h' 2025-07-24T05:19:50.6381459Z adding 'torch/include/ATen/ops/gather_backward_ops.h' 2025-07-24T05:19:50.6384822Z adding 'torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.6387998Z adding 'torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.6390965Z adding 'torch/include/ATen/ops/gather_cpu_dispatch.h' 2025-07-24T05:19:50.6394154Z adding 'torch/include/ATen/ops/gather_cuda_dispatch.h' 2025-07-24T05:19:50.6397674Z adding 'torch/include/ATen/ops/gather_meta.h' 2025-07-24T05:19:50.6400446Z adding 'torch/include/ATen/ops/gather_meta_dispatch.h' 2025-07-24T05:19:50.6403844Z adding 'torch/include/ATen/ops/gather_native.h' 2025-07-24T05:19:50.6406873Z adding 'torch/include/ATen/ops/gather_ops.h' 2025-07-24T05:19:50.6410117Z adding 'torch/include/ATen/ops/gcd.h' 2025-07-24T05:19:50.6413406Z adding 'torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.6416469Z adding 'torch/include/ATen/ops/gcd_cpu_dispatch.h' 2025-07-24T05:19:50.6419522Z adding 'torch/include/ATen/ops/gcd_cuda_dispatch.h' 2025-07-24T05:19:50.6422616Z adding 'torch/include/ATen/ops/gcd_meta.h' 2025-07-24T05:19:50.6426335Z adding 'torch/include/ATen/ops/gcd_meta_dispatch.h' 2025-07-24T05:19:50.6428857Z adding 'torch/include/ATen/ops/gcd_native.h' 2025-07-24T05:19:50.6432441Z adding 'torch/include/ATen/ops/gcd_ops.h' 2025-07-24T05:19:50.6435335Z adding 'torch/include/ATen/ops/ge.h' 2025-07-24T05:19:50.6438891Z adding 'torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.6441865Z adding 'torch/include/ATen/ops/ge_cpu_dispatch.h' 2025-07-24T05:19:50.6445095Z adding 'torch/include/ATen/ops/ge_cuda_dispatch.h' 2025-07-24T05:19:50.6448054Z adding 'torch/include/ATen/ops/ge_meta.h' 2025-07-24T05:19:50.6451317Z adding 'torch/include/ATen/ops/ge_meta_dispatch.h' 2025-07-24T05:19:50.6454927Z adding 'torch/include/ATen/ops/ge_native.h' 2025-07-24T05:19:50.6457954Z adding 'torch/include/ATen/ops/ge_ops.h' 2025-07-24T05:19:50.6461270Z adding 'torch/include/ATen/ops/gelu.h' 2025-07-24T05:19:50.6464506Z adding 'torch/include/ATen/ops/gelu_backward.h' 2025-07-24T05:19:50.6467873Z adding 'torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.6470820Z adding 'torch/include/ATen/ops/gelu_backward_cpu_dispatch.h' 2025-07-24T05:19:50.6474109Z adding 'torch/include/ATen/ops/gelu_backward_cuda_dispatch.h' 2025-07-24T05:19:50.6477102Z adding 'torch/include/ATen/ops/gelu_backward_meta.h' 2025-07-24T05:19:50.6480510Z adding 'torch/include/ATen/ops/gelu_backward_meta_dispatch.h' 2025-07-24T05:19:50.6483991Z adding 'torch/include/ATen/ops/gelu_backward_native.h' 2025-07-24T05:19:50.6486881Z adding 'torch/include/ATen/ops/gelu_backward_ops.h' 2025-07-24T05:19:50.6490287Z adding 'torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.6493218Z adding 'torch/include/ATen/ops/gelu_cpu_dispatch.h' 2025-07-24T05:19:50.6496514Z adding 'torch/include/ATen/ops/gelu_cuda_dispatch.h' 2025-07-24T05:19:50.6499430Z adding 'torch/include/ATen/ops/gelu_meta.h' 2025-07-24T05:19:50.6502692Z adding 'torch/include/ATen/ops/gelu_meta_dispatch.h' 2025-07-24T05:19:50.6505785Z adding 'torch/include/ATen/ops/gelu_native.h' 2025-07-24T05:19:50.6509115Z adding 'torch/include/ATen/ops/gelu_ops.h' 2025-07-24T05:19:50.6512730Z adding 'torch/include/ATen/ops/geometric.h' 2025-07-24T05:19:50.6515632Z adding 'torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.6518817Z adding 'torch/include/ATen/ops/geometric_cpu_dispatch.h' 2025-07-24T05:19:50.6521892Z adding 'torch/include/ATen/ops/geometric_cuda_dispatch.h' 2025-07-24T05:19:50.6525067Z adding 'torch/include/ATen/ops/geometric_meta_dispatch.h' 2025-07-24T05:19:50.6528141Z adding 'torch/include/ATen/ops/geometric_native.h' 2025-07-24T05:19:50.6531567Z adding 'torch/include/ATen/ops/geometric_ops.h' 2025-07-24T05:19:50.6535220Z adding 'torch/include/ATen/ops/geqrf.h' 2025-07-24T05:19:50.6537916Z adding 'torch/include/ATen/ops/geqrf_cpu_dispatch.h' 2025-07-24T05:19:50.6541417Z adding 'torch/include/ATen/ops/geqrf_cuda_dispatch.h' 2025-07-24T05:19:50.6544070Z adding 'torch/include/ATen/ops/geqrf_native.h' 2025-07-24T05:19:50.6547351Z adding 'torch/include/ATen/ops/geqrf_ops.h' 2025-07-24T05:19:50.6550428Z adding 'torch/include/ATen/ops/ger.h' 2025-07-24T05:19:50.6553816Z adding 'torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.6556708Z adding 'torch/include/ATen/ops/ger_native.h' 2025-07-24T05:19:50.6560103Z adding 'torch/include/ATen/ops/ger_ops.h' 2025-07-24T05:19:50.6563166Z adding 'torch/include/ATen/ops/glu.h' 2025-07-24T05:19:50.6566463Z adding 'torch/include/ATen/ops/glu_backward.h' 2025-07-24T05:19:50.6569661Z adding 'torch/include/ATen/ops/glu_backward_cpu_dispatch.h' 2025-07-24T05:19:50.6572785Z adding 'torch/include/ATen/ops/glu_backward_cuda_dispatch.h' 2025-07-24T05:19:50.6575995Z adding 'torch/include/ATen/ops/glu_backward_jvp.h' 2025-07-24T05:19:50.6579312Z adding 'torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.6582445Z adding 'torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h' 2025-07-24T05:19:50.6585538Z adding 'torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h' 2025-07-24T05:19:50.6588732Z adding 'torch/include/ATen/ops/glu_backward_jvp_native.h' 2025-07-24T05:19:50.6597144Z adding 'torch/include/ATen/ops/glu_backward_jvp_ops.h' 2025-07-24T05:19:50.6597297Z adding 'torch/include/ATen/ops/glu_backward_native.h' 2025-07-24T05:19:50.6598941Z adding 'torch/include/ATen/ops/glu_backward_ops.h' 2025-07-24T05:19:50.6603343Z adding 'torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.6605420Z adding 'torch/include/ATen/ops/glu_cpu_dispatch.h' 2025-07-24T05:19:50.6609202Z adding 'torch/include/ATen/ops/glu_cuda_dispatch.h' 2025-07-24T05:19:50.6611675Z adding 'torch/include/ATen/ops/glu_jvp.h' 2025-07-24T05:19:50.6615364Z adding 'torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.6618140Z adding 'torch/include/ATen/ops/glu_jvp_cpu_dispatch.h' 2025-07-24T05:19:50.6621281Z adding 'torch/include/ATen/ops/glu_jvp_cuda_dispatch.h' 2025-07-24T05:19:50.6624278Z adding 'torch/include/ATen/ops/glu_jvp_native.h' 2025-07-24T05:19:50.6627390Z adding 'torch/include/ATen/ops/glu_jvp_ops.h' 2025-07-24T05:19:50.6630416Z adding 'torch/include/ATen/ops/glu_meta.h' 2025-07-24T05:19:50.6633717Z adding 'torch/include/ATen/ops/glu_meta_dispatch.h' 2025-07-24T05:19:50.6636690Z adding 'torch/include/ATen/ops/glu_native.h' 2025-07-24T05:19:50.6639975Z adding 'torch/include/ATen/ops/glu_ops.h' 2025-07-24T05:19:50.6643279Z adding 'torch/include/ATen/ops/gradient.h' 2025-07-24T05:19:50.6646649Z adding 'torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.6649837Z adding 'torch/include/ATen/ops/gradient_native.h' 2025-07-24T05:19:50.6653476Z adding 'torch/include/ATen/ops/gradient_ops.h' 2025-07-24T05:19:50.6656747Z adding 'torch/include/ATen/ops/greater.h' 2025-07-24T05:19:50.6660055Z adding 'torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.6663082Z adding 'torch/include/ATen/ops/greater_equal.h' 2025-07-24T05:19:50.6666376Z adding 'torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.6669394Z adding 'torch/include/ATen/ops/greater_equal_native.h' 2025-07-24T05:19:50.6672749Z adding 'torch/include/ATen/ops/greater_equal_ops.h' 2025-07-24T05:19:50.6676515Z adding 'torch/include/ATen/ops/greater_native.h' 2025-07-24T05:19:50.6680316Z adding 'torch/include/ATen/ops/greater_ops.h' 2025-07-24T05:19:50.6683523Z adding 'torch/include/ATen/ops/grid_sampler.h' 2025-07-24T05:19:50.6686653Z adding 'torch/include/ATen/ops/grid_sampler_2d.h' 2025-07-24T05:19:50.6689999Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward.h' 2025-07-24T05:19:50.6693337Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.6696331Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h' 2025-07-24T05:19:50.6699413Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h' 2025-07-24T05:19:50.6702514Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_native.h' 2025-07-24T05:19:50.6705808Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_ops.h' 2025-07-24T05:19:50.6709066Z adding 'torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.6712067Z adding 'torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h' 2025-07-24T05:19:50.6715100Z adding 'torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h' 2025-07-24T05:19:50.6718164Z adding 'torch/include/ATen/ops/grid_sampler_2d_native.h' 2025-07-24T05:19:50.6721402Z adding 'torch/include/ATen/ops/grid_sampler_2d_ops.h' 2025-07-24T05:19:50.6724580Z adding 'torch/include/ATen/ops/grid_sampler_3d.h' 2025-07-24T05:19:50.6727871Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward.h' 2025-07-24T05:19:50.6731233Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.6737476Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h' 2025-07-24T05:19:50.6737684Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h' 2025-07-24T05:19:50.6740756Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_native.h' 2025-07-24T05:19:50.6744159Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_ops.h' 2025-07-24T05:19:50.6747490Z adding 'torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.6750633Z adding 'torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h' 2025-07-24T05:19:50.6754410Z adding 'torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h' 2025-07-24T05:19:50.6756911Z adding 'torch/include/ATen/ops/grid_sampler_3d_native.h' 2025-07-24T05:19:50.6760430Z adding 'torch/include/ATen/ops/grid_sampler_3d_ops.h' 2025-07-24T05:19:50.6763720Z adding 'torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.6766638Z adding 'torch/include/ATen/ops/grid_sampler_native.h' 2025-07-24T05:19:50.6769796Z adding 'torch/include/ATen/ops/grid_sampler_ops.h' 2025-07-24T05:19:50.6773021Z adding 'torch/include/ATen/ops/group_norm.h' 2025-07-24T05:19:50.6776276Z adding 'torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.6779321Z adding 'torch/include/ATen/ops/group_norm_native.h' 2025-07-24T05:19:50.6782862Z adding 'torch/include/ATen/ops/group_norm_ops.h' 2025-07-24T05:19:50.6785687Z adding 'torch/include/ATen/ops/gru.h' 2025-07-24T05:19:50.6789003Z adding 'torch/include/ATen/ops/gru_cell.h' 2025-07-24T05:19:50.6792090Z adding 'torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.6795097Z adding 'torch/include/ATen/ops/gru_cell_native.h' 2025-07-24T05:19:50.6798409Z adding 'torch/include/ATen/ops/gru_cell_ops.h' 2025-07-24T05:19:50.6801744Z adding 'torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.6804667Z adding 'torch/include/ATen/ops/gru_native.h' 2025-07-24T05:19:50.6808069Z adding 'torch/include/ATen/ops/gru_ops.h' 2025-07-24T05:19:50.6811457Z adding 'torch/include/ATen/ops/gt.h' 2025-07-24T05:19:50.6814699Z adding 'torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.6817796Z adding 'torch/include/ATen/ops/gt_cpu_dispatch.h' 2025-07-24T05:19:50.6820934Z adding 'torch/include/ATen/ops/gt_cuda_dispatch.h' 2025-07-24T05:19:50.6824072Z adding 'torch/include/ATen/ops/gt_meta.h' 2025-07-24T05:19:50.6827231Z adding 'torch/include/ATen/ops/gt_meta_dispatch.h' 2025-07-24T05:19:50.6830460Z adding 'torch/include/ATen/ops/gt_native.h' 2025-07-24T05:19:50.6834344Z adding 'torch/include/ATen/ops/gt_ops.h' 2025-07-24T05:19:50.6837602Z adding 'torch/include/ATen/ops/hamming_window.h' 2025-07-24T05:19:50.6841506Z adding 'torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.6844555Z adding 'torch/include/ATen/ops/hamming_window_native.h' 2025-07-24T05:19:50.6848335Z adding 'torch/include/ATen/ops/hamming_window_ops.h' 2025-07-24T05:19:50.6851956Z adding 'torch/include/ATen/ops/hann_window.h' 2025-07-24T05:19:50.6855323Z adding 'torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.6858374Z adding 'torch/include/ATen/ops/hann_window_native.h' 2025-07-24T05:19:50.6861748Z adding 'torch/include/ATen/ops/hann_window_ops.h' 2025-07-24T05:19:50.6865108Z adding 'torch/include/ATen/ops/hardshrink.h' 2025-07-24T05:19:50.6868726Z adding 'torch/include/ATen/ops/hardshrink_backward.h' 2025-07-24T05:19:50.6871817Z adding 'torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.6874971Z adding 'torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h' 2025-07-24T05:19:50.6877944Z adding 'torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h' 2025-07-24T05:19:50.6881062Z adding 'torch/include/ATen/ops/hardshrink_backward_meta.h' 2025-07-24T05:19:50.6884168Z adding 'torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h' 2025-07-24T05:19:50.6887337Z adding 'torch/include/ATen/ops/hardshrink_backward_native.h' 2025-07-24T05:19:50.6890537Z adding 'torch/include/ATen/ops/hardshrink_backward_ops.h' 2025-07-24T05:19:50.6893972Z adding 'torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.6897358Z adding 'torch/include/ATen/ops/hardshrink_cpu_dispatch.h' 2025-07-24T05:19:50.6900073Z adding 'torch/include/ATen/ops/hardshrink_cuda_dispatch.h' 2025-07-24T05:19:50.6903474Z adding 'torch/include/ATen/ops/hardshrink_meta.h' 2025-07-24T05:19:50.6906165Z adding 'torch/include/ATen/ops/hardshrink_meta_dispatch.h' 2025-07-24T05:19:50.6909320Z adding 'torch/include/ATen/ops/hardshrink_native.h' 2025-07-24T05:19:50.6912509Z adding 'torch/include/ATen/ops/hardshrink_ops.h' 2025-07-24T05:19:50.6915794Z adding 'torch/include/ATen/ops/hardsigmoid.h' 2025-07-24T05:19:50.6918949Z adding 'torch/include/ATen/ops/hardsigmoid_backward.h' 2025-07-24T05:19:50.6922446Z adding 'torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.6925317Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h' 2025-07-24T05:19:50.6928543Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h' 2025-07-24T05:19:50.6932056Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta.h' 2025-07-24T05:19:50.6934773Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h' 2025-07-24T05:19:50.6938112Z adding 'torch/include/ATen/ops/hardsigmoid_backward_native.h' 2025-07-24T05:19:50.6941088Z adding 'torch/include/ATen/ops/hardsigmoid_backward_ops.h' 2025-07-24T05:19:50.6944577Z adding 'torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.6947438Z adding 'torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h' 2025-07-24T05:19:50.6950621Z adding 'torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h' 2025-07-24T05:19:50.6953665Z adding 'torch/include/ATen/ops/hardsigmoid_meta.h' 2025-07-24T05:19:50.6957174Z adding 'torch/include/ATen/ops/hardsigmoid_meta_dispatch.h' 2025-07-24T05:19:50.6960091Z adding 'torch/include/ATen/ops/hardsigmoid_native.h' 2025-07-24T05:19:50.6963490Z adding 'torch/include/ATen/ops/hardsigmoid_ops.h' 2025-07-24T05:19:50.6966592Z adding 'torch/include/ATen/ops/hardswish.h' 2025-07-24T05:19:50.6969697Z adding 'torch/include/ATen/ops/hardswish_backward.h' 2025-07-24T05:19:50.6973074Z adding 'torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.6976102Z adding 'torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h' 2025-07-24T05:19:50.6979651Z adding 'torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h' 2025-07-24T05:19:50.6982735Z adding 'torch/include/ATen/ops/hardswish_backward_native.h' 2025-07-24T05:19:50.6986053Z adding 'torch/include/ATen/ops/hardswish_backward_ops.h' 2025-07-24T05:19:50.6989517Z adding 'torch/include/ATen/ops/hardswish_cpu_dispatch.h' 2025-07-24T05:19:50.6992445Z adding 'torch/include/ATen/ops/hardswish_cuda_dispatch.h' 2025-07-24T05:19:50.6995675Z adding 'torch/include/ATen/ops/hardswish_meta_dispatch.h' 2025-07-24T05:19:50.6998659Z adding 'torch/include/ATen/ops/hardswish_native.h' 2025-07-24T05:19:50.7001978Z adding 'torch/include/ATen/ops/hardswish_ops.h' 2025-07-24T05:19:50.7005676Z adding 'torch/include/ATen/ops/hardtanh.h' 2025-07-24T05:19:50.7009054Z adding 'torch/include/ATen/ops/hardtanh_backward.h' 2025-07-24T05:19:50.7012458Z adding 'torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h' 2025-07-24T05:19:50.7015464Z adding 'torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h' 2025-07-24T05:19:50.7018600Z adding 'torch/include/ATen/ops/hardtanh_backward_native.h' 2025-07-24T05:19:50.7021821Z adding 'torch/include/ATen/ops/hardtanh_backward_ops.h' 2025-07-24T05:19:50.7025079Z adding 'torch/include/ATen/ops/hardtanh_cpu_dispatch.h' 2025-07-24T05:19:50.7028155Z adding 'torch/include/ATen/ops/hardtanh_cuda_dispatch.h' 2025-07-24T05:19:50.7031326Z adding 'torch/include/ATen/ops/hardtanh_meta_dispatch.h' 2025-07-24T05:19:50.7034318Z adding 'torch/include/ATen/ops/hardtanh_native.h' 2025-07-24T05:19:50.7037690Z adding 'torch/include/ATen/ops/hardtanh_ops.h' 2025-07-24T05:19:50.7040988Z adding 'torch/include/ATen/ops/heaviside.h' 2025-07-24T05:19:50.7044324Z adding 'torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.7047421Z adding 'torch/include/ATen/ops/heaviside_cpu_dispatch.h' 2025-07-24T05:19:50.7050534Z adding 'torch/include/ATen/ops/heaviside_cuda_dispatch.h' 2025-07-24T05:19:50.7053608Z adding 'torch/include/ATen/ops/heaviside_meta.h' 2025-07-24T05:19:50.7056701Z adding 'torch/include/ATen/ops/heaviside_meta_dispatch.h' 2025-07-24T05:19:50.7059853Z adding 'torch/include/ATen/ops/heaviside_native.h' 2025-07-24T05:19:50.7063086Z adding 'torch/include/ATen/ops/heaviside_ops.h' 2025-07-24T05:19:50.7066360Z adding 'torch/include/ATen/ops/hinge_embedding_loss.h' 2025-07-24T05:19:50.7070126Z adding 'torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7072687Z adding 'torch/include/ATen/ops/hinge_embedding_loss_native.h' 2025-07-24T05:19:50.7075925Z adding 'torch/include/ATen/ops/hinge_embedding_loss_ops.h' 2025-07-24T05:19:50.7079072Z adding 'torch/include/ATen/ops/histc.h' 2025-07-24T05:19:50.7082364Z adding 'torch/include/ATen/ops/histc_cpu_dispatch.h' 2025-07-24T05:19:50.7085455Z adding 'torch/include/ATen/ops/histc_cuda_dispatch.h' 2025-07-24T05:19:50.7088648Z adding 'torch/include/ATen/ops/histc_native.h' 2025-07-24T05:19:50.7091920Z adding 'torch/include/ATen/ops/histc_ops.h' 2025-07-24T05:19:50.7108146Z adding 'torch/include/ATen/ops/histogram.h' 2025-07-24T05:19:50.7108601Z adding 'torch/include/ATen/ops/histogram_cpu_dispatch.h' 2025-07-24T05:19:50.7108975Z adding 'torch/include/ATen/ops/histogram_native.h' 2025-07-24T05:19:50.7109326Z adding 'torch/include/ATen/ops/histogram_ops.h' 2025-07-24T05:19:50.7110263Z adding 'torch/include/ATen/ops/histogramdd.h' 2025-07-24T05:19:50.7114327Z adding 'torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7116813Z adding 'torch/include/ATen/ops/histogramdd_native.h' 2025-07-24T05:19:50.7120473Z adding 'torch/include/ATen/ops/histogramdd_ops.h' 2025-07-24T05:19:50.7123620Z adding 'torch/include/ATen/ops/hsplit.h' 2025-07-24T05:19:50.7127021Z adding 'torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7129903Z adding 'torch/include/ATen/ops/hsplit_native.h' 2025-07-24T05:19:50.7133230Z adding 'torch/include/ATen/ops/hsplit_ops.h' 2025-07-24T05:19:50.7136314Z adding 'torch/include/ATen/ops/hspmm.h' 2025-07-24T05:19:50.7139320Z adding 'torch/include/ATen/ops/hspmm_native.h' 2025-07-24T05:19:50.7143329Z adding 'torch/include/ATen/ops/hspmm_ops.h' 2025-07-24T05:19:50.7145709Z adding 'torch/include/ATen/ops/hstack.h' 2025-07-24T05:19:50.7148933Z adding 'torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7151758Z adding 'torch/include/ATen/ops/hstack_native.h' 2025-07-24T05:19:50.7154937Z adding 'torch/include/ATen/ops/hstack_ops.h' 2025-07-24T05:19:50.7159378Z adding 'torch/include/ATen/ops/huber_loss.h' 2025-07-24T05:19:50.7161447Z adding 'torch/include/ATen/ops/huber_loss_backward.h' 2025-07-24T05:19:50.7164716Z adding 'torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.7167725Z adding 'torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h' 2025-07-24T05:19:50.7170846Z adding 'torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h' 2025-07-24T05:19:50.7173805Z adding 'torch/include/ATen/ops/huber_loss_backward_native.h' 2025-07-24T05:19:50.7176982Z adding 'torch/include/ATen/ops/huber_loss_backward_ops.h' 2025-07-24T05:19:50.7180087Z adding 'torch/include/ATen/ops/huber_loss_cpu_dispatch.h' 2025-07-24T05:19:50.7183142Z adding 'torch/include/ATen/ops/huber_loss_cuda_dispatch.h' 2025-07-24T05:19:50.7186159Z adding 'torch/include/ATen/ops/huber_loss_native.h' 2025-07-24T05:19:50.7190070Z adding 'torch/include/ATen/ops/huber_loss_ops.h' 2025-07-24T05:19:50.7192572Z adding 'torch/include/ATen/ops/hypot.h' 2025-07-24T05:19:50.7195831Z adding 'torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.7198842Z adding 'torch/include/ATen/ops/hypot_cpu_dispatch.h' 2025-07-24T05:19:50.7201901Z adding 'torch/include/ATen/ops/hypot_cuda_dispatch.h' 2025-07-24T05:19:50.7204847Z adding 'torch/include/ATen/ops/hypot_meta.h' 2025-07-24T05:19:50.7207949Z adding 'torch/include/ATen/ops/hypot_meta_dispatch.h' 2025-07-24T05:19:50.7210865Z adding 'torch/include/ATen/ops/hypot_native.h' 2025-07-24T05:19:50.7214063Z adding 'torch/include/ATen/ops/hypot_ops.h' 2025-07-24T05:19:50.7217196Z adding 'torch/include/ATen/ops/i0.h' 2025-07-24T05:19:50.7220392Z adding 'torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.7223242Z adding 'torch/include/ATen/ops/i0_cpu_dispatch.h' 2025-07-24T05:19:50.7226273Z adding 'torch/include/ATen/ops/i0_cuda_dispatch.h' 2025-07-24T05:19:50.7229262Z adding 'torch/include/ATen/ops/i0_meta.h' 2025-07-24T05:19:50.7232265Z adding 'torch/include/ATen/ops/i0_meta_dispatch.h' 2025-07-24T05:19:50.7235214Z adding 'torch/include/ATen/ops/i0_native.h' 2025-07-24T05:19:50.7238475Z adding 'torch/include/ATen/ops/i0_ops.h' 2025-07-24T05:19:50.7241581Z adding 'torch/include/ATen/ops/igamma.h' 2025-07-24T05:19:50.7245566Z adding 'torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.7248320Z adding 'torch/include/ATen/ops/igamma_cpu_dispatch.h' 2025-07-24T05:19:50.7251642Z adding 'torch/include/ATen/ops/igamma_cuda_dispatch.h' 2025-07-24T05:19:50.7254455Z adding 'torch/include/ATen/ops/igamma_meta.h' 2025-07-24T05:19:50.7257663Z adding 'torch/include/ATen/ops/igamma_meta_dispatch.h' 2025-07-24T05:19:50.7260662Z adding 'torch/include/ATen/ops/igamma_native.h' 2025-07-24T05:19:50.7263987Z adding 'torch/include/ATen/ops/igamma_ops.h' 2025-07-24T05:19:50.7267075Z adding 'torch/include/ATen/ops/igammac.h' 2025-07-24T05:19:50.7270570Z adding 'torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.7274083Z adding 'torch/include/ATen/ops/igammac_cpu_dispatch.h' 2025-07-24T05:19:50.7276728Z adding 'torch/include/ATen/ops/igammac_cuda_dispatch.h' 2025-07-24T05:19:50.7280218Z adding 'torch/include/ATen/ops/igammac_meta.h' 2025-07-24T05:19:50.7282990Z adding 'torch/include/ATen/ops/igammac_meta_dispatch.h' 2025-07-24T05:19:50.7286049Z adding 'torch/include/ATen/ops/igammac_native.h' 2025-07-24T05:19:50.7289254Z adding 'torch/include/ATen/ops/igammac_ops.h' 2025-07-24T05:19:50.7292584Z adding 'torch/include/ATen/ops/im2col.h' 2025-07-24T05:19:50.7295768Z adding 'torch/include/ATen/ops/im2col_cpu_dispatch.h' 2025-07-24T05:19:50.7299045Z adding 'torch/include/ATen/ops/im2col_cuda_dispatch.h' 2025-07-24T05:19:50.7302193Z adding 'torch/include/ATen/ops/im2col_native.h' 2025-07-24T05:19:50.7305482Z adding 'torch/include/ATen/ops/im2col_ops.h' 2025-07-24T05:19:50.7308933Z adding 'torch/include/ATen/ops/imag.h' 2025-07-24T05:19:50.7311812Z adding 'torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7314753Z adding 'torch/include/ATen/ops/imag_native.h' 2025-07-24T05:19:50.7317870Z adding 'torch/include/ATen/ops/imag_ops.h' 2025-07-24T05:19:50.7321107Z adding 'torch/include/ATen/ops/index.h' 2025-07-24T05:19:50.7324337Z adding 'torch/include/ATen/ops/index_add.h' 2025-07-24T05:19:50.7327837Z adding 'torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.7330941Z adding 'torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7334135Z adding 'torch/include/ATen/ops/index_add_cpu_dispatch.h' 2025-07-24T05:19:50.7337258Z adding 'torch/include/ATen/ops/index_add_cuda_dispatch.h' 2025-07-24T05:19:50.7340367Z adding 'torch/include/ATen/ops/index_add_meta.h' 2025-07-24T05:19:50.7343631Z adding 'torch/include/ATen/ops/index_add_meta_dispatch.h' 2025-07-24T05:19:50.7346696Z adding 'torch/include/ATen/ops/index_add_native.h' 2025-07-24T05:19:50.7350173Z adding 'torch/include/ATen/ops/index_add_ops.h' 2025-07-24T05:19:50.7353558Z adding 'torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.7356688Z adding 'torch/include/ATen/ops/index_copy.h' 2025-07-24T05:19:50.7360340Z adding 'torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.7363291Z adding 'torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7366418Z adding 'torch/include/ATen/ops/index_copy_cpu_dispatch.h' 2025-07-24T05:19:50.7370032Z adding 'torch/include/ATen/ops/index_copy_cuda_dispatch.h' 2025-07-24T05:19:50.7372833Z adding 'torch/include/ATen/ops/index_copy_meta.h' 2025-07-24T05:19:50.7375936Z adding 'torch/include/ATen/ops/index_copy_meta_dispatch.h' 2025-07-24T05:19:50.7379066Z adding 'torch/include/ATen/ops/index_copy_native.h' 2025-07-24T05:19:50.7382432Z adding 'torch/include/ATen/ops/index_copy_ops.h' 2025-07-24T05:19:50.7385734Z adding 'torch/include/ATen/ops/index_cpu_dispatch.h' 2025-07-24T05:19:50.7389256Z adding 'torch/include/ATen/ops/index_cuda_dispatch.h' 2025-07-24T05:19:50.7392167Z adding 'torch/include/ATen/ops/index_fill.h' 2025-07-24T05:19:50.7395663Z adding 'torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.7398883Z adding 'torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7401973Z adding 'torch/include/ATen/ops/index_fill_cpu_dispatch.h' 2025-07-24T05:19:50.7405107Z adding 'torch/include/ATen/ops/index_fill_cuda_dispatch.h' 2025-07-24T05:19:50.7408226Z adding 'torch/include/ATen/ops/index_fill_meta_dispatch.h' 2025-07-24T05:19:50.7412378Z adding 'torch/include/ATen/ops/index_fill_native.h' 2025-07-24T05:19:50.7416005Z adding 'torch/include/ATen/ops/index_fill_ops.h' 2025-07-24T05:19:50.7419621Z adding 'torch/include/ATen/ops/index_meta.h' 2025-07-24T05:19:50.7422808Z adding 'torch/include/ATen/ops/index_meta_dispatch.h' 2025-07-24T05:19:50.7425903Z adding 'torch/include/ATen/ops/index_native.h' 2025-07-24T05:19:50.7429196Z adding 'torch/include/ATen/ops/index_ops.h' 2025-07-24T05:19:50.7432661Z adding 'torch/include/ATen/ops/index_put.h' 2025-07-24T05:19:50.7436134Z adding 'torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.7439157Z adding 'torch/include/ATen/ops/index_put_native.h' 2025-07-24T05:19:50.7442603Z adding 'torch/include/ATen/ops/index_put_ops.h' 2025-07-24T05:19:50.7446394Z adding 'torch/include/ATen/ops/index_reduce.h' 2025-07-24T05:19:50.7449315Z adding 'torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.7452598Z adding 'torch/include/ATen/ops/index_reduce_cpu_dispatch.h' 2025-07-24T05:19:50.7455562Z adding 'torch/include/ATen/ops/index_reduce_cuda_dispatch.h' 2025-07-24T05:19:50.7458769Z adding 'torch/include/ATen/ops/index_reduce_meta.h' 2025-07-24T05:19:50.7461974Z adding 'torch/include/ATen/ops/index_reduce_meta_dispatch.h' 2025-07-24T05:19:50.7465165Z adding 'torch/include/ATen/ops/index_reduce_native.h' 2025-07-24T05:19:50.7468483Z adding 'torch/include/ATen/ops/index_reduce_ops.h' 2025-07-24T05:19:50.7471872Z adding 'torch/include/ATen/ops/index_select.h' 2025-07-24T05:19:50.7475466Z adding 'torch/include/ATen/ops/index_select_backward.h' 2025-07-24T05:19:50.7478648Z adding 'torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7481658Z adding 'torch/include/ATen/ops/index_select_backward_native.h' 2025-07-24T05:19:50.7484803Z adding 'torch/include/ATen/ops/index_select_backward_ops.h' 2025-07-24T05:19:50.7488181Z adding 'torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7491162Z adding 'torch/include/ATen/ops/index_select_cpu_dispatch.h' 2025-07-24T05:19:50.7494426Z adding 'torch/include/ATen/ops/index_select_cuda_dispatch.h' 2025-07-24T05:19:50.7497945Z adding 'torch/include/ATen/ops/index_select_native.h' 2025-07-24T05:19:50.7501031Z adding 'torch/include/ATen/ops/index_select_ops.h' 2025-07-24T05:19:50.7504340Z adding 'torch/include/ATen/ops/indices.h' 2025-07-24T05:19:50.7507311Z adding 'torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.7510336Z adding 'torch/include/ATen/ops/indices_copy.h' 2025-07-24T05:19:50.7513516Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.7516877Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.7526221Z adding 'torch/include/ATen/ops/indices_copy_native.h' 2025-07-24T05:19:50.7526639Z adding 'torch/include/ATen/ops/indices_copy_ops.h' 2025-07-24T05:19:50.7526992Z adding 'torch/include/ATen/ops/indices_native.h' 2025-07-24T05:19:50.7529171Z adding 'torch/include/ATen/ops/indices_ops.h' 2025-07-24T05:19:50.7532673Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h' 2025-07-24T05:19:50.7535737Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7538839Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h' 2025-07-24T05:19:50.7541834Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h' 2025-07-24T05:19:50.7544957Z adding 'torch/include/ATen/ops/inner.h' 2025-07-24T05:19:50.7548201Z adding 'torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7551263Z adding 'torch/include/ATen/ops/inner_native.h' 2025-07-24T05:19:50.7554358Z adding 'torch/include/ATen/ops/inner_ops.h' 2025-07-24T05:19:50.7557643Z adding 'torch/include/ATen/ops/instance_norm.h' 2025-07-24T05:19:50.7561335Z adding 'torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7564024Z adding 'torch/include/ATen/ops/instance_norm_native.h' 2025-07-24T05:19:50.7567329Z adding 'torch/include/ATen/ops/instance_norm_ops.h' 2025-07-24T05:19:50.7570412Z adding 'torch/include/ATen/ops/int_repr.h' 2025-07-24T05:19:50.7573751Z adding 'torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.7576633Z adding 'torch/include/ATen/ops/int_repr_native.h' 2025-07-24T05:19:50.7579904Z adding 'torch/include/ATen/ops/int_repr_ops.h' 2025-07-24T05:19:50.7582958Z adding 'torch/include/ATen/ops/inverse.h' 2025-07-24T05:19:50.7586308Z adding 'torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7589190Z adding 'torch/include/ATen/ops/inverse_native.h' 2025-07-24T05:19:50.7592497Z adding 'torch/include/ATen/ops/inverse_ops.h' 2025-07-24T05:19:50.7604142Z adding 'torch/include/ATen/ops/is_coalesced.h' 2025-07-24T05:19:50.7604646Z adding 'torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.7605142Z adding 'torch/include/ATen/ops/is_coalesced_native.h' 2025-07-24T05:19:50.7605793Z adding 'torch/include/ATen/ops/is_coalesced_ops.h' 2025-07-24T05:19:50.7608844Z adding 'torch/include/ATen/ops/is_complex.h' 2025-07-24T05:19:50.7613466Z adding 'torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7615326Z adding 'torch/include/ATen/ops/is_complex_native.h' 2025-07-24T05:19:50.7619387Z adding 'torch/include/ATen/ops/is_complex_ops.h' 2025-07-24T05:19:50.7621559Z adding 'torch/include/ATen/ops/is_conj.h' 2025-07-24T05:19:50.7625539Z adding 'torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7627792Z adding 'torch/include/ATen/ops/is_conj_native.h' 2025-07-24T05:19:50.7631455Z adding 'torch/include/ATen/ops/is_conj_ops.h' 2025-07-24T05:19:50.7634003Z adding 'torch/include/ATen/ops/is_distributed.h' 2025-07-24T05:19:50.7637693Z adding 'torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7640293Z adding 'torch/include/ATen/ops/is_distributed_native.h' 2025-07-24T05:19:50.7643390Z adding 'torch/include/ATen/ops/is_distributed_ops.h' 2025-07-24T05:19:50.7646377Z adding 'torch/include/ATen/ops/is_floating_point.h' 2025-07-24T05:19:50.7649779Z adding 'torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7652666Z adding 'torch/include/ATen/ops/is_floating_point_native.h' 2025-07-24T05:19:50.7655759Z adding 'torch/include/ATen/ops/is_floating_point_ops.h' 2025-07-24T05:19:50.7658752Z adding 'torch/include/ATen/ops/is_inference.h' 2025-07-24T05:19:50.7661896Z adding 'torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7664947Z adding 'torch/include/ATen/ops/is_inference_native.h' 2025-07-24T05:19:50.7667965Z adding 'torch/include/ATen/ops/is_inference_ops.h' 2025-07-24T05:19:50.7670867Z adding 'torch/include/ATen/ops/is_leaf.h' 2025-07-24T05:19:50.7674012Z adding 'torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7676821Z adding 'torch/include/ATen/ops/is_leaf_native.h' 2025-07-24T05:19:50.7680015Z adding 'torch/include/ATen/ops/is_leaf_ops.h' 2025-07-24T05:19:50.7683034Z adding 'torch/include/ATen/ops/is_neg.h' 2025-07-24T05:19:50.7686196Z adding 'torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7689011Z adding 'torch/include/ATen/ops/is_neg_native.h' 2025-07-24T05:19:50.7692052Z adding 'torch/include/ATen/ops/is_neg_ops.h' 2025-07-24T05:19:50.7695248Z adding 'torch/include/ATen/ops/is_nonzero.h' 2025-07-24T05:19:50.7698930Z adding 'torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7701115Z adding 'torch/include/ATen/ops/is_nonzero_native.h' 2025-07-24T05:19:50.7704155Z adding 'torch/include/ATen/ops/is_nonzero_ops.h' 2025-07-24T05:19:50.7707088Z adding 'torch/include/ATen/ops/is_pinned.h' 2025-07-24T05:19:50.7710263Z adding 'torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.7713151Z adding 'torch/include/ATen/ops/is_pinned_native.h' 2025-07-24T05:19:50.7716239Z adding 'torch/include/ATen/ops/is_pinned_ops.h' 2025-07-24T05:19:50.7719421Z adding 'torch/include/ATen/ops/is_same_size.h' 2025-07-24T05:19:50.7722633Z adding 'torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.7725470Z adding 'torch/include/ATen/ops/is_same_size_native.h' 2025-07-24T05:19:50.7728790Z adding 'torch/include/ATen/ops/is_same_size_ops.h' 2025-07-24T05:19:50.7731736Z adding 'torch/include/ATen/ops/is_set_to.h' 2025-07-24T05:19:50.7734827Z adding 'torch/include/ATen/ops/is_set_to_cpu_dispatch.h' 2025-07-24T05:19:50.7737852Z adding 'torch/include/ATen/ops/is_set_to_cuda_dispatch.h' 2025-07-24T05:19:50.7740780Z adding 'torch/include/ATen/ops/is_set_to_native.h' 2025-07-24T05:19:50.7743870Z adding 'torch/include/ATen/ops/is_set_to_ops.h' 2025-07-24T05:19:50.7746843Z adding 'torch/include/ATen/ops/is_signed.h' 2025-07-24T05:19:50.7750066Z adding 'torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7752997Z adding 'torch/include/ATen/ops/is_signed_native.h' 2025-07-24T05:19:50.7756051Z adding 'torch/include/ATen/ops/is_signed_ops.h' 2025-07-24T05:19:50.7759192Z adding 'torch/include/ATen/ops/is_vulkan_available.h' 2025-07-24T05:19:50.7762330Z adding 'torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7765189Z adding 'torch/include/ATen/ops/is_vulkan_available_native.h' 2025-07-24T05:19:50.7768226Z adding 'torch/include/ATen/ops/is_vulkan_available_ops.h' 2025-07-24T05:19:50.7771200Z adding 'torch/include/ATen/ops/isclose.h' 2025-07-24T05:19:50.7774435Z adding 'torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7777261Z adding 'torch/include/ATen/ops/isclose_native.h' 2025-07-24T05:19:50.7780340Z adding 'torch/include/ATen/ops/isclose_ops.h' 2025-07-24T05:19:50.7783556Z adding 'torch/include/ATen/ops/isfinite.h' 2025-07-24T05:19:50.7786746Z adding 'torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7789591Z adding 'torch/include/ATen/ops/isfinite_native.h' 2025-07-24T05:19:50.7792662Z adding 'torch/include/ATen/ops/isfinite_ops.h' 2025-07-24T05:19:50.7795939Z adding 'torch/include/ATen/ops/isin.h' 2025-07-24T05:19:50.7799471Z adding 'torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.7802464Z adding 'torch/include/ATen/ops/isin_cpu_dispatch.h' 2025-07-24T05:19:50.7805616Z adding 'torch/include/ATen/ops/isin_cuda_dispatch.h' 2025-07-24T05:19:50.7808644Z adding 'torch/include/ATen/ops/isin_meta.h' 2025-07-24T05:19:50.7811861Z adding 'torch/include/ATen/ops/isin_meta_dispatch.h' 2025-07-24T05:19:50.7814833Z adding 'torch/include/ATen/ops/isin_native.h' 2025-07-24T05:19:50.7818298Z adding 'torch/include/ATen/ops/isin_ops.h' 2025-07-24T05:19:50.7821465Z adding 'torch/include/ATen/ops/isinf.h' 2025-07-24T05:19:50.7824677Z adding 'torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.7827561Z adding 'torch/include/ATen/ops/isinf_native.h' 2025-07-24T05:19:50.7830698Z adding 'torch/include/ATen/ops/isinf_ops.h' 2025-07-24T05:19:50.7833757Z adding 'torch/include/ATen/ops/isnan.h' 2025-07-24T05:19:50.7836948Z adding 'torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.7840058Z adding 'torch/include/ATen/ops/isnan_cpu_dispatch.h' 2025-07-24T05:19:50.7843088Z adding 'torch/include/ATen/ops/isnan_cuda_dispatch.h' 2025-07-24T05:19:50.7846048Z adding 'torch/include/ATen/ops/isnan_native.h' 2025-07-24T05:19:50.7849190Z adding 'torch/include/ATen/ops/isnan_ops.h' 2025-07-24T05:19:50.7852314Z adding 'torch/include/ATen/ops/isneginf.h' 2025-07-24T05:19:50.7855588Z adding 'torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.7858630Z adding 'torch/include/ATen/ops/isneginf_cpu_dispatch.h' 2025-07-24T05:19:50.7861697Z adding 'torch/include/ATen/ops/isneginf_cuda_dispatch.h' 2025-07-24T05:19:50.7864805Z adding 'torch/include/ATen/ops/isneginf_meta.h' 2025-07-24T05:19:50.7868992Z adding 'torch/include/ATen/ops/isneginf_meta_dispatch.h' 2025-07-24T05:19:50.7872022Z adding 'torch/include/ATen/ops/isneginf_native.h' 2025-07-24T05:19:50.7875338Z adding 'torch/include/ATen/ops/isneginf_ops.h' 2025-07-24T05:19:50.7878498Z adding 'torch/include/ATen/ops/isposinf.h' 2025-07-24T05:19:50.7881987Z adding 'torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.7884862Z adding 'torch/include/ATen/ops/isposinf_cpu_dispatch.h' 2025-07-24T05:19:50.7888144Z adding 'torch/include/ATen/ops/isposinf_cuda_dispatch.h' 2025-07-24T05:19:50.7891410Z adding 'torch/include/ATen/ops/isposinf_meta.h' 2025-07-24T05:19:50.7894272Z adding 'torch/include/ATen/ops/isposinf_meta_dispatch.h' 2025-07-24T05:19:50.7897427Z adding 'torch/include/ATen/ops/isposinf_native.h' 2025-07-24T05:19:50.7900516Z adding 'torch/include/ATen/ops/isposinf_ops.h' 2025-07-24T05:19:50.7903600Z adding 'torch/include/ATen/ops/isreal.h' 2025-07-24T05:19:50.7906789Z adding 'torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7909714Z adding 'torch/include/ATen/ops/isreal_native.h' 2025-07-24T05:19:50.7912743Z adding 'torch/include/ATen/ops/isreal_ops.h' 2025-07-24T05:19:50.7915941Z adding 'torch/include/ATen/ops/istft.h' 2025-07-24T05:19:50.7919356Z adding 'torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7922498Z adding 'torch/include/ATen/ops/istft_native.h' 2025-07-24T05:19:50.7926058Z adding 'torch/include/ATen/ops/istft_ops.h' 2025-07-24T05:19:50.7928814Z adding 'torch/include/ATen/ops/item.h' 2025-07-24T05:19:50.7932310Z adding 'torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7934912Z adding 'torch/include/ATen/ops/item_native.h' 2025-07-24T05:19:50.7938097Z adding 'torch/include/ATen/ops/item_ops.h' 2025-07-24T05:19:50.7941558Z adding 'torch/include/ATen/ops/kaiser_window.h' 2025-07-24T05:19:50.7945214Z adding 'torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.7948239Z adding 'torch/include/ATen/ops/kaiser_window_native.h' 2025-07-24T05:19:50.7951887Z adding 'torch/include/ATen/ops/kaiser_window_ops.h' 2025-07-24T05:19:50.7955296Z adding 'torch/include/ATen/ops/kl_div.h' 2025-07-24T05:19:50.7958630Z adding 'torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7961733Z adding 'torch/include/ATen/ops/kl_div_native.h' 2025-07-24T05:19:50.7965021Z adding 'torch/include/ATen/ops/kl_div_ops.h' 2025-07-24T05:19:50.7968337Z adding 'torch/include/ATen/ops/kron.h' 2025-07-24T05:19:50.7971953Z adding 'torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7974559Z adding 'torch/include/ATen/ops/kron_native.h' 2025-07-24T05:19:50.7977960Z adding 'torch/include/ATen/ops/kron_ops.h' 2025-07-24T05:19:50.7981646Z adding 'torch/include/ATen/ops/kthvalue.h' 2025-07-24T05:19:50.7985257Z adding 'torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.7988482Z adding 'torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.7991606Z adding 'torch/include/ATen/ops/kthvalue_cpu_dispatch.h' 2025-07-24T05:19:50.7995184Z adding 'torch/include/ATen/ops/kthvalue_cuda_dispatch.h' 2025-07-24T05:19:50.7998097Z adding 'torch/include/ATen/ops/kthvalue_native.h' 2025-07-24T05:19:50.8001579Z adding 'torch/include/ATen/ops/kthvalue_ops.h' 2025-07-24T05:19:50.8004799Z adding 'torch/include/ATen/ops/l1_loss.h' 2025-07-24T05:19:50.8008137Z adding 'torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8010966Z adding 'torch/include/ATen/ops/l1_loss_native.h' 2025-07-24T05:19:50.8014265Z adding 'torch/include/ATen/ops/l1_loss_ops.h' 2025-07-24T05:19:50.8017895Z adding 'torch/include/ATen/ops/layer_norm.h' 2025-07-24T05:19:50.8020951Z adding 'torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8024033Z adding 'torch/include/ATen/ops/layer_norm_native.h' 2025-07-24T05:19:50.8027133Z adding 'torch/include/ATen/ops/layer_norm_ops.h' 2025-07-24T05:19:50.8030319Z adding 'torch/include/ATen/ops/lcm.h' 2025-07-24T05:19:50.8033630Z adding 'torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.8036690Z adding 'torch/include/ATen/ops/lcm_cpu_dispatch.h' 2025-07-24T05:19:50.8039915Z adding 'torch/include/ATen/ops/lcm_cuda_dispatch.h' 2025-07-24T05:19:50.8043025Z adding 'torch/include/ATen/ops/lcm_meta.h' 2025-07-24T05:19:50.8046524Z adding 'torch/include/ATen/ops/lcm_meta_dispatch.h' 2025-07-24T05:19:50.8049215Z adding 'torch/include/ATen/ops/lcm_native.h' 2025-07-24T05:19:50.8052637Z adding 'torch/include/ATen/ops/lcm_ops.h' 2025-07-24T05:19:50.8055629Z adding 'torch/include/ATen/ops/ldexp.h' 2025-07-24T05:19:50.8058972Z adding 'torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8061952Z adding 'torch/include/ATen/ops/ldexp_native.h' 2025-07-24T05:19:50.8065302Z adding 'torch/include/ATen/ops/ldexp_ops.h' 2025-07-24T05:19:50.8068460Z adding 'torch/include/ATen/ops/le.h' 2025-07-24T05:19:50.8071939Z adding 'torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.8075087Z adding 'torch/include/ATen/ops/le_cpu_dispatch.h' 2025-07-24T05:19:50.8078268Z adding 'torch/include/ATen/ops/le_cuda_dispatch.h' 2025-07-24T05:19:50.8081372Z adding 'torch/include/ATen/ops/le_meta.h' 2025-07-24T05:19:50.8084505Z adding 'torch/include/ATen/ops/le_meta_dispatch.h' 2025-07-24T05:19:50.8087681Z adding 'torch/include/ATen/ops/le_native.h' 2025-07-24T05:19:50.8091071Z adding 'torch/include/ATen/ops/le_ops.h' 2025-07-24T05:19:50.8094439Z adding 'torch/include/ATen/ops/leaky_relu.h' 2025-07-24T05:19:50.8105078Z adding 'torch/include/ATen/ops/leaky_relu_backward.h' 2025-07-24T05:19:50.8105685Z adding 'torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.8106333Z adding 'torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h' 2025-07-24T05:19:50.8108032Z adding 'torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h' 2025-07-24T05:19:50.8114962Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta.h' 2025-07-24T05:19:50.8115420Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h' 2025-07-24T05:19:50.8117705Z adding 'torch/include/ATen/ops/leaky_relu_backward_native.h' 2025-07-24T05:19:50.8121195Z adding 'torch/include/ATen/ops/leaky_relu_backward_ops.h' 2025-07-24T05:19:50.8124651Z adding 'torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.8127681Z adding 'torch/include/ATen/ops/leaky_relu_cpu_dispatch.h' 2025-07-24T05:19:50.8130754Z adding 'torch/include/ATen/ops/leaky_relu_cuda_dispatch.h' 2025-07-24T05:19:50.8133918Z adding 'torch/include/ATen/ops/leaky_relu_meta.h' 2025-07-24T05:19:50.8137033Z adding 'torch/include/ATen/ops/leaky_relu_meta_dispatch.h' 2025-07-24T05:19:50.8146852Z adding 'torch/include/ATen/ops/leaky_relu_native.h' 2025-07-24T05:19:50.8150377Z adding 'torch/include/ATen/ops/leaky_relu_ops.h' 2025-07-24T05:19:50.8153619Z adding 'torch/include/ATen/ops/lerp.h' 2025-07-24T05:19:50.8156986Z adding 'torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.8160135Z adding 'torch/include/ATen/ops/lerp_cpu_dispatch.h' 2025-07-24T05:19:50.8163324Z adding 'torch/include/ATen/ops/lerp_cuda_dispatch.h' 2025-07-24T05:19:50.8166600Z adding 'torch/include/ATen/ops/lerp_meta.h' 2025-07-24T05:19:50.8169711Z adding 'torch/include/ATen/ops/lerp_meta_dispatch.h' 2025-07-24T05:19:50.8172688Z adding 'torch/include/ATen/ops/lerp_native.h' 2025-07-24T05:19:50.8176109Z adding 'torch/include/ATen/ops/lerp_ops.h' 2025-07-24T05:19:50.8179355Z adding 'torch/include/ATen/ops/less.h' 2025-07-24T05:19:50.8182636Z adding 'torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8185886Z adding 'torch/include/ATen/ops/less_equal.h' 2025-07-24T05:19:50.8189189Z adding 'torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8192104Z adding 'torch/include/ATen/ops/less_equal_native.h' 2025-07-24T05:19:50.8195426Z adding 'torch/include/ATen/ops/less_equal_ops.h' 2025-07-24T05:19:50.8198899Z adding 'torch/include/ATen/ops/less_native.h' 2025-07-24T05:19:50.8202326Z adding 'torch/include/ATen/ops/less_ops.h' 2025-07-24T05:19:50.8205488Z adding 'torch/include/ATen/ops/lgamma.h' 2025-07-24T05:19:50.8208764Z adding 'torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.8211647Z adding 'torch/include/ATen/ops/lgamma_cpu_dispatch.h' 2025-07-24T05:19:50.8214663Z adding 'torch/include/ATen/ops/lgamma_cuda_dispatch.h' 2025-07-24T05:19:50.8217816Z adding 'torch/include/ATen/ops/lgamma_meta.h' 2025-07-24T05:19:50.8220669Z adding 'torch/include/ATen/ops/lgamma_meta_dispatch.h' 2025-07-24T05:19:50.8223599Z adding 'torch/include/ATen/ops/lgamma_native.h' 2025-07-24T05:19:50.8226752Z adding 'torch/include/ATen/ops/lgamma_ops.h' 2025-07-24T05:19:50.8229811Z adding 'torch/include/ATen/ops/lift.h' 2025-07-24T05:19:50.8233037Z adding 'torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.8235910Z adding 'torch/include/ATen/ops/lift_fresh.h' 2025-07-24T05:19:50.8239190Z adding 'torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.8242109Z adding 'torch/include/ATen/ops/lift_fresh_copy.h' 2025-07-24T05:19:50.8245305Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.8248448Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.8251191Z adding 'torch/include/ATen/ops/lift_fresh_copy_native.h' 2025-07-24T05:19:50.8254495Z adding 'torch/include/ATen/ops/lift_fresh_copy_ops.h' 2025-07-24T05:19:50.8257474Z adding 'torch/include/ATen/ops/lift_fresh_native.h' 2025-07-24T05:19:50.8260522Z adding 'torch/include/ATen/ops/lift_fresh_ops.h' 2025-07-24T05:19:50.8263481Z adding 'torch/include/ATen/ops/lift_native.h' 2025-07-24T05:19:50.8266565Z adding 'torch/include/ATen/ops/lift_ops.h' 2025-07-24T05:19:50.8269654Z adding 'torch/include/ATen/ops/linalg_cholesky.h' 2025-07-24T05:19:50.8272841Z adding 'torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8275842Z adding 'torch/include/ATen/ops/linalg_cholesky_ex.h' 2025-07-24T05:19:50.8279366Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.8282220Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h' 2025-07-24T05:19:50.8285278Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h' 2025-07-24T05:19:50.8288197Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta.h' 2025-07-24T05:19:50.8291292Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h' 2025-07-24T05:19:50.8294261Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_native.h' 2025-07-24T05:19:50.8303238Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_ops.h' 2025-07-24T05:19:50.8306281Z adding 'torch/include/ATen/ops/linalg_cholesky_native.h' 2025-07-24T05:19:50.8309464Z adding 'torch/include/ATen/ops/linalg_cholesky_ops.h' 2025-07-24T05:19:50.8312621Z adding 'torch/include/ATen/ops/linalg_cond.h' 2025-07-24T05:19:50.8315961Z adding 'torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8318901Z adding 'torch/include/ATen/ops/linalg_cond_native.h' 2025-07-24T05:19:50.8322125Z adding 'torch/include/ATen/ops/linalg_cond_ops.h' 2025-07-24T05:19:50.8325240Z adding 'torch/include/ATen/ops/linalg_cross.h' 2025-07-24T05:19:50.8328521Z adding 'torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.8331424Z adding 'torch/include/ATen/ops/linalg_cross_cpu_dispatch.h' 2025-07-24T05:19:50.8334481Z adding 'torch/include/ATen/ops/linalg_cross_cuda_dispatch.h' 2025-07-24T05:19:50.8337434Z adding 'torch/include/ATen/ops/linalg_cross_meta.h' 2025-07-24T05:19:50.8340476Z adding 'torch/include/ATen/ops/linalg_cross_meta_dispatch.h' 2025-07-24T05:19:50.8343425Z adding 'torch/include/ATen/ops/linalg_cross_native.h' 2025-07-24T05:19:50.8346539Z adding 'torch/include/ATen/ops/linalg_cross_ops.h' 2025-07-24T05:19:50.8349550Z adding 'torch/include/ATen/ops/linalg_det.h' 2025-07-24T05:19:50.8353186Z adding 'torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8355899Z adding 'torch/include/ATen/ops/linalg_det_native.h' 2025-07-24T05:19:50.8359334Z adding 'torch/include/ATen/ops/linalg_det_ops.h' 2025-07-24T05:19:50.8362389Z adding 'torch/include/ATen/ops/linalg_diagonal.h' 2025-07-24T05:19:50.8365740Z adding 'torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8368623Z adding 'torch/include/ATen/ops/linalg_diagonal_native.h' 2025-07-24T05:19:50.8371872Z adding 'torch/include/ATen/ops/linalg_diagonal_ops.h' 2025-07-24T05:19:50.8374933Z adding 'torch/include/ATen/ops/linalg_eig.h' 2025-07-24T05:19:50.8378214Z adding 'torch/include/ATen/ops/linalg_eig_cpu_dispatch.h' 2025-07-24T05:19:50.8381829Z adding 'torch/include/ATen/ops/linalg_eig_cuda_dispatch.h' 2025-07-24T05:19:50.8384378Z adding 'torch/include/ATen/ops/linalg_eig_native.h' 2025-07-24T05:19:50.8387952Z adding 'torch/include/ATen/ops/linalg_eig_ops.h' 2025-07-24T05:19:50.8390841Z adding 'torch/include/ATen/ops/linalg_eigh.h' 2025-07-24T05:19:50.8394229Z adding 'torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8397094Z adding 'torch/include/ATen/ops/linalg_eigh_native.h' 2025-07-24T05:19:50.8400546Z adding 'torch/include/ATen/ops/linalg_eigh_ops.h' 2025-07-24T05:19:50.8403623Z adding 'torch/include/ATen/ops/linalg_eigvals.h' 2025-07-24T05:19:50.8407043Z adding 'torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8410486Z adding 'torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h' 2025-07-24T05:19:50.8413140Z adding 'torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h' 2025-07-24T05:19:50.8416179Z adding 'torch/include/ATen/ops/linalg_eigvals_native.h' 2025-07-24T05:19:50.8419292Z adding 'torch/include/ATen/ops/linalg_eigvals_ops.h' 2025-07-24T05:19:50.8422473Z adding 'torch/include/ATen/ops/linalg_eigvalsh.h' 2025-07-24T05:19:50.8425713Z adding 'torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8428736Z adding 'torch/include/ATen/ops/linalg_eigvalsh_native.h' 2025-07-24T05:19:50.8431830Z adding 'torch/include/ATen/ops/linalg_eigvalsh_ops.h' 2025-07-24T05:19:50.8435133Z adding 'torch/include/ATen/ops/linalg_householder_product.h' 2025-07-24T05:19:50.8438432Z adding 'torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h' 2025-07-24T05:19:50.8441655Z adding 'torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h' 2025-07-24T05:19:50.8444841Z adding 'torch/include/ATen/ops/linalg_householder_product_native.h' 2025-07-24T05:19:50.8447877Z adding 'torch/include/ATen/ops/linalg_householder_product_ops.h' 2025-07-24T05:19:50.8451152Z adding 'torch/include/ATen/ops/linalg_inv.h' 2025-07-24T05:19:50.8454379Z adding 'torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8457474Z adding 'torch/include/ATen/ops/linalg_inv_ex.h' 2025-07-24T05:19:50.8460852Z adding 'torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.8463867Z adding 'torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h' 2025-07-24T05:19:50.8466993Z adding 'torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h' 2025-07-24T05:19:50.8470066Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta.h' 2025-07-24T05:19:50.8473441Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h' 2025-07-24T05:19:50.8476210Z adding 'torch/include/ATen/ops/linalg_inv_ex_native.h' 2025-07-24T05:19:50.8479738Z adding 'torch/include/ATen/ops/linalg_inv_ex_ops.h' 2025-07-24T05:19:50.8482612Z adding 'torch/include/ATen/ops/linalg_inv_native.h' 2025-07-24T05:19:50.8490758Z adding 'torch/include/ATen/ops/linalg_inv_ops.h' 2025-07-24T05:19:50.8493614Z adding 'torch/include/ATen/ops/linalg_ldl_factor.h' 2025-07-24T05:19:50.8497059Z adding 'torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8500020Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex.h' 2025-07-24T05:19:50.8503483Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.8506416Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h' 2025-07-24T05:19:50.8509689Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h' 2025-07-24T05:19:50.8512727Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h' 2025-07-24T05:19:50.8516017Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h' 2025-07-24T05:19:50.8519428Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_native.h' 2025-07-24T05:19:50.8522455Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h' 2025-07-24T05:19:50.8525565Z adding 'torch/include/ATen/ops/linalg_ldl_factor_native.h' 2025-07-24T05:19:50.8528789Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ops.h' 2025-07-24T05:19:50.8532000Z adding 'torch/include/ATen/ops/linalg_ldl_solve.h' 2025-07-24T05:19:50.8535337Z adding 'torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.8538427Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h' 2025-07-24T05:19:50.8541475Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h' 2025-07-24T05:19:50.8544585Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta.h' 2025-07-24T05:19:50.8548035Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h' 2025-07-24T05:19:50.8550776Z adding 'torch/include/ATen/ops/linalg_ldl_solve_native.h' 2025-07-24T05:19:50.8554158Z adding 'torch/include/ATen/ops/linalg_ldl_solve_ops.h' 2025-07-24T05:19:50.8557274Z adding 'torch/include/ATen/ops/linalg_lstsq.h' 2025-07-24T05:19:50.8560945Z adding 'torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.8563885Z adding 'torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h' 2025-07-24T05:19:50.8567311Z adding 'torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h' 2025-07-24T05:19:50.8571035Z adding 'torch/include/ATen/ops/linalg_lstsq_native.h' 2025-07-24T05:19:50.8573881Z adding 'torch/include/ATen/ops/linalg_lstsq_ops.h' 2025-07-24T05:19:50.8577110Z adding 'torch/include/ATen/ops/linalg_lu.h' 2025-07-24T05:19:50.8580404Z adding 'torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.8583454Z adding 'torch/include/ATen/ops/linalg_lu_cpu_dispatch.h' 2025-07-24T05:19:50.8586537Z adding 'torch/include/ATen/ops/linalg_lu_cuda_dispatch.h' 2025-07-24T05:19:50.8589747Z adding 'torch/include/ATen/ops/linalg_lu_factor.h' 2025-07-24T05:19:50.8593000Z adding 'torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8596210Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex.h' 2025-07-24T05:19:50.8602035Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.8602962Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h' 2025-07-24T05:19:50.8606017Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h' 2025-07-24T05:19:50.8611731Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta.h' 2025-07-24T05:19:50.8612773Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h' 2025-07-24T05:19:50.8615742Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_native.h' 2025-07-24T05:19:50.8619130Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_ops.h' 2025-07-24T05:19:50.8622161Z adding 'torch/include/ATen/ops/linalg_lu_factor_native.h' 2025-07-24T05:19:50.8625511Z adding 'torch/include/ATen/ops/linalg_lu_factor_ops.h' 2025-07-24T05:19:50.8629801Z adding 'torch/include/ATen/ops/linalg_lu_meta.h' 2025-07-24T05:19:50.8631823Z adding 'torch/include/ATen/ops/linalg_lu_meta_dispatch.h' 2025-07-24T05:19:50.8635853Z adding 'torch/include/ATen/ops/linalg_lu_native.h' 2025-07-24T05:19:50.8638246Z adding 'torch/include/ATen/ops/linalg_lu_ops.h' 2025-07-24T05:19:50.8641437Z adding 'torch/include/ATen/ops/linalg_lu_solve.h' 2025-07-24T05:19:50.8644747Z adding 'torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.8647856Z adding 'torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h' 2025-07-24T05:19:50.8650944Z adding 'torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h' 2025-07-24T05:19:50.8653898Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta.h' 2025-07-24T05:19:50.8657004Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h' 2025-07-24T05:19:50.8659986Z adding 'torch/include/ATen/ops/linalg_lu_solve_native.h' 2025-07-24T05:19:50.8663320Z adding 'torch/include/ATen/ops/linalg_lu_solve_ops.h' 2025-07-24T05:19:50.8666406Z adding 'torch/include/ATen/ops/linalg_matmul.h' 2025-07-24T05:19:50.8669675Z adding 'torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8672492Z adding 'torch/include/ATen/ops/linalg_matmul_native.h' 2025-07-24T05:19:50.8675627Z adding 'torch/include/ATen/ops/linalg_matmul_ops.h' 2025-07-24T05:19:50.8678799Z adding 'torch/include/ATen/ops/linalg_matrix_exp.h' 2025-07-24T05:19:50.8682169Z adding 'torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.8685164Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h' 2025-07-24T05:19:50.8688177Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h' 2025-07-24T05:19:50.8691045Z adding 'torch/include/ATen/ops/linalg_matrix_exp_native.h' 2025-07-24T05:19:50.8694320Z adding 'torch/include/ATen/ops/linalg_matrix_exp_ops.h' 2025-07-24T05:19:50.8697588Z adding 'torch/include/ATen/ops/linalg_matrix_norm.h' 2025-07-24T05:19:50.8700934Z adding 'torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8703903Z adding 'torch/include/ATen/ops/linalg_matrix_norm_native.h' 2025-07-24T05:19:50.8707282Z adding 'torch/include/ATen/ops/linalg_matrix_norm_ops.h' 2025-07-24T05:19:50.8710439Z adding 'torch/include/ATen/ops/linalg_matrix_power.h' 2025-07-24T05:19:50.8713749Z adding 'torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8716561Z adding 'torch/include/ATen/ops/linalg_matrix_power_native.h' 2025-07-24T05:19:50.8719840Z adding 'torch/include/ATen/ops/linalg_matrix_power_ops.h' 2025-07-24T05:19:50.8723230Z adding 'torch/include/ATen/ops/linalg_matrix_rank.h' 2025-07-24T05:19:50.8726699Z adding 'torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8729707Z adding 'torch/include/ATen/ops/linalg_matrix_rank_native.h' 2025-07-24T05:19:50.8733255Z adding 'torch/include/ATen/ops/linalg_matrix_rank_ops.h' 2025-07-24T05:19:50.8736474Z adding 'torch/include/ATen/ops/linalg_multi_dot.h' 2025-07-24T05:19:50.8739705Z adding 'torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8742718Z adding 'torch/include/ATen/ops/linalg_multi_dot_native.h' 2025-07-24T05:19:50.8745909Z adding 'torch/include/ATen/ops/linalg_multi_dot_ops.h' 2025-07-24T05:19:50.8749691Z adding 'torch/include/ATen/ops/linalg_norm.h' 2025-07-24T05:19:50.8752621Z adding 'torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8755681Z adding 'torch/include/ATen/ops/linalg_norm_native.h' 2025-07-24T05:19:50.8759254Z adding 'torch/include/ATen/ops/linalg_norm_ops.h' 2025-07-24T05:19:50.8762696Z adding 'torch/include/ATen/ops/linalg_pinv.h' 2025-07-24T05:19:50.8766060Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.8769215Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.8772349Z adding 'torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8775296Z adding 'torch/include/ATen/ops/linalg_pinv_native.h' 2025-07-24T05:19:50.8778854Z adding 'torch/include/ATen/ops/linalg_pinv_ops.h' 2025-07-24T05:19:50.8782124Z adding 'torch/include/ATen/ops/linalg_qr.h' 2025-07-24T05:19:50.8785389Z adding 'torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.8788269Z adding 'torch/include/ATen/ops/linalg_qr_cpu_dispatch.h' 2025-07-24T05:19:50.8791355Z adding 'torch/include/ATen/ops/linalg_qr_cuda_dispatch.h' 2025-07-24T05:19:50.8794300Z adding 'torch/include/ATen/ops/linalg_qr_meta.h' 2025-07-24T05:19:50.8797377Z adding 'torch/include/ATen/ops/linalg_qr_meta_dispatch.h' 2025-07-24T05:19:50.8800474Z adding 'torch/include/ATen/ops/linalg_qr_native.h' 2025-07-24T05:19:50.8803617Z adding 'torch/include/ATen/ops/linalg_qr_ops.h' 2025-07-24T05:19:50.8806722Z adding 'torch/include/ATen/ops/linalg_slogdet.h' 2025-07-24T05:19:50.8809966Z adding 'torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8812822Z adding 'torch/include/ATen/ops/linalg_slogdet_native.h' 2025-07-24T05:19:50.8816008Z adding 'torch/include/ATen/ops/linalg_slogdet_ops.h' 2025-07-24T05:19:50.8819115Z adding 'torch/include/ATen/ops/linalg_solve.h' 2025-07-24T05:19:50.8822281Z adding 'torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8825266Z adding 'torch/include/ATen/ops/linalg_solve_ex.h' 2025-07-24T05:19:50.8828540Z adding 'torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8831396Z adding 'torch/include/ATen/ops/linalg_solve_ex_native.h' 2025-07-24T05:19:50.8834567Z adding 'torch/include/ATen/ops/linalg_solve_ex_ops.h' 2025-07-24T05:19:50.8837580Z adding 'torch/include/ATen/ops/linalg_solve_native.h' 2025-07-24T05:19:50.8840887Z adding 'torch/include/ATen/ops/linalg_solve_ops.h' 2025-07-24T05:19:50.8844050Z adding 'torch/include/ATen/ops/linalg_solve_triangular.h' 2025-07-24T05:19:50.8847222Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h' 2025-07-24T05:19:50.8851175Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h' 2025-07-24T05:19:50.8853491Z adding 'torch/include/ATen/ops/linalg_solve_triangular_native.h' 2025-07-24T05:19:50.8866189Z adding 'torch/include/ATen/ops/linalg_solve_triangular_ops.h' 2025-07-24T05:19:50.8869309Z adding 'torch/include/ATen/ops/linalg_svd.h' 2025-07-24T05:19:50.8872629Z adding 'torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8875640Z adding 'torch/include/ATen/ops/linalg_svd_native.h' 2025-07-24T05:19:50.8879193Z adding 'torch/include/ATen/ops/linalg_svd_ops.h' 2025-07-24T05:19:50.8882358Z adding 'torch/include/ATen/ops/linalg_svdvals.h' 2025-07-24T05:19:50.8885674Z adding 'torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8888874Z adding 'torch/include/ATen/ops/linalg_svdvals_native.h' 2025-07-24T05:19:50.8892521Z adding 'torch/include/ATen/ops/linalg_svdvals_ops.h' 2025-07-24T05:19:50.8895739Z adding 'torch/include/ATen/ops/linalg_tensorinv.h' 2025-07-24T05:19:50.8899365Z adding 'torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8902203Z adding 'torch/include/ATen/ops/linalg_tensorinv_native.h' 2025-07-24T05:19:50.8905774Z adding 'torch/include/ATen/ops/linalg_tensorinv_ops.h' 2025-07-24T05:19:50.8908624Z adding 'torch/include/ATen/ops/linalg_tensorsolve.h' 2025-07-24T05:19:50.8911951Z adding 'torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8914860Z adding 'torch/include/ATen/ops/linalg_tensorsolve_native.h' 2025-07-24T05:19:50.8918140Z adding 'torch/include/ATen/ops/linalg_tensorsolve_ops.h' 2025-07-24T05:19:50.8921355Z adding 'torch/include/ATen/ops/linalg_vander.h' 2025-07-24T05:19:50.8924700Z adding 'torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8927761Z adding 'torch/include/ATen/ops/linalg_vander_native.h' 2025-07-24T05:19:50.8930858Z adding 'torch/include/ATen/ops/linalg_vander_ops.h' 2025-07-24T05:19:50.8933954Z adding 'torch/include/ATen/ops/linalg_vecdot.h' 2025-07-24T05:19:50.8937207Z adding 'torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8940318Z adding 'torch/include/ATen/ops/linalg_vecdot_native.h' 2025-07-24T05:19:50.8943525Z adding 'torch/include/ATen/ops/linalg_vecdot_ops.h' 2025-07-24T05:19:50.8946751Z adding 'torch/include/ATen/ops/linalg_vector_norm.h' 2025-07-24T05:19:50.8950173Z adding 'torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.8953397Z adding 'torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h' 2025-07-24T05:19:50.8956592Z adding 'torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h' 2025-07-24T05:19:50.8959845Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta.h' 2025-07-24T05:19:50.8962994Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h' 2025-07-24T05:19:50.8966021Z adding 'torch/include/ATen/ops/linalg_vector_norm_native.h' 2025-07-24T05:19:50.8969279Z adding 'torch/include/ATen/ops/linalg_vector_norm_ops.h' 2025-07-24T05:19:50.8972498Z adding 'torch/include/ATen/ops/linear.h' 2025-07-24T05:19:50.8975849Z adding 'torch/include/ATen/ops/linear_backward.h' 2025-07-24T05:19:50.8979104Z adding 'torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.8982057Z adding 'torch/include/ATen/ops/linear_backward_native.h' 2025-07-24T05:19:50.8985403Z adding 'torch/include/ATen/ops/linear_backward_ops.h' 2025-07-24T05:19:50.8988687Z adding 'torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.8991767Z adding 'torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.8994814Z adding 'torch/include/ATen/ops/linear_native.h' 2025-07-24T05:19:50.8998112Z adding 'torch/include/ATen/ops/linear_ops.h' 2025-07-24T05:19:50.9001763Z adding 'torch/include/ATen/ops/linspace.h' 2025-07-24T05:19:50.9005522Z adding 'torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.9008624Z adding 'torch/include/ATen/ops/linspace_cpu_dispatch.h' 2025-07-24T05:19:50.9011741Z adding 'torch/include/ATen/ops/linspace_cuda_dispatch.h' 2025-07-24T05:19:50.9014737Z adding 'torch/include/ATen/ops/linspace_meta_dispatch.h' 2025-07-24T05:19:50.9017866Z adding 'torch/include/ATen/ops/linspace_native.h' 2025-07-24T05:19:50.9021665Z adding 'torch/include/ATen/ops/linspace_ops.h' 2025-07-24T05:19:50.9024958Z adding 'torch/include/ATen/ops/log.h' 2025-07-24T05:19:50.9028143Z adding 'torch/include/ATen/ops/log10.h' 2025-07-24T05:19:50.9031468Z adding 'torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.9034375Z adding 'torch/include/ATen/ops/log10_cpu_dispatch.h' 2025-07-24T05:19:50.9037422Z adding 'torch/include/ATen/ops/log10_cuda_dispatch.h' 2025-07-24T05:19:50.9040640Z adding 'torch/include/ATen/ops/log10_meta.h' 2025-07-24T05:19:50.9043820Z adding 'torch/include/ATen/ops/log10_meta_dispatch.h' 2025-07-24T05:19:50.9046871Z adding 'torch/include/ATen/ops/log10_native.h' 2025-07-24T05:19:50.9049997Z adding 'torch/include/ATen/ops/log10_ops.h' 2025-07-24T05:19:50.9053097Z adding 'torch/include/ATen/ops/log1p.h' 2025-07-24T05:19:50.9056562Z adding 'torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.9059473Z adding 'torch/include/ATen/ops/log1p_cpu_dispatch.h' 2025-07-24T05:19:50.9062730Z adding 'torch/include/ATen/ops/log1p_cuda_dispatch.h' 2025-07-24T05:19:50.9065745Z adding 'torch/include/ATen/ops/log1p_meta.h' 2025-07-24T05:19:50.9069043Z adding 'torch/include/ATen/ops/log1p_meta_dispatch.h' 2025-07-24T05:19:50.9072611Z adding 'torch/include/ATen/ops/log1p_native.h' 2025-07-24T05:19:50.9075518Z adding 'torch/include/ATen/ops/log1p_ops.h' 2025-07-24T05:19:50.9078853Z adding 'torch/include/ATen/ops/log2.h' 2025-07-24T05:19:50.9082243Z adding 'torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.9085399Z adding 'torch/include/ATen/ops/log2_cpu_dispatch.h' 2025-07-24T05:19:50.9088471Z adding 'torch/include/ATen/ops/log2_cuda_dispatch.h' 2025-07-24T05:19:50.9091700Z adding 'torch/include/ATen/ops/log2_meta.h' 2025-07-24T05:19:50.9095457Z adding 'torch/include/ATen/ops/log2_meta_dispatch.h' 2025-07-24T05:19:50.9097983Z adding 'torch/include/ATen/ops/log2_native.h' 2025-07-24T05:19:50.9105758Z adding 'torch/include/ATen/ops/log2_ops.h' 2025-07-24T05:19:50.9106090Z adding 'torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.9108128Z adding 'torch/include/ATen/ops/log_cpu_dispatch.h' 2025-07-24T05:19:50.9149604Z adding 'torch/include/ATen/ops/log_cuda_dispatch.h' 2025-07-24T05:19:50.9149739Z adding 'torch/include/ATen/ops/log_meta.h' 2025-07-24T05:19:50.9149960Z adding 'torch/include/ATen/ops/log_meta_dispatch.h' 2025-07-24T05:19:50.9150067Z adding 'torch/include/ATen/ops/log_native.h' 2025-07-24T05:19:50.9150167Z adding 'torch/include/ATen/ops/log_normal.h' 2025-07-24T05:19:50.9150499Z adding 'torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.9150648Z adding 'torch/include/ATen/ops/log_normal_cpu_dispatch.h' 2025-07-24T05:19:50.9150799Z adding 'torch/include/ATen/ops/log_normal_cuda_dispatch.h' 2025-07-24T05:19:50.9150959Z adding 'torch/include/ATen/ops/log_normal_meta_dispatch.h' 2025-07-24T05:19:50.9151077Z adding 'torch/include/ATen/ops/log_normal_native.h' 2025-07-24T05:19:50.9151190Z adding 'torch/include/ATen/ops/log_normal_ops.h' 2025-07-24T05:19:50.9151296Z adding 'torch/include/ATen/ops/log_ops.h' 2025-07-24T05:19:50.9154085Z adding 'torch/include/ATen/ops/log_sigmoid.h' 2025-07-24T05:19:50.9157490Z adding 'torch/include/ATen/ops/log_sigmoid_backward.h' 2025-07-24T05:19:50.9161776Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h' 2025-07-24T05:19:50.9164137Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h' 2025-07-24T05:19:50.9167763Z adding 'torch/include/ATen/ops/log_sigmoid_backward_native.h' 2025-07-24T05:19:50.9170598Z adding 'torch/include/ATen/ops/log_sigmoid_backward_ops.h' 2025-07-24T05:19:50.9174119Z adding 'torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.9177166Z adding 'torch/include/ATen/ops/log_sigmoid_forward.h' 2025-07-24T05:19:50.9180426Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h' 2025-07-24T05:19:50.9184878Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h' 2025-07-24T05:19:50.9186800Z adding 'torch/include/ATen/ops/log_sigmoid_forward_native.h' 2025-07-24T05:19:50.9190029Z adding 'torch/include/ATen/ops/log_sigmoid_forward_ops.h' 2025-07-24T05:19:50.9193003Z adding 'torch/include/ATen/ops/log_sigmoid_native.h' 2025-07-24T05:19:50.9196136Z adding 'torch/include/ATen/ops/log_sigmoid_ops.h' 2025-07-24T05:19:50.9199475Z adding 'torch/include/ATen/ops/log_softmax.h' 2025-07-24T05:19:50.9203030Z adding 'torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.9206246Z adding 'torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.9209154Z adding 'torch/include/ATen/ops/log_softmax_native.h' 2025-07-24T05:19:50.9212435Z adding 'torch/include/ATen/ops/log_softmax_ops.h' 2025-07-24T05:19:50.9215570Z adding 'torch/include/ATen/ops/logaddexp.h' 2025-07-24T05:19:50.9218687Z adding 'torch/include/ATen/ops/logaddexp2.h' 2025-07-24T05:19:50.9221997Z adding 'torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.9224900Z adding 'torch/include/ATen/ops/logaddexp2_cpu_dispatch.h' 2025-07-24T05:19:50.9228031Z adding 'torch/include/ATen/ops/logaddexp2_cuda_dispatch.h' 2025-07-24T05:19:50.9231546Z adding 'torch/include/ATen/ops/logaddexp2_meta.h' 2025-07-24T05:19:50.9234303Z adding 'torch/include/ATen/ops/logaddexp2_meta_dispatch.h' 2025-07-24T05:19:50.9237282Z adding 'torch/include/ATen/ops/logaddexp2_native.h' 2025-07-24T05:19:50.9240595Z adding 'torch/include/ATen/ops/logaddexp2_ops.h' 2025-07-24T05:19:50.9243941Z adding 'torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.9246867Z adding 'torch/include/ATen/ops/logaddexp_cpu_dispatch.h' 2025-07-24T05:19:50.9249943Z adding 'torch/include/ATen/ops/logaddexp_cuda_dispatch.h' 2025-07-24T05:19:50.9252887Z adding 'torch/include/ATen/ops/logaddexp_meta.h' 2025-07-24T05:19:50.9256033Z adding 'torch/include/ATen/ops/logaddexp_meta_dispatch.h' 2025-07-24T05:19:50.9259196Z adding 'torch/include/ATen/ops/logaddexp_native.h' 2025-07-24T05:19:50.9262349Z adding 'torch/include/ATen/ops/logaddexp_ops.h' 2025-07-24T05:19:50.9265518Z adding 'torch/include/ATen/ops/logcumsumexp.h' 2025-07-24T05:19:50.9268809Z adding 'torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.9271916Z adding 'torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.9274796Z adding 'torch/include/ATen/ops/logcumsumexp_native.h' 2025-07-24T05:19:50.9278234Z adding 'torch/include/ATen/ops/logcumsumexp_ops.h' 2025-07-24T05:19:50.9281353Z adding 'torch/include/ATen/ops/logdet.h' 2025-07-24T05:19:50.9284616Z adding 'torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.9287464Z adding 'torch/include/ATen/ops/logdet_native.h' 2025-07-24T05:19:50.9290740Z adding 'torch/include/ATen/ops/logdet_ops.h' 2025-07-24T05:19:50.9293869Z adding 'torch/include/ATen/ops/logical_and.h' 2025-07-24T05:19:50.9297095Z adding 'torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.9300089Z adding 'torch/include/ATen/ops/logical_and_cpu_dispatch.h' 2025-07-24T05:19:50.9303145Z adding 'torch/include/ATen/ops/logical_and_cuda_dispatch.h' 2025-07-24T05:19:50.9306125Z adding 'torch/include/ATen/ops/logical_and_native.h' 2025-07-24T05:19:50.9309391Z adding 'torch/include/ATen/ops/logical_and_ops.h' 2025-07-24T05:19:50.9312477Z adding 'torch/include/ATen/ops/logical_not.h' 2025-07-24T05:19:50.9315770Z adding 'torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.9318844Z adding 'torch/include/ATen/ops/logical_not_cpu_dispatch.h' 2025-07-24T05:19:50.9321892Z adding 'torch/include/ATen/ops/logical_not_cuda_dispatch.h' 2025-07-24T05:19:50.9324861Z adding 'torch/include/ATen/ops/logical_not_native.h' 2025-07-24T05:19:50.9328047Z adding 'torch/include/ATen/ops/logical_not_ops.h' 2025-07-24T05:19:50.9331206Z adding 'torch/include/ATen/ops/logical_or.h' 2025-07-24T05:19:50.9334479Z adding 'torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.9337466Z adding 'torch/include/ATen/ops/logical_or_cpu_dispatch.h' 2025-07-24T05:19:50.9340563Z adding 'torch/include/ATen/ops/logical_or_cuda_dispatch.h' 2025-07-24T05:19:50.9343541Z adding 'torch/include/ATen/ops/logical_or_native.h' 2025-07-24T05:19:50.9346765Z adding 'torch/include/ATen/ops/logical_or_ops.h' 2025-07-24T05:19:50.9349935Z adding 'torch/include/ATen/ops/logical_xor.h' 2025-07-24T05:19:50.9353113Z adding 'torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.9356138Z adding 'torch/include/ATen/ops/logical_xor_cpu_dispatch.h' 2025-07-24T05:19:50.9359326Z adding 'torch/include/ATen/ops/logical_xor_cuda_dispatch.h' 2025-07-24T05:19:50.9362353Z adding 'torch/include/ATen/ops/logical_xor_native.h' 2025-07-24T05:19:50.9365557Z adding 'torch/include/ATen/ops/logical_xor_ops.h' 2025-07-24T05:19:50.9368679Z adding 'torch/include/ATen/ops/logit.h' 2025-07-24T05:19:50.9371848Z adding 'torch/include/ATen/ops/logit_backward.h' 2025-07-24T05:19:50.9375224Z adding 'torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.9378153Z adding 'torch/include/ATen/ops/logit_backward_cpu_dispatch.h' 2025-07-24T05:19:50.9381332Z adding 'torch/include/ATen/ops/logit_backward_cuda_dispatch.h' 2025-07-24T05:19:50.9384435Z adding 'torch/include/ATen/ops/logit_backward_meta.h' 2025-07-24T05:19:50.9387584Z adding 'torch/include/ATen/ops/logit_backward_meta_dispatch.h' 2025-07-24T05:19:50.9390594Z adding 'torch/include/ATen/ops/logit_backward_native.h' 2025-07-24T05:19:50.9404882Z adding 'torch/include/ATen/ops/logit_backward_ops.h' 2025-07-24T05:19:50.9408108Z adding 'torch/include/ATen/ops/logit_cpu_dispatch.h' 2025-07-24T05:19:50.9411196Z adding 'torch/include/ATen/ops/logit_cuda_dispatch.h' 2025-07-24T05:19:50.9414398Z adding 'torch/include/ATen/ops/logit_meta_dispatch.h' 2025-07-24T05:19:50.9417409Z adding 'torch/include/ATen/ops/logit_native.h' 2025-07-24T05:19:50.9420802Z adding 'torch/include/ATen/ops/logit_ops.h' 2025-07-24T05:19:50.9424829Z adding 'torch/include/ATen/ops/logspace.h' 2025-07-24T05:19:50.9428212Z adding 'torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.9431369Z adding 'torch/include/ATen/ops/logspace_cpu_dispatch.h' 2025-07-24T05:19:50.9434450Z adding 'torch/include/ATen/ops/logspace_cuda_dispatch.h' 2025-07-24T05:19:50.9437695Z adding 'torch/include/ATen/ops/logspace_meta_dispatch.h' 2025-07-24T05:19:50.9441076Z adding 'torch/include/ATen/ops/logspace_native.h' 2025-07-24T05:19:50.9445270Z adding 'torch/include/ATen/ops/logspace_ops.h' 2025-07-24T05:19:50.9448542Z adding 'torch/include/ATen/ops/logsumexp.h' 2025-07-24T05:19:50.9451849Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.9455125Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.9458147Z adding 'torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.9461171Z adding 'torch/include/ATen/ops/logsumexp_native.h' 2025-07-24T05:19:50.9464500Z adding 'torch/include/ATen/ops/logsumexp_ops.h' 2025-07-24T05:19:50.9467911Z adding 'torch/include/ATen/ops/lshift.h' 2025-07-24T05:19:50.9471264Z adding 'torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.9474347Z adding 'torch/include/ATen/ops/lshift_cpu_dispatch.h' 2025-07-24T05:19:50.9477572Z adding 'torch/include/ATen/ops/lshift_cuda_dispatch.h' 2025-07-24T05:19:50.9480676Z adding 'torch/include/ATen/ops/lshift_meta_dispatch.h' 2025-07-24T05:19:50.9483781Z adding 'torch/include/ATen/ops/lshift_native.h' 2025-07-24T05:19:50.9487480Z adding 'torch/include/ATen/ops/lshift_ops.h' 2025-07-24T05:19:50.9490875Z adding 'torch/include/ATen/ops/lstm.h' 2025-07-24T05:19:50.9494026Z adding 'torch/include/ATen/ops/lstm_cell.h' 2025-07-24T05:19:50.9497409Z adding 'torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.9500274Z adding 'torch/include/ATen/ops/lstm_cell_native.h' 2025-07-24T05:19:50.9503580Z adding 'torch/include/ATen/ops/lstm_cell_ops.h' 2025-07-24T05:19:50.9506850Z adding 'torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.9510249Z adding 'torch/include/ATen/ops/lstm_mps_backward.h' 2025-07-24T05:19:50.9513877Z adding 'torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.9516828Z adding 'torch/include/ATen/ops/lstm_mps_backward_native.h' 2025-07-24T05:19:50.9520531Z adding 'torch/include/ATen/ops/lstm_mps_backward_ops.h' 2025-07-24T05:19:50.9523671Z adding 'torch/include/ATen/ops/lstm_native.h' 2025-07-24T05:19:50.9527058Z adding 'torch/include/ATen/ops/lstm_ops.h' 2025-07-24T05:19:50.9530289Z adding 'torch/include/ATen/ops/lt.h' 2025-07-24T05:19:50.9533748Z adding 'torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.9536815Z adding 'torch/include/ATen/ops/lt_cpu_dispatch.h' 2025-07-24T05:19:50.9539953Z adding 'torch/include/ATen/ops/lt_cuda_dispatch.h' 2025-07-24T05:19:50.9543117Z adding 'torch/include/ATen/ops/lt_meta.h' 2025-07-24T05:19:50.9546235Z adding 'torch/include/ATen/ops/lt_meta_dispatch.h' 2025-07-24T05:19:50.9549374Z adding 'torch/include/ATen/ops/lt_native.h' 2025-07-24T05:19:50.9552759Z adding 'torch/include/ATen/ops/lt_ops.h' 2025-07-24T05:19:50.9556079Z adding 'torch/include/ATen/ops/lu_solve.h' 2025-07-24T05:19:50.9559546Z adding 'torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.9562525Z adding 'torch/include/ATen/ops/lu_solve_native.h' 2025-07-24T05:19:50.9565779Z adding 'torch/include/ATen/ops/lu_solve_ops.h' 2025-07-24T05:19:50.9569012Z adding 'torch/include/ATen/ops/lu_unpack.h' 2025-07-24T05:19:50.9572485Z adding 'torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.9575475Z adding 'torch/include/ATen/ops/lu_unpack_cpu_dispatch.h' 2025-07-24T05:19:50.9578807Z adding 'torch/include/ATen/ops/lu_unpack_cuda_dispatch.h' 2025-07-24T05:19:50.9581685Z adding 'torch/include/ATen/ops/lu_unpack_meta.h' 2025-07-24T05:19:50.9584949Z adding 'torch/include/ATen/ops/lu_unpack_meta_dispatch.h' 2025-07-24T05:19:50.9587955Z adding 'torch/include/ATen/ops/lu_unpack_native.h' 2025-07-24T05:19:50.9591356Z adding 'torch/include/ATen/ops/lu_unpack_ops.h' 2025-07-24T05:19:50.9594320Z adding 'torch/include/ATen/ops/mH.h' 2025-07-24T05:19:50.9597649Z adding 'torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.9601355Z adding 'torch/include/ATen/ops/mH_native.h' 2025-07-24T05:19:50.9603821Z adding 'torch/include/ATen/ops/mH_ops.h' 2025-07-24T05:19:50.9624324Z adding 'torch/include/ATen/ops/mT.h' 2025-07-24T05:19:50.9624583Z adding 'torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.9624688Z adding 'torch/include/ATen/ops/mT_native.h' 2025-07-24T05:19:50.9624781Z adding 'torch/include/ATen/ops/mT_ops.h' 2025-07-24T05:19:50.9624922Z adding 'torch/include/ATen/ops/margin_ranking_loss.h' 2025-07-24T05:19:50.9625212Z adding 'torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.9627151Z adding 'torch/include/ATen/ops/margin_ranking_loss_native.h' 2025-07-24T05:19:50.9630427Z adding 'torch/include/ATen/ops/margin_ranking_loss_ops.h' 2025-07-24T05:19:50.9633603Z adding 'torch/include/ATen/ops/masked_fill.h' 2025-07-24T05:19:50.9637165Z adding 'torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.9640275Z adding 'torch/include/ATen/ops/masked_fill_cpu_dispatch.h' 2025-07-24T05:19:50.9644190Z adding 'torch/include/ATen/ops/masked_fill_cuda_dispatch.h' 2025-07-24T05:19:50.9648532Z adding 'torch/include/ATen/ops/masked_fill_meta_dispatch.h' 2025-07-24T05:19:50.9650566Z adding 'torch/include/ATen/ops/masked_fill_native.h' 2025-07-24T05:19:50.9654018Z adding 'torch/include/ATen/ops/masked_fill_ops.h' 2025-07-24T05:19:50.9657211Z adding 'torch/include/ATen/ops/masked_scatter.h' 2025-07-24T05:19:50.9660594Z adding 'torch/include/ATen/ops/masked_scatter_backward.h' 2025-07-24T05:19:50.9664067Z adding 'torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.9667009Z adding 'torch/include/ATen/ops/masked_scatter_backward_native.h' 2025-07-24T05:19:50.9670177Z adding 'torch/include/ATen/ops/masked_scatter_backward_ops.h' 2025-07-24T05:19:50.9673289Z adding 'torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.9676475Z adding 'torch/include/ATen/ops/masked_scatter_cpu_dispatch.h' 2025-07-24T05:19:50.9679636Z adding 'torch/include/ATen/ops/masked_scatter_cuda_dispatch.h' 2025-07-24T05:19:50.9682632Z adding 'torch/include/ATen/ops/masked_scatter_meta_dispatch.h' 2025-07-24T05:19:50.9685562Z adding 'torch/include/ATen/ops/masked_scatter_native.h' 2025-07-24T05:19:50.9688802Z adding 'torch/include/ATen/ops/masked_scatter_ops.h' 2025-07-24T05:19:50.9691924Z adding 'torch/include/ATen/ops/masked_select.h' 2025-07-24T05:19:50.9694983Z adding 'torch/include/ATen/ops/masked_select_backward.h' 2025-07-24T05:19:50.9698243Z adding 'torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.9701072Z adding 'torch/include/ATen/ops/masked_select_backward_native.h' 2025-07-24T05:19:50.9704153Z adding 'torch/include/ATen/ops/masked_select_backward_ops.h' 2025-07-24T05:19:50.9707397Z adding 'torch/include/ATen/ops/masked_select_cpu_dispatch.h' 2025-07-24T05:19:50.9710451Z adding 'torch/include/ATen/ops/masked_select_cuda_dispatch.h' 2025-07-24T05:19:50.9713372Z adding 'torch/include/ATen/ops/masked_select_native.h' 2025-07-24T05:19:50.9716574Z adding 'torch/include/ATen/ops/masked_select_ops.h' 2025-07-24T05:19:50.9719818Z adding 'torch/include/ATen/ops/matmul.h' 2025-07-24T05:19:50.9722944Z adding 'torch/include/ATen/ops/matmul_backward.h' 2025-07-24T05:19:50.9726201Z adding 'torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.9729032Z adding 'torch/include/ATen/ops/matmul_backward_native.h' 2025-07-24T05:19:50.9732260Z adding 'torch/include/ATen/ops/matmul_backward_ops.h' 2025-07-24T05:19:50.9735467Z adding 'torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.9738362Z adding 'torch/include/ATen/ops/matmul_native.h' 2025-07-24T05:19:50.9741558Z adding 'torch/include/ATen/ops/matmul_ops.h' 2025-07-24T05:19:50.9744538Z adding 'torch/include/ATen/ops/matrix_H.h' 2025-07-24T05:19:50.9747683Z adding 'torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.9750463Z adding 'torch/include/ATen/ops/matrix_H_native.h' 2025-07-24T05:19:50.9753523Z adding 'torch/include/ATen/ops/matrix_H_ops.h' 2025-07-24T05:19:50.9756499Z adding 'torch/include/ATen/ops/matrix_exp.h' 2025-07-24T05:19:50.9759603Z adding 'torch/include/ATen/ops/matrix_exp_backward.h' 2025-07-24T05:19:50.9763030Z adding 'torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.9765851Z adding 'torch/include/ATen/ops/matrix_exp_backward_native.h' 2025-07-24T05:19:50.9768971Z adding 'torch/include/ATen/ops/matrix_exp_backward_ops.h' 2025-07-24T05:19:50.9772154Z adding 'torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.9774946Z adding 'torch/include/ATen/ops/matrix_exp_native.h' 2025-07-24T05:19:50.9778465Z adding 'torch/include/ATen/ops/matrix_exp_ops.h' 2025-07-24T05:19:50.9781049Z adding 'torch/include/ATen/ops/matrix_power.h' 2025-07-24T05:19:50.9784254Z adding 'torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.9787081Z adding 'torch/include/ATen/ops/matrix_power_native.h' 2025-07-24T05:19:50.9790206Z adding 'torch/include/ATen/ops/matrix_power_ops.h' 2025-07-24T05:19:50.9793517Z adding 'torch/include/ATen/ops/max.h' 2025-07-24T05:19:50.9796873Z adding 'torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.9800052Z adding 'torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.9803078Z adding 'torch/include/ATen/ops/max_cpu_dispatch.h' 2025-07-24T05:19:50.9806183Z adding 'torch/include/ATen/ops/max_cuda_dispatch.h' 2025-07-24T05:19:50.9809350Z adding 'torch/include/ATen/ops/max_meta.h' 2025-07-24T05:19:50.9812362Z adding 'torch/include/ATen/ops/max_meta_dispatch.h' 2025-07-24T05:19:50.9815474Z adding 'torch/include/ATen/ops/max_native.h' 2025-07-24T05:19:50.9819027Z adding 'torch/include/ATen/ops/max_ops.h' 2025-07-24T05:19:50.9822241Z adding 'torch/include/ATen/ops/max_pool1d.h' 2025-07-24T05:19:50.9825528Z adding 'torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.9828434Z adding 'torch/include/ATen/ops/max_pool1d_native.h' 2025-07-24T05:19:50.9831617Z adding 'torch/include/ATen/ops/max_pool1d_ops.h' 2025-07-24T05:19:50.9834751Z adding 'torch/include/ATen/ops/max_pool1d_with_indices.h' 2025-07-24T05:19:50.9838044Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.9841018Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_native.h' 2025-07-24T05:19:50.9844149Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_ops.h' 2025-07-24T05:19:50.9847191Z adding 'torch/include/ATen/ops/max_pool2d.h' 2025-07-24T05:19:50.9850380Z adding 'torch/include/ATen/ops/max_pool2d_backward.h' 2025-07-24T05:19:50.9853696Z adding 'torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:50.9856568Z adding 'torch/include/ATen/ops/max_pool2d_backward_native.h' 2025-07-24T05:19:50.9859808Z adding 'torch/include/ATen/ops/max_pool2d_backward_ops.h' 2025-07-24T05:19:50.9863200Z adding 'torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.9866042Z adding 'torch/include/ATen/ops/max_pool2d_native.h' 2025-07-24T05:19:50.9869564Z adding 'torch/include/ATen/ops/max_pool2d_ops.h' 2025-07-24T05:19:50.9872630Z adding 'torch/include/ATen/ops/max_pool2d_with_indices.h' 2025-07-24T05:19:50.9875975Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward.h' 2025-07-24T05:19:50.9879587Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.9882685Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h' 2025-07-24T05:19:50.9885941Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h' 2025-07-24T05:19:50.9888973Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h' 2025-07-24T05:19:50.9892238Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h' 2025-07-24T05:19:50.9895293Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h' 2025-07-24T05:19:50.9898702Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h' 2025-07-24T05:19:50.9902110Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:50.9905208Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h' 2025-07-24T05:19:50.9908373Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h' 2025-07-24T05:19:50.9911531Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta.h' 2025-07-24T05:19:50.9914784Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h' 2025-07-24T05:19:50.9917908Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_native.h' 2025-07-24T05:19:50.9921536Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_ops.h' 2025-07-24T05:19:50.9924567Z adding 'torch/include/ATen/ops/max_pool3d.h' 2025-07-24T05:19:50.9927963Z adding 'torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:50.9930857Z adding 'torch/include/ATen/ops/max_pool3d_native.h' 2025-07-24T05:19:50.9934076Z adding 'torch/include/ATen/ops/max_pool3d_ops.h' 2025-07-24T05:19:50.9937312Z adding 'torch/include/ATen/ops/max_pool3d_with_indices.h' 2025-07-24T05:19:50.9940762Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward.h' 2025-07-24T05:19:50.9943988Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h' 2025-07-24T05:19:50.9947366Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h' 2025-07-24T05:19:50.9950400Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h' 2025-07-24T05:19:50.9953875Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h' 2025-07-24T05:19:50.9957190Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h' 2025-07-24T05:19:50.9960479Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h' 2025-07-24T05:19:50.9963647Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_native.h' 2025-07-24T05:19:50.9966954Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_ops.h' 2025-07-24T05:19:50.9970458Z adding 'torch/include/ATen/ops/max_unpool2d.h' 2025-07-24T05:19:50.9973766Z adding 'torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h' 2025-07-24T05:19:50.9976989Z adding 'torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h' 2025-07-24T05:19:50.9980133Z adding 'torch/include/ATen/ops/max_unpool2d_native.h' 2025-07-24T05:19:50.9983365Z adding 'torch/include/ATen/ops/max_unpool2d_ops.h' 2025-07-24T05:19:50.9986924Z adding 'torch/include/ATen/ops/max_unpool3d.h' 2025-07-24T05:19:50.9990181Z adding 'torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h' 2025-07-24T05:19:50.9993464Z adding 'torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h' 2025-07-24T05:19:50.9996508Z adding 'torch/include/ATen/ops/max_unpool3d_native.h' 2025-07-24T05:19:50.9999988Z adding 'torch/include/ATen/ops/max_unpool3d_ops.h' 2025-07-24T05:19:51.0003069Z adding 'torch/include/ATen/ops/maximum.h' 2025-07-24T05:19:51.0006648Z adding 'torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.0009601Z adding 'torch/include/ATen/ops/maximum_cpu_dispatch.h' 2025-07-24T05:19:51.0012752Z adding 'torch/include/ATen/ops/maximum_cuda_dispatch.h' 2025-07-24T05:19:51.0015921Z adding 'torch/include/ATen/ops/maximum_meta.h' 2025-07-24T05:19:51.0018916Z adding 'torch/include/ATen/ops/maximum_meta_dispatch.h' 2025-07-24T05:19:51.0022060Z adding 'torch/include/ATen/ops/maximum_native.h' 2025-07-24T05:19:51.0025214Z adding 'torch/include/ATen/ops/maximum_ops.h' 2025-07-24T05:19:51.0028599Z adding 'torch/include/ATen/ops/mean.h' 2025-07-24T05:19:51.0031913Z adding 'torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0035324Z adding 'torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.0038428Z adding 'torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.0041604Z adding 'torch/include/ATen/ops/mean_cpu_dispatch.h' 2025-07-24T05:19:51.0045121Z adding 'torch/include/ATen/ops/mean_cuda_dispatch.h' 2025-07-24T05:19:51.0047915Z adding 'torch/include/ATen/ops/mean_meta.h' 2025-07-24T05:19:51.0051256Z adding 'torch/include/ATen/ops/mean_meta_dispatch.h' 2025-07-24T05:19:51.0054211Z adding 'torch/include/ATen/ops/mean_native.h' 2025-07-24T05:19:51.0057773Z adding 'torch/include/ATen/ops/mean_ops.h' 2025-07-24T05:19:51.0061163Z adding 'torch/include/ATen/ops/median.h' 2025-07-24T05:19:51.0064710Z adding 'torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0068108Z adding 'torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.0070972Z adding 'torch/include/ATen/ops/median_cpu_dispatch.h' 2025-07-24T05:19:51.0074206Z adding 'torch/include/ATen/ops/median_cuda_dispatch.h' 2025-07-24T05:19:51.0077263Z adding 'torch/include/ATen/ops/median_native.h' 2025-07-24T05:19:51.0080992Z adding 'torch/include/ATen/ops/median_ops.h' 2025-07-24T05:19:51.0084176Z adding 'torch/include/ATen/ops/meshgrid.h' 2025-07-24T05:19:51.0087524Z adding 'torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.0090883Z adding 'torch/include/ATen/ops/meshgrid_native.h' 2025-07-24T05:19:51.0093717Z adding 'torch/include/ATen/ops/meshgrid_ops.h' 2025-07-24T05:19:51.0097235Z adding 'torch/include/ATen/ops/min.h' 2025-07-24T05:19:51.0101275Z adding 'torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.0103905Z adding 'torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.0106885Z adding 'torch/include/ATen/ops/min_cpu_dispatch.h' 2025-07-24T05:19:51.0115730Z adding 'torch/include/ATen/ops/min_cuda_dispatch.h' 2025-07-24T05:19:51.0115844Z adding 'torch/include/ATen/ops/min_meta.h' 2025-07-24T05:19:51.0117391Z adding 'torch/include/ATen/ops/min_meta_dispatch.h' 2025-07-24T05:19:51.0121768Z adding 'torch/include/ATen/ops/min_native.h' 2025-07-24T05:19:51.0124421Z adding 'torch/include/ATen/ops/min_ops.h' 2025-07-24T05:19:51.0127793Z adding 'torch/include/ATen/ops/minimum.h' 2025-07-24T05:19:51.0131204Z adding 'torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.0134308Z adding 'torch/include/ATen/ops/minimum_cpu_dispatch.h' 2025-07-24T05:19:51.0137457Z adding 'torch/include/ATen/ops/minimum_cuda_dispatch.h' 2025-07-24T05:19:51.0140683Z adding 'torch/include/ATen/ops/minimum_meta.h' 2025-07-24T05:19:51.0143796Z adding 'torch/include/ATen/ops/minimum_meta_dispatch.h' 2025-07-24T05:19:51.0146767Z adding 'torch/include/ATen/ops/minimum_native.h' 2025-07-24T05:19:51.0151009Z adding 'torch/include/ATen/ops/minimum_ops.h' 2025-07-24T05:19:51.0153370Z adding 'torch/include/ATen/ops/miopen_batch_norm.h' 2025-07-24T05:19:51.0156928Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward.h' 2025-07-24T05:19:51.0160501Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0163559Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h' 2025-07-24T05:19:51.0167046Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_native.h' 2025-07-24T05:19:51.0170082Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_ops.h' 2025-07-24T05:19:51.0173435Z adding 'torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0176439Z adding 'torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h' 2025-07-24T05:19:51.0179441Z adding 'torch/include/ATen/ops/miopen_batch_norm_native.h' 2025-07-24T05:19:51.0182765Z adding 'torch/include/ATen/ops/miopen_batch_norm_ops.h' 2025-07-24T05:19:51.0186413Z adding 'torch/include/ATen/ops/miopen_convolution.h' 2025-07-24T05:19:51.0189899Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu.h' 2025-07-24T05:19:51.0193151Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h' 2025-07-24T05:19:51.0196111Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_native.h' 2025-07-24T05:19:51.0199709Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_ops.h' 2025-07-24T05:19:51.0203057Z adding 'torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0206143Z adding 'torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h' 2025-07-24T05:19:51.0209167Z adding 'torch/include/ATen/ops/miopen_convolution_native.h' 2025-07-24T05:19:51.0212465Z adding 'torch/include/ATen/ops/miopen_convolution_ops.h' 2025-07-24T05:19:51.0215704Z adding 'torch/include/ATen/ops/miopen_convolution_relu.h' 2025-07-24T05:19:51.0218899Z adding 'torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h' 2025-07-24T05:19:51.0221866Z adding 'torch/include/ATen/ops/miopen_convolution_relu_native.h' 2025-07-24T05:19:51.0225013Z adding 'torch/include/ATen/ops/miopen_convolution_relu_ops.h' 2025-07-24T05:19:51.0228670Z adding 'torch/include/ATen/ops/miopen_convolution_transpose.h' 2025-07-24T05:19:51.0232235Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0235330Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h' 2025-07-24T05:19:51.0238485Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_native.h' 2025-07-24T05:19:51.0241806Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_ops.h' 2025-07-24T05:19:51.0245491Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution.h' 2025-07-24T05:19:51.0249038Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0252094Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h' 2025-07-24T05:19:51.0255264Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_native.h' 2025-07-24T05:19:51.0258537Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_ops.h' 2025-07-24T05:19:51.0261841Z adding 'torch/include/ATen/ops/miopen_rnn.h' 2025-07-24T05:19:51.0265558Z adding 'torch/include/ATen/ops/miopen_rnn_backward.h' 2025-07-24T05:19:51.0269113Z adding 'torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0272186Z adding 'torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h' 2025-07-24T05:19:51.0275306Z adding 'torch/include/ATen/ops/miopen_rnn_backward_native.h' 2025-07-24T05:19:51.0279000Z adding 'torch/include/ATen/ops/miopen_rnn_backward_ops.h' 2025-07-24T05:19:51.0282449Z adding 'torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0285519Z adding 'torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h' 2025-07-24T05:19:51.0294003Z adding 'torch/include/ATen/ops/miopen_rnn_native.h' 2025-07-24T05:19:51.0297491Z adding 'torch/include/ATen/ops/miopen_rnn_ops.h' 2025-07-24T05:19:51.0300642Z adding 'torch/include/ATen/ops/mish.h' 2025-07-24T05:19:51.0303666Z adding 'torch/include/ATen/ops/mish_backward.h' 2025-07-24T05:19:51.0306862Z adding 'torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.0309769Z adding 'torch/include/ATen/ops/mish_backward_cpu_dispatch.h' 2025-07-24T05:19:51.0312908Z adding 'torch/include/ATen/ops/mish_backward_cuda_dispatch.h' 2025-07-24T05:19:51.0315833Z adding 'torch/include/ATen/ops/mish_backward_native.h' 2025-07-24T05:19:51.0318996Z adding 'torch/include/ATen/ops/mish_backward_ops.h' 2025-07-24T05:19:51.0322245Z adding 'torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.0325100Z adding 'torch/include/ATen/ops/mish_cpu_dispatch.h' 2025-07-24T05:19:51.0328136Z adding 'torch/include/ATen/ops/mish_cuda_dispatch.h' 2025-07-24T05:19:51.0331040Z adding 'torch/include/ATen/ops/mish_meta.h' 2025-07-24T05:19:51.0334088Z adding 'torch/include/ATen/ops/mish_meta_dispatch.h' 2025-07-24T05:19:51.0337034Z adding 'torch/include/ATen/ops/mish_native.h' 2025-07-24T05:19:51.0340264Z adding 'torch/include/ATen/ops/mish_ops.h' 2025-07-24T05:19:51.0343376Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h' 2025-07-24T05:19:51.0346446Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h' 2025-07-24T05:19:51.0349710Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0352543Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h' 2025-07-24T05:19:51.0355840Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h' 2025-07-24T05:19:51.0359045Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h' 2025-07-24T05:19:51.0362314Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h' 2025-07-24T05:19:51.0366385Z adding 'torch/include/ATen/ops/mkldnn_convolution.h' 2025-07-24T05:19:51.0369469Z adding 'torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0372497Z adding 'torch/include/ATen/ops/mkldnn_convolution_native.h' 2025-07-24T05:19:51.0375749Z adding 'torch/include/ATen/ops/mkldnn_convolution_ops.h' 2025-07-24T05:19:51.0379053Z adding 'torch/include/ATen/ops/mkldnn_linear.h' 2025-07-24T05:19:51.0382248Z adding 'torch/include/ATen/ops/mkldnn_linear_backward.h' 2025-07-24T05:19:51.0386536Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0389855Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input.h' 2025-07-24T05:19:51.0393072Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0396103Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_native.h' 2025-07-24T05:19:51.0399430Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h' 2025-07-24T05:19:51.0402625Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_native.h' 2025-07-24T05:19:51.0405902Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_ops.h' 2025-07-24T05:19:51.0409226Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights.h' 2025-07-24T05:19:51.0412690Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0415602Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h' 2025-07-24T05:19:51.0418940Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h' 2025-07-24T05:19:51.0422158Z adding 'torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0425162Z adding 'torch/include/ATen/ops/mkldnn_linear_native.h' 2025-07-24T05:19:51.0428347Z adding 'torch/include/ATen/ops/mkldnn_linear_ops.h' 2025-07-24T05:19:51.0431642Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d.h' 2025-07-24T05:19:51.0434918Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward.h' 2025-07-24T05:19:51.0438452Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0441398Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h' 2025-07-24T05:19:51.0444823Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h' 2025-07-24T05:19:51.0448255Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0450999Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_native.h' 2025-07-24T05:19:51.0454360Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_ops.h' 2025-07-24T05:19:51.0457570Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d.h' 2025-07-24T05:19:51.0461136Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward.h' 2025-07-24T05:19:51.0464456Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0467492Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h' 2025-07-24T05:19:51.0470794Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h' 2025-07-24T05:19:51.0474197Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0477232Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_native.h' 2025-07-24T05:19:51.0480643Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_ops.h' 2025-07-24T05:19:51.0484445Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h' 2025-07-24T05:19:51.0488024Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0491080Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h' 2025-07-24T05:19:51.0494466Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h' 2025-07-24T05:19:51.0498041Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h' 2025-07-24T05:19:51.0501732Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0504683Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h' 2025-07-24T05:19:51.0508044Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h' 2025-07-24T05:19:51.0511384Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer.h' 2025-07-24T05:19:51.0515126Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward.h' 2025-07-24T05:19:51.0518935Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0522115Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h' 2025-07-24T05:19:51.0525442Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h' 2025-07-24T05:19:51.0529077Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h' 2025-07-24T05:19:51.0532654Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0535825Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h' 2025-07-24T05:19:51.0538920Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_native.h' 2025-07-24T05:19:51.0542457Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_ops.h' 2025-07-24T05:19:51.0545629Z adding 'torch/include/ATen/ops/mm.h' 2025-07-24T05:19:51.0549033Z adding 'torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.0551949Z adding 'torch/include/ATen/ops/mm_cpu_dispatch.h' 2025-07-24T05:19:51.0555167Z adding 'torch/include/ATen/ops/mm_cuda_dispatch.h' 2025-07-24T05:19:51.0558260Z adding 'torch/include/ATen/ops/mm_meta.h' 2025-07-24T05:19:51.0561512Z adding 'torch/include/ATen/ops/mm_meta_dispatch.h' 2025-07-24T05:19:51.0564572Z adding 'torch/include/ATen/ops/mm_native.h' 2025-07-24T05:19:51.0567981Z adding 'torch/include/ATen/ops/mm_ops.h' 2025-07-24T05:19:51.0571353Z adding 'torch/include/ATen/ops/mode.h' 2025-07-24T05:19:51.0574681Z adding 'torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0577868Z adding 'torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.0580834Z adding 'torch/include/ATen/ops/mode_cpu_dispatch.h' 2025-07-24T05:19:51.0584019Z adding 'torch/include/ATen/ops/mode_cuda_dispatch.h' 2025-07-24T05:19:51.0587050Z adding 'torch/include/ATen/ops/mode_native.h' 2025-07-24T05:19:51.0590520Z adding 'torch/include/ATen/ops/mode_ops.h' 2025-07-24T05:19:51.0593786Z adding 'torch/include/ATen/ops/moveaxis.h' 2025-07-24T05:19:51.0597028Z adding 'torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.0600082Z adding 'torch/include/ATen/ops/moveaxis_native.h' 2025-07-24T05:19:51.0603235Z adding 'torch/include/ATen/ops/moveaxis_ops.h' 2025-07-24T05:19:51.0606397Z adding 'torch/include/ATen/ops/movedim.h' 2025-07-24T05:19:51.0609642Z adding 'torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.0612788Z adding 'torch/include/ATen/ops/movedim_native.h' 2025-07-24T05:19:51.0616337Z adding 'torch/include/ATen/ops/movedim_ops.h' 2025-07-24T05:19:51.0620435Z adding 'torch/include/ATen/ops/mps_convolution_backward.h' 2025-07-24T05:19:51.0624284Z adding 'torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0627241Z adding 'torch/include/ATen/ops/mps_convolution_backward_native.h' 2025-07-24T05:19:51.0630787Z adding 'torch/include/ATen/ops/mps_convolution_backward_ops.h' 2025-07-24T05:19:51.0634664Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward.h' 2025-07-24T05:19:51.0638622Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0641744Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_native.h' 2025-07-24T05:19:51.0645119Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h' 2025-07-24T05:19:51.0648260Z adding 'torch/include/ATen/ops/mse_loss.h' 2025-07-24T05:19:51.0651400Z adding 'torch/include/ATen/ops/mse_loss_backward.h' 2025-07-24T05:19:51.0654763Z adding 'torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h' 2025-07-24T05:19:51.0657909Z adding 'torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h' 2025-07-24T05:19:51.0661081Z adding 'torch/include/ATen/ops/mse_loss_backward_native.h' 2025-07-24T05:19:51.0664238Z adding 'torch/include/ATen/ops/mse_loss_backward_ops.h' 2025-07-24T05:19:51.0667535Z adding 'torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.0670485Z adding 'torch/include/ATen/ops/mse_loss_cpu_dispatch.h' 2025-07-24T05:19:51.0673504Z adding 'torch/include/ATen/ops/mse_loss_cuda_dispatch.h' 2025-07-24T05:19:51.0676740Z adding 'torch/include/ATen/ops/mse_loss_meta.h' 2025-07-24T05:19:51.0679892Z adding 'torch/include/ATen/ops/mse_loss_meta_dispatch.h' 2025-07-24T05:19:51.0682807Z adding 'torch/include/ATen/ops/mse_loss_native.h' 2025-07-24T05:19:51.0685931Z adding 'torch/include/ATen/ops/mse_loss_ops.h' 2025-07-24T05:19:51.0688962Z adding 'torch/include/ATen/ops/msort.h' 2025-07-24T05:19:51.0692149Z adding 'torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.0694944Z adding 'torch/include/ATen/ops/msort_native.h' 2025-07-24T05:19:51.0698038Z adding 'torch/include/ATen/ops/msort_ops.h' 2025-07-24T05:19:51.0701119Z adding 'torch/include/ATen/ops/mul.h' 2025-07-24T05:19:51.0704370Z adding 'torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0707739Z adding 'torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.0710705Z adding 'torch/include/ATen/ops/mul_cpu_dispatch.h' 2025-07-24T05:19:51.0713656Z adding 'torch/include/ATen/ops/mul_cuda_dispatch.h' 2025-07-24T05:19:51.0716551Z adding 'torch/include/ATen/ops/mul_meta.h' 2025-07-24T05:19:51.0724028Z adding 'torch/include/ATen/ops/mul_meta_dispatch.h' 2025-07-24T05:19:51.0727126Z adding 'torch/include/ATen/ops/mul_native.h' 2025-07-24T05:19:51.0730553Z adding 'torch/include/ATen/ops/mul_ops.h' 2025-07-24T05:19:51.0733835Z adding 'torch/include/ATen/ops/multi_margin_loss.h' 2025-07-24T05:19:51.0737088Z adding 'torch/include/ATen/ops/multi_margin_loss_backward.h' 2025-07-24T05:19:51.0740302Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h' 2025-07-24T05:19:51.0743418Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h' 2025-07-24T05:19:51.0746519Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_native.h' 2025-07-24T05:19:51.0749782Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_ops.h' 2025-07-24T05:19:51.0752973Z adding 'torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h' 2025-07-24T05:19:51.0756135Z adding 'torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h' 2025-07-24T05:19:51.0759286Z adding 'torch/include/ATen/ops/multi_margin_loss_native.h' 2025-07-24T05:19:51.0762654Z adding 'torch/include/ATen/ops/multi_margin_loss_ops.h' 2025-07-24T05:19:51.0765824Z adding 'torch/include/ATen/ops/multilabel_margin_loss.h' 2025-07-24T05:19:51.0769112Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward.h' 2025-07-24T05:19:51.0772322Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h' 2025-07-24T05:19:51.0775617Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h' 2025-07-24T05:19:51.0778655Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_native.h' 2025-07-24T05:19:51.0782015Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h' 2025-07-24T05:19:51.0785338Z adding 'torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.0788413Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward.h' 2025-07-24T05:19:51.0791644Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h' 2025-07-24T05:19:51.0794853Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h' 2025-07-24T05:19:51.0798014Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_native.h' 2025-07-24T05:19:51.0801372Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h' 2025-07-24T05:19:51.0804510Z adding 'torch/include/ATen/ops/multilabel_margin_loss_native.h' 2025-07-24T05:19:51.0807678Z adding 'torch/include/ATen/ops/multilabel_margin_loss_ops.h' 2025-07-24T05:19:51.0811207Z adding 'torch/include/ATen/ops/multinomial.h' 2025-07-24T05:19:51.0814511Z adding 'torch/include/ATen/ops/multinomial_cpu_dispatch.h' 2025-07-24T05:19:51.0817782Z adding 'torch/include/ATen/ops/multinomial_cuda_dispatch.h' 2025-07-24T05:19:51.0821094Z adding 'torch/include/ATen/ops/multinomial_native.h' 2025-07-24T05:19:51.0824192Z adding 'torch/include/ATen/ops/multinomial_ops.h' 2025-07-24T05:19:51.0827398Z adding 'torch/include/ATen/ops/multiply.h' 2025-07-24T05:19:51.0830678Z adding 'torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.0833685Z adding 'torch/include/ATen/ops/multiply_native.h' 2025-07-24T05:19:51.0836961Z adding 'torch/include/ATen/ops/multiply_ops.h' 2025-07-24T05:19:51.0840359Z adding 'torch/include/ATen/ops/mv.h' 2025-07-24T05:19:51.0844524Z adding 'torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0846552Z adding 'torch/include/ATen/ops/mv_native.h' 2025-07-24T05:19:51.0850162Z adding 'torch/include/ATen/ops/mv_ops.h' 2025-07-24T05:19:51.0852903Z adding 'torch/include/ATen/ops/mvlgamma.h' 2025-07-24T05:19:51.0856243Z adding 'torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0859195Z adding 'torch/include/ATen/ops/mvlgamma_cpu_dispatch.h' 2025-07-24T05:19:51.0862392Z adding 'torch/include/ATen/ops/mvlgamma_cuda_dispatch.h' 2025-07-24T05:19:51.0865330Z adding 'torch/include/ATen/ops/mvlgamma_native.h' 2025-07-24T05:19:51.0868641Z adding 'torch/include/ATen/ops/mvlgamma_ops.h' 2025-07-24T05:19:51.0871875Z adding 'torch/include/ATen/ops/nan_to_num.h' 2025-07-24T05:19:51.0875286Z adding 'torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0878796Z adding 'torch/include/ATen/ops/nan_to_num_cpu_dispatch.h' 2025-07-24T05:19:51.0881560Z adding 'torch/include/ATen/ops/nan_to_num_cuda_dispatch.h' 2025-07-24T05:19:51.0884668Z adding 'torch/include/ATen/ops/nan_to_num_native.h' 2025-07-24T05:19:51.0888028Z adding 'torch/include/ATen/ops/nan_to_num_ops.h' 2025-07-24T05:19:51.0891363Z adding 'torch/include/ATen/ops/nanmean.h' 2025-07-24T05:19:51.0894614Z adding 'torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.0897684Z adding 'torch/include/ATen/ops/nanmean_native.h' 2025-07-24T05:19:51.0900895Z adding 'torch/include/ATen/ops/nanmean_ops.h' 2025-07-24T05:19:51.0904332Z adding 'torch/include/ATen/ops/nanmedian.h' 2025-07-24T05:19:51.0907720Z adding 'torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0910834Z adding 'torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.0913939Z adding 'torch/include/ATen/ops/nanmedian_cpu_dispatch.h' 2025-07-24T05:19:51.0916999Z adding 'torch/include/ATen/ops/nanmedian_cuda_dispatch.h' 2025-07-24T05:19:51.0920260Z adding 'torch/include/ATen/ops/nanmedian_native.h' 2025-07-24T05:19:51.0923712Z adding 'torch/include/ATen/ops/nanmedian_ops.h' 2025-07-24T05:19:51.0927241Z adding 'torch/include/ATen/ops/nanquantile.h' 2025-07-24T05:19:51.0930785Z adding 'torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.0933766Z adding 'torch/include/ATen/ops/nanquantile_native.h' 2025-07-24T05:19:51.0937228Z adding 'torch/include/ATen/ops/nanquantile_ops.h' 2025-07-24T05:19:51.0940492Z adding 'torch/include/ATen/ops/nansum.h' 2025-07-24T05:19:51.0943817Z adding 'torch/include/ATen/ops/nansum_cpu_dispatch.h' 2025-07-24T05:19:51.0946847Z adding 'torch/include/ATen/ops/nansum_cuda_dispatch.h' 2025-07-24T05:19:51.0950026Z adding 'torch/include/ATen/ops/nansum_native.h' 2025-07-24T05:19:51.0953197Z adding 'torch/include/ATen/ops/nansum_ops.h' 2025-07-24T05:19:51.0956550Z adding 'torch/include/ATen/ops/narrow.h' 2025-07-24T05:19:51.0960055Z adding 'torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.0963220Z adding 'torch/include/ATen/ops/narrow_copy.h' 2025-07-24T05:19:51.0966790Z adding 'torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.0969775Z adding 'torch/include/ATen/ops/narrow_copy_cpu_dispatch.h' 2025-07-24T05:19:51.0972839Z adding 'torch/include/ATen/ops/narrow_copy_native.h' 2025-07-24T05:19:51.0976081Z adding 'torch/include/ATen/ops/narrow_copy_ops.h' 2025-07-24T05:19:51.0979261Z adding 'torch/include/ATen/ops/narrow_native.h' 2025-07-24T05:19:51.0982376Z adding 'torch/include/ATen/ops/narrow_ops.h' 2025-07-24T05:19:51.0985797Z adding 'torch/include/ATen/ops/native_batch_norm.h' 2025-07-24T05:19:51.0989535Z adding 'torch/include/ATen/ops/native_batch_norm_backward.h' 2025-07-24T05:19:51.0992946Z adding 'torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.0996093Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h' 2025-07-24T05:19:51.0999329Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h' 2025-07-24T05:19:51.1002556Z adding 'torch/include/ATen/ops/native_batch_norm_backward_native.h' 2025-07-24T05:19:51.1005984Z adding 'torch/include/ATen/ops/native_batch_norm_backward_ops.h' 2025-07-24T05:19:51.1009369Z adding 'torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h' 2025-07-24T05:19:51.1012896Z adding 'torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h' 2025-07-24T05:19:51.1016119Z adding 'torch/include/ATen/ops/native_batch_norm_native.h' 2025-07-24T05:19:51.1019579Z adding 'torch/include/ATen/ops/native_batch_norm_ops.h' 2025-07-24T05:19:51.1022759Z adding 'torch/include/ATen/ops/native_channel_shuffle.h' 2025-07-24T05:19:51.1026170Z adding 'torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1029127Z adding 'torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h' 2025-07-24T05:19:51.1032226Z adding 'torch/include/ATen/ops/native_channel_shuffle_native.h' 2025-07-24T05:19:51.1035321Z adding 'torch/include/ATen/ops/native_channel_shuffle_ops.h' 2025-07-24T05:19:51.1038615Z adding 'torch/include/ATen/ops/native_dropout.h' 2025-07-24T05:19:51.1041801Z adding 'torch/include/ATen/ops/native_dropout_backward.h' 2025-07-24T05:19:51.1045262Z adding 'torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1048347Z adding 'torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h' 2025-07-24T05:19:51.1051415Z adding 'torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h' 2025-07-24T05:19:51.1054652Z adding 'torch/include/ATen/ops/native_dropout_backward_native.h' 2025-07-24T05:19:51.1057848Z adding 'torch/include/ATen/ops/native_dropout_backward_ops.h' 2025-07-24T05:19:51.1061183Z adding 'torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1064159Z adding 'torch/include/ATen/ops/native_dropout_cpu_dispatch.h' 2025-07-24T05:19:51.1067290Z adding 'torch/include/ATen/ops/native_dropout_cuda_dispatch.h' 2025-07-24T05:19:51.1070275Z adding 'torch/include/ATen/ops/native_dropout_native.h' 2025-07-24T05:19:51.1073613Z adding 'torch/include/ATen/ops/native_dropout_ops.h' 2025-07-24T05:19:51.1077129Z adding 'torch/include/ATen/ops/native_group_norm.h' 2025-07-24T05:19:51.1081285Z adding 'torch/include/ATen/ops/native_group_norm_backward.h' 2025-07-24T05:19:51.1085013Z adding 'torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1088175Z adding 'torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h' 2025-07-24T05:19:51.1091437Z adding 'torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h' 2025-07-24T05:19:51.1094462Z adding 'torch/include/ATen/ops/native_group_norm_backward_native.h' 2025-07-24T05:19:51.1097920Z adding 'torch/include/ATen/ops/native_group_norm_backward_ops.h' 2025-07-24T05:19:51.1101402Z adding 'torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1104579Z adding 'torch/include/ATen/ops/native_group_norm_cpu_dispatch.h' 2025-07-24T05:19:51.1107770Z adding 'torch/include/ATen/ops/native_group_norm_cuda_dispatch.h' 2025-07-24T05:19:51.1110858Z adding 'torch/include/ATen/ops/native_group_norm_native.h' 2025-07-24T05:19:51.1114342Z adding 'torch/include/ATen/ops/native_group_norm_ops.h' 2025-07-24T05:19:51.1117985Z adding 'torch/include/ATen/ops/native_layer_norm.h' 2025-07-24T05:19:51.1127183Z adding 'torch/include/ATen/ops/native_layer_norm_backward.h' 2025-07-24T05:19:51.1130952Z adding 'torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1134017Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h' 2025-07-24T05:19:51.1137188Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h' 2025-07-24T05:19:51.1140280Z adding 'torch/include/ATen/ops/native_layer_norm_backward_native.h' 2025-07-24T05:19:51.1144399Z adding 'torch/include/ATen/ops/native_layer_norm_backward_ops.h' 2025-07-24T05:19:51.1147961Z adding 'torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1151030Z adding 'torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h' 2025-07-24T05:19:51.1154147Z adding 'torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h' 2025-07-24T05:19:51.1157205Z adding 'torch/include/ATen/ops/native_layer_norm_native.h' 2025-07-24T05:19:51.1160803Z adding 'torch/include/ATen/ops/native_layer_norm_ops.h' 2025-07-24T05:19:51.1164057Z adding 'torch/include/ATen/ops/native_norm.h' 2025-07-24T05:19:51.1167406Z adding 'torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1170343Z adding 'torch/include/ATen/ops/native_norm_native.h' 2025-07-24T05:19:51.1173633Z adding 'torch/include/ATen/ops/native_norm_ops.h' 2025-07-24T05:19:51.1176847Z adding 'torch/include/ATen/ops/ne.h' 2025-07-24T05:19:51.1180138Z adding 'torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.1183087Z adding 'torch/include/ATen/ops/ne_cpu_dispatch.h' 2025-07-24T05:19:51.1186182Z adding 'torch/include/ATen/ops/ne_cuda_dispatch.h' 2025-07-24T05:19:51.1189146Z adding 'torch/include/ATen/ops/ne_meta.h' 2025-07-24T05:19:51.1192248Z adding 'torch/include/ATen/ops/ne_meta_dispatch.h' 2025-07-24T05:19:51.1195315Z adding 'torch/include/ATen/ops/ne_native.h' 2025-07-24T05:19:51.1198790Z adding 'torch/include/ATen/ops/ne_ops.h' 2025-07-24T05:19:51.1201927Z adding 'torch/include/ATen/ops/neg.h' 2025-07-24T05:19:51.1205169Z adding 'torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.1208214Z adding 'torch/include/ATen/ops/neg_cpu_dispatch.h' 2025-07-24T05:19:51.1211233Z adding 'torch/include/ATen/ops/neg_cuda_dispatch.h' 2025-07-24T05:19:51.1214203Z adding 'torch/include/ATen/ops/neg_meta.h' 2025-07-24T05:19:51.1217387Z adding 'torch/include/ATen/ops/neg_meta_dispatch.h' 2025-07-24T05:19:51.1220403Z adding 'torch/include/ATen/ops/neg_native.h' 2025-07-24T05:19:51.1223566Z adding 'torch/include/ATen/ops/neg_ops.h' 2025-07-24T05:19:51.1226629Z adding 'torch/include/ATen/ops/negative.h' 2025-07-24T05:19:51.1229832Z adding 'torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1232665Z adding 'torch/include/ATen/ops/negative_native.h' 2025-07-24T05:19:51.1235806Z adding 'torch/include/ATen/ops/negative_ops.h' 2025-07-24T05:19:51.1239062Z adding 'torch/include/ATen/ops/nested_to_padded_tensor.h' 2025-07-24T05:19:51.1242275Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1245233Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_native.h' 2025-07-24T05:19:51.1248316Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_ops.h' 2025-07-24T05:19:51.1251646Z adding 'torch/include/ATen/ops/new_empty.h' 2025-07-24T05:19:51.1255028Z adding 'torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1257926Z adding 'torch/include/ATen/ops/new_empty_native.h' 2025-07-24T05:19:51.1261128Z adding 'torch/include/ATen/ops/new_empty_ops.h' 2025-07-24T05:19:51.1264651Z adding 'torch/include/ATen/ops/new_empty_strided.h' 2025-07-24T05:19:51.1268026Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1271349Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.1274187Z adding 'torch/include/ATen/ops/new_empty_strided_native.h' 2025-07-24T05:19:51.1277418Z adding 'torch/include/ATen/ops/new_empty_strided_ops.h' 2025-07-24T05:19:51.1281026Z adding 'torch/include/ATen/ops/new_full.h' 2025-07-24T05:19:51.1284481Z adding 'torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1287448Z adding 'torch/include/ATen/ops/new_full_native.h' 2025-07-24T05:19:51.1290715Z adding 'torch/include/ATen/ops/new_full_ops.h' 2025-07-24T05:19:51.1294116Z adding 'torch/include/ATen/ops/new_ones.h' 2025-07-24T05:19:51.1297515Z adding 'torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1300430Z adding 'torch/include/ATen/ops/new_ones_native.h' 2025-07-24T05:19:51.1303621Z adding 'torch/include/ATen/ops/new_ones_ops.h' 2025-07-24T05:19:51.1307044Z adding 'torch/include/ATen/ops/new_zeros.h' 2025-07-24T05:19:51.1310474Z adding 'torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1313368Z adding 'torch/include/ATen/ops/new_zeros_native.h' 2025-07-24T05:19:51.1316585Z adding 'torch/include/ATen/ops/new_zeros_ops.h' 2025-07-24T05:19:51.1319785Z adding 'torch/include/ATen/ops/nextafter.h' 2025-07-24T05:19:51.1323067Z adding 'torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.1325944Z adding 'torch/include/ATen/ops/nextafter_cpu_dispatch.h' 2025-07-24T05:19:51.1329016Z adding 'torch/include/ATen/ops/nextafter_cuda_dispatch.h' 2025-07-24T05:19:51.1332030Z adding 'torch/include/ATen/ops/nextafter_meta.h' 2025-07-24T05:19:51.1335223Z adding 'torch/include/ATen/ops/nextafter_meta_dispatch.h' 2025-07-24T05:19:51.1338215Z adding 'torch/include/ATen/ops/nextafter_native.h' 2025-07-24T05:19:51.1341252Z adding 'torch/include/ATen/ops/nextafter_ops.h' 2025-07-24T05:19:51.1344726Z adding 'torch/include/ATen/ops/nll_loss.h' 2025-07-24T05:19:51.1348199Z adding 'torch/include/ATen/ops/nll_loss2d.h' 2025-07-24T05:19:51.1351769Z adding 'torch/include/ATen/ops/nll_loss2d_backward.h' 2025-07-24T05:19:51.1355183Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h' 2025-07-24T05:19:51.1358503Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h' 2025-07-24T05:19:51.1361571Z adding 'torch/include/ATen/ops/nll_loss2d_backward_native.h' 2025-07-24T05:19:51.1364799Z adding 'torch/include/ATen/ops/nll_loss2d_backward_ops.h' 2025-07-24T05:19:51.1368117Z adding 'torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1371473Z adding 'torch/include/ATen/ops/nll_loss2d_forward.h' 2025-07-24T05:19:51.1374877Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h' 2025-07-24T05:19:51.1378069Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h' 2025-07-24T05:19:51.1381094Z adding 'torch/include/ATen/ops/nll_loss2d_forward_native.h' 2025-07-24T05:19:51.1384317Z adding 'torch/include/ATen/ops/nll_loss2d_forward_ops.h' 2025-07-24T05:19:51.1387436Z adding 'torch/include/ATen/ops/nll_loss2d_native.h' 2025-07-24T05:19:51.1390692Z adding 'torch/include/ATen/ops/nll_loss2d_ops.h' 2025-07-24T05:19:51.1394220Z adding 'torch/include/ATen/ops/nll_loss_backward.h' 2025-07-24T05:19:51.1397800Z adding 'torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.1400938Z adding 'torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h' 2025-07-24T05:19:51.1404151Z adding 'torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h' 2025-07-24T05:19:51.1407167Z adding 'torch/include/ATen/ops/nll_loss_backward_meta.h' 2025-07-24T05:19:51.1410354Z adding 'torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h' 2025-07-24T05:19:51.1413557Z adding 'torch/include/ATen/ops/nll_loss_backward_native.h' 2025-07-24T05:19:51.1416929Z adding 'torch/include/ATen/ops/nll_loss_backward_ops.h' 2025-07-24T05:19:51.1420320Z adding 'torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1423657Z adding 'torch/include/ATen/ops/nll_loss_forward.h' 2025-07-24T05:19:51.1427123Z adding 'torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.1430510Z adding 'torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h' 2025-07-24T05:19:51.1433550Z adding 'torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h' 2025-07-24T05:19:51.1436780Z adding 'torch/include/ATen/ops/nll_loss_forward_meta.h' 2025-07-24T05:19:51.1440229Z adding 'torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h' 2025-07-24T05:19:51.1443286Z adding 'torch/include/ATen/ops/nll_loss_forward_native.h' 2025-07-24T05:19:51.1446639Z adding 'torch/include/ATen/ops/nll_loss_forward_ops.h' 2025-07-24T05:19:51.1449705Z adding 'torch/include/ATen/ops/nll_loss_native.h' 2025-07-24T05:19:51.1452970Z adding 'torch/include/ATen/ops/nll_loss_nd.h' 2025-07-24T05:19:51.1456254Z adding 'torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1459228Z adding 'torch/include/ATen/ops/nll_loss_nd_native.h' 2025-07-24T05:19:51.1462398Z adding 'torch/include/ATen/ops/nll_loss_nd_ops.h' 2025-07-24T05:19:51.1466183Z adding 'torch/include/ATen/ops/nll_loss_ops.h' 2025-07-24T05:19:51.1469322Z adding 'torch/include/ATen/ops/nonzero.h' 2025-07-24T05:19:51.1472471Z adding 'torch/include/ATen/ops/nonzero_cpu_dispatch.h' 2025-07-24T05:19:51.1475550Z adding 'torch/include/ATen/ops/nonzero_cuda_dispatch.h' 2025-07-24T05:19:51.1478666Z adding 'torch/include/ATen/ops/nonzero_native.h' 2025-07-24T05:19:51.1481781Z adding 'torch/include/ATen/ops/nonzero_numpy.h' 2025-07-24T05:19:51.1484961Z adding 'torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1488008Z adding 'torch/include/ATen/ops/nonzero_numpy_native.h' 2025-07-24T05:19:51.1491061Z adding 'torch/include/ATen/ops/nonzero_numpy_ops.h' 2025-07-24T05:19:51.1494332Z adding 'torch/include/ATen/ops/nonzero_ops.h' 2025-07-24T05:19:51.1497624Z adding 'torch/include/ATen/ops/nonzero_static.h' 2025-07-24T05:19:51.1501024Z adding 'torch/include/ATen/ops/nonzero_static_cpu_dispatch.h' 2025-07-24T05:19:51.1504299Z adding 'torch/include/ATen/ops/nonzero_static_cuda_dispatch.h' 2025-07-24T05:19:51.1507231Z adding 'torch/include/ATen/ops/nonzero_static_native.h' 2025-07-24T05:19:51.1510561Z adding 'torch/include/ATen/ops/nonzero_static_ops.h' 2025-07-24T05:19:51.1514116Z adding 'torch/include/ATen/ops/norm.h' 2025-07-24T05:19:51.1517612Z adding 'torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1520999Z adding 'torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.1524149Z adding 'torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1527297Z adding 'torch/include/ATen/ops/norm_cpu_dispatch.h' 2025-07-24T05:19:51.1530437Z adding 'torch/include/ATen/ops/norm_cuda_dispatch.h' 2025-07-24T05:19:51.1533698Z adding 'torch/include/ATen/ops/norm_except_dim.h' 2025-07-24T05:19:51.1536973Z adding 'torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1539893Z adding 'torch/include/ATen/ops/norm_except_dim_native.h' 2025-07-24T05:19:51.1542984Z adding 'torch/include/ATen/ops/norm_except_dim_ops.h' 2025-07-24T05:19:51.1546136Z adding 'torch/include/ATen/ops/norm_meta.h' 2025-07-24T05:19:51.1549254Z adding 'torch/include/ATen/ops/norm_meta_dispatch.h' 2025-07-24T05:19:51.1552570Z adding 'torch/include/ATen/ops/norm_native.h' 2025-07-24T05:19:51.1556712Z adding 'torch/include/ATen/ops/norm_ops.h' 2025-07-24T05:19:51.1560885Z adding 'torch/include/ATen/ops/normal.h' 2025-07-24T05:19:51.1564788Z adding 'torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1568229Z adding 'torch/include/ATen/ops/normal_cpu_dispatch.h' 2025-07-24T05:19:51.1571072Z adding 'torch/include/ATen/ops/normal_cuda_dispatch.h' 2025-07-24T05:19:51.1574372Z adding 'torch/include/ATen/ops/normal_meta_dispatch.h' 2025-07-24T05:19:51.1577632Z adding 'torch/include/ATen/ops/normal_native.h' 2025-07-24T05:19:51.1581608Z adding 'torch/include/ATen/ops/normal_ops.h' 2025-07-24T05:19:51.1585037Z adding 'torch/include/ATen/ops/not_equal.h' 2025-07-24T05:19:51.1588435Z adding 'torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1591816Z adding 'torch/include/ATen/ops/not_equal_native.h' 2025-07-24T05:19:51.1604915Z adding 'torch/include/ATen/ops/not_equal_ops.h' 2025-07-24T05:19:51.1608686Z adding 'torch/include/ATen/ops/nuclear_norm.h' 2025-07-24T05:19:51.1612168Z adding 'torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1616016Z adding 'torch/include/ATen/ops/nuclear_norm_native.h' 2025-07-24T05:19:51.1619966Z adding 'torch/include/ATen/ops/nuclear_norm_ops.h' 2025-07-24T05:19:51.1624741Z adding 'torch/include/ATen/ops/numpy_T.h' 2025-07-24T05:19:51.1629653Z adding 'torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1634136Z adding 'torch/include/ATen/ops/numpy_T_native.h' 2025-07-24T05:19:51.1639073Z adding 'torch/include/ATen/ops/numpy_T_ops.h' 2025-07-24T05:19:51.1642943Z adding 'torch/include/ATen/ops/one_hot.h' 2025-07-24T05:19:51.1646407Z adding 'torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1649965Z adding 'torch/include/ATen/ops/one_hot_native.h' 2025-07-24T05:19:51.1653465Z adding 'torch/include/ATen/ops/one_hot_ops.h' 2025-07-24T05:19:51.1657533Z adding 'torch/include/ATen/ops/ones.h' 2025-07-24T05:19:51.1661809Z adding 'torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1665123Z adding 'torch/include/ATen/ops/ones_like.h' 2025-07-24T05:19:51.1668519Z adding 'torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1672028Z adding 'torch/include/ATen/ops/ones_like_native.h' 2025-07-24T05:19:51.1675573Z adding 'torch/include/ATen/ops/ones_like_ops.h' 2025-07-24T05:19:51.1678797Z adding 'torch/include/ATen/ops/ones_native.h' 2025-07-24T05:19:51.1682206Z adding 'torch/include/ATen/ops/ones_ops.h' 2025-07-24T05:19:51.1685336Z adding 'torch/include/ATen/ops/or.h' 2025-07-24T05:19:51.1689231Z adding 'torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1692255Z adding 'torch/include/ATen/ops/or_native.h' 2025-07-24T05:19:51.1695584Z adding 'torch/include/ATen/ops/or_ops.h' 2025-07-24T05:19:51.1698730Z adding 'torch/include/ATen/ops/orgqr.h' 2025-07-24T05:19:51.1701955Z adding 'torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1704806Z adding 'torch/include/ATen/ops/orgqr_native.h' 2025-07-24T05:19:51.1707888Z adding 'torch/include/ATen/ops/orgqr_ops.h' 2025-07-24T05:19:51.1711006Z adding 'torch/include/ATen/ops/ormqr.h' 2025-07-24T05:19:51.1714147Z adding 'torch/include/ATen/ops/ormqr_cpu_dispatch.h' 2025-07-24T05:19:51.1717244Z adding 'torch/include/ATen/ops/ormqr_cuda_dispatch.h' 2025-07-24T05:19:51.1721120Z adding 'torch/include/ATen/ops/ormqr_native.h' 2025-07-24T05:19:51.1724370Z adding 'torch/include/ATen/ops/ormqr_ops.h' 2025-07-24T05:19:51.1727485Z adding 'torch/include/ATen/ops/outer.h' 2025-07-24T05:19:51.1730883Z adding 'torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1733754Z adding 'torch/include/ATen/ops/outer_native.h' 2025-07-24T05:19:51.1736871Z adding 'torch/include/ATen/ops/outer_ops.h' 2025-07-24T05:19:51.1739835Z adding 'torch/include/ATen/ops/output_nr.h' 2025-07-24T05:19:51.1743073Z adding 'torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1745915Z adding 'torch/include/ATen/ops/output_nr_native.h' 2025-07-24T05:19:51.1749004Z adding 'torch/include/ATen/ops/output_nr_ops.h' 2025-07-24T05:19:51.1752159Z adding 'torch/include/ATen/ops/pad.h' 2025-07-24T05:19:51.1755486Z adding 'torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1758396Z adding 'torch/include/ATen/ops/pad_native.h' 2025-07-24T05:19:51.1761528Z adding 'torch/include/ATen/ops/pad_ops.h' 2025-07-24T05:19:51.1764587Z adding 'torch/include/ATen/ops/pad_sequence.h' 2025-07-24T05:19:51.1767831Z adding 'torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1770702Z adding 'torch/include/ATen/ops/pad_sequence_native.h' 2025-07-24T05:19:51.1773799Z adding 'torch/include/ATen/ops/pad_sequence_ops.h' 2025-07-24T05:19:51.1777446Z adding 'torch/include/ATen/ops/pairwise_distance.h' 2025-07-24T05:19:51.1780816Z adding 'torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1783701Z adding 'torch/include/ATen/ops/pairwise_distance_native.h' 2025-07-24T05:19:51.1786806Z adding 'torch/include/ATen/ops/pairwise_distance_ops.h' 2025-07-24T05:19:51.1789775Z adding 'torch/include/ATen/ops/pdist.h' 2025-07-24T05:19:51.1792960Z adding 'torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1795804Z adding 'torch/include/ATen/ops/pdist_native.h' 2025-07-24T05:19:51.1799029Z adding 'torch/include/ATen/ops/pdist_ops.h' 2025-07-24T05:19:51.1802069Z adding 'torch/include/ATen/ops/permute.h' 2025-07-24T05:19:51.1805293Z adding 'torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1808218Z adding 'torch/include/ATen/ops/permute_copy.h' 2025-07-24T05:19:51.1811454Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1814618Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.1817367Z adding 'torch/include/ATen/ops/permute_copy_native.h' 2025-07-24T05:19:51.1820456Z adding 'torch/include/ATen/ops/permute_copy_ops.h' 2025-07-24T05:19:51.1823430Z adding 'torch/include/ATen/ops/permute_native.h' 2025-07-24T05:19:51.1826498Z adding 'torch/include/ATen/ops/permute_ops.h' 2025-07-24T05:19:51.1829445Z adding 'torch/include/ATen/ops/pin_memory.h' 2025-07-24T05:19:51.1832681Z adding 'torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1835504Z adding 'torch/include/ATen/ops/pin_memory_native.h' 2025-07-24T05:19:51.1838697Z adding 'torch/include/ATen/ops/pin_memory_ops.h' 2025-07-24T05:19:51.1841707Z adding 'torch/include/ATen/ops/pinverse.h' 2025-07-24T05:19:51.1844872Z adding 'torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1847695Z adding 'torch/include/ATen/ops/pinverse_native.h' 2025-07-24T05:19:51.1850776Z adding 'torch/include/ATen/ops/pinverse_ops.h' 2025-07-24T05:19:51.1853881Z adding 'torch/include/ATen/ops/pixel_shuffle.h' 2025-07-24T05:19:51.1857077Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1860237Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.1863093Z adding 'torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h' 2025-07-24T05:19:51.1866113Z adding 'torch/include/ATen/ops/pixel_shuffle_native.h' 2025-07-24T05:19:51.1869206Z adding 'torch/include/ATen/ops/pixel_shuffle_ops.h' 2025-07-24T05:19:51.1872241Z adding 'torch/include/ATen/ops/pixel_unshuffle.h' 2025-07-24T05:19:51.1875490Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1879429Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.1882523Z adding 'torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h' 2025-07-24T05:19:51.1885526Z adding 'torch/include/ATen/ops/pixel_unshuffle_native.h' 2025-07-24T05:19:51.1888709Z adding 'torch/include/ATen/ops/pixel_unshuffle_ops.h' 2025-07-24T05:19:51.1891753Z adding 'torch/include/ATen/ops/poisson.h' 2025-07-24T05:19:51.1895020Z adding 'torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1898040Z adding 'torch/include/ATen/ops/poisson_cpu_dispatch.h' 2025-07-24T05:19:51.1901681Z adding 'torch/include/ATen/ops/poisson_cuda_dispatch.h' 2025-07-24T05:19:51.1904790Z adding 'torch/include/ATen/ops/poisson_native.h' 2025-07-24T05:19:51.1907844Z adding 'torch/include/ATen/ops/poisson_nll_loss.h' 2025-07-24T05:19:51.1911084Z adding 'torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1913925Z adding 'torch/include/ATen/ops/poisson_nll_loss_native.h' 2025-07-24T05:19:51.1917044Z adding 'torch/include/ATen/ops/poisson_nll_loss_ops.h' 2025-07-24T05:19:51.1920358Z adding 'torch/include/ATen/ops/poisson_ops.h' 2025-07-24T05:19:51.1923425Z adding 'torch/include/ATen/ops/polar.h' 2025-07-24T05:19:51.1926737Z adding 'torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1929683Z adding 'torch/include/ATen/ops/polar_cpu_dispatch.h' 2025-07-24T05:19:51.1932742Z adding 'torch/include/ATen/ops/polar_cuda_dispatch.h' 2025-07-24T05:19:51.1935677Z adding 'torch/include/ATen/ops/polar_native.h' 2025-07-24T05:19:51.1938779Z adding 'torch/include/ATen/ops/polar_ops.h' 2025-07-24T05:19:51.1941833Z adding 'torch/include/ATen/ops/polygamma.h' 2025-07-24T05:19:51.1945042Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.1948226Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.1951134Z adding 'torch/include/ATen/ops/polygamma_cpu_dispatch.h' 2025-07-24T05:19:51.1954209Z adding 'torch/include/ATen/ops/polygamma_cuda_dispatch.h' 2025-07-24T05:19:51.1957155Z adding 'torch/include/ATen/ops/polygamma_meta.h' 2025-07-24T05:19:51.1960390Z adding 'torch/include/ATen/ops/polygamma_meta_dispatch.h' 2025-07-24T05:19:51.1963364Z adding 'torch/include/ATen/ops/polygamma_native.h' 2025-07-24T05:19:51.1966513Z adding 'torch/include/ATen/ops/polygamma_ops.h' 2025-07-24T05:19:51.1969573Z adding 'torch/include/ATen/ops/positive.h' 2025-07-24T05:19:51.1972803Z adding 'torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.1975576Z adding 'torch/include/ATen/ops/positive_native.h' 2025-07-24T05:19:51.1986880Z adding 'torch/include/ATen/ops/positive_ops.h' 2025-07-24T05:19:51.1987239Z adding 'torch/include/ATen/ops/pow.h' 2025-07-24T05:19:51.1987728Z adding 'torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.1989581Z adding 'torch/include/ATen/ops/pow_cpu_dispatch.h' 2025-07-24T05:19:51.1993444Z adding 'torch/include/ATen/ops/pow_cuda_dispatch.h' 2025-07-24T05:19:51.1996420Z adding 'torch/include/ATen/ops/pow_meta.h' 2025-07-24T05:19:51.2000404Z adding 'torch/include/ATen/ops/pow_meta_dispatch.h' 2025-07-24T05:19:51.2003903Z adding 'torch/include/ATen/ops/pow_native.h' 2025-07-24T05:19:51.2007677Z adding 'torch/include/ATen/ops/pow_ops.h' 2025-07-24T05:19:51.2011382Z adding 'torch/include/ATen/ops/prelu.h' 2025-07-24T05:19:51.2014698Z adding 'torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.2018326Z adding 'torch/include/ATen/ops/prelu_native.h' 2025-07-24T05:19:51.2021526Z adding 'torch/include/ATen/ops/prelu_ops.h' 2025-07-24T05:19:51.2025421Z adding 'torch/include/ATen/ops/prod.h' 2025-07-24T05:19:51.2029277Z adding 'torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2032626Z adding 'torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.2036283Z adding 'torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.2039553Z adding 'torch/include/ATen/ops/prod_cpu_dispatch.h' 2025-07-24T05:19:51.2043367Z adding 'torch/include/ATen/ops/prod_cuda_dispatch.h' 2025-07-24T05:19:51.2046757Z adding 'torch/include/ATen/ops/prod_meta.h' 2025-07-24T05:19:51.2050159Z adding 'torch/include/ATen/ops/prod_meta_dispatch.h' 2025-07-24T05:19:51.2053761Z adding 'torch/include/ATen/ops/prod_native.h' 2025-07-24T05:19:51.2057400Z adding 'torch/include/ATen/ops/prod_ops.h' 2025-07-24T05:19:51.2061200Z adding 'torch/include/ATen/ops/promote_types.h' 2025-07-24T05:19:51.2064608Z adding 'torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.2068033Z adding 'torch/include/ATen/ops/promote_types_native.h' 2025-07-24T05:19:51.2071564Z adding 'torch/include/ATen/ops/promote_types_ops.h' 2025-07-24T05:19:51.2074905Z adding 'torch/include/ATen/ops/put.h' 2025-07-24T05:19:51.2078827Z adding 'torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2081939Z adding 'torch/include/ATen/ops/put_cpu_dispatch.h' 2025-07-24T05:19:51.2085702Z adding 'torch/include/ATen/ops/put_cuda_dispatch.h' 2025-07-24T05:19:51.2088865Z adding 'torch/include/ATen/ops/put_meta_dispatch.h' 2025-07-24T05:19:51.2092774Z adding 'torch/include/ATen/ops/put_native.h' 2025-07-24T05:19:51.2096597Z adding 'torch/include/ATen/ops/put_ops.h' 2025-07-24T05:19:51.2099864Z adding 'torch/include/ATen/ops/q_per_channel_axis.h' 2025-07-24T05:19:51.2103405Z adding 'torch/include/ATen/ops/q_per_channel_axis_native.h' 2025-07-24T05:19:51.2106575Z adding 'torch/include/ATen/ops/q_per_channel_axis_ops.h' 2025-07-24T05:19:51.2110345Z adding 'torch/include/ATen/ops/q_per_channel_scales.h' 2025-07-24T05:19:51.2113813Z adding 'torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2117238Z adding 'torch/include/ATen/ops/q_per_channel_scales_native.h' 2025-07-24T05:19:51.2121114Z adding 'torch/include/ATen/ops/q_per_channel_scales_ops.h' 2025-07-24T05:19:51.2124431Z adding 'torch/include/ATen/ops/q_per_channel_zero_points.h' 2025-07-24T05:19:51.2128583Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2133135Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_native.h' 2025-07-24T05:19:51.2137976Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_ops.h' 2025-07-24T05:19:51.2142773Z adding 'torch/include/ATen/ops/q_scale.h' 2025-07-24T05:19:51.2147384Z adding 'torch/include/ATen/ops/q_scale_native.h' 2025-07-24T05:19:51.2152145Z adding 'torch/include/ATen/ops/q_scale_ops.h' 2025-07-24T05:19:51.2156729Z adding 'torch/include/ATen/ops/q_zero_point.h' 2025-07-24T05:19:51.2160019Z adding 'torch/include/ATen/ops/q_zero_point_native.h' 2025-07-24T05:19:51.2163843Z adding 'torch/include/ATen/ops/q_zero_point_ops.h' 2025-07-24T05:19:51.2167004Z adding 'torch/include/ATen/ops/qr.h' 2025-07-24T05:19:51.2171031Z adding 'torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.2174256Z adding 'torch/include/ATen/ops/qr_native.h' 2025-07-24T05:19:51.2178334Z adding 'torch/include/ATen/ops/qr_ops.h' 2025-07-24T05:19:51.2181382Z adding 'torch/include/ATen/ops/qscheme.h' 2025-07-24T05:19:51.2184360Z adding 'torch/include/ATen/ops/qscheme_native.h' 2025-07-24T05:19:51.2188145Z adding 'torch/include/ATen/ops/qscheme_ops.h' 2025-07-24T05:19:51.2191521Z adding 'torch/include/ATen/ops/quantile.h' 2025-07-24T05:19:51.2195358Z adding 'torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.2198008Z adding 'torch/include/ATen/ops/quantile_native.h' 2025-07-24T05:19:51.2201388Z adding 'torch/include/ATen/ops/quantile_ops.h' 2025-07-24T05:19:51.2205370Z adding 'torch/include/ATen/ops/quantize_per_channel.h' 2025-07-24T05:19:51.2208766Z adding 'torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2211788Z adding 'torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h' 2025-07-24T05:19:51.2214889Z adding 'torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h' 2025-07-24T05:19:51.2217873Z adding 'torch/include/ATen/ops/quantize_per_channel_native.h' 2025-07-24T05:19:51.2221067Z adding 'torch/include/ATen/ops/quantize_per_channel_ops.h' 2025-07-24T05:19:51.2224404Z adding 'torch/include/ATen/ops/quantize_per_tensor.h' 2025-07-24T05:19:51.2227877Z adding 'torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2230838Z adding 'torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h' 2025-07-24T05:19:51.2233903Z adding 'torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h' 2025-07-24T05:19:51.2237914Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic.h' 2025-07-24T05:19:51.2241348Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2244357Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h' 2025-07-24T05:19:51.2247433Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h' 2025-07-24T05:19:51.2250371Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h' 2025-07-24T05:19:51.2253517Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h' 2025-07-24T05:19:51.2256596Z adding 'torch/include/ATen/ops/quantize_per_tensor_native.h' 2025-07-24T05:19:51.2260141Z adding 'torch/include/ATen/ops/quantize_per_tensor_ops.h' 2025-07-24T05:19:51.2263495Z adding 'torch/include/ATen/ops/quantized_batch_norm.h' 2025-07-24T05:19:51.2266822Z adding 'torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2269747Z adding 'torch/include/ATen/ops/quantized_batch_norm_native.h' 2025-07-24T05:19:51.2273017Z adding 'torch/include/ATen/ops/quantized_batch_norm_ops.h' 2025-07-24T05:19:51.2276165Z adding 'torch/include/ATen/ops/quantized_gru_cell.h' 2025-07-24T05:19:51.2279697Z adding 'torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.2283018Z adding 'torch/include/ATen/ops/quantized_gru_cell_native.h' 2025-07-24T05:19:51.2286330Z adding 'torch/include/ATen/ops/quantized_gru_cell_ops.h' 2025-07-24T05:19:51.2289515Z adding 'torch/include/ATen/ops/quantized_lstm_cell.h' 2025-07-24T05:19:51.2292785Z adding 'torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.2295716Z adding 'torch/include/ATen/ops/quantized_lstm_cell_native.h' 2025-07-24T05:19:51.2298967Z adding 'torch/include/ATen/ops/quantized_lstm_cell_ops.h' 2025-07-24T05:19:51.2302145Z adding 'torch/include/ATen/ops/quantized_max_pool1d.h' 2025-07-24T05:19:51.2305487Z adding 'torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2308405Z adding 'torch/include/ATen/ops/quantized_max_pool1d_native.h' 2025-07-24T05:19:51.2311660Z adding 'torch/include/ATen/ops/quantized_max_pool1d_ops.h' 2025-07-24T05:19:51.2314832Z adding 'torch/include/ATen/ops/quantized_max_pool2d.h' 2025-07-24T05:19:51.2318261Z adding 'torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2321225Z adding 'torch/include/ATen/ops/quantized_max_pool2d_native.h' 2025-07-24T05:19:51.2324446Z adding 'torch/include/ATen/ops/quantized_max_pool2d_ops.h' 2025-07-24T05:19:51.2327630Z adding 'torch/include/ATen/ops/quantized_max_pool3d.h' 2025-07-24T05:19:51.2331322Z adding 'torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2333818Z adding 'torch/include/ATen/ops/quantized_max_pool3d_native.h' 2025-07-24T05:19:51.2337044Z adding 'torch/include/ATen/ops/quantized_max_pool3d_ops.h' 2025-07-24T05:19:51.2340158Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell.h' 2025-07-24T05:19:51.2343446Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.2346339Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_native.h' 2025-07-24T05:19:51.2349568Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h' 2025-07-24T05:19:51.2353141Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell.h' 2025-07-24T05:19:51.2356376Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.2359426Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h' 2025-07-24T05:19:51.2362717Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h' 2025-07-24T05:19:51.2365703Z adding 'torch/include/ATen/ops/rad2deg.h' 2025-07-24T05:19:51.2368917Z adding 'torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2371776Z adding 'torch/include/ATen/ops/rad2deg_native.h' 2025-07-24T05:19:51.2374978Z adding 'torch/include/ATen/ops/rad2deg_ops.h' 2025-07-24T05:19:51.2379747Z adding 'torch/include/ATen/ops/rand.h' 2025-07-24T05:19:51.2383900Z adding 'torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2387158Z adding 'torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.2390300Z adding 'torch/include/ATen/ops/rand_like.h' 2025-07-24T05:19:51.2393707Z adding 'torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2396726Z adding 'torch/include/ATen/ops/rand_like_native.h' 2025-07-24T05:19:51.2400149Z adding 'torch/include/ATen/ops/rand_like_ops.h' 2025-07-24T05:19:51.2403312Z adding 'torch/include/ATen/ops/rand_native.h' 2025-07-24T05:19:51.2406948Z adding 'torch/include/ATen/ops/rand_ops.h' 2025-07-24T05:19:51.2411869Z adding 'torch/include/ATen/ops/randint.h' 2025-07-24T05:19:51.2416130Z adding 'torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2420319Z adding 'torch/include/ATen/ops/randint_like.h' 2025-07-24T05:19:51.2424251Z adding 'torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2427348Z adding 'torch/include/ATen/ops/randint_like_native.h' 2025-07-24T05:19:51.2430925Z adding 'torch/include/ATen/ops/randint_like_ops.h' 2025-07-24T05:19:51.2434244Z adding 'torch/include/ATen/ops/randint_native.h' 2025-07-24T05:19:51.2438058Z adding 'torch/include/ATen/ops/randint_ops.h' 2025-07-24T05:19:51.2443451Z adding 'torch/include/ATen/ops/randn.h' 2025-07-24T05:19:51.2448245Z adding 'torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2452100Z adding 'torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.2455389Z adding 'torch/include/ATen/ops/randn_like.h' 2025-07-24T05:19:51.2459433Z adding 'torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2462862Z adding 'torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-07-24T05:19:51.2466223Z adding 'torch/include/ATen/ops/randn_like_native.h' 2025-07-24T05:19:51.2470035Z adding 'torch/include/ATen/ops/randn_like_ops.h' 2025-07-24T05:19:51.2473312Z adding 'torch/include/ATen/ops/randn_native.h' 2025-07-24T05:19:51.2477575Z adding 'torch/include/ATen/ops/randn_ops.h' 2025-07-24T05:19:51.2481546Z adding 'torch/include/ATen/ops/random.h' 2025-07-24T05:19:51.2485194Z adding 'torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2488754Z adding 'torch/include/ATen/ops/random_cpu_dispatch.h' 2025-07-24T05:19:51.2491961Z adding 'torch/include/ATen/ops/random_cuda_dispatch.h' 2025-07-24T05:19:51.2495657Z adding 'torch/include/ATen/ops/random_meta_dispatch.h' 2025-07-24T05:19:51.2498772Z adding 'torch/include/ATen/ops/random_native.h' 2025-07-24T05:19:51.2503076Z adding 'torch/include/ATen/ops/random_ops.h' 2025-07-24T05:19:51.2507597Z adding 'torch/include/ATen/ops/randperm.h' 2025-07-24T05:19:51.2511338Z adding 'torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2515075Z adding 'torch/include/ATen/ops/randperm_cpu_dispatch.h' 2025-07-24T05:19:51.2518544Z adding 'torch/include/ATen/ops/randperm_cuda_dispatch.h' 2025-07-24T05:19:51.2521979Z adding 'torch/include/ATen/ops/randperm_native.h' 2025-07-24T05:19:51.2525930Z adding 'torch/include/ATen/ops/randperm_ops.h' 2025-07-24T05:19:51.2529452Z adding 'torch/include/ATen/ops/range.h' 2025-07-24T05:19:51.2533538Z adding 'torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2537367Z adding 'torch/include/ATen/ops/range_cpu_dispatch.h' 2025-07-24T05:19:51.2540350Z adding 'torch/include/ATen/ops/range_cuda_dispatch.h' 2025-07-24T05:19:51.2543945Z adding 'torch/include/ATen/ops/range_meta_dispatch.h' 2025-07-24T05:19:51.2547442Z adding 'torch/include/ATen/ops/range_native.h' 2025-07-24T05:19:51.2551916Z adding 'torch/include/ATen/ops/range_ops.h' 2025-07-24T05:19:51.2556287Z adding 'torch/include/ATen/ops/ravel.h' 2025-07-24T05:19:51.2559712Z adding 'torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.2563492Z adding 'torch/include/ATen/ops/ravel_native.h' 2025-07-24T05:19:51.2571054Z adding 'torch/include/ATen/ops/ravel_ops.h' 2025-07-24T05:19:51.2574872Z adding 'torch/include/ATen/ops/real.h' 2025-07-24T05:19:51.2578879Z adding 'torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.2582563Z adding 'torch/include/ATen/ops/real_native.h' 2025-07-24T05:19:51.2586504Z adding 'torch/include/ATen/ops/real_ops.h' 2025-07-24T05:19:51.2590318Z adding 'torch/include/ATen/ops/reciprocal.h' 2025-07-24T05:19:51.2594651Z adding 'torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.2598561Z adding 'torch/include/ATen/ops/reciprocal_cpu_dispatch.h' 2025-07-24T05:19:51.2602327Z adding 'torch/include/ATen/ops/reciprocal_cuda_dispatch.h' 2025-07-24T05:19:51.2606031Z adding 'torch/include/ATen/ops/reciprocal_meta.h' 2025-07-24T05:19:51.2609917Z adding 'torch/include/ATen/ops/reciprocal_meta_dispatch.h' 2025-07-24T05:19:51.2613505Z adding 'torch/include/ATen/ops/reciprocal_native.h' 2025-07-24T05:19:51.2617821Z adding 'torch/include/ATen/ops/reciprocal_ops.h' 2025-07-24T05:19:51.2621665Z adding 'torch/include/ATen/ops/record_stream.h' 2025-07-24T05:19:51.2625321Z adding 'torch/include/ATen/ops/record_stream_cuda_dispatch.h' 2025-07-24T05:19:51.2628561Z adding 'torch/include/ATen/ops/record_stream_native.h' 2025-07-24T05:19:51.2631824Z adding 'torch/include/ATen/ops/record_stream_ops.h' 2025-07-24T05:19:51.2635128Z adding 'torch/include/ATen/ops/refine_names.h' 2025-07-24T05:19:51.2638899Z adding 'torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.2642188Z adding 'torch/include/ATen/ops/refine_names_native.h' 2025-07-24T05:19:51.2646180Z adding 'torch/include/ATen/ops/refine_names_ops.h' 2025-07-24T05:19:51.2650363Z adding 'torch/include/ATen/ops/reflection_pad1d.h' 2025-07-24T05:19:51.2654719Z adding 'torch/include/ATen/ops/reflection_pad1d_backward.h' 2025-07-24T05:19:51.2659467Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.2663393Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h' 2025-07-24T05:19:51.2666656Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h' 2025-07-24T05:19:51.2670027Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta.h' 2025-07-24T05:19:51.2673206Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h' 2025-07-24T05:19:51.2676644Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_native.h' 2025-07-24T05:19:51.2681465Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_ops.h' 2025-07-24T05:19:51.2683775Z adding 'torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.2687213Z adding 'torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h' 2025-07-24T05:19:51.2690923Z adding 'torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h' 2025-07-24T05:19:51.2693793Z adding 'torch/include/ATen/ops/reflection_pad1d_meta.h' 2025-07-24T05:19:51.2696872Z adding 'torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h' 2025-07-24T05:19:51.2700143Z adding 'torch/include/ATen/ops/reflection_pad1d_native.h' 2025-07-24T05:19:51.2703289Z adding 'torch/include/ATen/ops/reflection_pad1d_ops.h' 2025-07-24T05:19:51.2706573Z adding 'torch/include/ATen/ops/reflection_pad2d.h' 2025-07-24T05:19:51.2711253Z adding 'torch/include/ATen/ops/reflection_pad2d_backward.h' 2025-07-24T05:19:51.2714093Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h' 2025-07-24T05:19:51.2717334Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h' 2025-07-24T05:19:51.2720474Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_native.h' 2025-07-24T05:19:51.2723625Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_ops.h' 2025-07-24T05:19:51.2726936Z adding 'torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h' 2025-07-24T05:19:51.2729905Z adding 'torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h' 2025-07-24T05:19:51.2732776Z adding 'torch/include/ATen/ops/reflection_pad2d_native.h' 2025-07-24T05:19:51.2735933Z adding 'torch/include/ATen/ops/reflection_pad2d_ops.h' 2025-07-24T05:19:51.2739161Z adding 'torch/include/ATen/ops/reflection_pad3d.h' 2025-07-24T05:19:51.2742718Z adding 'torch/include/ATen/ops/reflection_pad3d_backward.h' 2025-07-24T05:19:51.2746246Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.2749193Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h' 2025-07-24T05:19:51.2752324Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h' 2025-07-24T05:19:51.2755293Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta.h' 2025-07-24T05:19:51.2758515Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h' 2025-07-24T05:19:51.2761563Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_native.h' 2025-07-24T05:19:51.2764712Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_ops.h' 2025-07-24T05:19:51.2767961Z adding 'torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.2770913Z adding 'torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h' 2025-07-24T05:19:51.2773972Z adding 'torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h' 2025-07-24T05:19:51.2777076Z adding 'torch/include/ATen/ops/reflection_pad3d_meta.h' 2025-07-24T05:19:51.2780125Z adding 'torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h' 2025-07-24T05:19:51.2782984Z adding 'torch/include/ATen/ops/reflection_pad3d_native.h' 2025-07-24T05:19:51.2786146Z adding 'torch/include/ATen/ops/reflection_pad3d_ops.h' 2025-07-24T05:19:51.2789267Z adding 'torch/include/ATen/ops/relu.h' 2025-07-24T05:19:51.2792250Z adding 'torch/include/ATen/ops/relu6.h' 2025-07-24T05:19:51.2795582Z adding 'torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.2798469Z adding 'torch/include/ATen/ops/relu6_native.h' 2025-07-24T05:19:51.2801498Z adding 'torch/include/ATen/ops/relu6_ops.h' 2025-07-24T05:19:51.2804669Z adding 'torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2807562Z adding 'torch/include/ATen/ops/relu_cpu_dispatch.h' 2025-07-24T05:19:51.2810531Z adding 'torch/include/ATen/ops/relu_cuda_dispatch.h' 2025-07-24T05:19:51.2813514Z adding 'torch/include/ATen/ops/relu_meta_dispatch.h' 2025-07-24T05:19:51.2816563Z adding 'torch/include/ATen/ops/relu_native.h' 2025-07-24T05:19:51.2819606Z adding 'torch/include/ATen/ops/relu_ops.h' 2025-07-24T05:19:51.2822829Z adding 'torch/include/ATen/ops/remainder.h' 2025-07-24T05:19:51.2826111Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2829358Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.2832194Z adding 'torch/include/ATen/ops/remainder_cpu_dispatch.h' 2025-07-24T05:19:51.2835139Z adding 'torch/include/ATen/ops/remainder_cuda_dispatch.h' 2025-07-24T05:19:51.2838150Z adding 'torch/include/ATen/ops/remainder_meta.h' 2025-07-24T05:19:51.2841289Z adding 'torch/include/ATen/ops/remainder_meta_dispatch.h' 2025-07-24T05:19:51.2844241Z adding 'torch/include/ATen/ops/remainder_native.h' 2025-07-24T05:19:51.2847639Z adding 'torch/include/ATen/ops/remainder_ops.h' 2025-07-24T05:19:51.2851226Z adding 'torch/include/ATen/ops/rename.h' 2025-07-24T05:19:51.2853901Z adding 'torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.2856718Z adding 'torch/include/ATen/ops/rename_native.h' 2025-07-24T05:19:51.2859879Z adding 'torch/include/ATen/ops/rename_ops.h' 2025-07-24T05:19:51.2862917Z adding 'torch/include/ATen/ops/renorm.h' 2025-07-24T05:19:51.2866214Z adding 'torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.2869125Z adding 'torch/include/ATen/ops/renorm_cpu_dispatch.h' 2025-07-24T05:19:51.2872186Z adding 'torch/include/ATen/ops/renorm_cuda_dispatch.h' 2025-07-24T05:19:51.2875166Z adding 'torch/include/ATen/ops/renorm_meta.h' 2025-07-24T05:19:51.2878324Z adding 'torch/include/ATen/ops/renorm_meta_dispatch.h' 2025-07-24T05:19:51.2881270Z adding 'torch/include/ATen/ops/renorm_native.h' 2025-07-24T05:19:51.2884452Z adding 'torch/include/ATen/ops/renorm_ops.h' 2025-07-24T05:19:51.2887687Z adding 'torch/include/ATen/ops/repeat.h' 2025-07-24T05:19:51.2891127Z adding 'torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2894547Z adding 'torch/include/ATen/ops/repeat_interleave.h' 2025-07-24T05:19:51.2898085Z adding 'torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.2901211Z adding 'torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.2904157Z adding 'torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h' 2025-07-24T05:19:51.2907173Z adding 'torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h' 2025-07-24T05:19:51.2910162Z adding 'torch/include/ATen/ops/repeat_interleave_native.h' 2025-07-24T05:19:51.2913483Z adding 'torch/include/ATen/ops/repeat_interleave_ops.h' 2025-07-24T05:19:51.2916483Z adding 'torch/include/ATen/ops/repeat_native.h' 2025-07-24T05:19:51.2919729Z adding 'torch/include/ATen/ops/repeat_ops.h' 2025-07-24T05:19:51.2923138Z adding 'torch/include/ATen/ops/replication_pad1d.h' 2025-07-24T05:19:51.2926565Z adding 'torch/include/ATen/ops/replication_pad1d_backward.h' 2025-07-24T05:19:51.2929958Z adding 'torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.2932905Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h' 2025-07-24T05:19:51.2936172Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h' 2025-07-24T05:19:51.2939126Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta.h' 2025-07-24T05:19:51.2942189Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h' 2025-07-24T05:19:51.2945438Z adding 'torch/include/ATen/ops/replication_pad1d_backward_native.h' 2025-07-24T05:19:51.2948575Z adding 'torch/include/ATen/ops/replication_pad1d_backward_ops.h' 2025-07-24T05:19:51.2951944Z adding 'torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.2954880Z adding 'torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h' 2025-07-24T05:19:51.2958017Z adding 'torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h' 2025-07-24T05:19:51.2960952Z adding 'torch/include/ATen/ops/replication_pad1d_meta.h' 2025-07-24T05:19:51.2964049Z adding 'torch/include/ATen/ops/replication_pad1d_meta_dispatch.h' 2025-07-24T05:19:51.2967060Z adding 'torch/include/ATen/ops/replication_pad1d_native.h' 2025-07-24T05:19:51.2970150Z adding 'torch/include/ATen/ops/replication_pad1d_ops.h' 2025-07-24T05:19:51.2973405Z adding 'torch/include/ATen/ops/replication_pad2d.h' 2025-07-24T05:19:51.2976852Z adding 'torch/include/ATen/ops/replication_pad2d_backward.h' 2025-07-24T05:19:51.2980108Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h' 2025-07-24T05:19:51.2983269Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h' 2025-07-24T05:19:51.2986255Z adding 'torch/include/ATen/ops/replication_pad2d_backward_native.h' 2025-07-24T05:19:51.2989469Z adding 'torch/include/ATen/ops/replication_pad2d_backward_ops.h' 2025-07-24T05:19:51.2992710Z adding 'torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.2995635Z adding 'torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h' 2025-07-24T05:19:51.2998954Z adding 'torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h' 2025-07-24T05:19:51.3001916Z adding 'torch/include/ATen/ops/replication_pad2d_meta.h' 2025-07-24T05:19:51.3004978Z adding 'torch/include/ATen/ops/replication_pad2d_meta_dispatch.h' 2025-07-24T05:19:51.3007993Z adding 'torch/include/ATen/ops/replication_pad2d_native.h' 2025-07-24T05:19:51.3011092Z adding 'torch/include/ATen/ops/replication_pad2d_ops.h' 2025-07-24T05:19:51.3014380Z adding 'torch/include/ATen/ops/replication_pad3d.h' 2025-07-24T05:19:51.3017835Z adding 'torch/include/ATen/ops/replication_pad3d_backward.h' 2025-07-24T05:19:51.3021114Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h' 2025-07-24T05:19:51.3024224Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h' 2025-07-24T05:19:51.3027188Z adding 'torch/include/ATen/ops/replication_pad3d_backward_native.h' 2025-07-24T05:19:51.3030442Z adding 'torch/include/ATen/ops/replication_pad3d_backward_ops.h' 2025-07-24T05:19:51.3033802Z adding 'torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.3036625Z adding 'torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h' 2025-07-24T05:19:51.3039818Z adding 'torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h' 2025-07-24T05:19:51.3042753Z adding 'torch/include/ATen/ops/replication_pad3d_meta.h' 2025-07-24T05:19:51.3045984Z adding 'torch/include/ATen/ops/replication_pad3d_meta_dispatch.h' 2025-07-24T05:19:51.3048986Z adding 'torch/include/ATen/ops/replication_pad3d_native.h' 2025-07-24T05:19:51.3052398Z adding 'torch/include/ATen/ops/replication_pad3d_ops.h' 2025-07-24T05:19:51.3055307Z adding 'torch/include/ATen/ops/requires_grad.h' 2025-07-24T05:19:51.3058680Z adding 'torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3061533Z adding 'torch/include/ATen/ops/requires_grad_native.h' 2025-07-24T05:19:51.3064715Z adding 'torch/include/ATen/ops/requires_grad_ops.h' 2025-07-24T05:19:51.3067825Z adding 'torch/include/ATen/ops/reshape.h' 2025-07-24T05:19:51.3070951Z adding 'torch/include/ATen/ops/reshape_as.h' 2025-07-24T05:19:51.3074176Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3077505Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h' 2025-07-24T05:19:51.3080497Z adding 'torch/include/ATen/ops/reshape_as_native.h' 2025-07-24T05:19:51.3083638Z adding 'torch/include/ATen/ops/reshape_as_ops.h' 2025-07-24T05:19:51.3086921Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3090261Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h' 2025-07-24T05:19:51.3093098Z adding 'torch/include/ATen/ops/reshape_native.h' 2025-07-24T05:19:51.3096036Z adding 'torch/include/ATen/ops/reshape_ops.h' 2025-07-24T05:19:51.3099580Z adding 'torch/include/ATen/ops/resize.h' 2025-07-24T05:19:51.3103476Z adding 'torch/include/ATen/ops/resize_as.h' 2025-07-24T05:19:51.3106307Z adding 'torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.3109300Z adding 'torch/include/ATen/ops/resize_as_native.h' 2025-07-24T05:19:51.3112595Z adding 'torch/include/ATen/ops/resize_as_ops.h' 2025-07-24T05:19:51.3115856Z adding 'torch/include/ATen/ops/resize_as_sparse.h' 2025-07-24T05:19:51.3119337Z adding 'torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.3122420Z adding 'torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h' 2025-07-24T05:19:51.3125399Z adding 'torch/include/ATen/ops/resize_as_sparse_native.h' 2025-07-24T05:19:51.3128996Z adding 'torch/include/ATen/ops/resize_as_sparse_ops.h' 2025-07-24T05:19:51.3164468Z adding 'torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.3164977Z adding 'torch/include/ATen/ops/resize_cpu_dispatch.h' 2025-07-24T05:19:51.3165347Z adding 'torch/include/ATen/ops/resize_cuda_dispatch.h' 2025-07-24T05:19:51.3165725Z adding 'torch/include/ATen/ops/resize_meta_dispatch.h' 2025-07-24T05:19:51.3166075Z adding 'torch/include/ATen/ops/resize_native.h' 2025-07-24T05:19:51.3166402Z adding 'torch/include/ATen/ops/resize_ops.h' 2025-07-24T05:19:51.3166715Z adding 'torch/include/ATen/ops/resolve_conj.h' 2025-07-24T05:19:51.3167172Z adding 'torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3167680Z adding 'torch/include/ATen/ops/resolve_conj_native.h' 2025-07-24T05:19:51.3168027Z adding 'torch/include/ATen/ops/resolve_conj_ops.h' 2025-07-24T05:19:51.3168362Z adding 'torch/include/ATen/ops/resolve_neg.h' 2025-07-24T05:19:51.3170395Z adding 'torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3173237Z adding 'torch/include/ATen/ops/resolve_neg_native.h' 2025-07-24T05:19:51.3176415Z adding 'torch/include/ATen/ops/resolve_neg_ops.h' 2025-07-24T05:19:51.3179507Z adding 'torch/include/ATen/ops/result_type.h' 2025-07-24T05:19:51.3182937Z adding 'torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3185975Z adding 'torch/include/ATen/ops/result_type_native.h' 2025-07-24T05:19:51.3189377Z adding 'torch/include/ATen/ops/result_type_ops.h' 2025-07-24T05:19:51.3192326Z adding 'torch/include/ATen/ops/retain_grad.h' 2025-07-24T05:19:51.3195418Z adding 'torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3199583Z adding 'torch/include/ATen/ops/retain_grad_native.h' 2025-07-24T05:19:51.3201596Z adding 'torch/include/ATen/ops/retain_grad_ops.h' 2025-07-24T05:19:51.3204523Z adding 'torch/include/ATen/ops/retains_grad.h' 2025-07-24T05:19:51.3207654Z adding 'torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3210430Z adding 'torch/include/ATen/ops/retains_grad_native.h' 2025-07-24T05:19:51.3213473Z adding 'torch/include/ATen/ops/retains_grad_ops.h' 2025-07-24T05:19:51.3216810Z adding 'torch/include/ATen/ops/rms_norm.h' 2025-07-24T05:19:51.3220064Z adding 'torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3222925Z adding 'torch/include/ATen/ops/rms_norm_native.h' 2025-07-24T05:19:51.3225983Z adding 'torch/include/ATen/ops/rms_norm_ops.h' 2025-07-24T05:19:51.3229079Z adding 'torch/include/ATen/ops/rnn_relu.h' 2025-07-24T05:19:51.3232120Z adding 'torch/include/ATen/ops/rnn_relu_cell.h' 2025-07-24T05:19:51.3235335Z adding 'torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3238320Z adding 'torch/include/ATen/ops/rnn_relu_cell_native.h' 2025-07-24T05:19:51.3241406Z adding 'torch/include/ATen/ops/rnn_relu_cell_ops.h' 2025-07-24T05:19:51.3244746Z adding 'torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3247759Z adding 'torch/include/ATen/ops/rnn_relu_native.h' 2025-07-24T05:19:51.3251010Z adding 'torch/include/ATen/ops/rnn_relu_ops.h' 2025-07-24T05:19:51.3254146Z adding 'torch/include/ATen/ops/rnn_tanh.h' 2025-07-24T05:19:51.3257256Z adding 'torch/include/ATen/ops/rnn_tanh_cell.h' 2025-07-24T05:19:51.3260473Z adding 'torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3263299Z adding 'torch/include/ATen/ops/rnn_tanh_cell_native.h' 2025-07-24T05:19:51.3266451Z adding 'torch/include/ATen/ops/rnn_tanh_cell_ops.h' 2025-07-24T05:19:51.3269679Z adding 'torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3272512Z adding 'torch/include/ATen/ops/rnn_tanh_native.h' 2025-07-24T05:19:51.3275725Z adding 'torch/include/ATen/ops/rnn_tanh_ops.h' 2025-07-24T05:19:51.3279177Z adding 'torch/include/ATen/ops/roll.h' 2025-07-24T05:19:51.3282507Z adding 'torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.3285473Z adding 'torch/include/ATen/ops/roll_cpu_dispatch.h' 2025-07-24T05:19:51.3288451Z adding 'torch/include/ATen/ops/roll_cuda_dispatch.h' 2025-07-24T05:19:51.3291740Z adding 'torch/include/ATen/ops/roll_native.h' 2025-07-24T05:19:51.3294631Z adding 'torch/include/ATen/ops/roll_ops.h' 2025-07-24T05:19:51.3297809Z adding 'torch/include/ATen/ops/rot90.h' 2025-07-24T05:19:51.3301041Z adding 'torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.3303904Z adding 'torch/include/ATen/ops/rot90_native.h' 2025-07-24T05:19:51.3306988Z adding 'torch/include/ATen/ops/rot90_ops.h' 2025-07-24T05:19:51.3310082Z adding 'torch/include/ATen/ops/round.h' 2025-07-24T05:19:51.3313370Z adding 'torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.3316269Z adding 'torch/include/ATen/ops/round_cpu_dispatch.h' 2025-07-24T05:19:51.3319421Z adding 'torch/include/ATen/ops/round_cuda_dispatch.h' 2025-07-24T05:19:51.3322380Z adding 'torch/include/ATen/ops/round_meta.h' 2025-07-24T05:19:51.3325440Z adding 'torch/include/ATen/ops/round_meta_dispatch.h' 2025-07-24T05:19:51.3328443Z adding 'torch/include/ATen/ops/round_native.h' 2025-07-24T05:19:51.3331731Z adding 'torch/include/ATen/ops/round_ops.h' 2025-07-24T05:19:51.3334728Z adding 'torch/include/ATen/ops/row_indices.h' 2025-07-24T05:19:51.3337876Z adding 'torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.3340753Z adding 'torch/include/ATen/ops/row_indices_copy.h' 2025-07-24T05:19:51.3343934Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.3347070Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.3349961Z adding 'torch/include/ATen/ops/row_indices_copy_native.h' 2025-07-24T05:19:51.3353130Z adding 'torch/include/ATen/ops/row_indices_copy_ops.h' 2025-07-24T05:19:51.3356103Z adding 'torch/include/ATen/ops/row_indices_native.h' 2025-07-24T05:19:51.3359275Z adding 'torch/include/ATen/ops/row_indices_ops.h' 2025-07-24T05:19:51.3362338Z adding 'torch/include/ATen/ops/row_stack.h' 2025-07-24T05:19:51.3365528Z adding 'torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3368347Z adding 'torch/include/ATen/ops/row_stack_native.h' 2025-07-24T05:19:51.3371452Z adding 'torch/include/ATen/ops/row_stack_ops.h' 2025-07-24T05:19:51.3374520Z adding 'torch/include/ATen/ops/rrelu.h' 2025-07-24T05:19:51.3377755Z adding 'torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3380657Z adding 'torch/include/ATen/ops/rrelu_native.h' 2025-07-24T05:19:51.3383875Z adding 'torch/include/ATen/ops/rrelu_ops.h' 2025-07-24T05:19:51.3387122Z adding 'torch/include/ATen/ops/rrelu_with_noise.h' 2025-07-24T05:19:51.3390337Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward.h' 2025-07-24T05:19:51.3393674Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.3396712Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_native.h' 2025-07-24T05:19:51.3400061Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_ops.h' 2025-07-24T05:19:51.3403367Z adding 'torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.3406372Z adding 'torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h' 2025-07-24T05:19:51.3409476Z adding 'torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h' 2025-07-24T05:19:51.3412504Z adding 'torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h' 2025-07-24T05:19:51.3415842Z adding 'torch/include/ATen/ops/rrelu_with_noise_native.h' 2025-07-24T05:19:51.3419249Z adding 'torch/include/ATen/ops/rrelu_with_noise_ops.h' 2025-07-24T05:19:51.3422411Z adding 'torch/include/ATen/ops/rshift.h' 2025-07-24T05:19:51.3425752Z adding 'torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.3428598Z adding 'torch/include/ATen/ops/rshift_cpu_dispatch.h' 2025-07-24T05:19:51.3432226Z adding 'torch/include/ATen/ops/rshift_cuda_dispatch.h' 2025-07-24T05:19:51.3435321Z adding 'torch/include/ATen/ops/rshift_meta_dispatch.h' 2025-07-24T05:19:51.3438412Z adding 'torch/include/ATen/ops/rshift_native.h' 2025-07-24T05:19:51.3441809Z adding 'torch/include/ATen/ops/rshift_ops.h' 2025-07-24T05:19:51.3444901Z adding 'torch/include/ATen/ops/rsqrt.h' 2025-07-24T05:19:51.3448572Z adding 'torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.3451297Z adding 'torch/include/ATen/ops/rsqrt_cpu_dispatch.h' 2025-07-24T05:19:51.3454616Z adding 'torch/include/ATen/ops/rsqrt_cuda_dispatch.h' 2025-07-24T05:19:51.3457463Z adding 'torch/include/ATen/ops/rsqrt_meta.h' 2025-07-24T05:19:51.3460627Z adding 'torch/include/ATen/ops/rsqrt_meta_dispatch.h' 2025-07-24T05:19:51.3463592Z adding 'torch/include/ATen/ops/rsqrt_native.h' 2025-07-24T05:19:51.3466900Z adding 'torch/include/ATen/ops/rsqrt_ops.h' 2025-07-24T05:19:51.3470090Z adding 'torch/include/ATen/ops/rsub.h' 2025-07-24T05:19:51.3473491Z adding 'torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.3476482Z adding 'torch/include/ATen/ops/rsub_cpu_dispatch.h' 2025-07-24T05:19:51.3479736Z adding 'torch/include/ATen/ops/rsub_cuda_dispatch.h' 2025-07-24T05:19:51.3482792Z adding 'torch/include/ATen/ops/rsub_native.h' 2025-07-24T05:19:51.3486081Z adding 'torch/include/ATen/ops/rsub_ops.h' 2025-07-24T05:19:51.3489447Z adding 'torch/include/ATen/ops/scalar_tensor.h' 2025-07-24T05:19:51.3492716Z adding 'torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.3495733Z adding 'torch/include/ATen/ops/scalar_tensor_native.h' 2025-07-24T05:19:51.3498988Z adding 'torch/include/ATen/ops/scalar_tensor_ops.h' 2025-07-24T05:19:51.3502358Z adding 'torch/include/ATen/ops/scaled_dot_product_attention.h' 2025-07-24T05:19:51.3506269Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3508627Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_native.h' 2025-07-24T05:19:51.3512205Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_ops.h' 2025-07-24T05:19:51.3515207Z adding 'torch/include/ATen/ops/scatter.h' 2025-07-24T05:19:51.3518697Z adding 'torch/include/ATen/ops/scatter_add.h' 2025-07-24T05:19:51.3522053Z adding 'torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.3525225Z adding 'torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3528211Z adding 'torch/include/ATen/ops/scatter_add_cpu_dispatch.h' 2025-07-24T05:19:51.3531410Z adding 'torch/include/ATen/ops/scatter_add_cuda_dispatch.h' 2025-07-24T05:19:51.3534671Z adding 'torch/include/ATen/ops/scatter_add_meta.h' 2025-07-24T05:19:51.3537600Z adding 'torch/include/ATen/ops/scatter_add_meta_dispatch.h' 2025-07-24T05:19:51.3540899Z adding 'torch/include/ATen/ops/scatter_add_native.h' 2025-07-24T05:19:51.3543994Z adding 'torch/include/ATen/ops/scatter_add_ops.h' 2025-07-24T05:19:51.3547638Z adding 'torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.3550677Z adding 'torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3553940Z adding 'torch/include/ATen/ops/scatter_cpu_dispatch.h' 2025-07-24T05:19:51.3557620Z adding 'torch/include/ATen/ops/scatter_cuda_dispatch.h' 2025-07-24T05:19:51.3560572Z adding 'torch/include/ATen/ops/scatter_meta.h' 2025-07-24T05:19:51.3563892Z adding 'torch/include/ATen/ops/scatter_meta_dispatch.h' 2025-07-24T05:19:51.3566953Z adding 'torch/include/ATen/ops/scatter_native.h' 2025-07-24T05:19:51.3571040Z adding 'torch/include/ATen/ops/scatter_ops.h' 2025-07-24T05:19:51.3574851Z adding 'torch/include/ATen/ops/scatter_reduce.h' 2025-07-24T05:19:51.3578043Z adding 'torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.3581135Z adding 'torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h' 2025-07-24T05:19:51.3584259Z adding 'torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h' 2025-07-24T05:19:51.3587371Z adding 'torch/include/ATen/ops/scatter_reduce_meta.h' 2025-07-24T05:19:51.3590526Z adding 'torch/include/ATen/ops/scatter_reduce_meta_dispatch.h' 2025-07-24T05:19:51.3593724Z adding 'torch/include/ATen/ops/scatter_reduce_native.h' 2025-07-24T05:19:51.3597005Z adding 'torch/include/ATen/ops/scatter_reduce_ops.h' 2025-07-24T05:19:51.3600566Z adding 'torch/include/ATen/ops/searchsorted.h' 2025-07-24T05:19:51.3603970Z adding 'torch/include/ATen/ops/searchsorted_cpu_dispatch.h' 2025-07-24T05:19:51.3607159Z adding 'torch/include/ATen/ops/searchsorted_cuda_dispatch.h' 2025-07-24T05:19:51.3610402Z adding 'torch/include/ATen/ops/searchsorted_native.h' 2025-07-24T05:19:51.3613867Z adding 'torch/include/ATen/ops/searchsorted_ops.h' 2025-07-24T05:19:51.3617278Z adding 'torch/include/ATen/ops/segment_reduce.h' 2025-07-24T05:19:51.3620999Z adding 'torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.3623746Z adding 'torch/include/ATen/ops/segment_reduce_cpu_dispatch.h' 2025-07-24T05:19:51.3627057Z adding 'torch/include/ATen/ops/segment_reduce_cuda_dispatch.h' 2025-07-24T05:19:51.3629978Z adding 'torch/include/ATen/ops/segment_reduce_native.h' 2025-07-24T05:19:51.3633405Z adding 'torch/include/ATen/ops/segment_reduce_ops.h' 2025-07-24T05:19:51.3636570Z adding 'torch/include/ATen/ops/select.h' 2025-07-24T05:19:51.3658931Z adding 'torch/include/ATen/ops/select_backward.h' 2025-07-24T05:19:51.3659523Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.3660244Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.3661402Z adding 'torch/include/ATen/ops/select_backward_native.h' 2025-07-24T05:19:51.3661798Z adding 'torch/include/ATen/ops/select_backward_ops.h' 2025-07-24T05:19:51.3662032Z adding 'torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.3662274Z adding 'torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3665169Z adding 'torch/include/ATen/ops/select_copy.h' 2025-07-24T05:19:51.3668530Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.3671915Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.3674702Z adding 'torch/include/ATen/ops/select_copy_native.h' 2025-07-24T05:19:51.3678120Z adding 'torch/include/ATen/ops/select_copy_ops.h' 2025-07-24T05:19:51.3681175Z adding 'torch/include/ATen/ops/select_native.h' 2025-07-24T05:19:51.3684612Z adding 'torch/include/ATen/ops/select_ops.h' 2025-07-24T05:19:51.3687963Z adding 'torch/include/ATen/ops/select_scatter.h' 2025-07-24T05:19:51.3691357Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.3694642Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.3697416Z adding 'torch/include/ATen/ops/select_scatter_native.h' 2025-07-24T05:19:51.3700596Z adding 'torch/include/ATen/ops/select_scatter_ops.h' 2025-07-24T05:19:51.3703562Z adding 'torch/include/ATen/ops/selu.h' 2025-07-24T05:19:51.3706762Z adding 'torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3710243Z adding 'torch/include/ATen/ops/selu_native.h' 2025-07-24T05:19:51.3712877Z adding 'torch/include/ATen/ops/selu_ops.h' 2025-07-24T05:19:51.3716549Z adding 'torch/include/ATen/ops/set.h' 2025-07-24T05:19:51.3720226Z adding 'torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.3723377Z adding 'torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3726297Z adding 'torch/include/ATen/ops/set_cpu_dispatch.h' 2025-07-24T05:19:51.3729388Z adding 'torch/include/ATen/ops/set_cuda_dispatch.h' 2025-07-24T05:19:51.3732360Z adding 'torch/include/ATen/ops/set_data.h' 2025-07-24T05:19:51.3735488Z adding 'torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3738287Z adding 'torch/include/ATen/ops/set_data_native.h' 2025-07-24T05:19:51.3741452Z adding 'torch/include/ATen/ops/set_data_ops.h' 2025-07-24T05:19:51.3744561Z adding 'torch/include/ATen/ops/set_meta_dispatch.h' 2025-07-24T05:19:51.3747752Z adding 'torch/include/ATen/ops/set_native.h' 2025-07-24T05:19:51.3751521Z adding 'torch/include/ATen/ops/set_ops.h' 2025-07-24T05:19:51.3754796Z adding 'torch/include/ATen/ops/sgn.h' 2025-07-24T05:19:51.3758209Z adding 'torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.3761175Z adding 'torch/include/ATen/ops/sgn_cpu_dispatch.h' 2025-07-24T05:19:51.3764198Z adding 'torch/include/ATen/ops/sgn_cuda_dispatch.h' 2025-07-24T05:19:51.3767123Z adding 'torch/include/ATen/ops/sgn_meta.h' 2025-07-24T05:19:51.3770129Z adding 'torch/include/ATen/ops/sgn_meta_dispatch.h' 2025-07-24T05:19:51.3773105Z adding 'torch/include/ATen/ops/sgn_native.h' 2025-07-24T05:19:51.3776263Z adding 'torch/include/ATen/ops/sgn_ops.h' 2025-07-24T05:19:51.3779377Z adding 'torch/include/ATen/ops/sigmoid.h' 2025-07-24T05:19:51.3782441Z adding 'torch/include/ATen/ops/sigmoid_backward.h' 2025-07-24T05:19:51.3785738Z adding 'torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.3788593Z adding 'torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h' 2025-07-24T05:19:51.3791633Z adding 'torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h' 2025-07-24T05:19:51.3794557Z adding 'torch/include/ATen/ops/sigmoid_backward_meta.h' 2025-07-24T05:19:51.3797855Z adding 'torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h' 2025-07-24T05:19:51.3801404Z adding 'torch/include/ATen/ops/sigmoid_backward_native.h' 2025-07-24T05:19:51.3804671Z adding 'torch/include/ATen/ops/sigmoid_backward_ops.h' 2025-07-24T05:19:51.3808020Z adding 'torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.3810903Z adding 'torch/include/ATen/ops/sigmoid_cpu_dispatch.h' 2025-07-24T05:19:51.3813932Z adding 'torch/include/ATen/ops/sigmoid_cuda_dispatch.h' 2025-07-24T05:19:51.3816829Z adding 'torch/include/ATen/ops/sigmoid_meta.h' 2025-07-24T05:19:51.3819848Z adding 'torch/include/ATen/ops/sigmoid_meta_dispatch.h' 2025-07-24T05:19:51.3822822Z adding 'torch/include/ATen/ops/sigmoid_native.h' 2025-07-24T05:19:51.3825979Z adding 'torch/include/ATen/ops/sigmoid_ops.h' 2025-07-24T05:19:51.3829008Z adding 'torch/include/ATen/ops/sign.h' 2025-07-24T05:19:51.3832325Z adding 'torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.3835197Z adding 'torch/include/ATen/ops/sign_cpu_dispatch.h' 2025-07-24T05:19:51.3838351Z adding 'torch/include/ATen/ops/sign_cuda_dispatch.h' 2025-07-24T05:19:51.3841272Z adding 'torch/include/ATen/ops/sign_meta.h' 2025-07-24T05:19:51.3844283Z adding 'torch/include/ATen/ops/sign_meta_dispatch.h' 2025-07-24T05:19:51.3847261Z adding 'torch/include/ATen/ops/sign_native.h' 2025-07-24T05:19:51.3850446Z adding 'torch/include/ATen/ops/sign_ops.h' 2025-07-24T05:19:51.3853490Z adding 'torch/include/ATen/ops/signbit.h' 2025-07-24T05:19:51.3856872Z adding 'torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.3859804Z adding 'torch/include/ATen/ops/signbit_cpu_dispatch.h' 2025-07-24T05:19:51.3862791Z adding 'torch/include/ATen/ops/signbit_cuda_dispatch.h' 2025-07-24T05:19:51.3865691Z adding 'torch/include/ATen/ops/signbit_meta.h' 2025-07-24T05:19:51.3868720Z adding 'torch/include/ATen/ops/signbit_meta_dispatch.h' 2025-07-24T05:19:51.3871707Z adding 'torch/include/ATen/ops/signbit_native.h' 2025-07-24T05:19:51.3874776Z adding 'torch/include/ATen/ops/signbit_ops.h' 2025-07-24T05:19:51.3877853Z adding 'torch/include/ATen/ops/silu.h' 2025-07-24T05:19:51.3880966Z adding 'torch/include/ATen/ops/silu_backward.h' 2025-07-24T05:19:51.3884244Z adding 'torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.3887234Z adding 'torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.3890207Z adding 'torch/include/ATen/ops/silu_backward_cpu_dispatch.h' 2025-07-24T05:19:51.3893219Z adding 'torch/include/ATen/ops/silu_backward_cuda_dispatch.h' 2025-07-24T05:19:51.3896128Z adding 'torch/include/ATen/ops/silu_backward_meta.h' 2025-07-24T05:19:51.3899378Z adding 'torch/include/ATen/ops/silu_backward_meta_dispatch.h' 2025-07-24T05:19:51.3902361Z adding 'torch/include/ATen/ops/silu_backward_native.h' 2025-07-24T05:19:51.3905676Z adding 'torch/include/ATen/ops/silu_backward_ops.h' 2025-07-24T05:19:51.3909322Z adding 'torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.3912045Z adding 'torch/include/ATen/ops/silu_cpu_dispatch.h' 2025-07-24T05:19:51.3915213Z adding 'torch/include/ATen/ops/silu_cuda_dispatch.h' 2025-07-24T05:19:51.3918243Z adding 'torch/include/ATen/ops/silu_meta.h' 2025-07-24T05:19:51.3921423Z adding 'torch/include/ATen/ops/silu_meta_dispatch.h' 2025-07-24T05:19:51.3924397Z adding 'torch/include/ATen/ops/silu_native.h' 2025-07-24T05:19:51.3927725Z adding 'torch/include/ATen/ops/silu_ops.h' 2025-07-24T05:19:51.3930804Z adding 'torch/include/ATen/ops/sin.h' 2025-07-24T05:19:51.3934273Z adding 'torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.3937551Z adding 'torch/include/ATen/ops/sin_cpu_dispatch.h' 2025-07-24T05:19:51.3940415Z adding 'torch/include/ATen/ops/sin_cuda_dispatch.h' 2025-07-24T05:19:51.3943498Z adding 'torch/include/ATen/ops/sin_meta.h' 2025-07-24T05:19:51.3946582Z adding 'torch/include/ATen/ops/sin_meta_dispatch.h' 2025-07-24T05:19:51.3949679Z adding 'torch/include/ATen/ops/sin_native.h' 2025-07-24T05:19:51.3952853Z adding 'torch/include/ATen/ops/sin_ops.h' 2025-07-24T05:19:51.3956066Z adding 'torch/include/ATen/ops/sinc.h' 2025-07-24T05:19:51.3959504Z adding 'torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.3962596Z adding 'torch/include/ATen/ops/sinc_cpu_dispatch.h' 2025-07-24T05:19:51.3966143Z adding 'torch/include/ATen/ops/sinc_cuda_dispatch.h' 2025-07-24T05:19:51.3968695Z adding 'torch/include/ATen/ops/sinc_meta.h' 2025-07-24T05:19:51.3972017Z adding 'torch/include/ATen/ops/sinc_meta_dispatch.h' 2025-07-24T05:19:51.3974838Z adding 'torch/include/ATen/ops/sinc_native.h' 2025-07-24T05:19:51.3978145Z adding 'torch/include/ATen/ops/sinc_ops.h' 2025-07-24T05:19:51.3981296Z adding 'torch/include/ATen/ops/sinh.h' 2025-07-24T05:19:51.3984700Z adding 'torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.3987635Z adding 'torch/include/ATen/ops/sinh_cpu_dispatch.h' 2025-07-24T05:19:51.3990781Z adding 'torch/include/ATen/ops/sinh_cuda_dispatch.h' 2025-07-24T05:19:51.3993703Z adding 'torch/include/ATen/ops/sinh_meta.h' 2025-07-24T05:19:51.3996873Z adding 'torch/include/ATen/ops/sinh_meta_dispatch.h' 2025-07-24T05:19:51.4000662Z adding 'torch/include/ATen/ops/sinh_native.h' 2025-07-24T05:19:51.4003350Z adding 'torch/include/ATen/ops/sinh_ops.h' 2025-07-24T05:19:51.4006779Z adding 'torch/include/ATen/ops/size.h' 2025-07-24T05:19:51.4009738Z adding 'torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.4012694Z adding 'torch/include/ATen/ops/size_native.h' 2025-07-24T05:19:51.4015827Z adding 'torch/include/ATen/ops/size_ops.h' 2025-07-24T05:19:51.4019213Z adding 'torch/include/ATen/ops/slice.h' 2025-07-24T05:19:51.4022665Z adding 'torch/include/ATen/ops/slice_backward.h' 2025-07-24T05:19:51.4026350Z adding 'torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.4029702Z adding 'torch/include/ATen/ops/slice_backward_native.h' 2025-07-24T05:19:51.4032469Z adding 'torch/include/ATen/ops/slice_backward_ops.h' 2025-07-24T05:19:51.4035878Z adding 'torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.4039535Z adding 'torch/include/ATen/ops/slice_copy.h' 2025-07-24T05:19:51.4043115Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.4046705Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.4049381Z adding 'torch/include/ATen/ops/slice_copy_native.h' 2025-07-24T05:19:51.4052822Z adding 'torch/include/ATen/ops/slice_copy_ops.h' 2025-07-24T05:19:51.4055998Z adding 'torch/include/ATen/ops/slice_inverse.h' 2025-07-24T05:19:51.4059422Z adding 'torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.4062329Z adding 'torch/include/ATen/ops/slice_inverse_native.h' 2025-07-24T05:19:51.4065578Z adding 'torch/include/ATen/ops/slice_inverse_ops.h' 2025-07-24T05:19:51.4068538Z adding 'torch/include/ATen/ops/slice_native.h' 2025-07-24T05:19:51.4071757Z adding 'torch/include/ATen/ops/slice_ops.h' 2025-07-24T05:19:51.4075294Z adding 'torch/include/ATen/ops/slice_scatter.h' 2025-07-24T05:19:51.4078879Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.4082265Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.4085176Z adding 'torch/include/ATen/ops/slice_scatter_native.h' 2025-07-24T05:19:51.4088471Z adding 'torch/include/ATen/ops/slice_scatter_ops.h' 2025-07-24T05:19:51.4091597Z adding 'torch/include/ATen/ops/slogdet.h' 2025-07-24T05:19:51.4094974Z adding 'torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.4098197Z adding 'torch/include/ATen/ops/slogdet_native.h' 2025-07-24T05:19:51.4101207Z adding 'torch/include/ATen/ops/slogdet_ops.h' 2025-07-24T05:19:51.4104946Z adding 'torch/include/ATen/ops/slow_conv3d.h' 2025-07-24T05:19:51.4108432Z adding 'torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.4112256Z adding 'torch/include/ATen/ops/slow_conv3d_forward.h' 2025-07-24T05:19:51.4115884Z adding 'torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h' 2025-07-24T05:19:51.4118885Z adding 'torch/include/ATen/ops/slow_conv3d_forward_native.h' 2025-07-24T05:19:51.4122251Z adding 'torch/include/ATen/ops/slow_conv3d_forward_ops.h' 2025-07-24T05:19:51.4125256Z adding 'torch/include/ATen/ops/slow_conv3d_native.h' 2025-07-24T05:19:51.4129538Z adding 'torch/include/ATen/ops/slow_conv3d_ops.h' 2025-07-24T05:19:51.4133372Z adding 'torch/include/ATen/ops/slow_conv_dilated2d.h' 2025-07-24T05:19:51.4136892Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.4140088Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h' 2025-07-24T05:19:51.4143249Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h' 2025-07-24T05:19:51.4152540Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_native.h' 2025-07-24T05:19:51.4152705Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_ops.h' 2025-07-24T05:19:51.4154223Z adding 'torch/include/ATen/ops/slow_conv_dilated3d.h' 2025-07-24T05:19:51.4158780Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.4161078Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h' 2025-07-24T05:19:51.4164709Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h' 2025-07-24T05:19:51.4167378Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_native.h' 2025-07-24T05:19:51.4171512Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_ops.h' 2025-07-24T05:19:51.4175275Z adding 'torch/include/ATen/ops/slow_conv_transpose2d.h' 2025-07-24T05:19:51.4179136Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.4190542Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h' 2025-07-24T05:19:51.4197146Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h' 2025-07-24T05:19:51.4240110Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta.h' 2025-07-24T05:19:51.4243583Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h' 2025-07-24T05:19:51.4248476Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_native.h' 2025-07-24T05:19:51.4253539Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_ops.h' 2025-07-24T05:19:51.4259031Z adding 'torch/include/ATen/ops/slow_conv_transpose3d.h' 2025-07-24T05:19:51.4262673Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h' 2025-07-24T05:19:51.4267750Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h' 2025-07-24T05:19:51.4270919Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_native.h' 2025-07-24T05:19:51.4275869Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_ops.h' 2025-07-24T05:19:51.4279187Z adding 'torch/include/ATen/ops/smm.h' 2025-07-24T05:19:51.4282420Z adding 'torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.4285276Z adding 'torch/include/ATen/ops/smm_native.h' 2025-07-24T05:19:51.4288375Z adding 'torch/include/ATen/ops/smm_ops.h' 2025-07-24T05:19:51.4293213Z adding 'torch/include/ATen/ops/smooth_l1_loss.h' 2025-07-24T05:19:51.4296559Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward.h' 2025-07-24T05:19:51.4300789Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.4303814Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h' 2025-07-24T05:19:51.4306887Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h' 2025-07-24T05:19:51.4309888Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_native.h' 2025-07-24T05:19:51.4313111Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_ops.h' 2025-07-24T05:19:51.4316419Z adding 'torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.4319471Z adding 'torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h' 2025-07-24T05:19:51.4322570Z adding 'torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h' 2025-07-24T05:19:51.4325590Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta.h' 2025-07-24T05:19:51.4328691Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h' 2025-07-24T05:19:51.4331639Z adding 'torch/include/ATen/ops/smooth_l1_loss_native.h' 2025-07-24T05:19:51.4334802Z adding 'torch/include/ATen/ops/smooth_l1_loss_ops.h' 2025-07-24T05:19:51.4337899Z adding 'torch/include/ATen/ops/soft_margin_loss.h' 2025-07-24T05:19:51.4341046Z adding 'torch/include/ATen/ops/soft_margin_loss_backward.h' 2025-07-24T05:19:51.4344351Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.4347324Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_native.h' 2025-07-24T05:19:51.4350472Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_ops.h' 2025-07-24T05:19:51.4353700Z adding 'torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.4356572Z adding 'torch/include/ATen/ops/soft_margin_loss_native.h' 2025-07-24T05:19:51.4359853Z adding 'torch/include/ATen/ops/soft_margin_loss_ops.h' 2025-07-24T05:19:51.4362974Z adding 'torch/include/ATen/ops/softmax.h' 2025-07-24T05:19:51.4366181Z adding 'torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.4369317Z adding 'torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.4372244Z adding 'torch/include/ATen/ops/softmax_native.h' 2025-07-24T05:19:51.4375461Z adding 'torch/include/ATen/ops/softmax_ops.h' 2025-07-24T05:19:51.4378573Z adding 'torch/include/ATen/ops/softplus.h' 2025-07-24T05:19:51.4381771Z adding 'torch/include/ATen/ops/softplus_backward.h' 2025-07-24T05:19:51.4385033Z adding 'torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.4387915Z adding 'torch/include/ATen/ops/softplus_backward_cpu_dispatch.h' 2025-07-24T05:19:51.4390985Z adding 'torch/include/ATen/ops/softplus_backward_cuda_dispatch.h' 2025-07-24T05:19:51.4393946Z adding 'torch/include/ATen/ops/softplus_backward_meta.h' 2025-07-24T05:19:51.4397041Z adding 'torch/include/ATen/ops/softplus_backward_meta_dispatch.h' 2025-07-24T05:19:51.4400274Z adding 'torch/include/ATen/ops/softplus_backward_native.h' 2025-07-24T05:19:51.4403445Z adding 'torch/include/ATen/ops/softplus_backward_ops.h' 2025-07-24T05:19:51.4406854Z adding 'torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.4409787Z adding 'torch/include/ATen/ops/softplus_cpu_dispatch.h' 2025-07-24T05:19:51.4412858Z adding 'torch/include/ATen/ops/softplus_cuda_dispatch.h' 2025-07-24T05:19:51.4415831Z adding 'torch/include/ATen/ops/softplus_meta.h' 2025-07-24T05:19:51.4418936Z adding 'torch/include/ATen/ops/softplus_meta_dispatch.h' 2025-07-24T05:19:51.4421902Z adding 'torch/include/ATen/ops/softplus_native.h' 2025-07-24T05:19:51.4425068Z adding 'torch/include/ATen/ops/softplus_ops.h' 2025-07-24T05:19:51.4428160Z adding 'torch/include/ATen/ops/softshrink.h' 2025-07-24T05:19:51.4431694Z adding 'torch/include/ATen/ops/softshrink_backward.h' 2025-07-24T05:19:51.4435084Z adding 'torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.4438060Z adding 'torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h' 2025-07-24T05:19:51.4441292Z adding 'torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h' 2025-07-24T05:19:51.4444212Z adding 'torch/include/ATen/ops/softshrink_backward_meta.h' 2025-07-24T05:19:51.4447353Z adding 'torch/include/ATen/ops/softshrink_backward_meta_dispatch.h' 2025-07-24T05:19:51.4450264Z adding 'torch/include/ATen/ops/softshrink_backward_native.h' 2025-07-24T05:19:51.4454339Z adding 'torch/include/ATen/ops/softshrink_backward_ops.h' 2025-07-24T05:19:51.4458215Z adding 'torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.4461112Z adding 'torch/include/ATen/ops/softshrink_cpu_dispatch.h' 2025-07-24T05:19:51.4464184Z adding 'torch/include/ATen/ops/softshrink_cuda_dispatch.h' 2025-07-24T05:19:51.4467143Z adding 'torch/include/ATen/ops/softshrink_meta.h' 2025-07-24T05:19:51.4470227Z adding 'torch/include/ATen/ops/softshrink_meta_dispatch.h' 2025-07-24T05:19:51.4473208Z adding 'torch/include/ATen/ops/softshrink_native.h' 2025-07-24T05:19:51.4476671Z adding 'torch/include/ATen/ops/softshrink_ops.h' 2025-07-24T05:19:51.4480203Z adding 'torch/include/ATen/ops/sort.h' 2025-07-24T05:19:51.4483565Z adding 'torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.4486738Z adding 'torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.4489858Z adding 'torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.4492841Z adding 'torch/include/ATen/ops/sort_cpu_dispatch.h' 2025-07-24T05:19:51.4495960Z adding 'torch/include/ATen/ops/sort_cuda_dispatch.h' 2025-07-24T05:19:51.4498948Z adding 'torch/include/ATen/ops/sort_meta.h' 2025-07-24T05:19:51.4502125Z adding 'torch/include/ATen/ops/sort_meta_dispatch.h' 2025-07-24T05:19:51.4505280Z adding 'torch/include/ATen/ops/sort_native.h' 2025-07-24T05:19:51.4508876Z adding 'torch/include/ATen/ops/sort_ops.h' 2025-07-24T05:19:51.4513765Z adding 'torch/include/ATen/ops/sparse_bsc_tensor.h' 2025-07-24T05:19:51.4517209Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.4520309Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_native.h' 2025-07-24T05:19:51.4523619Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_ops.h' 2025-07-24T05:19:51.4526962Z adding 'torch/include/ATen/ops/sparse_bsr_tensor.h' 2025-07-24T05:19:51.4530290Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.4533245Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_native.h' 2025-07-24T05:19:51.4536525Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_ops.h' 2025-07-24T05:19:51.4540126Z adding 'torch/include/ATen/ops/sparse_compressed_tensor.h' 2025-07-24T05:19:51.4543639Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.4546566Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_native.h' 2025-07-24T05:19:51.4549845Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_ops.h' 2025-07-24T05:19:51.4553616Z adding 'torch/include/ATen/ops/sparse_coo_tensor.h' 2025-07-24T05:19:51.4557045Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.4560386Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.4563372Z adding 'torch/include/ATen/ops/sparse_coo_tensor_native.h' 2025-07-24T05:19:51.4566802Z adding 'torch/include/ATen/ops/sparse_coo_tensor_ops.h' 2025-07-24T05:19:51.4570183Z adding 'torch/include/ATen/ops/sparse_csc_tensor.h' 2025-07-24T05:19:51.4573535Z adding 'torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.4576466Z adding 'torch/include/ATen/ops/sparse_csc_tensor_native.h' 2025-07-24T05:19:51.4579781Z adding 'torch/include/ATen/ops/sparse_csc_tensor_ops.h' 2025-07-24T05:19:51.4583080Z adding 'torch/include/ATen/ops/sparse_csr_tensor.h' 2025-07-24T05:19:51.4586433Z adding 'torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.4589342Z adding 'torch/include/ATen/ops/sparse_csr_tensor_native.h' 2025-07-24T05:19:51.4592631Z adding 'torch/include/ATen/ops/sparse_csr_tensor_ops.h' 2025-07-24T05:19:51.4595602Z adding 'torch/include/ATen/ops/sparse_dim.h' 2025-07-24T05:19:51.4598899Z adding 'torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.4601745Z adding 'torch/include/ATen/ops/sparse_dim_native.h' 2025-07-24T05:19:51.4604894Z adding 'torch/include/ATen/ops/sparse_dim_ops.h' 2025-07-24T05:19:51.4607919Z adding 'torch/include/ATen/ops/sparse_mask.h' 2025-07-24T05:19:51.4612514Z adding 'torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.4615493Z adding 'torch/include/ATen/ops/sparse_mask_native.h' 2025-07-24T05:19:51.4618663Z adding 'torch/include/ATen/ops/sparse_mask_ops.h' 2025-07-24T05:19:51.4621826Z adding 'torch/include/ATen/ops/sparse_resize.h' 2025-07-24T05:19:51.4625009Z adding 'torch/include/ATen/ops/sparse_resize_and_clear.h' 2025-07-24T05:19:51.4628287Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.4631321Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h' 2025-07-24T05:19:51.4634376Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_native.h' 2025-07-24T05:19:51.4637554Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_ops.h' 2025-07-24T05:19:51.4640988Z adding 'torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.4644033Z adding 'torch/include/ATen/ops/sparse_resize_meta_dispatch.h' 2025-07-24T05:19:51.4646929Z adding 'torch/include/ATen/ops/sparse_resize_native.h' 2025-07-24T05:19:51.4650172Z adding 'torch/include/ATen/ops/sparse_resize_ops.h' 2025-07-24T05:19:51.4653346Z adding 'torch/include/ATen/ops/sparse_sampled_addmm.h' 2025-07-24T05:19:51.4656431Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_native.h' 2025-07-24T05:19:51.4659633Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_ops.h' 2025-07-24T05:19:51.4662659Z adding 'torch/include/ATen/ops/special_airy_ai.h' 2025-07-24T05:19:51.4666017Z adding 'torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.4668867Z adding 'torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h' 2025-07-24T05:19:51.4671870Z adding 'torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h' 2025-07-24T05:19:51.4674867Z adding 'torch/include/ATen/ops/special_airy_ai_meta.h' 2025-07-24T05:19:51.4677999Z adding 'torch/include/ATen/ops/special_airy_ai_meta_dispatch.h' 2025-07-24T05:19:51.4681051Z adding 'torch/include/ATen/ops/special_airy_ai_native.h' 2025-07-24T05:19:51.4684185Z adding 'torch/include/ATen/ops/special_airy_ai_ops.h' 2025-07-24T05:19:51.4687239Z adding 'torch/include/ATen/ops/special_bessel_j0.h' 2025-07-24T05:19:51.4690492Z adding 'torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.4693401Z adding 'torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h' 2025-07-24T05:19:51.4696404Z adding 'torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h' 2025-07-24T05:19:51.4699381Z adding 'torch/include/ATen/ops/special_bessel_j0_meta.h' 2025-07-24T05:19:51.4702476Z adding 'torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h' 2025-07-24T05:19:51.4705434Z adding 'torch/include/ATen/ops/special_bessel_j0_native.h' 2025-07-24T05:19:51.4708551Z adding 'torch/include/ATen/ops/special_bessel_j0_ops.h' 2025-07-24T05:19:51.4712796Z adding 'torch/include/ATen/ops/special_bessel_j1.h' 2025-07-24T05:19:51.4716278Z adding 'torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.4719350Z adding 'torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h' 2025-07-24T05:19:51.4722414Z adding 'torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h' 2025-07-24T05:19:51.4725329Z adding 'torch/include/ATen/ops/special_bessel_j1_meta.h' 2025-07-24T05:19:51.4728426Z adding 'torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h' 2025-07-24T05:19:51.4731440Z adding 'torch/include/ATen/ops/special_bessel_j1_native.h' 2025-07-24T05:19:51.4734570Z adding 'torch/include/ATen/ops/special_bessel_j1_ops.h' 2025-07-24T05:19:51.4737606Z adding 'torch/include/ATen/ops/special_bessel_y0.h' 2025-07-24T05:19:51.4740875Z adding 'torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.4743750Z adding 'torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h' 2025-07-24T05:19:51.4746797Z adding 'torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h' 2025-07-24T05:19:51.4749729Z adding 'torch/include/ATen/ops/special_bessel_y0_meta.h' 2025-07-24T05:19:51.4752753Z adding 'torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h' 2025-07-24T05:19:51.4755719Z adding 'torch/include/ATen/ops/special_bessel_y0_native.h' 2025-07-24T05:19:51.4759030Z adding 'torch/include/ATen/ops/special_bessel_y0_ops.h' 2025-07-24T05:19:51.4762084Z adding 'torch/include/ATen/ops/special_bessel_y1.h' 2025-07-24T05:19:51.4765371Z adding 'torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.4768300Z adding 'torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h' 2025-07-24T05:19:51.4771234Z adding 'torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h' 2025-07-24T05:19:51.4774153Z adding 'torch/include/ATen/ops/special_bessel_y1_meta.h' 2025-07-24T05:19:51.4777224Z adding 'torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h' 2025-07-24T05:19:51.4780178Z adding 'torch/include/ATen/ops/special_bessel_y1_native.h' 2025-07-24T05:19:51.4783303Z adding 'torch/include/ATen/ops/special_bessel_y1_ops.h' 2025-07-24T05:19:51.4786568Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t.h' 2025-07-24T05:19:51.4789895Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.4793070Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.4796017Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h' 2025-07-24T05:19:51.4800595Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h' 2025-07-24T05:19:51.4803609Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h' 2025-07-24T05:19:51.4806746Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h' 2025-07-24T05:19:51.4809739Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h' 2025-07-24T05:19:51.4813087Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h' 2025-07-24T05:19:51.4816376Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u.h' 2025-07-24T05:19:51.4819728Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.4822898Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.4825829Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h' 2025-07-24T05:19:51.4828892Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h' 2025-07-24T05:19:51.4831920Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h' 2025-07-24T05:19:51.4834879Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h' 2025-07-24T05:19:51.4837928Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h' 2025-07-24T05:19:51.4841328Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h' 2025-07-24T05:19:51.4844619Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v.h' 2025-07-24T05:19:51.4847929Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.4851131Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.4854021Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h' 2025-07-24T05:19:51.4857137Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h' 2025-07-24T05:19:51.4860040Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h' 2025-07-24T05:19:51.4863081Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h' 2025-07-24T05:19:51.4866049Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h' 2025-07-24T05:19:51.4869418Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h' 2025-07-24T05:19:51.4872746Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w.h' 2025-07-24T05:19:51.4876079Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.4879381Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.4882246Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h' 2025-07-24T05:19:51.4885297Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h' 2025-07-24T05:19:51.4888258Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h' 2025-07-24T05:19:51.4891281Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h' 2025-07-24T05:19:51.4894316Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h' 2025-07-24T05:19:51.4897746Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h' 2025-07-24T05:19:51.4900815Z adding 'torch/include/ATen/ops/special_digamma.h' 2025-07-24T05:19:51.4904024Z adding 'torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.4906791Z adding 'torch/include/ATen/ops/special_digamma_native.h' 2025-07-24T05:19:51.4909859Z adding 'torch/include/ATen/ops/special_digamma_ops.h' 2025-07-24T05:19:51.4912997Z adding 'torch/include/ATen/ops/special_entr.h' 2025-07-24T05:19:51.4916302Z adding 'torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.4919408Z adding 'torch/include/ATen/ops/special_entr_cpu_dispatch.h' 2025-07-24T05:19:51.4922508Z adding 'torch/include/ATen/ops/special_entr_cuda_dispatch.h' 2025-07-24T05:19:51.4925348Z adding 'torch/include/ATen/ops/special_entr_meta.h' 2025-07-24T05:19:51.4928390Z adding 'torch/include/ATen/ops/special_entr_meta_dispatch.h' 2025-07-24T05:19:51.4931325Z adding 'torch/include/ATen/ops/special_entr_native.h' 2025-07-24T05:19:51.4934450Z adding 'torch/include/ATen/ops/special_entr_ops.h' 2025-07-24T05:19:51.4937485Z adding 'torch/include/ATen/ops/special_erf.h' 2025-07-24T05:19:51.4940681Z adding 'torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.4943479Z adding 'torch/include/ATen/ops/special_erf_native.h' 2025-07-24T05:19:51.4946609Z adding 'torch/include/ATen/ops/special_erf_ops.h' 2025-07-24T05:19:51.4949683Z adding 'torch/include/ATen/ops/special_erfc.h' 2025-07-24T05:19:51.4952859Z adding 'torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.4957412Z adding 'torch/include/ATen/ops/special_erfc_native.h' 2025-07-24T05:19:51.4961423Z adding 'torch/include/ATen/ops/special_erfc_ops.h' 2025-07-24T05:19:51.4965584Z adding 'torch/include/ATen/ops/special_erfcx.h' 2025-07-24T05:19:51.4968996Z adding 'torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.4971891Z adding 'torch/include/ATen/ops/special_erfcx_cpu_dispatch.h' 2025-07-24T05:19:51.4975031Z adding 'torch/include/ATen/ops/special_erfcx_cuda_dispatch.h' 2025-07-24T05:19:51.4978003Z adding 'torch/include/ATen/ops/special_erfcx_meta.h' 2025-07-24T05:19:51.4981129Z adding 'torch/include/ATen/ops/special_erfcx_meta_dispatch.h' 2025-07-24T05:19:51.4984044Z adding 'torch/include/ATen/ops/special_erfcx_native.h' 2025-07-24T05:19:51.4987152Z adding 'torch/include/ATen/ops/special_erfcx_ops.h' 2025-07-24T05:19:51.4990779Z adding 'torch/include/ATen/ops/special_erfinv.h' 2025-07-24T05:19:51.4994042Z adding 'torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.4996882Z adding 'torch/include/ATen/ops/special_erfinv_native.h' 2025-07-24T05:19:51.5000119Z adding 'torch/include/ATen/ops/special_erfinv_ops.h' 2025-07-24T05:19:51.5003208Z adding 'torch/include/ATen/ops/special_exp2.h' 2025-07-24T05:19:51.5006469Z adding 'torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.5009340Z adding 'torch/include/ATen/ops/special_exp2_native.h' 2025-07-24T05:19:51.5012442Z adding 'torch/include/ATen/ops/special_exp2_ops.h' 2025-07-24T05:19:51.5015515Z adding 'torch/include/ATen/ops/special_expit.h' 2025-07-24T05:19:51.5018763Z adding 'torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.5021588Z adding 'torch/include/ATen/ops/special_expit_native.h' 2025-07-24T05:19:51.5024956Z adding 'torch/include/ATen/ops/special_expit_ops.h' 2025-07-24T05:19:51.5028129Z adding 'torch/include/ATen/ops/special_expm1.h' 2025-07-24T05:19:51.5031464Z adding 'torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.5034281Z adding 'torch/include/ATen/ops/special_expm1_native.h' 2025-07-24T05:19:51.5037418Z adding 'torch/include/ATen/ops/special_expm1_ops.h' 2025-07-24T05:19:51.5040636Z adding 'torch/include/ATen/ops/special_gammainc.h' 2025-07-24T05:19:51.5043937Z adding 'torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.5046791Z adding 'torch/include/ATen/ops/special_gammainc_native.h' 2025-07-24T05:19:51.5049910Z adding 'torch/include/ATen/ops/special_gammainc_ops.h' 2025-07-24T05:19:51.5052981Z adding 'torch/include/ATen/ops/special_gammaincc.h' 2025-07-24T05:19:51.5057656Z adding 'torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.5060643Z adding 'torch/include/ATen/ops/special_gammaincc_native.h' 2025-07-24T05:19:51.5063831Z adding 'torch/include/ATen/ops/special_gammaincc_ops.h' 2025-07-24T05:19:51.5066813Z adding 'torch/include/ATen/ops/special_gammaln.h' 2025-07-24T05:19:51.5070077Z adding 'torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.5072894Z adding 'torch/include/ATen/ops/special_gammaln_native.h' 2025-07-24T05:19:51.5075996Z adding 'torch/include/ATen/ops/special_gammaln_ops.h' 2025-07-24T05:19:51.5079405Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h.h' 2025-07-24T05:19:51.5082830Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.5086091Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5089095Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h' 2025-07-24T05:19:51.5092189Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h' 2025-07-24T05:19:51.5095173Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta.h' 2025-07-24T05:19:51.5098273Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h' 2025-07-24T05:19:51.5101266Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_native.h' 2025-07-24T05:19:51.5104647Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_ops.h' 2025-07-24T05:19:51.5107998Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he.h' 2025-07-24T05:19:51.5111330Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.5114526Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5117435Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h' 2025-07-24T05:19:51.5120653Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h' 2025-07-24T05:19:51.5123591Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta.h' 2025-07-24T05:19:51.5126814Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h' 2025-07-24T05:19:51.5129870Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_native.h' 2025-07-24T05:19:51.5133226Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_ops.h' 2025-07-24T05:19:51.5136292Z adding 'torch/include/ATen/ops/special_i0.h' 2025-07-24T05:19:51.5139512Z adding 'torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.5142322Z adding 'torch/include/ATen/ops/special_i0_native.h' 2025-07-24T05:19:51.5145462Z adding 'torch/include/ATen/ops/special_i0_ops.h' 2025-07-24T05:19:51.5148492Z adding 'torch/include/ATen/ops/special_i0e.h' 2025-07-24T05:19:51.5152156Z adding 'torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5155077Z adding 'torch/include/ATen/ops/special_i0e_cpu_dispatch.h' 2025-07-24T05:19:51.5167027Z adding 'torch/include/ATen/ops/special_i0e_cuda_dispatch.h' 2025-07-24T05:19:51.5210432Z adding 'torch/include/ATen/ops/special_i0e_meta.h' 2025-07-24T05:19:51.5213732Z adding 'torch/include/ATen/ops/special_i0e_meta_dispatch.h' 2025-07-24T05:19:51.5218458Z adding 'torch/include/ATen/ops/special_i0e_native.h' 2025-07-24T05:19:51.5223298Z adding 'torch/include/ATen/ops/special_i0e_ops.h' 2025-07-24T05:19:51.5226501Z adding 'torch/include/ATen/ops/special_i1.h' 2025-07-24T05:19:51.5231614Z adding 'torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5236245Z adding 'torch/include/ATen/ops/special_i1_cpu_dispatch.h' 2025-07-24T05:19:51.5239572Z adding 'torch/include/ATen/ops/special_i1_cuda_dispatch.h' 2025-07-24T05:19:51.5242589Z adding 'torch/include/ATen/ops/special_i1_meta.h' 2025-07-24T05:19:51.5247380Z adding 'torch/include/ATen/ops/special_i1_meta_dispatch.h' 2025-07-24T05:19:51.5250446Z adding 'torch/include/ATen/ops/special_i1_native.h' 2025-07-24T05:19:51.5253626Z adding 'torch/include/ATen/ops/special_i1_ops.h' 2025-07-24T05:19:51.5256643Z adding 'torch/include/ATen/ops/special_i1e.h' 2025-07-24T05:19:51.5259933Z adding 'torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5264637Z adding 'torch/include/ATen/ops/special_i1e_cpu_dispatch.h' 2025-07-24T05:19:51.5267794Z adding 'torch/include/ATen/ops/special_i1e_cuda_dispatch.h' 2025-07-24T05:19:51.5270795Z adding 'torch/include/ATen/ops/special_i1e_meta.h' 2025-07-24T05:19:51.5273853Z adding 'torch/include/ATen/ops/special_i1e_meta_dispatch.h' 2025-07-24T05:19:51.5276791Z adding 'torch/include/ATen/ops/special_i1e_native.h' 2025-07-24T05:19:51.5280035Z adding 'torch/include/ATen/ops/special_i1e_ops.h' 2025-07-24T05:19:51.5283328Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l.h' 2025-07-24T05:19:51.5286662Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.5289855Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5293988Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h' 2025-07-24T05:19:51.5297231Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h' 2025-07-24T05:19:51.5301611Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h' 2025-07-24T05:19:51.5304778Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h' 2025-07-24T05:19:51.5307781Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_native.h' 2025-07-24T05:19:51.5311131Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h' 2025-07-24T05:19:51.5314424Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p.h' 2025-07-24T05:19:51.5317786Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.5321065Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5323949Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h' 2025-07-24T05:19:51.5326965Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h' 2025-07-24T05:19:51.5329909Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta.h' 2025-07-24T05:19:51.5332964Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h' 2025-07-24T05:19:51.5335971Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_native.h' 2025-07-24T05:19:51.5339363Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_ops.h' 2025-07-24T05:19:51.5342455Z adding 'torch/include/ATen/ops/special_log1p.h' 2025-07-24T05:19:51.5345728Z adding 'torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.5348633Z adding 'torch/include/ATen/ops/special_log1p_native.h' 2025-07-24T05:19:51.5353265Z adding 'torch/include/ATen/ops/special_log1p_ops.h' 2025-07-24T05:19:51.5356368Z adding 'torch/include/ATen/ops/special_log_ndtr.h' 2025-07-24T05:19:51.5359841Z adding 'torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5362659Z adding 'torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h' 2025-07-24T05:19:51.5365716Z adding 'torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h' 2025-07-24T05:19:51.5368670Z adding 'torch/include/ATen/ops/special_log_ndtr_meta.h' 2025-07-24T05:19:51.5371729Z adding 'torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h' 2025-07-24T05:19:51.5374697Z adding 'torch/include/ATen/ops/special_log_ndtr_native.h' 2025-07-24T05:19:51.5377805Z adding 'torch/include/ATen/ops/special_log_ndtr_ops.h' 2025-07-24T05:19:51.5380865Z adding 'torch/include/ATen/ops/special_log_softmax.h' 2025-07-24T05:19:51.5384094Z adding 'torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.5386923Z adding 'torch/include/ATen/ops/special_log_softmax_native.h' 2025-07-24T05:19:51.5390055Z adding 'torch/include/ATen/ops/special_log_softmax_ops.h' 2025-07-24T05:19:51.5393063Z adding 'torch/include/ATen/ops/special_logit.h' 2025-07-24T05:19:51.5396290Z adding 'torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.5399300Z adding 'torch/include/ATen/ops/special_logit_native.h' 2025-07-24T05:19:51.5402439Z adding 'torch/include/ATen/ops/special_logit_ops.h' 2025-07-24T05:19:51.5405522Z adding 'torch/include/ATen/ops/special_logsumexp.h' 2025-07-24T05:19:51.5408772Z adding 'torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.5411636Z adding 'torch/include/ATen/ops/special_logsumexp_native.h' 2025-07-24T05:19:51.5414788Z adding 'torch/include/ATen/ops/special_logsumexp_ops.h' 2025-07-24T05:19:51.5418242Z adding 'torch/include/ATen/ops/special_modified_bessel_i0.h' 2025-07-24T05:19:51.5421577Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5424476Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h' 2025-07-24T05:19:51.5427509Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h' 2025-07-24T05:19:51.5430444Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta.h' 2025-07-24T05:19:51.5433587Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h' 2025-07-24T05:19:51.5436550Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_native.h' 2025-07-24T05:19:51.5439797Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_ops.h' 2025-07-24T05:19:51.5442865Z adding 'torch/include/ATen/ops/special_modified_bessel_i1.h' 2025-07-24T05:19:51.5446163Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5449093Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h' 2025-07-24T05:19:51.5453617Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h' 2025-07-24T05:19:51.5457899Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta.h' 2025-07-24T05:19:51.5461160Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h' 2025-07-24T05:19:51.5465538Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_native.h' 2025-07-24T05:19:51.5470117Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_ops.h' 2025-07-24T05:19:51.5473312Z adding 'torch/include/ATen/ops/special_modified_bessel_k0.h' 2025-07-24T05:19:51.5478136Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5482402Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h' 2025-07-24T05:19:51.5485589Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h' 2025-07-24T05:19:51.5490024Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta.h' 2025-07-24T05:19:51.5494480Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h' 2025-07-24T05:19:51.5497602Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_native.h' 2025-07-24T05:19:51.5502173Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_ops.h' 2025-07-24T05:19:51.5506680Z adding 'torch/include/ATen/ops/special_modified_bessel_k1.h' 2025-07-24T05:19:51.5510168Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5514460Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h' 2025-07-24T05:19:51.5519004Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h' 2025-07-24T05:19:51.5523264Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta.h' 2025-07-24T05:19:51.5526574Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h' 2025-07-24T05:19:51.5530931Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_native.h' 2025-07-24T05:19:51.5535455Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_ops.h' 2025-07-24T05:19:51.5538665Z adding 'torch/include/ATen/ops/special_multigammaln.h' 2025-07-24T05:19:51.5543366Z adding 'torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.5547561Z adding 'torch/include/ATen/ops/special_multigammaln_native.h' 2025-07-24T05:19:51.5550850Z adding 'torch/include/ATen/ops/special_multigammaln_ops.h' 2025-07-24T05:19:51.5555338Z adding 'torch/include/ATen/ops/special_ndtr.h' 2025-07-24T05:19:51.5559950Z adding 'torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.5562917Z adding 'torch/include/ATen/ops/special_ndtr_native.h' 2025-07-24T05:19:51.5567521Z adding 'torch/include/ATen/ops/special_ndtr_ops.h' 2025-07-24T05:19:51.5571945Z adding 'torch/include/ATen/ops/special_ndtri.h' 2025-07-24T05:19:51.5575678Z adding 'torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5579967Z adding 'torch/include/ATen/ops/special_ndtri_cpu_dispatch.h' 2025-07-24T05:19:51.5584406Z adding 'torch/include/ATen/ops/special_ndtri_cuda_dispatch.h' 2025-07-24T05:19:51.5588285Z adding 'torch/include/ATen/ops/special_ndtri_meta.h' 2025-07-24T05:19:51.5591970Z adding 'torch/include/ATen/ops/special_ndtri_meta_dispatch.h' 2025-07-24T05:19:51.5596278Z adding 'torch/include/ATen/ops/special_ndtri_native.h' 2025-07-24T05:19:51.5600835Z adding 'torch/include/ATen/ops/special_ndtri_ops.h' 2025-07-24T05:19:51.5604116Z adding 'torch/include/ATen/ops/special_polygamma.h' 2025-07-24T05:19:51.5608900Z adding 'torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.5613042Z adding 'torch/include/ATen/ops/special_polygamma_native.h' 2025-07-24T05:19:51.5616322Z adding 'torch/include/ATen/ops/special_polygamma_ops.h' 2025-07-24T05:19:51.5620764Z adding 'torch/include/ATen/ops/special_psi.h' 2025-07-24T05:19:51.5625374Z adding 'torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.5628326Z adding 'torch/include/ATen/ops/special_psi_native.h' 2025-07-24T05:19:51.5632860Z adding 'torch/include/ATen/ops/special_psi_ops.h' 2025-07-24T05:19:51.5637637Z adding 'torch/include/ATen/ops/special_round.h' 2025-07-24T05:19:51.5642388Z adding 'torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.5645445Z adding 'torch/include/ATen/ops/special_round_native.h' 2025-07-24T05:19:51.5665883Z adding 'torch/include/ATen/ops/special_round_ops.h' 2025-07-24T05:19:51.5670798Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0.h' 2025-07-24T05:19:51.5674319Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5679175Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h' 2025-07-24T05:19:51.5683987Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h' 2025-07-24T05:19:51.5687177Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h' 2025-07-24T05:19:51.5692090Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h' 2025-07-24T05:19:51.5695107Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h' 2025-07-24T05:19:51.5698233Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h' 2025-07-24T05:19:51.5703150Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1.h' 2025-07-24T05:19:51.5706625Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5709533Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h' 2025-07-24T05:19:51.5712604Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h' 2025-07-24T05:19:51.5717290Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h' 2025-07-24T05:19:51.5720694Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h' 2025-07-24T05:19:51.5723724Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h' 2025-07-24T05:19:51.5726796Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h' 2025-07-24T05:19:51.5730049Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h' 2025-07-24T05:19:51.5733528Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.5736690Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5739736Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h' 2025-07-24T05:19:51.5742779Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h' 2025-07-24T05:19:51.5745726Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h' 2025-07-24T05:19:51.5750276Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h' 2025-07-24T05:19:51.5753339Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h' 2025-07-24T05:19:51.5756712Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h' 2025-07-24T05:19:51.5760230Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h' 2025-07-24T05:19:51.5763619Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.5766828Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5769763Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h' 2025-07-24T05:19:51.5772831Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h' 2025-07-24T05:19:51.5775781Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h' 2025-07-24T05:19:51.5778893Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h' 2025-07-24T05:19:51.5781875Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h' 2025-07-24T05:19:51.5785254Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h' 2025-07-24T05:19:51.5788598Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h' 2025-07-24T05:19:51.5791921Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.5795102Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5798064Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h' 2025-07-24T05:19:51.5801180Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h' 2025-07-24T05:19:51.5805631Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h' 2025-07-24T05:19:51.5808928Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h' 2025-07-24T05:19:51.5811964Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h' 2025-07-24T05:19:51.5815346Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h' 2025-07-24T05:19:51.5818679Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h' 2025-07-24T05:19:51.5822012Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.5825852Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5828821Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h' 2025-07-24T05:19:51.5831990Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h' 2025-07-24T05:19:51.5834912Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h' 2025-07-24T05:19:51.5838032Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h' 2025-07-24T05:19:51.5841108Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h' 2025-07-24T05:19:51.5844525Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h' 2025-07-24T05:19:51.5847491Z adding 'torch/include/ATen/ops/special_sinc.h' 2025-07-24T05:19:51.5851069Z adding 'torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.5853985Z adding 'torch/include/ATen/ops/special_sinc_native.h' 2025-07-24T05:19:51.5857111Z adding 'torch/include/ATen/ops/special_sinc_ops.h' 2025-07-24T05:19:51.5860192Z adding 'torch/include/ATen/ops/special_softmax.h' 2025-07-24T05:19:51.5863426Z adding 'torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.5866296Z adding 'torch/include/ATen/ops/special_softmax_native.h' 2025-07-24T05:19:51.5869381Z adding 'torch/include/ATen/ops/special_softmax_ops.h' 2025-07-24T05:19:51.5872472Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0.h' 2025-07-24T05:19:51.5875775Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5878773Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h' 2025-07-24T05:19:51.5882131Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h' 2025-07-24T05:19:51.5885068Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta.h' 2025-07-24T05:19:51.5888139Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h' 2025-07-24T05:19:51.5891084Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_native.h' 2025-07-24T05:19:51.5894168Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_ops.h' 2025-07-24T05:19:51.5897314Z adding 'torch/include/ATen/ops/special_xlog1py.h' 2025-07-24T05:19:51.5900593Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.5904683Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5908148Z adding 'torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h' 2025-07-24T05:19:51.5911272Z adding 'torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h' 2025-07-24T05:19:51.5914227Z adding 'torch/include/ATen/ops/special_xlog1py_meta.h' 2025-07-24T05:19:51.5917308Z adding 'torch/include/ATen/ops/special_xlog1py_meta_dispatch.h' 2025-07-24T05:19:51.5920402Z adding 'torch/include/ATen/ops/special_xlog1py_native.h' 2025-07-24T05:19:51.5923753Z adding 'torch/include/ATen/ops/special_xlog1py_ops.h' 2025-07-24T05:19:51.5927050Z adding 'torch/include/ATen/ops/special_xlogy.h' 2025-07-24T05:19:51.5930388Z adding 'torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.5933268Z adding 'torch/include/ATen/ops/special_xlogy_native.h' 2025-07-24T05:19:51.5936645Z adding 'torch/include/ATen/ops/special_xlogy_ops.h' 2025-07-24T05:19:51.5939834Z adding 'torch/include/ATen/ops/special_zeta.h' 2025-07-24T05:19:51.5943118Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.5946276Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5949173Z adding 'torch/include/ATen/ops/special_zeta_cpu_dispatch.h' 2025-07-24T05:19:51.5952220Z adding 'torch/include/ATen/ops/special_zeta_cuda_dispatch.h' 2025-07-24T05:19:51.5955158Z adding 'torch/include/ATen/ops/special_zeta_meta.h' 2025-07-24T05:19:51.5958348Z adding 'torch/include/ATen/ops/special_zeta_meta_dispatch.h' 2025-07-24T05:19:51.5961375Z adding 'torch/include/ATen/ops/special_zeta_native.h' 2025-07-24T05:19:51.5964746Z adding 'torch/include/ATen/ops/special_zeta_ops.h' 2025-07-24T05:19:51.5968169Z adding 'torch/include/ATen/ops/split.h' 2025-07-24T05:19:51.5971406Z adding 'torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.5974491Z adding 'torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.5977710Z adding 'torch/include/ATen/ops/split_copy.h' 2025-07-24T05:19:51.5981027Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.5984249Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.5987019Z adding 'torch/include/ATen/ops/split_copy_native.h' 2025-07-24T05:19:51.5990173Z adding 'torch/include/ATen/ops/split_copy_ops.h' 2025-07-24T05:19:51.5993181Z adding 'torch/include/ATen/ops/split_native.h' 2025-07-24T05:19:51.5996290Z adding 'torch/include/ATen/ops/split_ops.h' 2025-07-24T05:19:51.5999586Z adding 'torch/include/ATen/ops/split_with_sizes.h' 2025-07-24T05:19:51.6002895Z adding 'torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.6007850Z adding 'torch/include/ATen/ops/split_with_sizes_copy.h' 2025-07-24T05:19:51.6011385Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.6014560Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.6017476Z adding 'torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h' 2025-07-24T05:19:51.6029579Z adding 'torch/include/ATen/ops/split_with_sizes_copy_native.h' 2025-07-24T05:19:51.6029900Z adding 'torch/include/ATen/ops/split_with_sizes_copy_ops.h' 2025-07-24T05:19:51.6030058Z adding 'torch/include/ATen/ops/split_with_sizes_native.h' 2025-07-24T05:19:51.6030312Z adding 'torch/include/ATen/ops/split_with_sizes_ops.h' 2025-07-24T05:19:51.6032745Z adding 'torch/include/ATen/ops/sqrt.h' 2025-07-24T05:19:51.6035953Z adding 'torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.6038944Z adding 'torch/include/ATen/ops/sqrt_cpu_dispatch.h' 2025-07-24T05:19:51.6042011Z adding 'torch/include/ATen/ops/sqrt_cuda_dispatch.h' 2025-07-24T05:19:51.6044939Z adding 'torch/include/ATen/ops/sqrt_meta.h' 2025-07-24T05:19:51.6048026Z adding 'torch/include/ATen/ops/sqrt_meta_dispatch.h' 2025-07-24T05:19:51.6051051Z adding 'torch/include/ATen/ops/sqrt_native.h' 2025-07-24T05:19:51.6054185Z adding 'torch/include/ATen/ops/sqrt_ops.h' 2025-07-24T05:19:51.6057278Z adding 'torch/include/ATen/ops/square.h' 2025-07-24T05:19:51.6060503Z adding 'torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6063330Z adding 'torch/include/ATen/ops/square_native.h' 2025-07-24T05:19:51.6066460Z adding 'torch/include/ATen/ops/square_ops.h' 2025-07-24T05:19:51.6069565Z adding 'torch/include/ATen/ops/squeeze.h' 2025-07-24T05:19:51.6072808Z adding 'torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.6075895Z adding 'torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6079112Z adding 'torch/include/ATen/ops/squeeze_copy.h' 2025-07-24T05:19:51.6082345Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.6085509Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.6088329Z adding 'torch/include/ATen/ops/squeeze_copy_native.h' 2025-07-24T05:19:51.6091665Z adding 'torch/include/ATen/ops/squeeze_copy_ops.h' 2025-07-24T05:19:51.6094786Z adding 'torch/include/ATen/ops/squeeze_native.h' 2025-07-24T05:19:51.6098204Z adding 'torch/include/ATen/ops/squeeze_ops.h' 2025-07-24T05:19:51.6101399Z adding 'torch/include/ATen/ops/sspaddmm.h' 2025-07-24T05:19:51.6104618Z adding 'torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6120650Z adding 'torch/include/ATen/ops/sspaddmm_cpu_dispatch.h' 2025-07-24T05:19:51.6151723Z adding 'torch/include/ATen/ops/sspaddmm_cuda_dispatch.h' 2025-07-24T05:19:51.6154818Z adding 'torch/include/ATen/ops/sspaddmm_native.h' 2025-07-24T05:19:51.6159603Z adding 'torch/include/ATen/ops/sspaddmm_ops.h' 2025-07-24T05:19:51.6174515Z adding 'torch/include/ATen/ops/stack.h' 2025-07-24T05:19:51.6179490Z adding 'torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.6182596Z adding 'torch/include/ATen/ops/stack_native.h' 2025-07-24T05:19:51.6187473Z adding 'torch/include/ATen/ops/stack_ops.h' 2025-07-24T05:19:51.6192653Z adding 'torch/include/ATen/ops/std.h' 2025-07-24T05:19:51.6196299Z adding 'torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6201220Z adding 'torch/include/ATen/ops/std_cpu_dispatch.h' 2025-07-24T05:19:51.6204371Z adding 'torch/include/ATen/ops/std_cuda_dispatch.h' 2025-07-24T05:19:51.6207679Z adding 'torch/include/ATen/ops/std_mean.h' 2025-07-24T05:19:51.6212787Z adding 'torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.6215940Z adding 'torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6218942Z adding 'torch/include/ATen/ops/std_mean_cpu_dispatch.h' 2025-07-24T05:19:51.6221976Z adding 'torch/include/ATen/ops/std_mean_cuda_dispatch.h' 2025-07-24T05:19:51.6226779Z adding 'torch/include/ATen/ops/std_mean_native.h' 2025-07-24T05:19:51.6230447Z adding 'torch/include/ATen/ops/std_mean_ops.h' 2025-07-24T05:19:51.6233752Z adding 'torch/include/ATen/ops/std_native.h' 2025-07-24T05:19:51.6237436Z adding 'torch/include/ATen/ops/std_ops.h' 2025-07-24T05:19:51.6240957Z adding 'torch/include/ATen/ops/stft.h' 2025-07-24T05:19:51.6244317Z adding 'torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6247264Z adding 'torch/include/ATen/ops/stft_native.h' 2025-07-24T05:19:51.6250585Z adding 'torch/include/ATen/ops/stft_ops.h' 2025-07-24T05:19:51.6253708Z adding 'torch/include/ATen/ops/stride.h' 2025-07-24T05:19:51.6258251Z adding 'torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6261305Z adding 'torch/include/ATen/ops/stride_native.h' 2025-07-24T05:19:51.6264460Z adding 'torch/include/ATen/ops/stride_ops.h' 2025-07-24T05:19:51.6267676Z adding 'torch/include/ATen/ops/sub.h' 2025-07-24T05:19:51.6270951Z adding 'torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.6274078Z adding 'torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.6277058Z adding 'torch/include/ATen/ops/sub_cpu_dispatch.h' 2025-07-24T05:19:51.6280300Z adding 'torch/include/ATen/ops/sub_cuda_dispatch.h' 2025-07-24T05:19:51.6283276Z adding 'torch/include/ATen/ops/sub_meta.h' 2025-07-24T05:19:51.6286361Z adding 'torch/include/ATen/ops/sub_meta_dispatch.h' 2025-07-24T05:19:51.6289429Z adding 'torch/include/ATen/ops/sub_native.h' 2025-07-24T05:19:51.6292828Z adding 'torch/include/ATen/ops/sub_ops.h' 2025-07-24T05:19:51.6296051Z adding 'torch/include/ATen/ops/subtract.h' 2025-07-24T05:19:51.6299377Z adding 'torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6302221Z adding 'torch/include/ATen/ops/subtract_native.h' 2025-07-24T05:19:51.6305587Z adding 'torch/include/ATen/ops/subtract_ops.h' 2025-07-24T05:19:51.6309978Z adding 'torch/include/ATen/ops/sum.h' 2025-07-24T05:19:51.6313305Z adding 'torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.6316458Z adding 'torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.6319617Z adding 'torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6322972Z adding 'torch/include/ATen/ops/sum_cpu_dispatch.h' 2025-07-24T05:19:51.6326089Z adding 'torch/include/ATen/ops/sum_cuda_dispatch.h' 2025-07-24T05:19:51.6329110Z adding 'torch/include/ATen/ops/sum_meta.h' 2025-07-24T05:19:51.6332207Z adding 'torch/include/ATen/ops/sum_meta_dispatch.h' 2025-07-24T05:19:51.6335371Z adding 'torch/include/ATen/ops/sum_native.h' 2025-07-24T05:19:51.6338766Z adding 'torch/include/ATen/ops/sum_ops.h' 2025-07-24T05:19:51.6342017Z adding 'torch/include/ATen/ops/sum_to_size.h' 2025-07-24T05:19:51.6345230Z adding 'torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6348060Z adding 'torch/include/ATen/ops/sum_to_size_native.h' 2025-07-24T05:19:51.6351132Z adding 'torch/include/ATen/ops/sum_to_size_ops.h' 2025-07-24T05:19:51.6354230Z adding 'torch/include/ATen/ops/svd.h' 2025-07-24T05:19:51.6357473Z adding 'torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6360507Z adding 'torch/include/ATen/ops/svd_native.h' 2025-07-24T05:19:51.6363727Z adding 'torch/include/ATen/ops/svd_ops.h' 2025-07-24T05:19:51.6366746Z adding 'torch/include/ATen/ops/swapaxes.h' 2025-07-24T05:19:51.6369915Z adding 'torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6372719Z adding 'torch/include/ATen/ops/swapaxes_native.h' 2025-07-24T05:19:51.6375864Z adding 'torch/include/ATen/ops/swapaxes_ops.h' 2025-07-24T05:19:51.6378884Z adding 'torch/include/ATen/ops/swapdims.h' 2025-07-24T05:19:51.6382093Z adding 'torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6384882Z adding 'torch/include/ATen/ops/swapdims_native.h' 2025-07-24T05:19:51.6387998Z adding 'torch/include/ATen/ops/swapdims_ops.h' 2025-07-24T05:19:51.6391067Z adding 'torch/include/ATen/ops/sym_constrain_range.h' 2025-07-24T05:19:51.6394269Z adding 'torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.6397193Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size.h' 2025-07-24T05:19:51.6400543Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.6403409Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_native.h' 2025-07-24T05:19:51.6406511Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_ops.h' 2025-07-24T05:19:51.6409446Z adding 'torch/include/ATen/ops/sym_constrain_range_native.h' 2025-07-24T05:19:51.6412516Z adding 'torch/include/ATen/ops/sym_constrain_range_ops.h' 2025-07-24T05:19:51.6415465Z adding 'torch/include/ATen/ops/sym_numel.h' 2025-07-24T05:19:51.6418608Z adding 'torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6421397Z adding 'torch/include/ATen/ops/sym_numel_native.h' 2025-07-24T05:19:51.6424462Z adding 'torch/include/ATen/ops/sym_numel_ops.h' 2025-07-24T05:19:51.6427520Z adding 'torch/include/ATen/ops/sym_size.h' 2025-07-24T05:19:51.6430694Z adding 'torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6433523Z adding 'torch/include/ATen/ops/sym_size_native.h' 2025-07-24T05:19:51.6436559Z adding 'torch/include/ATen/ops/sym_size_ops.h' 2025-07-24T05:19:51.6439667Z adding 'torch/include/ATen/ops/sym_storage_offset.h' 2025-07-24T05:19:51.6442921Z adding 'torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6445752Z adding 'torch/include/ATen/ops/sym_storage_offset_native.h' 2025-07-24T05:19:51.6448703Z adding 'torch/include/ATen/ops/sym_storage_offset_ops.h' 2025-07-24T05:19:51.6451646Z adding 'torch/include/ATen/ops/sym_stride.h' 2025-07-24T05:19:51.6454828Z adding 'torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6457705Z adding 'torch/include/ATen/ops/sym_stride_native.h' 2025-07-24T05:19:51.6460729Z adding 'torch/include/ATen/ops/sym_stride_ops.h' 2025-07-24T05:19:51.6465206Z adding 'torch/include/ATen/ops/t.h' 2025-07-24T05:19:51.6468375Z adding 'torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.6471587Z adding 'torch/include/ATen/ops/t_copy.h' 2025-07-24T05:19:51.6474536Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.6477918Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.6480691Z adding 'torch/include/ATen/ops/t_copy_native.h' 2025-07-24T05:19:51.6483810Z adding 'torch/include/ATen/ops/t_copy_ops.h' 2025-07-24T05:19:51.6486743Z adding 'torch/include/ATen/ops/t_native.h' 2025-07-24T05:19:51.6489866Z adding 'torch/include/ATen/ops/t_ops.h' 2025-07-24T05:19:51.6492912Z adding 'torch/include/ATen/ops/take.h' 2025-07-24T05:19:51.6496035Z adding 'torch/include/ATen/ops/take_along_dim.h' 2025-07-24T05:19:51.6499586Z adding 'torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6502466Z adding 'torch/include/ATen/ops/take_along_dim_native.h' 2025-07-24T05:19:51.6505662Z adding 'torch/include/ATen/ops/take_along_dim_ops.h' 2025-07-24T05:19:51.6508773Z adding 'torch/include/ATen/ops/take_cpu_dispatch.h' 2025-07-24T05:19:51.6511782Z adding 'torch/include/ATen/ops/take_cuda_dispatch.h' 2025-07-24T05:19:51.6514717Z adding 'torch/include/ATen/ops/take_native.h' 2025-07-24T05:19:51.6517911Z adding 'torch/include/ATen/ops/take_ops.h' 2025-07-24T05:19:51.6521054Z adding 'torch/include/ATen/ops/tan.h' 2025-07-24T05:19:51.6524318Z adding 'torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.6527212Z adding 'torch/include/ATen/ops/tan_cpu_dispatch.h' 2025-07-24T05:19:51.6530222Z adding 'torch/include/ATen/ops/tan_cuda_dispatch.h' 2025-07-24T05:19:51.6533214Z adding 'torch/include/ATen/ops/tan_meta.h' 2025-07-24T05:19:51.6536281Z adding 'torch/include/ATen/ops/tan_meta_dispatch.h' 2025-07-24T05:19:51.6539239Z adding 'torch/include/ATen/ops/tan_native.h' 2025-07-24T05:19:51.6542406Z adding 'torch/include/ATen/ops/tan_ops.h' 2025-07-24T05:19:51.6545486Z adding 'torch/include/ATen/ops/tanh.h' 2025-07-24T05:19:51.6548582Z adding 'torch/include/ATen/ops/tanh_backward.h' 2025-07-24T05:19:51.6551878Z adding 'torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.6554835Z adding 'torch/include/ATen/ops/tanh_backward_cpu_dispatch.h' 2025-07-24T05:19:51.6558014Z adding 'torch/include/ATen/ops/tanh_backward_cuda_dispatch.h' 2025-07-24T05:19:51.6561012Z adding 'torch/include/ATen/ops/tanh_backward_meta.h' 2025-07-24T05:19:51.6564112Z adding 'torch/include/ATen/ops/tanh_backward_meta_dispatch.h' 2025-07-24T05:19:51.6568482Z adding 'torch/include/ATen/ops/tanh_backward_native.h' 2025-07-24T05:19:51.6572980Z adding 'torch/include/ATen/ops/tanh_backward_ops.h' 2025-07-24T05:19:51.6577211Z adding 'torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.6580709Z adding 'torch/include/ATen/ops/tanh_cpu_dispatch.h' 2025-07-24T05:19:51.6585139Z adding 'torch/include/ATen/ops/tanh_cuda_dispatch.h' 2025-07-24T05:19:51.6589385Z adding 'torch/include/ATen/ops/tanh_meta.h' 2025-07-24T05:19:51.6592684Z adding 'torch/include/ATen/ops/tanh_meta_dispatch.h' 2025-07-24T05:19:51.6597148Z adding 'torch/include/ATen/ops/tanh_native.h' 2025-07-24T05:19:51.6601830Z adding 'torch/include/ATen/ops/tanh_ops.h' 2025-07-24T05:19:51.6605195Z adding 'torch/include/ATen/ops/tensor.h' 2025-07-24T05:19:51.6609895Z adding 'torch/include/ATen/ops/tensor_split.h' 2025-07-24T05:19:51.6614593Z adding 'torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6617633Z adding 'torch/include/ATen/ops/tensor_split_native.h' 2025-07-24T05:19:51.6622395Z adding 'torch/include/ATen/ops/tensor_split_ops.h' 2025-07-24T05:19:51.6626955Z adding 'torch/include/ATen/ops/tensordot.h' 2025-07-24T05:19:51.6632231Z adding 'torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6635236Z adding 'torch/include/ATen/ops/tensordot_native.h' 2025-07-24T05:19:51.6639966Z adding 'torch/include/ATen/ops/tensordot_ops.h' 2025-07-24T05:19:51.6644798Z adding 'torch/include/ATen/ops/thnn_conv2d.h' 2025-07-24T05:19:51.6649729Z adding 'torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6652912Z adding 'torch/include/ATen/ops/thnn_conv2d_native.h' 2025-07-24T05:19:51.6699891Z adding 'torch/include/ATen/ops/thnn_conv2d_ops.h' 2025-07-24T05:19:51.6700053Z adding 'torch/include/ATen/ops/threshold.h' 2025-07-24T05:19:51.6704128Z adding 'torch/include/ATen/ops/threshold_backward.h' 2025-07-24T05:19:51.6707545Z adding 'torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.6710446Z adding 'torch/include/ATen/ops/threshold_backward_cpu_dispatch.h' 2025-07-24T05:19:51.6713711Z adding 'torch/include/ATen/ops/threshold_backward_cuda_dispatch.h' 2025-07-24T05:19:51.6716740Z adding 'torch/include/ATen/ops/threshold_backward_meta.h' 2025-07-24T05:19:51.6719985Z adding 'torch/include/ATen/ops/threshold_backward_meta_dispatch.h' 2025-07-24T05:19:51.6724265Z adding 'torch/include/ATen/ops/threshold_backward_native.h' 2025-07-24T05:19:51.6726490Z adding 'torch/include/ATen/ops/threshold_backward_ops.h' 2025-07-24T05:19:51.6729787Z adding 'torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.6732677Z adding 'torch/include/ATen/ops/threshold_cpu_dispatch.h' 2025-07-24T05:19:51.6735757Z adding 'torch/include/ATen/ops/threshold_cuda_dispatch.h' 2025-07-24T05:19:51.6738706Z adding 'torch/include/ATen/ops/threshold_meta.h' 2025-07-24T05:19:51.6742023Z adding 'torch/include/ATen/ops/threshold_meta_dispatch.h' 2025-07-24T05:19:51.6745062Z adding 'torch/include/ATen/ops/threshold_native.h' 2025-07-24T05:19:51.6748295Z adding 'torch/include/ATen/ops/threshold_ops.h' 2025-07-24T05:19:51.6751679Z adding 'torch/include/ATen/ops/tile.h' 2025-07-24T05:19:51.6754896Z adding 'torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6757736Z adding 'torch/include/ATen/ops/tile_native.h' 2025-07-24T05:19:51.6760893Z adding 'torch/include/ATen/ops/tile_ops.h' 2025-07-24T05:19:51.6763812Z adding 'torch/include/ATen/ops/to.h' 2025-07-24T05:19:51.6767066Z adding 'torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6769915Z adding 'torch/include/ATen/ops/to_dense.h' 2025-07-24T05:19:51.6773157Z adding 'torch/include/ATen/ops/to_dense_backward.h' 2025-07-24T05:19:51.6776383Z adding 'torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6779226Z adding 'torch/include/ATen/ops/to_dense_backward_native.h' 2025-07-24T05:19:51.6782311Z adding 'torch/include/ATen/ops/to_dense_backward_ops.h' 2025-07-24T05:19:51.6785508Z adding 'torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6788337Z adding 'torch/include/ATen/ops/to_dense_native.h' 2025-07-24T05:19:51.6791395Z adding 'torch/include/ATen/ops/to_dense_ops.h' 2025-07-24T05:19:51.6794453Z adding 'torch/include/ATen/ops/to_mkldnn.h' 2025-07-24T05:19:51.6797504Z adding 'torch/include/ATen/ops/to_mkldnn_backward.h' 2025-07-24T05:19:51.6800945Z adding 'torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6803831Z adding 'torch/include/ATen/ops/to_mkldnn_backward_native.h' 2025-07-24T05:19:51.6806808Z adding 'torch/include/ATen/ops/to_mkldnn_backward_ops.h' 2025-07-24T05:19:51.6810008Z adding 'torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.6813062Z adding 'torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h' 2025-07-24T05:19:51.6816031Z adding 'torch/include/ATen/ops/to_mkldnn_native.h' 2025-07-24T05:19:51.6819183Z adding 'torch/include/ATen/ops/to_mkldnn_ops.h' 2025-07-24T05:19:51.6822277Z adding 'torch/include/ATen/ops/to_native.h' 2025-07-24T05:19:51.6825684Z adding 'torch/include/ATen/ops/to_ops.h' 2025-07-24T05:19:51.6829130Z adding 'torch/include/ATen/ops/to_padded_tensor.h' 2025-07-24T05:19:51.6832481Z adding 'torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.6835368Z adding 'torch/include/ATen/ops/to_padded_tensor_native.h' 2025-07-24T05:19:51.6838703Z adding 'torch/include/ATen/ops/to_padded_tensor_ops.h' 2025-07-24T05:19:51.6841610Z adding 'torch/include/ATen/ops/to_sparse.h' 2025-07-24T05:19:51.6844522Z adding 'torch/include/ATen/ops/to_sparse_bsc.h' 2025-07-24T05:19:51.6847757Z adding 'torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6850613Z adding 'torch/include/ATen/ops/to_sparse_bsc_native.h' 2025-07-24T05:19:51.6853661Z adding 'torch/include/ATen/ops/to_sparse_bsc_ops.h' 2025-07-24T05:19:51.6856564Z adding 'torch/include/ATen/ops/to_sparse_bsr.h' 2025-07-24T05:19:51.6859759Z adding 'torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6862584Z adding 'torch/include/ATen/ops/to_sparse_bsr_native.h' 2025-07-24T05:19:51.6865634Z adding 'torch/include/ATen/ops/to_sparse_bsr_ops.h' 2025-07-24T05:19:51.6868872Z adding 'torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6871653Z adding 'torch/include/ATen/ops/to_sparse_csc.h' 2025-07-24T05:19:51.6874833Z adding 'torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6877673Z adding 'torch/include/ATen/ops/to_sparse_csc_native.h' 2025-07-24T05:19:51.6880815Z adding 'torch/include/ATen/ops/to_sparse_csc_ops.h' 2025-07-24T05:19:51.6883719Z adding 'torch/include/ATen/ops/to_sparse_csr.h' 2025-07-24T05:19:51.6886909Z adding 'torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6889724Z adding 'torch/include/ATen/ops/to_sparse_csr_native.h' 2025-07-24T05:19:51.6892774Z adding 'torch/include/ATen/ops/to_sparse_csr_ops.h' 2025-07-24T05:19:51.6895788Z adding 'torch/include/ATen/ops/to_sparse_native.h' 2025-07-24T05:19:51.6898976Z adding 'torch/include/ATen/ops/to_sparse_ops.h' 2025-07-24T05:19:51.6902353Z adding 'torch/include/ATen/ops/topk.h' 2025-07-24T05:19:51.6905792Z adding 'torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.6908752Z adding 'torch/include/ATen/ops/topk_cpu_dispatch.h' 2025-07-24T05:19:51.6911914Z adding 'torch/include/ATen/ops/topk_cuda_dispatch.h' 2025-07-24T05:19:51.6914871Z adding 'torch/include/ATen/ops/topk_meta.h' 2025-07-24T05:19:51.6918078Z adding 'torch/include/ATen/ops/topk_meta_dispatch.h' 2025-07-24T05:19:51.6921200Z adding 'torch/include/ATen/ops/topk_native.h' 2025-07-24T05:19:51.6924415Z adding 'torch/include/ATen/ops/topk_ops.h' 2025-07-24T05:19:51.6927473Z adding 'torch/include/ATen/ops/trace.h' 2025-07-24T05:19:51.6930582Z adding 'torch/include/ATen/ops/trace_backward.h' 2025-07-24T05:19:51.6933827Z adding 'torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6936652Z adding 'torch/include/ATen/ops/trace_backward_native.h' 2025-07-24T05:19:51.6939695Z adding 'torch/include/ATen/ops/trace_backward_ops.h' 2025-07-24T05:19:51.6942869Z adding 'torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.6945755Z adding 'torch/include/ATen/ops/trace_cpu_dispatch.h' 2025-07-24T05:19:51.6948750Z adding 'torch/include/ATen/ops/trace_cuda_dispatch.h' 2025-07-24T05:19:51.6951734Z adding 'torch/include/ATen/ops/trace_native.h' 2025-07-24T05:19:51.6954765Z adding 'torch/include/ATen/ops/trace_ops.h' 2025-07-24T05:19:51.6957795Z adding 'torch/include/ATen/ops/transpose.h' 2025-07-24T05:19:51.6961088Z adding 'torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.6964043Z adding 'torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6966957Z adding 'torch/include/ATen/ops/transpose_copy.h' 2025-07-24T05:19:51.6970395Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.6974404Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.6976469Z adding 'torch/include/ATen/ops/transpose_copy_native.h' 2025-07-24T05:19:51.6979979Z adding 'torch/include/ATen/ops/transpose_copy_ops.h' 2025-07-24T05:19:51.6982800Z adding 'torch/include/ATen/ops/transpose_native.h' 2025-07-24T05:19:51.6986133Z adding 'torch/include/ATen/ops/transpose_ops.h' 2025-07-24T05:19:51.6989215Z adding 'torch/include/ATen/ops/trapezoid.h' 2025-07-24T05:19:51.6992587Z adding 'torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.6995438Z adding 'torch/include/ATen/ops/trapezoid_native.h' 2025-07-24T05:19:51.6998776Z adding 'torch/include/ATen/ops/trapezoid_ops.h' 2025-07-24T05:19:51.7001886Z adding 'torch/include/ATen/ops/trapz.h' 2025-07-24T05:19:51.7005267Z adding 'torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.7008783Z adding 'torch/include/ATen/ops/trapz_native.h' 2025-07-24T05:19:51.7011391Z adding 'torch/include/ATen/ops/trapz_ops.h' 2025-07-24T05:19:51.7014698Z adding 'torch/include/ATen/ops/triangular_solve.h' 2025-07-24T05:19:51.7018143Z adding 'torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7021594Z adding 'torch/include/ATen/ops/triangular_solve_cpu_dispatch.h' 2025-07-24T05:19:51.7024656Z adding 'torch/include/ATen/ops/triangular_solve_cuda_dispatch.h' 2025-07-24T05:19:51.7027872Z adding 'torch/include/ATen/ops/triangular_solve_meta.h' 2025-07-24T05:19:51.7031440Z adding 'torch/include/ATen/ops/triangular_solve_meta_dispatch.h' 2025-07-24T05:19:51.7034137Z adding 'torch/include/ATen/ops/triangular_solve_native.h' 2025-07-24T05:19:51.7037493Z adding 'torch/include/ATen/ops/triangular_solve_ops.h' 2025-07-24T05:19:51.7040710Z adding 'torch/include/ATen/ops/tril.h' 2025-07-24T05:19:51.7044181Z adding 'torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7047130Z adding 'torch/include/ATen/ops/tril_cpu_dispatch.h' 2025-07-24T05:19:51.7050359Z adding 'torch/include/ATen/ops/tril_cuda_dispatch.h' 2025-07-24T05:19:51.7053556Z adding 'torch/include/ATen/ops/tril_indices.h' 2025-07-24T05:19:51.7056962Z adding 'torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.7060082Z adding 'torch/include/ATen/ops/tril_indices_cpu_dispatch.h' 2025-07-24T05:19:51.7063159Z adding 'torch/include/ATen/ops/tril_indices_cuda_dispatch.h' 2025-07-24T05:19:51.7066281Z adding 'torch/include/ATen/ops/tril_indices_native.h' 2025-07-24T05:19:51.7069550Z adding 'torch/include/ATen/ops/tril_indices_ops.h' 2025-07-24T05:19:51.7072743Z adding 'torch/include/ATen/ops/tril_meta.h' 2025-07-24T05:19:51.7075857Z adding 'torch/include/ATen/ops/tril_meta_dispatch.h' 2025-07-24T05:19:51.7079099Z adding 'torch/include/ATen/ops/tril_native.h' 2025-07-24T05:19:51.7082946Z adding 'torch/include/ATen/ops/tril_ops.h' 2025-07-24T05:19:51.7085610Z adding 'torch/include/ATen/ops/triplet_margin_loss.h' 2025-07-24T05:19:51.7089263Z adding 'torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.7091983Z adding 'torch/include/ATen/ops/triplet_margin_loss_native.h' 2025-07-24T05:19:51.7095258Z adding 'torch/include/ATen/ops/triplet_margin_loss_ops.h' 2025-07-24T05:19:51.7098818Z adding 'torch/include/ATen/ops/triu.h' 2025-07-24T05:19:51.7101806Z adding 'torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7104679Z adding 'torch/include/ATen/ops/triu_cpu_dispatch.h' 2025-07-24T05:19:51.7107889Z adding 'torch/include/ATen/ops/triu_cuda_dispatch.h' 2025-07-24T05:19:51.7111985Z adding 'torch/include/ATen/ops/triu_indices.h' 2025-07-24T05:19:51.7114453Z adding 'torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.7117891Z adding 'torch/include/ATen/ops/triu_indices_cpu_dispatch.h' 2025-07-24T05:19:51.7121100Z adding 'torch/include/ATen/ops/triu_indices_cuda_dispatch.h' 2025-07-24T05:19:51.7124494Z adding 'torch/include/ATen/ops/triu_indices_native.h' 2025-07-24T05:19:51.7127683Z adding 'torch/include/ATen/ops/triu_indices_ops.h' 2025-07-24T05:19:51.7130880Z adding 'torch/include/ATen/ops/triu_meta.h' 2025-07-24T05:19:51.7133840Z adding 'torch/include/ATen/ops/triu_meta_dispatch.h' 2025-07-24T05:19:51.7136969Z adding 'torch/include/ATen/ops/triu_native.h' 2025-07-24T05:19:51.7140307Z adding 'torch/include/ATen/ops/triu_ops.h' 2025-07-24T05:19:51.7143523Z adding 'torch/include/ATen/ops/true_divide.h' 2025-07-24T05:19:51.7147077Z adding 'torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.7150038Z adding 'torch/include/ATen/ops/true_divide_native.h' 2025-07-24T05:19:51.7153506Z adding 'torch/include/ATen/ops/true_divide_ops.h' 2025-07-24T05:19:51.7156609Z adding 'torch/include/ATen/ops/trunc.h' 2025-07-24T05:19:51.7160275Z adding 'torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7163175Z adding 'torch/include/ATen/ops/trunc_cpu_dispatch.h' 2025-07-24T05:19:51.7179044Z adding 'torch/include/ATen/ops/trunc_cuda_dispatch.h' 2025-07-24T05:19:51.7179427Z adding 'torch/include/ATen/ops/trunc_meta.h' 2025-07-24T05:19:51.7179764Z adding 'torch/include/ATen/ops/trunc_meta_dispatch.h' 2025-07-24T05:19:51.7180111Z adding 'torch/include/ATen/ops/trunc_native.h' 2025-07-24T05:19:51.7180423Z adding 'torch/include/ATen/ops/trunc_ops.h' 2025-07-24T05:19:51.7183400Z adding 'torch/include/ATen/ops/type_as.h' 2025-07-24T05:19:51.7186808Z adding 'torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.7189655Z adding 'torch/include/ATen/ops/type_as_native.h' 2025-07-24T05:19:51.7192954Z adding 'torch/include/ATen/ops/type_as_ops.h' 2025-07-24T05:19:51.7197160Z adding 'torch/include/ATen/ops/unbind.h' 2025-07-24T05:19:51.7199555Z adding 'torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.7203380Z adding 'torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.7205747Z adding 'torch/include/ATen/ops/unbind_copy.h' 2025-07-24T05:19:51.7208967Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.7212090Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7215054Z adding 'torch/include/ATen/ops/unbind_copy_native.h' 2025-07-24T05:19:51.7218240Z adding 'torch/include/ATen/ops/unbind_copy_ops.h' 2025-07-24T05:19:51.7221257Z adding 'torch/include/ATen/ops/unbind_native.h' 2025-07-24T05:19:51.7224391Z adding 'torch/include/ATen/ops/unbind_ops.h' 2025-07-24T05:19:51.7227610Z adding 'torch/include/ATen/ops/unflatten.h' 2025-07-24T05:19:51.7231133Z adding 'torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.7234122Z adding 'torch/include/ATen/ops/unflatten_dense_tensors.h' 2025-07-24T05:19:51.7237382Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.7240372Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_native.h' 2025-07-24T05:19:51.7243450Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_ops.h' 2025-07-24T05:19:51.7246474Z adding 'torch/include/ATen/ops/unflatten_native.h' 2025-07-24T05:19:51.7249581Z adding 'torch/include/ATen/ops/unflatten_ops.h' 2025-07-24T05:19:51.7252528Z adding 'torch/include/ATen/ops/unfold.h' 2025-07-24T05:19:51.7255876Z adding 'torch/include/ATen/ops/unfold_backward.h' 2025-07-24T05:19:51.7259279Z adding 'torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.7262386Z adding 'torch/include/ATen/ops/unfold_backward_cpu_dispatch.h' 2025-07-24T05:19:51.7265408Z adding 'torch/include/ATen/ops/unfold_backward_cuda_dispatch.h' 2025-07-24T05:19:51.7268378Z adding 'torch/include/ATen/ops/unfold_backward_native.h' 2025-07-24T05:19:51.7271684Z adding 'torch/include/ATen/ops/unfold_backward_ops.h' 2025-07-24T05:19:51.7274779Z adding 'torch/include/ATen/ops/unfold_copy.h' 2025-07-24T05:19:51.7278072Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.7281328Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7284083Z adding 'torch/include/ATen/ops/unfold_copy_native.h' 2025-07-24T05:19:51.7287195Z adding 'torch/include/ATen/ops/unfold_copy_ops.h' 2025-07-24T05:19:51.7290266Z adding 'torch/include/ATen/ops/unfold_cpu_dispatch.h' 2025-07-24T05:19:51.7293306Z adding 'torch/include/ATen/ops/unfold_cuda_dispatch.h' 2025-07-24T05:19:51.7296336Z adding 'torch/include/ATen/ops/unfold_meta_dispatch.h' 2025-07-24T05:19:51.7299289Z adding 'torch/include/ATen/ops/unfold_native.h' 2025-07-24T05:19:51.7302364Z adding 'torch/include/ATen/ops/unfold_ops.h' 2025-07-24T05:19:51.7305477Z adding 'torch/include/ATen/ops/uniform.h' 2025-07-24T05:19:51.7308712Z adding 'torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.7311657Z adding 'torch/include/ATen/ops/uniform_cpu_dispatch.h' 2025-07-24T05:19:51.7314720Z adding 'torch/include/ATen/ops/uniform_cuda_dispatch.h' 2025-07-24T05:19:51.7318015Z adding 'torch/include/ATen/ops/uniform_meta_dispatch.h' 2025-07-24T05:19:51.7321079Z adding 'torch/include/ATen/ops/uniform_native.h' 2025-07-24T05:19:51.7324311Z adding 'torch/include/ATen/ops/uniform_ops.h' 2025-07-24T05:19:51.7327763Z adding 'torch/include/ATen/ops/unique_consecutive.h' 2025-07-24T05:19:51.7331079Z adding 'torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.7334030Z adding 'torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h' 2025-07-24T05:19:51.7337059Z adding 'torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h' 2025-07-24T05:19:51.7340073Z adding 'torch/include/ATen/ops/unique_consecutive_native.h' 2025-07-24T05:19:51.7343314Z adding 'torch/include/ATen/ops/unique_consecutive_ops.h' 2025-07-24T05:19:51.7346498Z adding 'torch/include/ATen/ops/unique_dim.h' 2025-07-24T05:19:51.7349776Z adding 'torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.7352850Z adding 'torch/include/ATen/ops/unique_dim_consecutive.h' 2025-07-24T05:19:51.7356163Z adding 'torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.7359240Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h' 2025-07-24T05:19:51.7362272Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h' 2025-07-24T05:19:51.7365270Z adding 'torch/include/ATen/ops/unique_dim_consecutive_native.h' 2025-07-24T05:19:51.7368487Z adding 'torch/include/ATen/ops/unique_dim_consecutive_ops.h' 2025-07-24T05:19:51.7371562Z adding 'torch/include/ATen/ops/unique_dim_cpu_dispatch.h' 2025-07-24T05:19:51.7374584Z adding 'torch/include/ATen/ops/unique_dim_cuda_dispatch.h' 2025-07-24T05:19:51.7377538Z adding 'torch/include/ATen/ops/unique_dim_native.h' 2025-07-24T05:19:51.7380720Z adding 'torch/include/ATen/ops/unique_dim_ops.h' 2025-07-24T05:19:51.7383777Z adding 'torch/include/ATen/ops/unsafe_chunk.h' 2025-07-24T05:19:51.7386979Z adding 'torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.7389842Z adding 'torch/include/ATen/ops/unsafe_chunk_native.h' 2025-07-24T05:19:51.7392930Z adding 'torch/include/ATen/ops/unsafe_chunk_ops.h' 2025-07-24T05:19:51.7396194Z adding 'torch/include/ATen/ops/unsafe_split.h' 2025-07-24T05:19:51.7406011Z adding 'torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.7409036Z adding 'torch/include/ATen/ops/unsafe_split_native.h' 2025-07-24T05:19:51.7412197Z adding 'torch/include/ATen/ops/unsafe_split_ops.h' 2025-07-24T05:19:51.7415628Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes.h' 2025-07-24T05:19:51.7419213Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.7422158Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_native.h' 2025-07-24T05:19:51.7425540Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_ops.h' 2025-07-24T05:19:51.7429393Z adding 'torch/include/ATen/ops/unsqueeze.h' 2025-07-24T05:19:51.7431880Z adding 'torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.7435096Z adding 'torch/include/ATen/ops/unsqueeze_copy.h' 2025-07-24T05:19:51.7438218Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.7441563Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7444362Z adding 'torch/include/ATen/ops/unsqueeze_copy_native.h' 2025-07-24T05:19:51.7447636Z adding 'torch/include/ATen/ops/unsqueeze_copy_ops.h' 2025-07-24T05:19:51.7450651Z adding 'torch/include/ATen/ops/unsqueeze_native.h' 2025-07-24T05:19:51.7453933Z adding 'torch/include/ATen/ops/unsqueeze_ops.h' 2025-07-24T05:19:51.7457662Z adding 'torch/include/ATen/ops/upsample_bicubic2d.h' 2025-07-24T05:19:51.7461448Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward.h' 2025-07-24T05:19:51.7465193Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7468221Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h' 2025-07-24T05:19:51.7471639Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h' 2025-07-24T05:19:51.7475269Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h' 2025-07-24T05:19:51.7478065Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h' 2025-07-24T05:19:51.7481334Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_native.h' 2025-07-24T05:19:51.7484640Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h' 2025-07-24T05:19:51.7488119Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7491194Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.7494412Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h' 2025-07-24T05:19:51.7497717Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h' 2025-07-24T05:19:51.7500761Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta.h' 2025-07-24T05:19:51.7504070Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h' 2025-07-24T05:19:51.7507176Z adding 'torch/include/ATen/ops/upsample_bicubic2d_native.h' 2025-07-24T05:19:51.7510625Z adding 'torch/include/ATen/ops/upsample_bicubic2d_ops.h' 2025-07-24T05:19:51.7515322Z adding 'torch/include/ATen/ops/upsample_bilinear2d.h' 2025-07-24T05:19:51.7518606Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward.h' 2025-07-24T05:19:51.7522334Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7525672Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h' 2025-07-24T05:19:51.7529054Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h' 2025-07-24T05:19:51.7532247Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h' 2025-07-24T05:19:51.7535615Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h' 2025-07-24T05:19:51.7538770Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_native.h' 2025-07-24T05:19:51.7542087Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h' 2025-07-24T05:19:51.7545527Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.7548814Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7552024Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.7555158Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h' 2025-07-24T05:19:51.7558476Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h' 2025-07-24T05:19:51.7561647Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta.h' 2025-07-24T05:19:51.7564905Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h' 2025-07-24T05:19:51.7568383Z adding 'torch/include/ATen/ops/upsample_bilinear2d_native.h' 2025-07-24T05:19:51.7571870Z adding 'torch/include/ATen/ops/upsample_bilinear2d_ops.h' 2025-07-24T05:19:51.7575675Z adding 'torch/include/ATen/ops/upsample_linear1d.h' 2025-07-24T05:19:51.7579500Z adding 'torch/include/ATen/ops/upsample_linear1d_backward.h' 2025-07-24T05:19:51.7583003Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7586170Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h' 2025-07-24T05:19:51.7589813Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h' 2025-07-24T05:19:51.7592610Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta.h' 2025-07-24T05:19:51.7596021Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h' 2025-07-24T05:19:51.7599107Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_native.h' 2025-07-24T05:19:51.7602462Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_ops.h' 2025-07-24T05:19:51.7605828Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7609017Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.7612667Z adding 'torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h' 2025-07-24T05:19:51.7615374Z adding 'torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h' 2025-07-24T05:19:51.7618503Z adding 'torch/include/ATen/ops/upsample_linear1d_meta.h' 2025-07-24T05:19:51.7621691Z adding 'torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h' 2025-07-24T05:19:51.7624838Z adding 'torch/include/ATen/ops/upsample_linear1d_native.h' 2025-07-24T05:19:51.7628124Z adding 'torch/include/ATen/ops/upsample_linear1d_ops.h' 2025-07-24T05:19:51.7631850Z adding 'torch/include/ATen/ops/upsample_nearest1d.h' 2025-07-24T05:19:51.7635999Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward.h' 2025-07-24T05:19:51.7639212Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7642336Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h' 2025-07-24T05:19:51.7645555Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h' 2025-07-24T05:19:51.7648727Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta.h' 2025-07-24T05:19:51.7651902Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h' 2025-07-24T05:19:51.7655136Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_native.h' 2025-07-24T05:19:51.7658581Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_ops.h' 2025-07-24T05:19:51.7661799Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7665141Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.7667999Z adding 'torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h' 2025-07-24T05:19:51.7678101Z adding 'torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h' 2025-07-24T05:19:51.7678551Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta.h' 2025-07-24T05:19:51.7678987Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h' 2025-07-24T05:19:51.7681289Z adding 'torch/include/ATen/ops/upsample_nearest1d_native.h' 2025-07-24T05:19:51.7684726Z adding 'torch/include/ATen/ops/upsample_nearest1d_ops.h' 2025-07-24T05:19:51.7688520Z adding 'torch/include/ATen/ops/upsample_nearest2d.h' 2025-07-24T05:19:51.7692478Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward.h' 2025-07-24T05:19:51.7696476Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7699616Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h' 2025-07-24T05:19:51.7702947Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h' 2025-07-24T05:19:51.7705972Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta.h' 2025-07-24T05:19:51.7709169Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h' 2025-07-24T05:19:51.7713310Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_native.h' 2025-07-24T05:19:51.7715658Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_ops.h' 2025-07-24T05:19:51.7719089Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.7722281Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7725317Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.7729307Z adding 'torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h' 2025-07-24T05:19:51.7731689Z adding 'torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h' 2025-07-24T05:19:51.7734671Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta.h' 2025-07-24T05:19:51.7737805Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h' 2025-07-24T05:19:51.7740919Z adding 'torch/include/ATen/ops/upsample_nearest2d_native.h' 2025-07-24T05:19:51.7744265Z adding 'torch/include/ATen/ops/upsample_nearest2d_ops.h' 2025-07-24T05:19:51.7747893Z adding 'torch/include/ATen/ops/upsample_nearest3d.h' 2025-07-24T05:19:51.7751630Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward.h' 2025-07-24T05:19:51.7755192Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7758432Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h' 2025-07-24T05:19:51.7761878Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h' 2025-07-24T05:19:51.7764942Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta.h' 2025-07-24T05:19:51.7768145Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h' 2025-07-24T05:19:51.7771606Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_native.h' 2025-07-24T05:19:51.7774912Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_ops.h' 2025-07-24T05:19:51.7778224Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7781248Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.7784329Z adding 'torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h' 2025-07-24T05:19:51.7787487Z adding 'torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h' 2025-07-24T05:19:51.7790514Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta.h' 2025-07-24T05:19:51.7793672Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h' 2025-07-24T05:19:51.7796754Z adding 'torch/include/ATen/ops/upsample_nearest3d_native.h' 2025-07-24T05:19:51.7800224Z adding 'torch/include/ATen/ops/upsample_nearest3d_ops.h' 2025-07-24T05:19:51.7803824Z adding 'torch/include/ATen/ops/upsample_trilinear3d.h' 2025-07-24T05:19:51.7807660Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward.h' 2025-07-24T05:19:51.7811230Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7814287Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h' 2025-07-24T05:19:51.7817752Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h' 2025-07-24T05:19:51.7821401Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h' 2025-07-24T05:19:51.7824202Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h' 2025-07-24T05:19:51.7827296Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_native.h' 2025-07-24T05:19:51.7830650Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h' 2025-07-24T05:19:51.7833963Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7836980Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.7840210Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h' 2025-07-24T05:19:51.7843434Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h' 2025-07-24T05:19:51.7846487Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta.h' 2025-07-24T05:19:51.7849693Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h' 2025-07-24T05:19:51.7852797Z adding 'torch/include/ATen/ops/upsample_trilinear3d_native.h' 2025-07-24T05:19:51.7856108Z adding 'torch/include/ATen/ops/upsample_trilinear3d_ops.h' 2025-07-24T05:19:51.7859387Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward.h' 2025-07-24T05:19:51.7862720Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.7865633Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_native.h' 2025-07-24T05:19:51.7868764Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_ops.h' 2025-07-24T05:19:51.7871623Z adding 'torch/include/ATen/ops/values.h' 2025-07-24T05:19:51.7874784Z adding 'torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.7877686Z adding 'torch/include/ATen/ops/values_copy.h' 2025-07-24T05:19:51.7881025Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.7884124Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7886867Z adding 'torch/include/ATen/ops/values_copy_native.h' 2025-07-24T05:19:51.7890032Z adding 'torch/include/ATen/ops/values_copy_ops.h' 2025-07-24T05:19:51.7893025Z adding 'torch/include/ATen/ops/values_native.h' 2025-07-24T05:19:51.7896111Z adding 'torch/include/ATen/ops/values_ops.h' 2025-07-24T05:19:51.7899134Z adding 'torch/include/ATen/ops/vander.h' 2025-07-24T05:19:51.7902354Z adding 'torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.7905210Z adding 'torch/include/ATen/ops/vander_native.h' 2025-07-24T05:19:51.7908274Z adding 'torch/include/ATen/ops/vander_ops.h' 2025-07-24T05:19:51.7911638Z adding 'torch/include/ATen/ops/var.h' 2025-07-24T05:19:51.7915068Z adding 'torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.7918194Z adding 'torch/include/ATen/ops/var_cpu_dispatch.h' 2025-07-24T05:19:51.7921321Z adding 'torch/include/ATen/ops/var_cuda_dispatch.h' 2025-07-24T05:19:51.7924582Z adding 'torch/include/ATen/ops/var_mean.h' 2025-07-24T05:19:51.7927885Z adding 'torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.7931020Z adding 'torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.7933994Z adding 'torch/include/ATen/ops/var_mean_cpu_dispatch.h' 2025-07-24T05:19:51.7937157Z adding 'torch/include/ATen/ops/var_mean_cuda_dispatch.h' 2025-07-24T05:19:51.7940137Z adding 'torch/include/ATen/ops/var_mean_native.h' 2025-07-24T05:19:51.7943664Z adding 'torch/include/ATen/ops/var_mean_ops.h' 2025-07-24T05:19:51.7946871Z adding 'torch/include/ATen/ops/var_native.h' 2025-07-24T05:19:51.7950478Z adding 'torch/include/ATen/ops/var_ops.h' 2025-07-24T05:19:51.7953706Z adding 'torch/include/ATen/ops/vdot.h' 2025-07-24T05:19:51.7956902Z adding 'torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.7959982Z adding 'torch/include/ATen/ops/vdot_cpu_dispatch.h' 2025-07-24T05:19:51.7963034Z adding 'torch/include/ATen/ops/vdot_cuda_dispatch.h' 2025-07-24T05:19:51.7965959Z adding 'torch/include/ATen/ops/vdot_native.h' 2025-07-24T05:19:51.7969059Z adding 'torch/include/ATen/ops/vdot_ops.h' 2025-07-24T05:19:51.7972117Z adding 'torch/include/ATen/ops/view.h' 2025-07-24T05:19:51.7975092Z adding 'torch/include/ATen/ops/view_as.h' 2025-07-24T05:19:51.7978434Z adding 'torch/include/ATen/ops/view_as_complex.h' 2025-07-24T05:19:51.7981278Z adding 'torch/include/ATen/ops/view_as_complex_copy.h' 2025-07-24T05:19:51.7984480Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.7987625Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.7990391Z adding 'torch/include/ATen/ops/view_as_complex_copy_native.h' 2025-07-24T05:19:51.7993496Z adding 'torch/include/ATen/ops/view_as_complex_copy_ops.h' 2025-07-24T05:19:51.7996552Z adding 'torch/include/ATen/ops/view_as_complex_cpu_dispatch.h' 2025-07-24T05:19:51.7999691Z adding 'torch/include/ATen/ops/view_as_complex_cuda_dispatch.h' 2025-07-24T05:19:51.8002804Z adding 'torch/include/ATen/ops/view_as_complex_meta_dispatch.h' 2025-07-24T05:19:51.8005778Z adding 'torch/include/ATen/ops/view_as_complex_native.h' 2025-07-24T05:19:51.8008854Z adding 'torch/include/ATen/ops/view_as_complex_ops.h' 2025-07-24T05:19:51.8012041Z adding 'torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.8014873Z adding 'torch/include/ATen/ops/view_as_native.h' 2025-07-24T05:19:51.8017923Z adding 'torch/include/ATen/ops/view_as_ops.h' 2025-07-24T05:19:51.8020903Z adding 'torch/include/ATen/ops/view_as_real.h' 2025-07-24T05:19:51.8023936Z adding 'torch/include/ATen/ops/view_as_real_copy.h' 2025-07-24T05:19:51.8027194Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.8030314Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.8033063Z adding 'torch/include/ATen/ops/view_as_real_copy_native.h' 2025-07-24T05:19:51.8036194Z adding 'torch/include/ATen/ops/view_as_real_copy_ops.h' 2025-07-24T05:19:51.8039395Z adding 'torch/include/ATen/ops/view_as_real_cpu_dispatch.h' 2025-07-24T05:19:51.8042393Z adding 'torch/include/ATen/ops/view_as_real_cuda_dispatch.h' 2025-07-24T05:19:51.8045377Z adding 'torch/include/ATen/ops/view_as_real_meta_dispatch.h' 2025-07-24T05:19:51.8048338Z adding 'torch/include/ATen/ops/view_as_real_native.h' 2025-07-24T05:19:51.8051406Z adding 'torch/include/ATen/ops/view_as_real_ops.h' 2025-07-24T05:19:51.8054582Z adding 'torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.8057841Z adding 'torch/include/ATen/ops/view_copy.h' 2025-07-24T05:19:51.8061230Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.8064440Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.8067265Z adding 'torch/include/ATen/ops/view_copy_native.h' 2025-07-24T05:19:51.8070540Z adding 'torch/include/ATen/ops/view_copy_ops.h' 2025-07-24T05:19:51.8073625Z adding 'torch/include/ATen/ops/view_cpu_dispatch.h' 2025-07-24T05:19:51.8076669Z adding 'torch/include/ATen/ops/view_cuda_dispatch.h' 2025-07-24T05:19:51.8079973Z adding 'torch/include/ATen/ops/view_meta_dispatch.h' 2025-07-24T05:19:51.8082887Z adding 'torch/include/ATen/ops/view_native.h' 2025-07-24T05:19:51.8086038Z adding 'torch/include/ATen/ops/view_ops.h' 2025-07-24T05:19:51.8089155Z adding 'torch/include/ATen/ops/vsplit.h' 2025-07-24T05:19:51.8092375Z adding 'torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.8095202Z adding 'torch/include/ATen/ops/vsplit_native.h' 2025-07-24T05:19:51.8098381Z adding 'torch/include/ATen/ops/vsplit_ops.h' 2025-07-24T05:19:51.8101435Z adding 'torch/include/ATen/ops/vstack.h' 2025-07-24T05:19:51.8104637Z adding 'torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.8107472Z adding 'torch/include/ATen/ops/vstack_native.h' 2025-07-24T05:19:51.8110644Z adding 'torch/include/ATen/ops/vstack_ops.h' 2025-07-24T05:19:51.8113899Z adding 'torch/include/ATen/ops/where.h' 2025-07-24T05:19:51.8117291Z adding 'torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.8120378Z adding 'torch/include/ATen/ops/where_cpu_dispatch.h' 2025-07-24T05:19:51.8123443Z adding 'torch/include/ATen/ops/where_cuda_dispatch.h' 2025-07-24T05:19:51.8126431Z adding 'torch/include/ATen/ops/where_native.h' 2025-07-24T05:19:51.8129791Z adding 'torch/include/ATen/ops/where_ops.h' 2025-07-24T05:19:51.8133124Z adding 'torch/include/ATen/ops/xlogy.h' 2025-07-24T05:19:51.8136463Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.8139669Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:19:51.8142558Z adding 'torch/include/ATen/ops/xlogy_cpu_dispatch.h' 2025-07-24T05:19:51.8146233Z adding 'torch/include/ATen/ops/xlogy_cuda_dispatch.h' 2025-07-24T05:19:51.8149263Z adding 'torch/include/ATen/ops/xlogy_meta.h' 2025-07-24T05:19:51.8152358Z adding 'torch/include/ATen/ops/xlogy_meta_dispatch.h' 2025-07-24T05:19:51.8155314Z adding 'torch/include/ATen/ops/xlogy_native.h' 2025-07-24T05:19:51.8158883Z adding 'torch/include/ATen/ops/xlogy_ops.h' 2025-07-24T05:19:51.8162058Z adding 'torch/include/ATen/ops/xor.h' 2025-07-24T05:19:51.8165240Z adding 'torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:19:51.8168083Z adding 'torch/include/ATen/ops/xor_native.h' 2025-07-24T05:19:51.8171338Z adding 'torch/include/ATen/ops/xor_ops.h' 2025-07-24T05:19:51.8174444Z adding 'torch/include/ATen/ops/zero.h' 2025-07-24T05:19:51.8177664Z adding 'torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.8184534Z adding 'torch/include/ATen/ops/zero_cpu_dispatch.h' 2025-07-24T05:19:51.8184887Z adding 'torch/include/ATen/ops/zero_cuda_dispatch.h' 2025-07-24T05:19:51.8187293Z adding 'torch/include/ATen/ops/zero_meta_dispatch.h' 2025-07-24T05:19:51.8228374Z adding 'torch/include/ATen/ops/zero_native.h' 2025-07-24T05:19:51.8228722Z adding 'torch/include/ATen/ops/zero_ops.h' 2025-07-24T05:19:51.8229987Z adding 'torch/include/ATen/ops/zeros.h' 2025-07-24T05:19:51.8230402Z adding 'torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.8230847Z adding 'torch/include/ATen/ops/zeros_like.h' 2025-07-24T05:19:51.8231296Z adding 'torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h' 2025-07-24T05:19:51.8231963Z adding 'torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-07-24T05:19:51.8232497Z adding 'torch/include/ATen/ops/zeros_like_native.h' 2025-07-24T05:19:51.8232851Z adding 'torch/include/ATen/ops/zeros_like_ops.h' 2025-07-24T05:19:51.8233220Z adding 'torch/include/ATen/ops/zeros_native.h' 2025-07-24T05:19:51.8233581Z adding 'torch/include/ATen/ops/zeros_ops.h' 2025-07-24T05:19:51.8234450Z adding 'torch/include/ATen/quantized/QTensorImpl.h' 2025-07-24T05:19:51.8240470Z adding 'torch/include/ATen/quantized/Quantizer.h' 2025-07-24T05:19:51.8243816Z adding 'torch/include/ATen/xpu/CachingHostAllocator.h' 2025-07-24T05:19:51.8246990Z adding 'torch/include/ATen/xpu/PinnedMemoryAllocator.h' 2025-07-24T05:19:51.8249776Z adding 'torch/include/ATen/xpu/XPUContext.h' 2025-07-24T05:19:51.8252820Z adding 'torch/include/ATen/xpu/XPUDevice.h' 2025-07-24T05:19:51.8256883Z adding 'torch/include/ATen/xpu/XPUEvent.h' 2025-07-24T05:19:51.8260206Z adding 'torch/include/ATen/xpu/XPUGeneratorImpl.h' 2025-07-24T05:19:51.8264303Z adding 'torch/include/ATen/xpu/detail/XPUHooks.h' 2025-07-24T05:19:51.8268606Z adding 'torch/include/asmjit/a64.h' 2025-07-24T05:19:51.8272221Z adding 'torch/include/asmjit/arm.h' 2025-07-24T05:19:51.8275268Z adding 'torch/include/asmjit/asmjit-scope-begin.h' 2025-07-24T05:19:51.8278204Z adding 'torch/include/asmjit/asmjit-scope-end.h' 2025-07-24T05:19:51.8281516Z adding 'torch/include/asmjit/asmjit.h' 2025-07-24T05:19:51.8324955Z adding 'torch/include/asmjit/core.h' 2025-07-24T05:19:51.8331058Z adding 'torch/include/asmjit/x86.h' 2025-07-24T05:19:51.8335303Z adding 'torch/include/asmjit/arm/a64assembler.h' 2025-07-24T05:19:51.8338435Z adding 'torch/include/asmjit/arm/a64builder.h' 2025-07-24T05:19:51.8342991Z adding 'torch/include/asmjit/arm/a64compiler.h' 2025-07-24T05:19:51.8356098Z adding 'torch/include/asmjit/arm/a64emitter.h' 2025-07-24T05:19:51.8384409Z adding 'torch/include/asmjit/arm/a64globals.h' 2025-07-24T05:19:51.8390670Z adding 'torch/include/asmjit/arm/a64instdb.h' 2025-07-24T05:19:51.8398157Z adding 'torch/include/asmjit/arm/a64operand.h' 2025-07-24T05:19:51.8401892Z adding 'torch/include/asmjit/arm/armglobals.h' 2025-07-24T05:19:51.8408406Z adding 'torch/include/asmjit/arm/armoperand.h' 2025-07-24T05:19:51.8413781Z adding 'torch/include/asmjit/arm/armutils.h' 2025-07-24T05:19:51.8422866Z adding 'torch/include/asmjit/core/api-config.h' 2025-07-24T05:19:51.8428641Z adding 'torch/include/asmjit/core/archcommons.h' 2025-07-24T05:19:51.8434186Z adding 'torch/include/asmjit/core/archtraits.h' 2025-07-24T05:19:51.8440289Z adding 'torch/include/asmjit/core/assembler.h' 2025-07-24T05:19:51.8458716Z adding 'torch/include/asmjit/core/builder.h' 2025-07-24T05:19:51.8463595Z adding 'torch/include/asmjit/core/codebuffer.h' 2025-07-24T05:19:51.8480549Z adding 'torch/include/asmjit/core/codeholder.h' 2025-07-24T05:19:51.8491261Z adding 'torch/include/asmjit/core/compiler.h' 2025-07-24T05:19:51.8496745Z adding 'torch/include/asmjit/core/compilerdefs.h' 2025-07-24T05:19:51.8502063Z adding 'torch/include/asmjit/core/constpool.h' 2025-07-24T05:19:51.8518401Z adding 'torch/include/asmjit/core/cpuinfo.h' 2025-07-24T05:19:51.8533914Z adding 'torch/include/asmjit/core/emitter.h' 2025-07-24T05:19:51.8542168Z adding 'torch/include/asmjit/core/environment.h' 2025-07-24T05:19:51.8546972Z adding 'torch/include/asmjit/core/errorhandler.h' 2025-07-24T05:19:51.8551934Z adding 'torch/include/asmjit/core/formatter.h' 2025-07-24T05:19:51.8574597Z adding 'torch/include/asmjit/core/func.h' 2025-07-24T05:19:51.8583270Z adding 'torch/include/asmjit/core/globals.h' 2025-07-24T05:19:51.8594873Z adding 'torch/include/asmjit/core/inst.h' 2025-07-24T05:19:51.8605534Z adding 'torch/include/asmjit/core/jitallocator.h' 2025-07-24T05:19:51.8609287Z adding 'torch/include/asmjit/core/jitruntime.h' 2025-07-24T05:19:51.8613833Z adding 'torch/include/asmjit/core/logger.h' 2025-07-24T05:19:51.8640036Z adding 'torch/include/asmjit/core/operand.h' 2025-07-24T05:19:51.8644708Z adding 'torch/include/asmjit/core/osutils.h' 2025-07-24T05:19:51.8650443Z adding 'torch/include/asmjit/core/string.h' 2025-07-24T05:19:51.8670920Z adding 'torch/include/asmjit/core/support.h' 2025-07-24T05:19:51.8687069Z adding 'torch/include/asmjit/core/target.h' 2025-07-24T05:19:51.8687388Z adding 'torch/include/asmjit/core/type.h' 2025-07-24T05:19:51.8690481Z adding 'torch/include/asmjit/core/virtmem.h' 2025-07-24T05:19:51.8699222Z adding 'torch/include/asmjit/core/zone.h' 2025-07-24T05:19:51.8705214Z adding 'torch/include/asmjit/core/zonehash.h' 2025-07-24T05:19:51.8708039Z adding 'torch/include/asmjit/core/zonelist.h' 2025-07-24T05:19:51.8712542Z adding 'torch/include/asmjit/core/zonestack.h' 2025-07-24T05:19:51.8716337Z adding 'torch/include/asmjit/core/zonestring.h' 2025-07-24T05:19:51.8722315Z adding 'torch/include/asmjit/core/zonetree.h' 2025-07-24T05:19:51.8729840Z adding 'torch/include/asmjit/core/zonevector.h' 2025-07-24T05:19:51.8743087Z adding 'torch/include/asmjit/x86/x86assembler.h' 2025-07-24T05:19:51.8750397Z adding 'torch/include/asmjit/x86/x86builder.h' 2025-07-24T05:19:51.8760624Z adding 'torch/include/asmjit/x86/x86compiler.h' 2025-07-24T05:19:51.8825315Z adding 'torch/include/asmjit/x86/x86emitter.h' 2025-07-24T05:19:51.8889165Z adding 'torch/include/asmjit/x86/x86globals.h' 2025-07-24T05:19:51.8889509Z adding 'torch/include/asmjit/x86/x86instdb.h' 2025-07-24T05:19:51.8894897Z adding 'torch/include/asmjit/x86/x86operand.h' 2025-07-24T05:19:51.8905212Z adding 'torch/include/c10/core/Allocator.h' 2025-07-24T05:19:51.8909014Z adding 'torch/include/c10/core/AutogradState.h' 2025-07-24T05:19:51.8913759Z adding 'torch/include/c10/core/Backend.h' 2025-07-24T05:19:51.8917818Z adding 'torch/include/c10/core/CPUAllocator.h' 2025-07-24T05:19:51.8920983Z adding 'torch/include/c10/core/CachingDeviceAllocator.h' 2025-07-24T05:19:51.8924426Z adding 'torch/include/c10/core/CompileTimeFunctionPointer.h' 2025-07-24T05:19:51.8927882Z adding 'torch/include/c10/core/ConstantSymNodeImpl.h' 2025-07-24T05:19:51.8932188Z adding 'torch/include/c10/core/Contiguity.h' 2025-07-24T05:19:51.8935691Z adding 'torch/include/c10/core/CopyBytes.h' 2025-07-24T05:19:51.8938627Z adding 'torch/include/c10/core/DefaultDtype.h' 2025-07-24T05:19:51.8941876Z adding 'torch/include/c10/core/DefaultTensorOptions.h' 2025-07-24T05:19:51.8946484Z adding 'torch/include/c10/core/Device.h' 2025-07-24T05:19:51.8949757Z adding 'torch/include/c10/core/DeviceArray.h' 2025-07-24T05:19:51.8954526Z adding 'torch/include/c10/core/DeviceGuard.h' 2025-07-24T05:19:51.8958911Z adding 'torch/include/c10/core/DeviceType.h' 2025-07-24T05:19:51.8972115Z adding 'torch/include/c10/core/DispatchKey.h' 2025-07-24T05:19:51.8988940Z adding 'torch/include/c10/core/DispatchKeySet.h' 2025-07-24T05:19:51.8994060Z adding 'torch/include/c10/core/DynamicCast.h' 2025-07-24T05:19:51.8998283Z adding 'torch/include/c10/core/Event.h' 2025-07-24T05:19:51.9002310Z adding 'torch/include/c10/core/GeneratorImpl.h' 2025-07-24T05:19:51.9005601Z adding 'torch/include/c10/core/GradMode.h' 2025-07-24T05:19:51.9009391Z adding 'torch/include/c10/core/InferenceMode.h' 2025-07-24T05:19:51.9012734Z adding 'torch/include/c10/core/Layout.h' 2025-07-24T05:19:51.9017871Z adding 'torch/include/c10/core/MemoryFormat.h' 2025-07-24T05:19:51.9021313Z adding 'torch/include/c10/core/OptionalRef.h' 2025-07-24T05:19:51.9025032Z adding 'torch/include/c10/core/PyHandleCache.h' 2025-07-24T05:19:51.9028187Z adding 'torch/include/c10/core/QEngine.h' 2025-07-24T05:19:51.9031356Z adding 'torch/include/c10/core/QScheme.h' 2025-07-24T05:19:51.9034841Z adding 'torch/include/c10/core/RefcountedDeleter.h' 2025-07-24T05:19:51.9038637Z adding 'torch/include/c10/core/SafePyObject.h' 2025-07-24T05:19:51.9045853Z adding 'torch/include/c10/core/Scalar.h' 2025-07-24T05:19:51.9054370Z adding 'torch/include/c10/core/ScalarType.h' 2025-07-24T05:19:51.9058211Z adding 'torch/include/c10/core/ScalarTypeToTypeMeta.h' 2025-07-24T05:19:51.9062503Z adding 'torch/include/c10/core/Storage.h' 2025-07-24T05:19:51.9068182Z adding 'torch/include/c10/core/StorageImpl.h' 2025-07-24T05:19:51.9073150Z adding 'torch/include/c10/core/Stream.h' 2025-07-24T05:19:51.9077666Z adding 'torch/include/c10/core/StreamGuard.h' 2025-07-24T05:19:51.9081701Z adding 'torch/include/c10/core/SymBool.h' 2025-07-24T05:19:51.9085490Z adding 'torch/include/c10/core/SymFloat.h' 2025-07-24T05:19:51.9091829Z adding 'torch/include/c10/core/SymInt.h' 2025-07-24T05:19:51.9095737Z adding 'torch/include/c10/core/SymIntArrayRef.h' 2025-07-24T05:19:51.9099706Z adding 'torch/include/c10/core/SymNodeImpl.h' 2025-07-24T05:19:51.9104077Z adding 'torch/include/c10/core/SymbolicShapeMeta.h' 2025-07-24T05:19:51.9146496Z adding 'torch/include/c10/core/TensorImpl.h' 2025-07-24T05:19:51.9159089Z adding 'torch/include/c10/core/TensorOptions.h' 2025-07-24T05:19:51.9162994Z adding 'torch/include/c10/core/UndefinedTensorImpl.h' 2025-07-24T05:19:51.9166143Z adding 'torch/include/c10/core/WrapDimMinimal.h' 2025-07-24T05:19:51.9169153Z adding 'torch/include/c10/core/alignment.h' 2025-07-24T05:19:51.9172989Z adding 'torch/include/c10/core/thread_pool.h' 2025-07-24T05:19:51.9177322Z adding 'torch/include/c10/core/impl/COW.h' 2025-07-24T05:19:51.9180949Z adding 'torch/include/c10/core/impl/COWDeleter.h' 2025-07-24T05:19:51.9187380Z adding 'torch/include/c10/core/impl/DeviceGuardImplInterface.h' 2025-07-24T05:19:51.9191279Z adding 'torch/include/c10/core/impl/FakeGuardImpl.h' 2025-07-24T05:19:51.9194443Z adding 'torch/include/c10/core/impl/GPUTrace.h' 2025-07-24T05:19:51.9198163Z adding 'torch/include/c10/core/impl/HermeticPyObjectTLS.h' 2025-07-24T05:19:51.9204888Z adding 'torch/include/c10/core/impl/InlineDeviceGuard.h' 2025-07-24T05:19:51.9209090Z adding 'torch/include/c10/core/impl/InlineEvent.h' 2025-07-24T05:19:51.9214362Z adding 'torch/include/c10/core/impl/InlineStreamGuard.h' 2025-07-24T05:19:51.9218925Z adding 'torch/include/c10/core/impl/LocalDispatchKeySet.h' 2025-07-24T05:19:51.9224819Z adding 'torch/include/c10/core/impl/PyInterpreter.h' 2025-07-24T05:19:51.9230233Z adding 'torch/include/c10/core/impl/PyObjectSlot.h' 2025-07-24T05:19:51.9233571Z adding 'torch/include/c10/core/impl/PythonDispatcherTLS.h' 2025-07-24T05:19:51.9238097Z adding 'torch/include/c10/core/impl/SizesAndStrides.h' 2025-07-24T05:19:51.9241849Z adding 'torch/include/c10/core/impl/TorchDispatchModeTLS.h' 2025-07-24T05:19:51.9245370Z adding 'torch/include/c10/core/impl/VirtualGuardImpl.h' 2025-07-24T05:19:51.9248429Z adding 'torch/include/c10/core/impl/alloc_cpu.h' 2025-07-24T05:19:51.9252526Z adding 'torch/include/c10/cuda/CUDAAlgorithm.h' 2025-07-24T05:19:51.9256454Z adding 'torch/include/c10/cuda/CUDAAllocatorConfig.h' 2025-07-24T05:19:51.9263699Z adding 'torch/include/c10/cuda/CUDACachingAllocator.h' 2025-07-24T05:19:51.9268068Z adding 'torch/include/c10/cuda/CUDADeviceAssertion.h' 2025-07-24T05:19:51.9272712Z adding 'torch/include/c10/cuda/CUDADeviceAssertionHost.h' 2025-07-24T05:19:51.9276731Z adding 'torch/include/c10/cuda/CUDAException.h' 2025-07-24T05:19:51.9281000Z adding 'torch/include/c10/cuda/CUDAFunctions.h' 2025-07-24T05:19:51.9284650Z adding 'torch/include/c10/cuda/CUDAGraphsC10Utils.h' 2025-07-24T05:19:51.9289661Z adding 'torch/include/c10/cuda/CUDAGuard.h' 2025-07-24T05:19:51.9293194Z adding 'torch/include/c10/cuda/CUDAMacros.h' 2025-07-24T05:19:51.9296708Z adding 'torch/include/c10/cuda/CUDAMathCompat.h' 2025-07-24T05:19:51.9299726Z adding 'torch/include/c10/cuda/CUDAMiscFunctions.h' 2025-07-24T05:19:51.9305296Z adding 'torch/include/c10/cuda/CUDAStream.h' 2025-07-24T05:19:51.9309272Z adding 'torch/include/c10/cuda/driver_api.h' 2025-07-24T05:19:51.9314991Z adding 'torch/include/c10/cuda/impl/CUDAGuardImpl.h' 2025-07-24T05:19:51.9318175Z adding 'torch/include/c10/cuda/impl/CUDATest.h' 2025-07-24T05:19:51.9321683Z adding 'torch/include/c10/macros/Export.h' 2025-07-24T05:19:51.9324379Z adding 'torch/include/c10/macros/Macros.h' 2025-07-24T05:19:51.9327196Z adding 'torch/include/c10/macros/cmake_macros.h' 2025-07-24T05:19:51.9331464Z adding 'torch/include/c10/metal/atomic.h' 2025-07-24T05:19:51.9334795Z adding 'torch/include/c10/metal/common.h' 2025-07-24T05:19:51.9338684Z adding 'torch/include/c10/metal/expm1f.h' 2025-07-24T05:19:51.9344869Z adding 'torch/include/c10/metal/indexing.h' 2025-07-24T05:19:51.9349164Z adding 'torch/include/c10/metal/random.h' 2025-07-24T05:19:51.9353071Z adding 'torch/include/c10/metal/reduction_utils.h' 2025-07-24T05:19:51.9368217Z adding 'torch/include/c10/metal/special_math.h' 2025-07-24T05:19:51.9373851Z adding 'torch/include/c10/metal/utils.h' 2025-07-24T05:19:51.9378954Z adding 'torch/include/c10/mobile/CPUCachingAllocator.h' 2025-07-24T05:19:51.9383121Z adding 'torch/include/c10/mobile/CPUProfilingAllocator.h' 2025-07-24T05:19:51.9387333Z adding 'torch/include/c10/test/util/Macros.h' 2025-07-24T05:19:51.9392628Z adding 'torch/include/c10/test/util/complex_math_test_common.h' 2025-07-24T05:19:51.9399614Z adding 'torch/include/c10/test/util/complex_test_common.h' 2025-07-24T05:19:51.9406155Z adding 'torch/include/c10/util/AbortHandler.h' 2025-07-24T05:19:51.9410216Z adding 'torch/include/c10/util/AlignOf.h' 2025-07-24T05:19:51.9414169Z adding 'torch/include/c10/util/ApproximateClock.h' 2025-07-24T05:19:51.9417253Z adding 'torch/include/c10/util/Array.h' 2025-07-24T05:19:51.9422470Z adding 'torch/include/c10/util/ArrayRef.h' 2025-07-24T05:19:51.9427056Z adding 'torch/include/c10/util/BFloat16-inl.h' 2025-07-24T05:19:51.9431727Z adding 'torch/include/c10/util/BFloat16-math.h' 2025-07-24T05:19:51.9435505Z adding 'torch/include/c10/util/BFloat16.h' 2025-07-24T05:19:51.9438814Z adding 'torch/include/c10/util/Backtrace.h' 2025-07-24T05:19:51.9442464Z adding 'torch/include/c10/util/Bitset.h' 2025-07-24T05:19:51.9445980Z adding 'torch/include/c10/util/C++17.h' 2025-07-24T05:19:51.9449420Z adding 'torch/include/c10/util/CallOnce.h' 2025-07-24T05:19:51.9454365Z adding 'torch/include/c10/util/ConstexprCrc.h' 2025-07-24T05:19:51.9457997Z adding 'torch/include/c10/util/DeadlockDetection.h' 2025-07-24T05:19:51.9461597Z adding 'torch/include/c10/util/Deprecated.h' 2025-07-24T05:19:51.9464637Z adding 'torch/include/c10/util/DimVector.h' 2025-07-24T05:19:51.9467758Z adding 'torch/include/c10/util/DynamicCounter.h' 2025-07-24T05:19:51.9471527Z adding 'torch/include/c10/util/Enumerate.h' 2025-07-24T05:19:51.9482150Z adding 'torch/include/c10/util/Exception.h' 2025-07-24T05:19:51.9486830Z adding 'torch/include/c10/util/ExclusivelyOwned.h' 2025-07-24T05:19:51.9490387Z adding 'torch/include/c10/util/ExclusivelyOwnedTensorTraits.h' 2025-07-24T05:19:51.9493488Z adding 'torch/include/c10/util/FbcodeMaps.h' 2025-07-24T05:19:51.9498688Z adding 'torch/include/c10/util/Flags.h' 2025-07-24T05:19:51.9502139Z adding 'torch/include/c10/util/Float4_e2m1fn_x2.h' 2025-07-24T05:19:51.9506306Z adding 'torch/include/c10/util/Float8_e4m3fn-inl.h' 2025-07-24T05:19:51.9511856Z adding 'torch/include/c10/util/Float8_e4m3fn.h' 2025-07-24T05:19:51.9516284Z adding 'torch/include/c10/util/Float8_e4m3fnuz-inl.h' 2025-07-24T05:19:51.9520803Z adding 'torch/include/c10/util/Float8_e4m3fnuz.h' 2025-07-24T05:19:51.9524784Z adding 'torch/include/c10/util/Float8_e5m2-inl.h' 2025-07-24T05:19:51.9529101Z adding 'torch/include/c10/util/Float8_e5m2.h' 2025-07-24T05:19:51.9533503Z adding 'torch/include/c10/util/Float8_e5m2fnuz-inl.h' 2025-07-24T05:19:51.9537987Z adding 'torch/include/c10/util/Float8_e5m2fnuz.h' 2025-07-24T05:19:51.9541471Z adding 'torch/include/c10/util/Float8_e8m0fnu-inl.h' 2025-07-24T05:19:51.9545396Z adding 'torch/include/c10/util/Float8_e8m0fnu.h' 2025-07-24T05:19:51.9548755Z adding 'torch/include/c10/util/Float8_fnuz_cvt.h' 2025-07-24T05:19:51.9552405Z adding 'torch/include/c10/util/FunctionRef.h' 2025-07-24T05:19:51.9555749Z adding 'torch/include/c10/util/Gauge.h' 2025-07-24T05:19:51.9560266Z adding 'torch/include/c10/util/Half-inl.h' 2025-07-24T05:19:51.9568318Z adding 'torch/include/c10/util/Half.h' 2025-07-24T05:19:51.9572777Z adding 'torch/include/c10/util/IdWrapper.h' 2025-07-24T05:19:51.9576287Z adding 'torch/include/c10/util/IntrusiveList.h' 2025-07-24T05:19:51.9580033Z adding 'torch/include/c10/util/Lazy.h' 2025-07-24T05:19:51.9584818Z adding 'torch/include/c10/util/LeftRight.h' 2025-07-24T05:19:51.9588120Z adding 'torch/include/c10/util/Load.h' 2025-07-24T05:19:51.9594070Z adding 'torch/include/c10/util/Logging.h' 2025-07-24T05:19:51.9598145Z adding 'torch/include/c10/util/MathConstants.h' 2025-07-24T05:19:51.9602743Z adding 'torch/include/c10/util/MaybeOwned.h' 2025-07-24T05:19:51.9607487Z adding 'torch/include/c10/util/Metaprogramming.h' 2025-07-24T05:19:51.9610903Z adding 'torch/include/c10/util/NetworkFlow.h' 2025-07-24T05:19:51.9614319Z adding 'torch/include/c10/util/Optional.h' 2025-07-24T05:19:51.9618865Z adding 'torch/include/c10/util/OptionalArrayRef.h' 2025-07-24T05:19:51.9621668Z adding 'torch/include/c10/util/ParallelGuard.h' 2025-07-24T05:19:51.9627178Z adding 'torch/include/c10/util/Registry.h' 2025-07-24T05:19:51.9630898Z adding 'torch/include/c10/util/ScopeExit.h' 2025-07-24T05:19:51.9634105Z adding 'torch/include/c10/util/Semaphore.h' 2025-07-24T05:19:51.9637495Z adding 'torch/include/c10/util/SmallBuffer.h' 2025-07-24T05:19:51.9655021Z adding 'torch/include/c10/util/SmallVector.h' 2025-07-24T05:19:51.9660863Z adding 'torch/include/c10/util/StringUtil.h' 2025-07-24T05:19:51.9664656Z adding 'torch/include/c10/util/Synchronized.h' 2025-07-24T05:19:51.9668270Z adding 'torch/include/c10/util/ThreadLocal.h' 2025-07-24T05:19:51.9672078Z adding 'torch/include/c10/util/ThreadLocalDebugInfo.h' 2025-07-24T05:19:51.9675718Z adding 'torch/include/c10/util/Type.h' 2025-07-24T05:19:51.9679893Z adding 'torch/include/c10/util/TypeCast.h' 2025-07-24T05:19:51.9695976Z adding 'torch/include/c10/util/TypeIndex.h' 2025-07-24T05:19:51.9696083Z adding 'torch/include/c10/util/TypeList.h' 2025-07-24T05:19:51.9696216Z adding 'torch/include/c10/util/TypeSafeSignMath.h' 2025-07-24T05:19:51.9700092Z adding 'torch/include/c10/util/TypeTraits.h' 2025-07-24T05:19:51.9703345Z adding 'torch/include/c10/util/Unicode.h' 2025-07-24T05:19:51.9708034Z adding 'torch/include/c10/util/UniqueVoidPtr.h' 2025-07-24T05:19:51.9710679Z adding 'torch/include/c10/util/Unroll.h' 2025-07-24T05:19:51.9714323Z adding 'torch/include/c10/util/WaitCounter.h' 2025-07-24T05:19:51.9717513Z adding 'torch/include/c10/util/WaitCounterDynamicBackend.h' 2025-07-24T05:19:51.9721299Z adding 'torch/include/c10/util/accumulate.h' 2025-07-24T05:19:51.9724542Z adding 'torch/include/c10/util/bit_cast.h' 2025-07-24T05:19:51.9727648Z adding 'torch/include/c10/util/bits.h' 2025-07-24T05:19:51.9735047Z adding 'torch/include/c10/util/complex.h' 2025-07-24T05:19:51.9740178Z adding 'torch/include/c10/util/complex_math.h' 2025-07-24T05:19:51.9743666Z adding 'torch/include/c10/util/complex_utils.h' 2025-07-24T05:19:51.9747215Z adding 'torch/include/c10/util/copysign.h' 2025-07-24T05:19:51.9749847Z adding 'torch/include/c10/util/env.h' 2025-07-24T05:19:51.9752685Z adding 'torch/include/c10/util/error.h' 2025-07-24T05:19:51.9768604Z adding 'torch/include/c10/util/flat_hash_map.h' 2025-07-24T05:19:51.9773207Z adding 'torch/include/c10/util/floating_point_utils.h' 2025-07-24T05:19:51.9776732Z adding 'torch/include/c10/util/generic_math.h' 2025-07-24T05:19:51.9782582Z adding 'torch/include/c10/util/hash.h' 2025-07-24T05:19:51.9788868Z adding 'torch/include/c10/util/int128.h' 2025-07-24T05:19:51.9802054Z adding 'torch/include/c10/util/intrusive_ptr.h' 2025-07-24T05:19:51.9806641Z adding 'torch/include/c10/util/irange.h' 2025-07-24T05:19:51.9817005Z adding 'torch/include/c10/util/llvmMathExtras.h' 2025-07-24T05:19:51.9821425Z adding 'torch/include/c10/util/logging_is_google_glog.h' 2025-07-24T05:19:51.9826169Z adding 'torch/include/c10/util/logging_is_not_google_glog.h' 2025-07-24T05:19:51.9829681Z adding 'torch/include/c10/util/numa.h' 2025-07-24T05:19:51.9847822Z adding 'torch/include/c10/util/order_preserving_flat_hash_map.h' 2025-07-24T05:19:51.9852981Z adding 'torch/include/c10/util/overflows.h' 2025-07-24T05:19:51.9856087Z adding 'torch/include/c10/util/overloaded.h' 2025-07-24T05:19:51.9858823Z adding 'torch/include/c10/util/python_stub.h' 2025-07-24T05:19:51.9861668Z adding 'torch/include/c10/util/qint32.h' 2025-07-24T05:19:51.9864608Z adding 'torch/include/c10/util/qint8.h' 2025-07-24T05:19:51.9867450Z adding 'torch/include/c10/util/quint2x4.h' 2025-07-24T05:19:51.9870362Z adding 'torch/include/c10/util/quint4x2.h' 2025-07-24T05:19:51.9873241Z adding 'torch/include/c10/util/quint8.h' 2025-07-24T05:19:51.9876668Z adding 'torch/include/c10/util/safe_numerics.h' 2025-07-24T05:19:51.9880621Z adding 'torch/include/c10/util/signal_handler.h' 2025-07-24T05:19:51.9899941Z adding 'torch/include/c10/util/sparse_bitset.h' 2025-07-24T05:19:51.9903653Z adding 'torch/include/c10/util/ssize.h' 2025-07-24T05:19:51.9906835Z adding 'torch/include/c10/util/static_tracepoint.h' 2025-07-24T05:19:51.9911202Z adding 'torch/include/c10/util/static_tracepoint_elfx86.h' 2025-07-24T05:19:51.9914382Z adding 'torch/include/c10/util/strides.h' 2025-07-24T05:19:51.9917276Z adding 'torch/include/c10/util/string_utils.h' 2025-07-24T05:19:51.9923995Z adding 'torch/include/c10/util/string_view.h' 2025-07-24T05:19:51.9933446Z adding 'torch/include/c10/util/strong_type.h' 2025-07-24T05:19:51.9937779Z adding 'torch/include/c10/util/tempfile.h' 2025-07-24T05:19:51.9940743Z adding 'torch/include/c10/util/thread_name.h' 2025-07-24T05:19:51.9949764Z adding 'torch/include/c10/util/typeid.h' 2025-07-24T05:19:51.9953455Z adding 'torch/include/c10/util/win32-headers.h' 2025-07-24T05:19:51.9957444Z adding 'torch/include/c10/xpu/XPUCachingAllocator.h' 2025-07-24T05:19:51.9962332Z adding 'torch/include/c10/xpu/XPUDeviceProp.h' 2025-07-24T05:19:51.9965640Z adding 'torch/include/c10/xpu/XPUException.h' 2025-07-24T05:19:51.9968766Z adding 'torch/include/c10/xpu/XPUFunctions.h' 2025-07-24T05:19:51.9971873Z adding 'torch/include/c10/xpu/XPUMacros.h' 2025-07-24T05:19:51.9976456Z adding 'torch/include/c10/xpu/XPUStream.h' 2025-07-24T05:19:51.9981752Z adding 'torch/include/c10/xpu/impl/XPUGuardImpl.h' 2025-07-24T05:19:51.9986159Z adding 'torch/include/c10/xpu/test/impl/XPUTest.h' 2025-07-24T05:19:51.9990714Z adding 'torch/include/caffe2/core/common.h' 2025-07-24T05:19:51.9994110Z adding 'torch/include/caffe2/core/macros.h' 2025-07-24T05:19:51.9997448Z adding 'torch/include/caffe2/core/timer.h' 2025-07-24T05:19:52.0003059Z adding 'torch/include/caffe2/perfkernels/batch_box_cox_vec.h' 2025-07-24T05:19:52.0007168Z adding 'torch/include/caffe2/perfkernels/common.h' 2025-07-24T05:19:52.0010660Z adding 'torch/include/caffe2/perfkernels/embedding_lookup_idx.h' 2025-07-24T05:19:52.0050416Z adding 'torch/include/caffe2/serialize/crc_alt.h' 2025-07-24T05:19:52.0055314Z adding 'torch/include/caffe2/serialize/file_adapter.h' 2025-07-24T05:19:52.0058329Z adding 'torch/include/caffe2/serialize/in_memory_adapter.h' 2025-07-24T05:19:52.0063710Z adding 'torch/include/caffe2/serialize/inline_container.h' 2025-07-24T05:19:52.0067099Z adding 'torch/include/caffe2/serialize/istream_adapter.h' 2025-07-24T05:19:52.0070144Z adding 'torch/include/caffe2/serialize/read_adapter_interface.h' 2025-07-24T05:19:52.0074646Z adding 'torch/include/caffe2/serialize/versions.h' 2025-07-24T05:19:52.0079519Z adding 'torch/include/caffe2/utils/fixed_divisor.h' 2025-07-24T05:19:52.0082670Z adding 'torch/include/caffe2/utils/proto_wrap.h' 2025-07-24T05:19:52.0085770Z adding 'torch/include/caffe2/utils/string_utils.h' 2025-07-24T05:19:52.0090143Z adding 'torch/include/caffe2/utils/threadpool/ThreadPool.h' 2025-07-24T05:19:52.0093318Z adding 'torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h' 2025-07-24T05:19:52.0099499Z adding 'torch/include/caffe2/utils/threadpool/WorkersPool.h' 2025-07-24T05:19:52.0103101Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h' 2025-07-24T05:19:52.0107089Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool.h' 2025-07-24T05:19:52.0110272Z adding 'torch/include/caffe2/utils/threadpool/thread_pool_guard.h' 2025-07-24T05:19:52.0115523Z adding 'torch/include/fbgemm/ConvUtils.h' 2025-07-24T05:19:52.0128331Z adding 'torch/include/fbgemm/Fbgemm.h' 2025-07-24T05:19:52.0132914Z adding 'torch/include/fbgemm/FbgemmBuild.h' 2025-07-24T05:19:52.0136506Z adding 'torch/include/fbgemm/FbgemmConvert.h' 2025-07-24T05:19:52.0141417Z adding 'torch/include/fbgemm/FbgemmEmbedding.h' 2025-07-24T05:19:52.0145153Z adding 'torch/include/fbgemm/FbgemmFP16.h' 2025-07-24T05:19:52.0148317Z adding 'torch/include/fbgemm/FbgemmFP32.h' 2025-07-24T05:19:52.0153504Z adding 'torch/include/fbgemm/FbgemmFPCommon.h' 2025-07-24T05:19:52.0156807Z adding 'torch/include/fbgemm/FbgemmI64.h' 2025-07-24T05:19:52.0160575Z adding 'torch/include/fbgemm/FbgemmI8DepthwiseAvx2.h' 2025-07-24T05:19:52.0163828Z adding 'torch/include/fbgemm/FbgemmI8DirectconvAvx2.h' 2025-07-24T05:19:52.0167478Z adding 'torch/include/fbgemm/FbgemmI8Spmdm.h' 2025-07-24T05:19:52.0172563Z adding 'torch/include/fbgemm/FbgemmPackMatrixB.h' 2025-07-24T05:19:52.0176875Z adding 'torch/include/fbgemm/FbgemmSparse.h' 2025-07-24T05:19:52.0182619Z adding 'torch/include/fbgemm/FloatConversion.h' 2025-07-24T05:19:52.0187253Z adding 'torch/include/fbgemm/OutputProcessing-inl.h' 2025-07-24T05:19:52.0192514Z adding 'torch/include/fbgemm/PackingTraits-inl.h' 2025-07-24T05:19:52.0198520Z adding 'torch/include/fbgemm/QuantUtils.h' 2025-07-24T05:19:52.0202640Z adding 'torch/include/fbgemm/QuantUtilsAvx2.h' 2025-07-24T05:19:52.0205833Z adding 'torch/include/fbgemm/QuantUtilsAvx512.h' 2025-07-24T05:19:52.0208930Z adding 'torch/include/fbgemm/QuantUtilsNeon.h' 2025-07-24T05:19:52.0212194Z adding 'torch/include/fbgemm/SimdUtils.h' 2025-07-24T05:19:52.0215090Z adding 'torch/include/fbgemm/Types.h' 2025-07-24T05:19:52.0221205Z adding 'torch/include/fbgemm/Utils.h' 2025-07-24T05:19:52.0224987Z adding 'torch/include/fbgemm/UtilsAvx2.h' 2025-07-24T05:19:52.0228209Z adding 'torch/include/fbgemm/spmmUtils.h' 2025-07-24T05:19:52.0231314Z adding 'torch/include/fbgemm/spmmUtilsAvx2.h' 2025-07-24T05:19:52.0236735Z adding 'torch/include/fmt/args.h' 2025-07-24T05:19:52.0274641Z adding 'torch/include/fmt/base.h' 2025-07-24T05:19:52.0301961Z adding 'torch/include/fmt/chrono.h' 2025-07-24T05:19:52.0334917Z adding 'torch/include/fmt/color.h' 2025-07-24T05:19:52.0335012Z adding 'torch/include/fmt/compile.h' 2025-07-24T05:19:52.0335103Z adding 'torch/include/fmt/core.h' 2025-07-24T05:19:52.0357825Z adding 'torch/include/fmt/format-inl.h' 2025-07-24T05:19:52.0417668Z adding 'torch/include/fmt/format.h' 2025-07-24T05:19:52.0427752Z adding 'torch/include/fmt/os.h' 2025-07-24T05:19:52.0432391Z adding 'torch/include/fmt/ostream.h' 2025-07-24T05:19:52.0440834Z adding 'torch/include/fmt/printf.h' 2025-07-24T05:19:52.0450780Z adding 'torch/include/fmt/ranges.h' 2025-07-24T05:19:52.0459558Z adding 'torch/include/fmt/std.h' 2025-07-24T05:19:52.0465394Z adding 'torch/include/fmt/xchar.h' 2025-07-24T05:19:52.0469705Z adding 'torch/include/fp16/bitcasts.h' 2025-07-24T05:19:52.0476193Z adding 'torch/include/fp16/fp16.h' 2025-07-24T05:19:52.0480718Z adding 'torch/include/fp16/psimd.h' 2025-07-24T05:19:52.0487397Z adding 'torch/include/google/protobuf/any.h' 2025-07-24T05:19:52.0493474Z adding 'torch/include/google/protobuf/any.pb.h' 2025-07-24T05:19:52.0505251Z adding 'torch/include/google/protobuf/api.pb.h' 2025-07-24T05:19:52.0518467Z adding 'torch/include/google/protobuf/arena.h' 2025-07-24T05:19:52.0526133Z adding 'torch/include/google/protobuf/arena_impl.h' 2025-07-24T05:19:52.0532752Z adding 'torch/include/google/protobuf/arenastring.h' 2025-07-24T05:19:52.0565819Z adding 'torch/include/google/protobuf/descriptor.h' 2025-07-24T05:19:52.0649650Z adding 'torch/include/google/protobuf/descriptor.pb.h' 2025-07-24T05:19:52.0672004Z adding 'torch/include/google/protobuf/descriptor_database.h' 2025-07-24T05:19:52.0677421Z adding 'torch/include/google/protobuf/duration.pb.h' 2025-07-24T05:19:52.0683286Z adding 'torch/include/google/protobuf/dynamic_message.h' 2025-07-24T05:19:52.0709087Z adding 'torch/include/google/protobuf/empty.pb.h' 2025-07-24T05:19:52.0713784Z adding 'torch/include/google/protobuf/extension_set.h' 2025-07-24T05:19:52.0721309Z adding 'torch/include/google/protobuf/extension_set_inl.h' 2025-07-24T05:19:52.0727219Z adding 'torch/include/google/protobuf/field_mask.pb.h' 2025-07-24T05:19:52.0731124Z adding 'torch/include/google/protobuf/generated_enum_reflection.h' 2025-07-24T05:19:52.0735179Z adding 'torch/include/google/protobuf/generated_enum_util.h' 2025-07-24T05:19:52.0741448Z adding 'torch/include/google/protobuf/generated_message_reflection.h' 2025-07-24T05:19:52.0747995Z adding 'torch/include/google/protobuf/generated_message_table_driven.h' 2025-07-24T05:19:52.0753593Z adding 'torch/include/google/protobuf/generated_message_util.h' 2025-07-24T05:19:52.0757399Z adding 'torch/include/google/protobuf/has_bits.h' 2025-07-24T05:19:52.0762719Z adding 'torch/include/google/protobuf/implicit_weak_message.h' 2025-07-24T05:19:52.0767675Z adding 'torch/include/google/protobuf/inlined_string_field.h' 2025-07-24T05:19:52.0785054Z adding 'torch/include/google/protobuf/map.h' 2025-07-24T05:19:52.0790959Z adding 'torch/include/google/protobuf/map_entry.h' 2025-07-24T05:19:52.0800959Z adding 'torch/include/google/protobuf/map_entry_lite.h' 2025-07-24T05:19:52.0812052Z adding 'torch/include/google/protobuf/map_field.h' 2025-07-24T05:19:52.0818851Z adding 'torch/include/google/protobuf/map_field_inl.h' 2025-07-24T05:19:52.0823890Z adding 'torch/include/google/protobuf/map_field_lite.h' 2025-07-24T05:19:52.0833395Z adding 'torch/include/google/protobuf/map_type_handler.h' 2025-07-24T05:19:52.0856764Z adding 'torch/include/google/protobuf/message.h' 2025-07-24T05:19:52.0868822Z adding 'torch/include/google/protobuf/message_lite.h' 2025-07-24T05:19:52.0873120Z adding 'torch/include/google/protobuf/metadata.h' 2025-07-24T05:19:52.0878073Z adding 'torch/include/google/protobuf/metadata_lite.h' 2025-07-24T05:19:52.0889901Z adding 'torch/include/google/protobuf/parse_context.h' 2025-07-24T05:19:52.0894055Z adding 'torch/include/google/protobuf/port.h' 2025-07-24T05:19:52.0902096Z adding 'torch/include/google/protobuf/reflection.h' 2025-07-24T05:19:52.0906577Z adding 'torch/include/google/protobuf/reflection_ops.h' 2025-07-24T05:19:52.0941392Z adding 'torch/include/google/protobuf/repeated_field.h' 2025-07-24T05:19:52.0950650Z adding 'torch/include/google/protobuf/service.h' 2025-07-24T05:19:52.0956205Z adding 'torch/include/google/protobuf/source_context.pb.h' 2025-07-24T05:19:52.0967618Z adding 'torch/include/google/protobuf/struct.pb.h' 2025-07-24T05:19:52.0979744Z adding 'torch/include/google/protobuf/text_format.h' 2025-07-24T05:19:52.0985614Z adding 'torch/include/google/protobuf/timestamp.pb.h' 2025-07-24T05:19:52.1005502Z adding 'torch/include/google/protobuf/type.pb.h' 2025-07-24T05:19:52.1013915Z adding 'torch/include/google/protobuf/unknown_field_set.h' 2025-07-24T05:19:52.1021258Z adding 'torch/include/google/protobuf/wire_format.h' 2025-07-24T05:19:52.1043241Z adding 'torch/include/google/protobuf/wire_format_lite.h' 2025-07-24T05:19:52.1055445Z adding 'torch/include/google/protobuf/wrappers.pb.h' 2025-07-24T05:19:52.1063052Z adding 'torch/include/google/protobuf/compiler/code_generator.h' 2025-07-24T05:19:52.1072468Z adding 'torch/include/google/protobuf/compiler/command_line_interface.h' 2025-07-24T05:19:52.1080026Z adding 'torch/include/google/protobuf/compiler/importer.h' 2025-07-24T05:19:52.1091374Z adding 'torch/include/google/protobuf/compiler/parser.h' 2025-07-24T05:19:52.1096429Z adding 'torch/include/google/protobuf/compiler/plugin.h' 2025-07-24T05:19:52.1111546Z adding 'torch/include/google/protobuf/compiler/plugin.pb.h' 2025-07-24T05:19:52.1118243Z adding 'torch/include/google/protobuf/compiler/cpp/cpp_generator.h' 2025-07-24T05:19:52.1122964Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_generator.h' 2025-07-24T05:19:52.1127058Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_names.h' 2025-07-24T05:19:52.1131759Z adding 'torch/include/google/protobuf/compiler/java/java_generator.h' 2025-07-24T05:19:52.1135525Z adding 'torch/include/google/protobuf/compiler/java/java_names.h' 2025-07-24T05:19:52.1142838Z adding 'torch/include/google/protobuf/compiler/js/js_generator.h' 2025-07-24T05:19:52.1146442Z adding 'torch/include/google/protobuf/compiler/js/well_known_types_embed.h' 2025-07-24T05:19:52.1151286Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_generator.h' 2025-07-24T05:19:52.1157468Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_helpers.h' 2025-07-24T05:19:52.1162514Z adding 'torch/include/google/protobuf/compiler/php/php_generator.h' 2025-07-24T05:19:52.1168410Z adding 'torch/include/google/protobuf/compiler/python/python_generator.h' 2025-07-24T05:19:52.1172722Z adding 'torch/include/google/protobuf/compiler/ruby/ruby_generator.h' 2025-07-24T05:19:52.1201762Z adding 'torch/include/google/protobuf/io/coded_stream.h' 2025-07-24T05:19:52.1208091Z adding 'torch/include/google/protobuf/io/gzip_stream.h' 2025-07-24T05:19:52.1212675Z adding 'torch/include/google/protobuf/io/io_win32.h' 2025-07-24T05:19:52.1221565Z adding 'torch/include/google/protobuf/io/printer.h' 2025-07-24T05:19:52.1224400Z adding 'torch/include/google/protobuf/io/strtod.h' 2025-07-24T05:19:52.1233397Z adding 'torch/include/google/protobuf/io/tokenizer.h' 2025-07-24T05:19:52.1239524Z adding 'torch/include/google/protobuf/io/zero_copy_stream.h' 2025-07-24T05:19:52.1245222Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl.h' 2025-07-24T05:19:52.1252835Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl_lite.h' 2025-07-24T05:19:52.1259876Z adding 'torch/include/google/protobuf/stubs/bytestream.h' 2025-07-24T05:19:52.1265625Z adding 'torch/include/google/protobuf/stubs/callback.h' 2025-07-24T05:19:52.1271311Z adding 'torch/include/google/protobuf/stubs/casts.h' 2025-07-24T05:19:52.1276267Z adding 'torch/include/google/protobuf/stubs/common.h' 2025-07-24T05:19:52.1281114Z adding 'torch/include/google/protobuf/stubs/fastmem.h' 2025-07-24T05:19:52.1285192Z adding 'torch/include/google/protobuf/stubs/hash.h' 2025-07-24T05:19:52.1290281Z adding 'torch/include/google/protobuf/stubs/logging.h' 2025-07-24T05:19:52.1294747Z adding 'torch/include/google/protobuf/stubs/macros.h' 2025-07-24T05:19:52.1304859Z adding 'torch/include/google/protobuf/stubs/map_util.h' 2025-07-24T05:19:52.1309972Z adding 'torch/include/google/protobuf/stubs/mutex.h' 2025-07-24T05:19:52.1313597Z adding 'torch/include/google/protobuf/stubs/once.h' 2025-07-24T05:19:52.1317681Z adding 'torch/include/google/protobuf/stubs/platform_macros.h' 2025-07-24T05:19:52.1323634Z adding 'torch/include/google/protobuf/stubs/port.h' 2025-07-24T05:19:52.1327914Z adding 'torch/include/google/protobuf/stubs/status.h' 2025-07-24T05:19:52.1331807Z adding 'torch/include/google/protobuf/stubs/stl_util.h' 2025-07-24T05:19:52.1339739Z adding 'torch/include/google/protobuf/stubs/stringpiece.h' 2025-07-24T05:19:52.1353942Z adding 'torch/include/google/protobuf/stubs/strutil.h' 2025-07-24T05:19:52.1359229Z adding 'torch/include/google/protobuf/stubs/template_util.h' 2025-07-24T05:19:52.1365186Z adding 'torch/include/google/protobuf/util/delimited_message_util.h' 2025-07-24T05:19:52.1370691Z adding 'torch/include/google/protobuf/util/field_comparator.h' 2025-07-24T05:19:52.1376578Z adding 'torch/include/google/protobuf/util/field_mask_util.h' 2025-07-24T05:19:52.1381490Z adding 'torch/include/google/protobuf/util/json_util.h' 2025-07-24T05:19:52.1399763Z adding 'torch/include/google/protobuf/util/message_differencer.h' 2025-07-24T05:19:52.1406324Z adding 'torch/include/google/protobuf/util/time_util.h' 2025-07-24T05:19:52.1410240Z adding 'torch/include/google/protobuf/util/type_resolver.h' 2025-07-24T05:19:52.1413846Z adding 'torch/include/google/protobuf/util/type_resolver_util.h' 2025-07-24T05:19:52.1418653Z adding 'torch/include/kineto/AbstractConfig.h' 2025-07-24T05:19:52.1422545Z adding 'torch/include/kineto/ActivityProfilerInterface.h' 2025-07-24T05:19:52.1425668Z adding 'torch/include/kineto/ActivityTraceInterface.h' 2025-07-24T05:19:52.1429025Z adding 'torch/include/kineto/ActivityType.h' 2025-07-24T05:19:52.1432046Z adding 'torch/include/kineto/ClientInterface.h' 2025-07-24T05:19:52.1438970Z adding 'torch/include/kineto/Config.h' 2025-07-24T05:19:52.1443414Z adding 'torch/include/kineto/GenericTraceActivity.h' 2025-07-24T05:19:52.1448176Z adding 'torch/include/kineto/IActivityProfiler.h' 2025-07-24T05:19:52.1451190Z adding 'torch/include/kineto/ILoggerObserver.h' 2025-07-24T05:19:52.1454702Z adding 'torch/include/kineto/ITraceActivity.h' 2025-07-24T05:19:52.1458019Z adding 'torch/include/kineto/LoggingAPI.h' 2025-07-24T05:19:52.1460835Z adding 'torch/include/kineto/ThreadUtil.h' 2025-07-24T05:19:52.1463979Z adding 'torch/include/kineto/TraceSpan.h' 2025-07-24T05:19:52.1467880Z adding 'torch/include/kineto/libkineto.h' 2025-07-24T05:19:52.1471523Z adding 'torch/include/kineto/output_base.h' 2025-07-24T05:19:52.1474457Z adding 'torch/include/kineto/time_since_epoch.h' 2025-07-24T05:19:52.1484624Z adding 'torch/include/legacy/ittnotify.h' 2025-07-24T05:19:52.1490024Z adding 'torch/include/mimalloc-2.2/mimalloc-new-delete.h' 2025-07-24T05:19:52.1494302Z adding 'torch/include/mimalloc-2.2/mimalloc-override.h' 2025-07-24T05:19:52.1497550Z adding 'torch/include/mimalloc-2.2/mimalloc-stats.h' 2025-07-24T05:19:52.1509386Z adding 'torch/include/mimalloc-2.2/mimalloc.h' 2025-07-24T05:19:52.1548845Z adding 'torch/include/oneapi/dnnl/dnnl.h' 2025-07-24T05:19:52.1662600Z adding 'torch/include/oneapi/dnnl/dnnl.hpp' 2025-07-24T05:19:52.1683647Z adding 'torch/include/oneapi/dnnl/dnnl_common.h' 2025-07-24T05:19:52.1690341Z adding 'torch/include/oneapi/dnnl/dnnl_common.hpp' 2025-07-24T05:19:52.1705422Z adding 'torch/include/oneapi/dnnl/dnnl_common_types.h' 2025-07-24T05:19:52.1705552Z adding 'torch/include/oneapi/dnnl/dnnl_config.h' 2025-07-24T05:19:52.1705686Z adding 'torch/include/oneapi/dnnl/dnnl_debug.h' 2025-07-24T05:19:52.1715397Z adding 'torch/include/oneapi/dnnl/dnnl_graph.h' 2025-07-24T05:19:52.1737895Z adding 'torch/include/oneapi/dnnl/dnnl_graph.hpp' 2025-07-24T05:19:52.1743685Z adding 'torch/include/oneapi/dnnl/dnnl_graph_ocl.h' 2025-07-24T05:19:52.1747846Z adding 'torch/include/oneapi/dnnl/dnnl_graph_ocl.hpp' 2025-07-24T05:19:52.1751581Z adding 'torch/include/oneapi/dnnl/dnnl_graph_sycl.h' 2025-07-24T05:19:52.1756651Z adding 'torch/include/oneapi/dnnl/dnnl_graph_sycl.hpp' 2025-07-24T05:19:52.1762418Z adding 'torch/include/oneapi/dnnl/dnnl_graph_types.h' 2025-07-24T05:19:52.1767855Z adding 'torch/include/oneapi/dnnl/dnnl_ocl.h' 2025-07-24T05:19:52.1774473Z adding 'torch/include/oneapi/dnnl/dnnl_ocl.hpp' 2025-07-24T05:19:52.1778125Z adding 'torch/include/oneapi/dnnl/dnnl_ocl_types.h' 2025-07-24T05:19:52.1782521Z adding 'torch/include/oneapi/dnnl/dnnl_sycl.h' 2025-07-24T05:19:52.1788798Z adding 'torch/include/oneapi/dnnl/dnnl_sycl.hpp' 2025-07-24T05:19:52.1792404Z adding 'torch/include/oneapi/dnnl/dnnl_sycl_types.h' 2025-07-24T05:19:52.1796032Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool.h' 2025-07-24T05:19:52.1799942Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool.hpp' 2025-07-24T05:19:52.1803495Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool_iface.hpp' 2025-07-24T05:19:52.1831068Z adding 'torch/include/oneapi/dnnl/dnnl_types.h' 2025-07-24T05:19:52.1838553Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel.h' 2025-07-24T05:19:52.1845083Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel.hpp' 2025-07-24T05:19:52.1849229Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel_types.h' 2025-07-24T05:19:52.1852343Z adding 'torch/include/oneapi/dnnl/dnnl_version.h' 2025-07-24T05:19:52.1855687Z adding 'torch/include/oneapi/dnnl/dnnl_version_hash.h' 2025-07-24T05:19:52.1866308Z adding 'torch/include/pybind11/attr.h' 2025-07-24T05:19:52.1870656Z adding 'torch/include/pybind11/buffer_info.h' 2025-07-24T05:19:52.1895154Z adding 'torch/include/pybind11/cast.h' 2025-07-24T05:19:52.1901490Z adding 'torch/include/pybind11/chrono.h' 2025-07-24T05:19:52.1904604Z adding 'torch/include/pybind11/common.h' 2025-07-24T05:19:52.1908100Z adding 'torch/include/pybind11/complex.h' 2025-07-24T05:19:52.1911058Z adding 'torch/include/pybind11/eigen.h' 2025-07-24T05:19:52.1917600Z adding 'torch/include/pybind11/embed.h' 2025-07-24T05:19:52.1921524Z adding 'torch/include/pybind11/eval.h' 2025-07-24T05:19:52.1926028Z adding 'torch/include/pybind11/functional.h' 2025-07-24T05:19:52.1930768Z adding 'torch/include/pybind11/gil.h' 2025-07-24T05:19:52.1935284Z adding 'torch/include/pybind11/gil_safe_call_once.h' 2025-07-24T05:19:52.1940555Z adding 'torch/include/pybind11/iostream.h' 2025-07-24T05:19:52.1968156Z adding 'torch/include/pybind11/numpy.h' 2025-07-24T05:19:52.1975334Z adding 'torch/include/pybind11/operators.h' 2025-07-24T05:19:52.1978109Z adding 'torch/include/pybind11/options.h' 2025-07-24T05:19:52.2020712Z adding 'torch/include/pybind11/pybind11.h' 2025-07-24T05:19:52.2054599Z adding 'torch/include/pybind11/pytypes.h' 2025-07-24T05:19:52.2063095Z adding 'torch/include/pybind11/stl.h' 2025-07-24T05:19:52.2073010Z adding 'torch/include/pybind11/stl_bind.h' 2025-07-24T05:19:52.2077158Z adding 'torch/include/pybind11/type_caster_pyobject_ptr.h' 2025-07-24T05:19:52.2081403Z adding 'torch/include/pybind11/typing.h' 2025-07-24T05:19:52.2093471Z adding 'torch/include/pybind11/detail/class.h' 2025-07-24T05:19:52.2113279Z adding 'torch/include/pybind11/detail/common.h' 2025-07-24T05:19:52.2118559Z adding 'torch/include/pybind11/detail/cpp_conduit.h' 2025-07-24T05:19:52.2123053Z adding 'torch/include/pybind11/detail/descr.h' 2025-07-24T05:19:52.2132069Z adding 'torch/include/pybind11/detail/exception_translation.h' 2025-07-24T05:19:52.2133469Z adding 'torch/include/pybind11/detail/init.h' 2025-07-24T05:19:52.2146124Z adding 'torch/include/pybind11/detail/internals.h' 2025-07-24T05:19:52.2164957Z adding 'torch/include/pybind11/detail/type_caster_base.h' 2025-07-24T05:19:52.2170122Z adding 'torch/include/pybind11/detail/typeid.h' 2025-07-24T05:19:52.2173006Z adding 'torch/include/pybind11/detail/value_and_holder.h' 2025-07-24T05:19:52.2176901Z adding 'torch/include/pybind11/eigen/common.h' 2025-07-24T05:19:52.2188379Z adding 'torch/include/pybind11/eigen/matrix.h' 2025-07-24T05:19:52.2195465Z adding 'torch/include/pybind11/eigen/tensor.h' 2025-07-24T05:19:52.2200623Z adding 'torch/include/pybind11/stl/filesystem.h' 2025-07-24T05:19:52.2209578Z adding 'torch/include/torch/custom_class.h' 2025-07-24T05:19:52.2214920Z adding 'torch/include/torch/custom_class_detail.h' 2025-07-24T05:19:52.2217977Z adding 'torch/include/torch/extension.h' 2025-07-24T05:19:52.2233787Z adding 'torch/include/torch/library.h' 2025-07-24T05:19:52.2237700Z adding 'torch/include/torch/script.h' 2025-07-24T05:19:52.2242927Z adding 'torch/include/torch/csrc/CudaIPCTypes.h' 2025-07-24T05:19:52.2245903Z adding 'torch/include/torch/csrc/DataLoader.h' 2025-07-24T05:19:52.2248771Z adding 'torch/include/torch/csrc/Device.h' 2025-07-24T05:19:52.2255910Z adding 'torch/include/torch/csrc/DeviceAccelerator.h' 2025-07-24T05:19:52.2256261Z adding 'torch/include/torch/csrc/Dtype.h' 2025-07-24T05:19:52.2258433Z adding 'torch/include/torch/csrc/DynamicTypes.h' 2025-07-24T05:19:52.2299711Z adding 'torch/include/torch/csrc/Event.h' 2025-07-24T05:19:52.2300053Z adding 'torch/include/torch/csrc/Exceptions.h' 2025-07-24T05:19:52.2300468Z adding 'torch/include/torch/csrc/Export.h' 2025-07-24T05:19:52.2300773Z adding 'torch/include/torch/csrc/Generator.h' 2025-07-24T05:19:52.2301091Z adding 'torch/include/torch/csrc/Layout.h' 2025-07-24T05:19:52.2301455Z adding 'torch/include/torch/csrc/MemoryFormat.h' 2025-07-24T05:19:52.2301784Z adding 'torch/include/torch/csrc/Module.h' 2025-07-24T05:19:52.2302114Z adding 'torch/include/torch/csrc/PyInterpreter.h' 2025-07-24T05:19:52.2302439Z adding 'torch/include/torch/csrc/QScheme.h' 2025-07-24T05:19:52.2302728Z adding 'torch/include/torch/csrc/Size.h' 2025-07-24T05:19:52.2303023Z adding 'torch/include/torch/csrc/Storage.h' 2025-07-24T05:19:52.2303340Z adding 'torch/include/torch/csrc/StorageMethods.h' 2025-07-24T05:19:52.2305739Z adding 'torch/include/torch/csrc/StorageSharing.h' 2025-07-24T05:19:52.2308271Z adding 'torch/include/torch/csrc/Stream.h' 2025-07-24T05:19:52.2311296Z adding 'torch/include/torch/csrc/THConcat.h' 2025-07-24T05:19:52.2314396Z adding 'torch/include/torch/csrc/THP.h' 2025-07-24T05:19:52.2317795Z adding 'torch/include/torch/csrc/TypeInfo.h' 2025-07-24T05:19:52.2320470Z adding 'torch/include/torch/csrc/Types.h' 2025-07-24T05:19:52.2323838Z adding 'torch/include/torch/csrc/copy_utils.h' 2025-07-24T05:19:52.2326609Z adding 'torch/include/torch/csrc/itt.h' 2025-07-24T05:19:52.2329407Z adding 'torch/include/torch/csrc/itt_wrapper.h' 2025-07-24T05:19:52.2332194Z adding 'torch/include/torch/csrc/python_dimname.h' 2025-07-24T05:19:52.2335231Z adding 'torch/include/torch/csrc/python_headers.h' 2025-07-24T05:19:52.2338161Z adding 'torch/include/torch/csrc/serialization.h' 2025-07-24T05:19:52.2342521Z adding 'torch/include/torch/csrc/utils.h' 2025-07-24T05:19:52.2349026Z adding 'torch/include/torch/csrc/api/include/torch/all.h' 2025-07-24T05:19:52.2352506Z adding 'torch/include/torch/csrc/api/include/torch/arg.h' 2025-07-24T05:19:52.2355448Z adding 'torch/include/torch/csrc/api/include/torch/autograd.h' 2025-07-24T05:19:52.2358580Z adding 'torch/include/torch/csrc/api/include/torch/cuda.h' 2025-07-24T05:19:52.2361510Z adding 'torch/include/torch/csrc/api/include/torch/data.h' 2025-07-24T05:19:52.2366282Z adding 'torch/include/torch/csrc/api/include/torch/enum.h' 2025-07-24T05:19:52.2370125Z adding 'torch/include/torch/csrc/api/include/torch/expanding_array.h' 2025-07-24T05:19:52.2374602Z adding 'torch/include/torch/csrc/api/include/torch/fft.h' 2025-07-24T05:19:52.2378275Z adding 'torch/include/torch/csrc/api/include/torch/imethod.h' 2025-07-24T05:19:52.2381568Z adding 'torch/include/torch/csrc/api/include/torch/jit.h' 2025-07-24T05:19:52.2384821Z adding 'torch/include/torch/csrc/api/include/torch/mps.h' 2025-07-24T05:19:52.2388345Z adding 'torch/include/torch/csrc/api/include/torch/nested.h' 2025-07-24T05:19:52.2391258Z adding 'torch/include/torch/csrc/api/include/torch/nn.h' 2025-07-24T05:19:52.2394109Z adding 'torch/include/torch/csrc/api/include/torch/optim.h' 2025-07-24T05:19:52.2400543Z adding 'torch/include/torch/csrc/api/include/torch/ordered_dict.h' 2025-07-24T05:19:52.2405924Z adding 'torch/include/torch/csrc/api/include/torch/python.h' 2025-07-24T05:19:52.2410097Z adding 'torch/include/torch/csrc/api/include/torch/serialize.h' 2025-07-24T05:19:52.2413090Z adding 'torch/include/torch/csrc/api/include/torch/sparse.h' 2025-07-24T05:19:52.2419968Z adding 'torch/include/torch/csrc/api/include/torch/special.h' 2025-07-24T05:19:52.2423783Z adding 'torch/include/torch/csrc/api/include/torch/torch.h' 2025-07-24T05:19:52.2427203Z adding 'torch/include/torch/csrc/api/include/torch/types.h' 2025-07-24T05:19:52.2430864Z adding 'torch/include/torch/csrc/api/include/torch/utils.h' 2025-07-24T05:19:52.2434035Z adding 'torch/include/torch/csrc/api/include/torch/version.h' 2025-07-24T05:19:52.2437172Z adding 'torch/include/torch/csrc/api/include/torch/xpu.h' 2025-07-24T05:19:52.2441620Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader.h' 2025-07-24T05:19:52.2445209Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader_options.h' 2025-07-24T05:19:52.2448093Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets.h' 2025-07-24T05:19:52.2451256Z adding 'torch/include/torch/csrc/api/include/torch/data/example.h' 2025-07-24T05:19:52.2455344Z adding 'torch/include/torch/csrc/api/include/torch/data/iterator.h' 2025-07-24T05:19:52.2458392Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers.h' 2025-07-24T05:19:52.2461250Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms.h' 2025-07-24T05:19:52.2464477Z adding 'torch/include/torch/csrc/api/include/torch/data/worker_exception.h' 2025-07-24T05:19:52.2470534Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/base.h' 2025-07-24T05:19:52.2474398Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h' 2025-07-24T05:19:52.2478195Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h' 2025-07-24T05:19:52.2483085Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/base.h' 2025-07-24T05:19:52.2491803Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h' 2025-07-24T05:19:52.2496163Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/map.h' 2025-07-24T05:19:52.2499672Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h' 2025-07-24T05:19:52.2503111Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/shared.h' 2025-07-24T05:19:52.2506958Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h' 2025-07-24T05:19:52.2510274Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h' 2025-07-24T05:19:52.2514705Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h' 2025-07-24T05:19:52.2518458Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/queue.h' 2025-07-24T05:19:52.2522610Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h' 2025-07-24T05:19:52.2526888Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/base.h' 2025-07-24T05:19:52.2530106Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h' 2025-07-24T05:19:52.2534233Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h' 2025-07-24T05:19:52.2537690Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/random.h' 2025-07-24T05:19:52.2540691Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h' 2025-07-24T05:19:52.2543977Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h' 2025-07-24T05:19:52.2547256Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/stream.h' 2025-07-24T05:19:52.2551566Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/base.h' 2025-07-24T05:19:52.2554955Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/collate.h' 2025-07-24T05:19:52.2558310Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h' 2025-07-24T05:19:52.2561695Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/stack.h' 2025-07-24T05:19:52.2565242Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h' 2025-07-24T05:19:52.2572650Z adding 'torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h' 2025-07-24T05:19:52.2576083Z adding 'torch/include/torch/csrc/api/include/torch/detail/static.h' 2025-07-24T05:19:52.2581066Z adding 'torch/include/torch/csrc/api/include/torch/nn/cloneable.h' 2025-07-24T05:19:52.2584269Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional.h' 2025-07-24T05:19:52.2588018Z adding 'torch/include/torch/csrc/api/include/torch/nn/init.h' 2025-07-24T05:19:52.2597526Z adding 'torch/include/torch/csrc/api/include/torch/nn/module.h' 2025-07-24T05:19:52.2601525Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules.h' 2025-07-24T05:19:52.2604518Z adding 'torch/include/torch/csrc/api/include/torch/nn/options.h' 2025-07-24T05:19:52.2608298Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h' 2025-07-24T05:19:52.2613033Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl.h' 2025-07-24T05:19:52.2616121Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils.h' 2025-07-24T05:19:52.2624997Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/activation.h' 2025-07-24T05:19:52.2629814Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h' 2025-07-24T05:19:52.2633161Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/conv.h' 2025-07-24T05:19:52.2636976Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/distance.h' 2025-07-24T05:19:52.2641059Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h' 2025-07-24T05:19:52.2645466Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h' 2025-07-24T05:19:52.2649188Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/fold.h' 2025-07-24T05:19:52.2652701Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h' 2025-07-24T05:19:52.2655842Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/linear.h' 2025-07-24T05:19:52.2663082Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/loss.h' 2025-07-24T05:19:52.2667960Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h' 2025-07-24T05:19:52.2671628Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/padding.h' 2025-07-24T05:19:52.2675947Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h' 2025-07-24T05:19:52.2683209Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h' 2025-07-24T05:19:52.2688929Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h' 2025-07-24T05:19:52.2693140Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/vision.h' 2025-07-24T05:19:52.2697442Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h' 2025-07-24T05:19:52.2704634Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/activation.h' 2025-07-24T05:19:52.2722594Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h' 2025-07-24T05:19:52.2723174Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h' 2025-07-24T05:19:52.2723719Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/common.h' 2025-07-24T05:19:52.2725270Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/conv.h' 2025-07-24T05:19:52.2729482Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/distance.h' 2025-07-24T05:19:52.2734073Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h' 2025-07-24T05:19:52.2737839Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h' 2025-07-24T05:19:52.2741700Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/fold.h' 2025-07-24T05:19:52.2746178Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h' 2025-07-24T05:19:52.2750192Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/linear.h' 2025-07-24T05:19:52.2758097Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/loss.h' 2025-07-24T05:19:52.2763029Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h' 2025-07-24T05:19:52.2767845Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/padding.h' 2025-07-24T05:19:52.2771816Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h' 2025-07-24T05:19:52.2778519Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h' 2025-07-24T05:19:52.2784454Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h' 2025-07-24T05:19:52.2789037Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h' 2025-07-24T05:19:52.2801483Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h' 2025-07-24T05:19:52.2806501Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h' 2025-07-24T05:19:52.2809824Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h' 2025-07-24T05:19:52.2813210Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/utils.h' 2025-07-24T05:19:52.2820346Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h' 2025-07-24T05:19:52.2824947Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h' 2025-07-24T05:19:52.2829050Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h' 2025-07-24T05:19:52.2833080Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h' 2025-07-24T05:19:52.2838187Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h' 2025-07-24T05:19:52.2843537Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h' 2025-07-24T05:19:52.2847331Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h' 2025-07-24T05:19:52.2851360Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h' 2025-07-24T05:19:52.2855660Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h' 2025-07-24T05:19:52.2862569Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h' 2025-07-24T05:19:52.2869238Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/activation.h' 2025-07-24T05:19:52.2873004Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h' 2025-07-24T05:19:52.2876523Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h' 2025-07-24T05:19:52.2881226Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/conv.h' 2025-07-24T05:19:52.2884984Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/distance.h' 2025-07-24T05:19:52.2888423Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/dropout.h' 2025-07-24T05:19:52.2892908Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/embedding.h' 2025-07-24T05:19:52.2896674Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/fold.h' 2025-07-24T05:19:52.2900554Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h' 2025-07-24T05:19:52.2903810Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/linear.h' 2025-07-24T05:19:52.2910642Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/loss.h' 2025-07-24T05:19:52.2915274Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/normalization.h' 2025-07-24T05:19:52.2919667Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/padding.h' 2025-07-24T05:19:52.2923203Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h' 2025-07-24T05:19:52.2928323Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pooling.h' 2025-07-24T05:19:52.2932882Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/rnn.h' 2025-07-24T05:19:52.2936581Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformer.h' 2025-07-24T05:19:52.2940027Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h' 2025-07-24T05:19:52.2943395Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h' 2025-07-24T05:19:52.2947238Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h' 2025-07-24T05:19:52.2950571Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/vision.h' 2025-07-24T05:19:52.2957281Z adding 'torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h' 2025-07-24T05:19:52.2962499Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h' 2025-07-24T05:19:52.2966353Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h' 2025-07-24T05:19:52.2972297Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h' 2025-07-24T05:19:52.2977067Z adding 'torch/include/torch/csrc/api/include/torch/optim/adagrad.h' 2025-07-24T05:19:52.2980787Z adding 'torch/include/torch/csrc/api/include/torch/optim/adam.h' 2025-07-24T05:19:52.2984431Z adding 'torch/include/torch/csrc/api/include/torch/optim/adamw.h' 2025-07-24T05:19:52.2988056Z adding 'torch/include/torch/csrc/api/include/torch/optim/lbfgs.h' 2025-07-24T05:19:52.2992965Z adding 'torch/include/torch/csrc/api/include/torch/optim/optimizer.h' 2025-07-24T05:19:52.2996658Z adding 'torch/include/torch/csrc/api/include/torch/optim/rmsprop.h' 2025-07-24T05:19:52.3002049Z adding 'torch/include/torch/csrc/api/include/torch/optim/serialize.h' 2025-07-24T05:19:52.3005901Z adding 'torch/include/torch/csrc/api/include/torch/optim/sgd.h' 2025-07-24T05:19:52.3010132Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h' 2025-07-24T05:19:52.3013726Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h' 2025-07-24T05:19:52.3016788Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h' 2025-07-24T05:19:52.3020412Z adding 'torch/include/torch/csrc/api/include/torch/python/init.h' 2025-07-24T05:19:52.3024011Z adding 'torch/include/torch/csrc/api/include/torch/serialize/archive.h' 2025-07-24T05:19:52.3027838Z adding 'torch/include/torch/csrc/api/include/torch/serialize/input-archive.h' 2025-07-24T05:19:52.3031393Z adding 'torch/include/torch/csrc/api/include/torch/serialize/output-archive.h' 2025-07-24T05:19:52.3034395Z adding 'torch/include/torch/csrc/api/include/torch/serialize/tensor.h' 2025-07-24T05:19:52.3045455Z adding 'torch/include/torch/csrc/autograd/FunctionsManual.h' 2025-07-24T05:19:52.3049211Z adding 'torch/include/torch/csrc/autograd/InferenceMode.h' 2025-07-24T05:19:52.3055429Z adding 'torch/include/torch/csrc/autograd/VariableTypeUtils.h' 2025-07-24T05:19:52.3059194Z adding 'torch/include/torch/csrc/autograd/anomaly_mode.h' 2025-07-24T05:19:52.3063772Z adding 'torch/include/torch/csrc/autograd/autograd.h' 2025-07-24T05:19:52.3067214Z adding 'torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h' 2025-07-24T05:19:52.3070090Z adding 'torch/include/torch/csrc/autograd/cpp_hook.h' 2025-07-24T05:19:52.3078933Z adding 'torch/include/torch/csrc/autograd/custom_function.h' 2025-07-24T05:19:52.3082646Z adding 'torch/include/torch/csrc/autograd/edge.h' 2025-07-24T05:19:52.3088475Z adding 'torch/include/torch/csrc/autograd/engine.h' 2025-07-24T05:19:52.3094728Z adding 'torch/include/torch/csrc/autograd/forward_grad.h' 2025-07-24T05:19:52.3107857Z adding 'torch/include/torch/csrc/autograd/function.h' 2025-07-24T05:19:52.3112277Z adding 'torch/include/torch/csrc/autograd/function_hook.h' 2025-07-24T05:19:52.3115082Z adding 'torch/include/torch/csrc/autograd/grad_mode.h' 2025-07-24T05:19:52.3120715Z adding 'torch/include/torch/csrc/autograd/graph_task.h' 2025-07-24T05:19:52.3124514Z adding 'torch/include/torch/csrc/autograd/input_buffer.h' 2025-07-24T05:19:52.3128196Z adding 'torch/include/torch/csrc/autograd/input_metadata.h' 2025-07-24T05:19:52.3131786Z adding 'torch/include/torch/csrc/autograd/jit_decomp_interface.h' 2025-07-24T05:19:52.3134588Z adding 'torch/include/torch/csrc/autograd/profiler.h' 2025-07-24T05:19:52.3139511Z adding 'torch/include/torch/csrc/autograd/profiler_kineto.h' 2025-07-24T05:19:52.3145431Z adding 'torch/include/torch/csrc/autograd/profiler_legacy.h' 2025-07-24T05:19:52.3148695Z adding 'torch/include/torch/csrc/autograd/profiler_python.h' 2025-07-24T05:19:52.3151889Z adding 'torch/include/torch/csrc/autograd/python_anomaly_mode.h' 2025-07-24T05:19:52.3154984Z adding 'torch/include/torch/csrc/autograd/python_autograd.h' 2025-07-24T05:19:52.3158853Z adding 'torch/include/torch/csrc/autograd/python_cpp_function.h' 2025-07-24T05:19:52.3162240Z adding 'torch/include/torch/csrc/autograd/python_engine.h' 2025-07-24T05:19:52.3165193Z adding 'torch/include/torch/csrc/autograd/python_enum_tag.h' 2025-07-24T05:19:52.3168027Z adding 'torch/include/torch/csrc/autograd/python_fft_functions.h' 2025-07-24T05:19:52.3172249Z adding 'torch/include/torch/csrc/autograd/python_function.h' 2025-07-24T05:19:52.3175723Z adding 'torch/include/torch/csrc/autograd/python_hook.h' 2025-07-24T05:19:52.3178849Z adding 'torch/include/torch/csrc/autograd/python_legacy_variable.h' 2025-07-24T05:19:52.3181625Z adding 'torch/include/torch/csrc/autograd/python_linalg_functions.h' 2025-07-24T05:19:52.3184555Z adding 'torch/include/torch/csrc/autograd/python_nested_functions.h' 2025-07-24T05:19:52.3187330Z adding 'torch/include/torch/csrc/autograd/python_nn_functions.h' 2025-07-24T05:19:52.3190563Z adding 'torch/include/torch/csrc/autograd/python_saved_variable_hooks.h' 2025-07-24T05:19:52.3193385Z adding 'torch/include/torch/csrc/autograd/python_sparse_functions.h' 2025-07-24T05:19:52.3196296Z adding 'torch/include/torch/csrc/autograd/python_special_functions.h' 2025-07-24T05:19:52.3199471Z adding 'torch/include/torch/csrc/autograd/python_torch_functions.h' 2025-07-24T05:19:52.3203702Z adding 'torch/include/torch/csrc/autograd/python_variable.h' 2025-07-24T05:19:52.3207679Z adding 'torch/include/torch/csrc/autograd/python_variable_indexing.h' 2025-07-24T05:19:52.3211190Z adding 'torch/include/torch/csrc/autograd/record_function_ops.h' 2025-07-24T05:19:52.3215987Z adding 'torch/include/torch/csrc/autograd/saved_variable.h' 2025-07-24T05:19:52.3219496Z adding 'torch/include/torch/csrc/autograd/saved_variable_hooks.h' 2025-07-24T05:19:52.3222789Z adding 'torch/include/torch/csrc/autograd/symbolic.h' 2025-07-24T05:19:52.3239409Z adding 'torch/include/torch/csrc/autograd/variable.h' 2025-07-24T05:19:52.3243930Z adding 'torch/include/torch/csrc/autograd/variable_info.h' 2025-07-24T05:19:52.3251720Z adding 'torch/include/torch/csrc/autograd/functions/accumulate_grad.h' 2025-07-24T05:19:52.3255839Z adding 'torch/include/torch/csrc/autograd/functions/basic_ops.h' 2025-07-24T05:19:52.3259075Z adding 'torch/include/torch/csrc/autograd/functions/comm.h' 2025-07-24T05:19:52.3262051Z adding 'torch/include/torch/csrc/autograd/functions/pybind.h' 2025-07-24T05:19:52.3267165Z adding 'torch/include/torch/csrc/autograd/functions/tensor.h' 2025-07-24T05:19:52.3271341Z adding 'torch/include/torch/csrc/autograd/functions/utils.h' 2025-07-24T05:19:52.3350073Z adding 'torch/include/torch/csrc/autograd/generated/Functions.h' 2025-07-24T05:19:52.3350597Z adding 'torch/include/torch/csrc/autograd/generated/VariableType.h' 2025-07-24T05:19:52.3351090Z adding 'torch/include/torch/csrc/autograd/generated/ViewFuncs.h' 2025-07-24T05:19:52.3352967Z adding 'torch/include/torch/csrc/autograd/generated/python_functions.h' 2025-07-24T05:19:52.3356489Z adding 'torch/include/torch/csrc/autograd/generated/python_return_types.h' 2025-07-24T05:19:52.3364857Z adding 'torch/include/torch/csrc/autograd/generated/variable_factories.h' 2025-07-24T05:19:52.3370107Z adding 'torch/include/torch/csrc/autograd/utils/error_messages.h' 2025-07-24T05:19:52.3373749Z adding 'torch/include/torch/csrc/autograd/utils/grad_layout_contract.h' 2025-07-24T05:19:52.3377036Z adding 'torch/include/torch/csrc/autograd/utils/lambda_post_hook.h' 2025-07-24T05:19:52.3380392Z adding 'torch/include/torch/csrc/autograd/utils/python_arg_parsing.h' 2025-07-24T05:19:52.3383853Z adding 'torch/include/torch/csrc/autograd/utils/warnings.h' 2025-07-24T05:19:52.3387329Z adding 'torch/include/torch/csrc/autograd/utils/wrap_outputs.h' 2025-07-24T05:19:52.3391210Z adding 'torch/include/torch/csrc/cpu/Module.h' 2025-07-24T05:19:52.3396686Z adding 'torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h' 2025-07-24T05:19:52.3399936Z adding 'torch/include/torch/csrc/cuda/Event.h' 2025-07-24T05:19:52.3402880Z adding 'torch/include/torch/csrc/cuda/GdsFile.h' 2025-07-24T05:19:52.3405808Z adding 'torch/include/torch/csrc/cuda/Module.h' 2025-07-24T05:19:52.3408973Z adding 'torch/include/torch/csrc/cuda/Stream.h' 2025-07-24T05:19:52.3412370Z adding 'torch/include/torch/csrc/cuda/THCP.h' 2025-07-24T05:19:52.3415064Z adding 'torch/include/torch/csrc/cuda/comm.h' 2025-07-24T05:19:52.3418114Z adding 'torch/include/torch/csrc/cuda/device_set.h' 2025-07-24T05:19:52.3421176Z adding 'torch/include/torch/csrc/cuda/memory_snapshot.h' 2025-07-24T05:19:52.3425313Z adding 'torch/include/torch/csrc/cuda/nccl.h' 2025-07-24T05:19:52.3428388Z adding 'torch/include/torch/csrc/cuda/python_comm.h' 2025-07-24T05:19:52.3431356Z adding 'torch/include/torch/csrc/cuda/python_nccl.h' 2025-07-24T05:19:52.3434165Z adding 'torch/include/torch/csrc/cuda/utils.h' 2025-07-24T05:19:52.3439344Z adding 'torch/include/torch/csrc/distributed/autograd/autograd.h' 2025-07-24T05:19:52.3442404Z adding 'torch/include/torch/csrc/distributed/autograd/python_autograd.h' 2025-07-24T05:19:52.3445801Z adding 'torch/include/torch/csrc/distributed/autograd/utils.h' 2025-07-24T05:19:52.3451327Z adding 'torch/include/torch/csrc/distributed/autograd/context/container.h' 2025-07-24T05:19:52.3456229Z adding 'torch/include/torch/csrc/distributed/autograd/context/context.h' 2025-07-24T05:19:52.3462037Z adding 'torch/include/torch/csrc/distributed/autograd/engine/dist_engine.h' 2025-07-24T05:19:52.3466673Z adding 'torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h' 2025-07-24T05:19:52.3469966Z adding 'torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h' 2025-07-24T05:19:52.3473958Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h' 2025-07-24T05:19:52.3477073Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h' 2025-07-24T05:19:52.3480304Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h' 2025-07-24T05:19:52.3483714Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h' 2025-07-24T05:19:52.3486784Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h' 2025-07-24T05:19:52.3490410Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h' 2025-07-24T05:19:52.3493949Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h' 2025-07-24T05:19:52.3497479Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h' 2025-07-24T05:19:52.3500669Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h' 2025-07-24T05:19:52.3503714Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h' 2025-07-24T05:19:52.3511677Z adding 'torch/include/torch/csrc/distributed/c10d/Backend.hpp' 2025-07-24T05:19:52.3514659Z adding 'torch/include/torch/csrc/distributed/c10d/Backoff.hpp' 2025-07-24T05:19:52.3518748Z adding 'torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp' 2025-07-24T05:19:52.3522124Z adding 'torch/include/torch/csrc/distributed/c10d/FileStore.hpp' 2025-07-24T05:19:52.3527529Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp' 2025-07-24T05:19:52.3534994Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorderDetail.hpp' 2025-07-24T05:19:52.3538538Z adding 'torch/include/torch/csrc/distributed/c10d/Functional.hpp' 2025-07-24T05:19:52.3541739Z adding 'torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp' 2025-07-24T05:19:52.3544816Z adding 'torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp' 2025-07-24T05:19:52.3548045Z adding 'torch/include/torch/csrc/distributed/c10d/HashStore.hpp' 2025-07-24T05:19:52.3554403Z adding 'torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp' 2025-07-24T05:19:52.3557828Z adding 'torch/include/torch/csrc/distributed/c10d/NanCheck.hpp' 2025-07-24T05:19:52.3562102Z adding 'torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp' 2025-07-24T05:19:52.3565618Z adding 'torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp' 2025-07-24T05:19:52.3575687Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp' 2025-07-24T05:19:52.3583404Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp' 2025-07-24T05:19:52.3591449Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGlooDetail.hpp' 2025-07-24T05:19:52.3596678Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp' 2025-07-24T05:19:52.3618841Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp' 2025-07-24T05:19:52.3625387Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp' 2025-07-24T05:19:52.3629950Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp' 2025-07-24T05:19:52.3634662Z adding 'torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp' 2025-07-24T05:19:52.3638428Z adding 'torch/include/torch/csrc/distributed/c10d/RankLocal.hpp' 2025-07-24T05:19:52.3642252Z adding 'torch/include/torch/csrc/distributed/c10d/Store.hpp' 2025-07-24T05:19:52.3646597Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStore.hpp' 2025-07-24T05:19:52.3650101Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp' 2025-07-24T05:19:52.3655056Z adding 'torch/include/torch/csrc/distributed/c10d/TraceUtils.h' 2025-07-24T05:19:52.3659432Z adding 'torch/include/torch/csrc/distributed/c10d/Types.hpp' 2025-07-24T05:19:52.3663167Z adding 'torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp' 2025-07-24T05:19:52.3667586Z adding 'torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp' 2025-07-24T05:19:52.3670852Z adding 'torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp' 2025-07-24T05:19:52.3679557Z adding 'torch/include/torch/csrc/distributed/c10d/Utils.hpp' 2025-07-24T05:19:52.3683462Z adding 'torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp' 2025-07-24T05:19:52.3687846Z adding 'torch/include/torch/csrc/distributed/c10d/Work.hpp' 2025-07-24T05:19:52.3690917Z adding 'torch/include/torch/csrc/distributed/c10d/c10d.h' 2025-07-24T05:19:52.3695140Z adding 'torch/include/torch/csrc/distributed/c10d/comm.hpp' 2025-07-24T05:19:52.3698453Z adding 'torch/include/torch/csrc/distributed/c10d/debug.h' 2025-07-24T05:19:52.3701781Z adding 'torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp' 2025-07-24T05:19:52.3710406Z adding 'torch/include/torch/csrc/distributed/c10d/error.h' 2025-07-24T05:19:52.3710937Z adding 'torch/include/torch/csrc/distributed/c10d/exception.h' 2025-07-24T05:19:52.3713744Z adding 'torch/include/torch/csrc/distributed/c10d/logger.hpp' 2025-07-24T05:19:52.3754246Z adding 'torch/include/torch/csrc/distributed/c10d/logging.h' 2025-07-24T05:19:52.3754757Z adding 'torch/include/torch/csrc/distributed/c10d/python_comm_hook.h' 2025-07-24T05:19:52.3755233Z adding 'torch/include/torch/csrc/distributed/c10d/reducer.hpp' 2025-07-24T05:19:52.3755719Z adding 'torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp' 2025-07-24T05:19:52.3756214Z adding 'torch/include/torch/csrc/distributed/c10d/sequence_num.hpp' 2025-07-24T05:19:52.3756670Z adding 'torch/include/torch/csrc/distributed/c10d/socket.h' 2025-07-24T05:19:52.3757108Z adding 'torch/include/torch/csrc/distributed/c10d/socket_fmt.h' 2025-07-24T05:19:52.3757699Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/ControlCollectives.hpp' 2025-07-24T05:19:52.3758512Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/StoreCollectives.hpp' 2025-07-24T05:19:52.3762313Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/Handlers.hpp' 2025-07-24T05:19:52.3766352Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/WorkerServer.hpp' 2025-07-24T05:19:52.3769526Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/CUDAEventCache.hpp' 2025-07-24T05:19:52.3772839Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/StreamBlock.hpp' 2025-07-24T05:19:52.3775715Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/utils.hpp' 2025-07-24T05:19:52.3779894Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization.h' 2025-07-24T05:19:52.3783746Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_gpu.h' 2025-07-24T05:19:52.3786937Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_utils.h' 2025-07-24T05:19:52.3793549Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory-inl.h' 2025-07-24T05:19:52.3797656Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory.hpp' 2025-07-24T05:19:52.3800862Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryTypes.hpp' 2025-07-24T05:19:52.3805549Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryUtils.hpp' 2025-07-24T05:19:52.3808104Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/DMAConnectivity.hpp' 2025-07-24T05:19:52.3813146Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/SymmetricMemory.hpp' 2025-07-24T05:19:52.3816860Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/intra_node_comm.hpp' 2025-07-24T05:19:52.3821565Z adding 'torch/include/torch/csrc/distributed/rpc/agent_utils.h' 2025-07-24T05:19:52.3826228Z adding 'torch/include/torch/csrc/distributed/rpc/message.h' 2025-07-24T05:19:52.3829986Z adding 'torch/include/torch/csrc/distributed/rpc/py_rref.h' 2025-07-24T05:19:52.3833217Z adding 'torch/include/torch/csrc/distributed/rpc/python_call.h' 2025-07-24T05:19:52.3836829Z adding 'torch/include/torch/csrc/distributed/rpc/python_functions.h' 2025-07-24T05:19:52.3840062Z adding 'torch/include/torch/csrc/distributed/rpc/python_remote_call.h' 2025-07-24T05:19:52.3843035Z adding 'torch/include/torch/csrc/distributed/rpc/python_resp.h' 2025-07-24T05:19:52.3847210Z adding 'torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h' 2025-07-24T05:19:52.3850602Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback.h' 2025-07-24T05:19:52.3853894Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_impl.h' 2025-07-24T05:19:52.3857569Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h' 2025-07-24T05:19:52.3860614Z adding 'torch/include/torch/csrc/distributed/rpc/rpc.h' 2025-07-24T05:19:52.3867236Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_agent.h' 2025-07-24T05:19:52.3870692Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_command_base.h' 2025-07-24T05:19:52.3878555Z adding 'torch/include/torch/csrc/distributed/rpc/rref_context.h' 2025-07-24T05:19:52.3887591Z adding 'torch/include/torch/csrc/distributed/rpc/rref_impl.h' 2025-07-24T05:19:52.3891872Z adding 'torch/include/torch/csrc/distributed/rpc/rref_proto.h' 2025-07-24T05:19:52.3895509Z adding 'torch/include/torch/csrc/distributed/rpc/script_call.h' 2025-07-24T05:19:52.3899201Z adding 'torch/include/torch/csrc/distributed/rpc/script_remote_call.h' 2025-07-24T05:19:52.3902282Z adding 'torch/include/torch/csrc/distributed/rpc/script_resp.h' 2025-07-24T05:19:52.3910139Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h' 2025-07-24T05:19:52.3914618Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h' 2025-07-24T05:19:52.3918243Z adding 'torch/include/torch/csrc/distributed/rpc/torchscript_functions.h' 2025-07-24T05:19:52.3921617Z adding 'torch/include/torch/csrc/distributed/rpc/types.h' 2025-07-24T05:19:52.3924973Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h' 2025-07-24T05:19:52.3928214Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h' 2025-07-24T05:19:52.3932045Z adding 'torch/include/torch/csrc/distributed/rpc/utils.h' 2025-07-24T05:19:52.3936356Z adding 'torch/include/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h' 2025-07-24T05:19:52.3940550Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h' 2025-07-24T05:19:52.3944700Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h' 2025-07-24T05:19:52.3949445Z adding 'torch/include/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h' 2025-07-24T05:19:52.3952303Z adding 'torch/include/torch/csrc/distributed/rpc/testing/testing.h' 2025-07-24T05:19:52.3956818Z adding 'torch/include/torch/csrc/dynamo/cache_entry.h' 2025-07-24T05:19:52.3974215Z adding 'torch/include/torch/csrc/dynamo/compiled_autograd.h' 2025-07-24T05:19:52.3978293Z adding 'torch/include/torch/csrc/dynamo/cpp_shim.h' 2025-07-24T05:19:52.3981445Z adding 'torch/include/torch/csrc/dynamo/cpython_defs.h' 2025-07-24T05:19:52.3984667Z adding 'torch/include/torch/csrc/dynamo/cpython_includes.h' 2025-07-24T05:19:52.3988525Z adding 'torch/include/torch/csrc/dynamo/debug_macros.h' 2025-07-24T05:19:52.3991833Z adding 'torch/include/torch/csrc/dynamo/eval_frame.h' 2025-07-24T05:19:52.3994834Z adding 'torch/include/torch/csrc/dynamo/eval_frame_cpp.h' 2025-07-24T05:19:52.3999365Z adding 'torch/include/torch/csrc/dynamo/extra_state.h' 2025-07-24T05:19:52.4003263Z adding 'torch/include/torch/csrc/dynamo/framelocals_mapping.h' 2025-07-24T05:19:52.4006867Z adding 'torch/include/torch/csrc/dynamo/guards.h' 2025-07-24T05:19:52.4009898Z adding 'torch/include/torch/csrc/dynamo/init.h' 2025-07-24T05:19:52.4012840Z adding 'torch/include/torch/csrc/dynamo/python_compiled_autograd.h' 2025-07-24T05:19:52.4015987Z adding 'torch/include/torch/csrc/dynamo/utils.h' 2025-07-24T05:19:52.4019850Z adding 'torch/include/torch/csrc/export/example_upgraders.h' 2025-07-24T05:19:52.4023556Z adding 'torch/include/torch/csrc/export/pt2_archive_constants.h' 2025-07-24T05:19:52.4026374Z adding 'torch/include/torch/csrc/export/pybind.h' 2025-07-24T05:19:52.4030696Z adding 'torch/include/torch/csrc/export/upgrader.h' 2025-07-24T05:19:52.4034312Z adding 'torch/include/torch/csrc/functorch/init.h' 2025-07-24T05:19:52.4037712Z adding 'torch/include/torch/csrc/fx/node.h' 2025-07-24T05:19:52.4042151Z adding 'torch/include/torch/csrc/inductor/array_ref_impl.h' 2025-07-24T05:19:52.4053999Z adding 'torch/include/torch/csrc/inductor/cpp_prefix.h' 2025-07-24T05:19:52.4058237Z adding 'torch/include/torch/csrc/inductor/inductor_ops.h' 2025-07-24T05:19:52.4061138Z adding 'torch/include/torch/csrc/inductor/static_cuda_launcher.h' 2025-07-24T05:19:52.4065702Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_holder.h' 2025-07-24T05:19:52.4070172Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_meta_info.h' 2025-07-24T05:19:52.4074166Z adding 'torch/include/torch/csrc/inductor/aoti_include/array_ref.h' 2025-07-24T05:19:52.4076997Z adding 'torch/include/torch/csrc/inductor/aoti_include/common.h' 2025-07-24T05:19:52.4079907Z adding 'torch/include/torch/csrc/inductor/aoti_include/cpu.h' 2025-07-24T05:19:52.4082679Z adding 'torch/include/torch/csrc/inductor/aoti_include/cuda.h' 2025-07-24T05:19:52.4085428Z adding 'torch/include/torch/csrc/inductor/aoti_include/mps.h' 2025-07-24T05:19:52.4088183Z adding 'torch/include/torch/csrc/inductor/aoti_include/xpu.h' 2025-07-24T05:19:52.4092295Z adding 'torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h' 2025-07-24T05:19:52.4095102Z adding 'torch/include/torch/csrc/inductor/aoti_package/pybind.h' 2025-07-24T05:19:52.4099916Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h' 2025-07-24T05:19:52.4103116Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h' 2025-07-24T05:19:52.4106532Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h' 2025-07-24T05:19:52.4109414Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_mps.h' 2025-07-24T05:19:52.4112522Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h' 2025-07-24T05:19:52.4115933Z adding 'torch/include/torch/csrc/inductor/aoti_runner/pybind.h' 2025-07-24T05:19:52.4121327Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h' 2025-07-24T05:19:52.4124639Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/constant_type.h' 2025-07-24T05:19:52.4128279Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h' 2025-07-24T05:19:52.4133083Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/interface.h' 2025-07-24T05:19:52.4137409Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/mini_array_ref.h' 2025-07-24T05:19:52.4141111Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model.h' 2025-07-24T05:19:52.4149742Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_base.h' 2025-07-24T05:19:52.4160099Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_container.h' 2025-07-24T05:19:52.4164212Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h' 2025-07-24T05:19:52.4168657Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h' 2025-07-24T05:19:52.4172556Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h' 2025-07-24T05:19:52.4177752Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils.h' 2025-07-24T05:19:52.4181458Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h' 2025-07-24T05:19:52.4184749Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h' 2025-07-24T05:19:52.4188784Z adding 'torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h' 2025-07-24T05:19:52.4193021Z adding 'torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h' 2025-07-24T05:19:52.4196271Z adding 'torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h' 2025-07-24T05:19:52.4199694Z adding 'torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h' 2025-07-24T05:19:52.4239419Z adding 'torch/include/torch/csrc/inductor/aoti_torch/utils.h' 2025-07-24T05:19:52.4239900Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/macros.h' 2025-07-24T05:19:52.4240354Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim.h' 2025-07-24T05:19:52.4240808Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_cpu.h' 2025-07-24T05:19:52.4241325Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_deprecated.h' 2025-07-24T05:19:52.4241842Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_mps.h' 2025-07-24T05:19:52.4242316Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h' 2025-07-24T05:19:52.4242838Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h' 2025-07-24T05:19:52.4251630Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h' 2025-07-24T05:19:52.4258067Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.h' 2025-07-24T05:19:52.4263632Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h' 2025-07-24T05:19:52.4266982Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/array_ref.h' 2025-07-24T05:19:52.4270490Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/common.h' 2025-07-24T05:19:52.4274637Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cpu.h' 2025-07-24T05:19:52.4276266Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cuda.h' 2025-07-24T05:19:52.4279399Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/mps.h' 2025-07-24T05:19:52.4281817Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/xpu.h' 2025-07-24T05:19:52.4285435Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cpu.h' 2025-07-24T05:19:52.4288279Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cuda.h' 2025-07-24T05:19:52.4291241Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/mps.h' 2025-07-24T05:19:52.4294084Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/xpu.h' 2025-07-24T05:19:52.4297706Z adding 'torch/include/torch/csrc/instruction_counter/Module.h' 2025-07-24T05:19:52.4302476Z adding 'torch/include/torch/csrc/jit/jit_log.h' 2025-07-24T05:19:52.4305872Z adding 'torch/include/torch/csrc/jit/jit_opt_limit.h' 2025-07-24T05:19:52.4308909Z adding 'torch/include/torch/csrc/jit/resource_guard.h' 2025-07-24T05:19:52.4315851Z adding 'torch/include/torch/csrc/jit/api/compilation_unit.h' 2025-07-24T05:19:52.4321825Z adding 'torch/include/torch/csrc/jit/api/function_impl.h' 2025-07-24T05:19:52.4324565Z adding 'torch/include/torch/csrc/jit/api/method.h' 2025-07-24T05:19:52.4334262Z adding 'torch/include/torch/csrc/jit/api/module.h' 2025-07-24T05:19:52.4339187Z adding 'torch/include/torch/csrc/jit/api/object.h' 2025-07-24T05:19:52.4344020Z adding 'torch/include/torch/csrc/jit/backends/backend.h' 2025-07-24T05:19:52.4348899Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_handler.h' 2025-07-24T05:19:52.4352579Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_info.h' 2025-07-24T05:19:52.4355778Z adding 'torch/include/torch/csrc/jit/backends/backend_detail.h' 2025-07-24T05:19:52.4359380Z adding 'torch/include/torch/csrc/jit/backends/backend_exception.h' 2025-07-24T05:19:52.4362592Z adding 'torch/include/torch/csrc/jit/backends/backend_init.h' 2025-07-24T05:19:52.4365809Z adding 'torch/include/torch/csrc/jit/backends/backend_interface.h' 2025-07-24T05:19:52.4368715Z adding 'torch/include/torch/csrc/jit/backends/backend_preprocess.h' 2025-07-24T05:19:52.4371588Z adding 'torch/include/torch/csrc/jit/backends/backend_resolver.h' 2025-07-24T05:19:52.4376033Z adding 'torch/include/torch/csrc/jit/backends/coreml/cpp/context.h' 2025-07-24T05:19:52.4380131Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h' 2025-07-24T05:19:52.4383106Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h' 2025-07-24T05:19:52.4386252Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h' 2025-07-24T05:19:52.4389231Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h' 2025-07-24T05:19:52.4392282Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h' 2025-07-24T05:19:52.4396747Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h' 2025-07-24T05:19:52.4400808Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h' 2025-07-24T05:19:52.4404798Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h' 2025-07-24T05:19:52.4409226Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/serialization/serializer.h' 2025-07-24T05:19:52.4413877Z adding 'torch/include/torch/csrc/jit/codegen/cuda/interface.h' 2025-07-24T05:19:52.4418153Z adding 'torch/include/torch/csrc/jit/codegen/fuser/arg_spec.h' 2025-07-24T05:19:52.4421283Z adding 'torch/include/torch/csrc/jit/codegen/fuser/codegen.h' 2025-07-24T05:19:52.4424553Z adding 'torch/include/torch/csrc/jit/codegen/fuser/compiler.h' 2025-07-24T05:19:52.4427554Z adding 'torch/include/torch/csrc/jit/codegen/fuser/executor.h' 2025-07-24T05:19:52.4430478Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fallback.h' 2025-07-24T05:19:52.4434141Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fused_kernel.h' 2025-07-24T05:19:52.4437575Z adding 'torch/include/torch/csrc/jit/codegen/fuser/interface.h' 2025-07-24T05:19:52.4440827Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_cache.h' 2025-07-24T05:19:52.4444781Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_spec.h' 2025-07-24T05:19:52.4448322Z adding 'torch/include/torch/csrc/jit/codegen/fuser/partition_desc.h' 2025-07-24T05:19:52.4451897Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_desc.h' 2025-07-24T05:19:52.4455012Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_info.h' 2025-07-24T05:19:52.4459087Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h' 2025-07-24T05:19:52.4462649Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h' 2025-07-24T05:19:52.4466275Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/temp_file.h' 2025-07-24T05:19:52.4470534Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h' 2025-07-24T05:19:52.4476021Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/resource_strings.h' 2025-07-24T05:19:52.4489996Z adding 'torch/include/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h' 2025-07-24T05:19:52.4490217Z adding 'torch/include/torch/csrc/jit/codegen/onednn/decompose_silu.h' 2025-07-24T05:19:52.4490867Z adding 'torch/include/torch/csrc/jit/codegen/onednn/defer_size_check.h' 2025-07-24T05:19:52.4492730Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_fuser.h' 2025-07-24T05:19:52.4533970Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_helper.h' 2025-07-24T05:19:52.4534259Z adding 'torch/include/torch/csrc/jit/codegen/onednn/guard_shape.h' 2025-07-24T05:19:52.4534433Z adding 'torch/include/torch/csrc/jit/codegen/onednn/interface.h' 2025-07-24T05:19:52.4534604Z adding 'torch/include/torch/csrc/jit/codegen/onednn/kernel.h' 2025-07-24T05:19:52.4534826Z adding 'torch/include/torch/csrc/jit/codegen/onednn/layout_propagation.h' 2025-07-24T05:19:52.4535002Z adding 'torch/include/torch/csrc/jit/codegen/onednn/operator.h' 2025-07-24T05:19:52.4535218Z adding 'torch/include/torch/csrc/jit/codegen/onednn/prepare_binary.h' 2025-07-24T05:19:52.4535336Z adding 'torch/include/torch/csrc/jit/cuda/cuda.h' 2025-07-24T05:19:52.4535528Z adding 'torch/include/torch/csrc/jit/frontend/builtin_functions.h' 2025-07-24T05:19:52.4535770Z adding 'torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h' 2025-07-24T05:19:52.4537726Z adding 'torch/include/torch/csrc/jit/frontend/concrete_module_type.h' 2025-07-24T05:19:52.4541165Z adding 'torch/include/torch/csrc/jit/frontend/convert_to_ssa.h' 2025-07-24T05:19:52.4544150Z adding 'torch/include/torch/csrc/jit/frontend/edit_distance.h' 2025-07-24T05:19:52.4547503Z adding 'torch/include/torch/csrc/jit/frontend/error_report.h' 2025-07-24T05:19:52.4550531Z adding 'torch/include/torch/csrc/jit/frontend/exit_transforms.h' 2025-07-24T05:19:52.4553613Z adding 'torch/include/torch/csrc/jit/frontend/function_schema_parser.h' 2025-07-24T05:19:52.4556794Z adding 'torch/include/torch/csrc/jit/frontend/inline_loop_condition.h' 2025-07-24T05:19:52.4559971Z adding 'torch/include/torch/csrc/jit/frontend/ir_emitter.h' 2025-07-24T05:19:52.4568291Z adding 'torch/include/torch/csrc/jit/frontend/lexer.h' 2025-07-24T05:19:52.4572119Z adding 'torch/include/torch/csrc/jit/frontend/mini_environment.h' 2025-07-24T05:19:52.4575542Z adding 'torch/include/torch/csrc/jit/frontend/name_mangler.h' 2025-07-24T05:19:52.4579232Z adding 'torch/include/torch/csrc/jit/frontend/parse_string_literal.h' 2025-07-24T05:19:52.4582496Z adding 'torch/include/torch/csrc/jit/frontend/parser.h' 2025-07-24T05:19:52.4585332Z adding 'torch/include/torch/csrc/jit/frontend/parser_constants.h' 2025-07-24T05:19:52.4588616Z adding 'torch/include/torch/csrc/jit/frontend/resolver.h' 2025-07-24T05:19:52.4592143Z adding 'torch/include/torch/csrc/jit/frontend/schema_matching.h' 2025-07-24T05:19:52.4595602Z adding 'torch/include/torch/csrc/jit/frontend/schema_type_parser.h' 2025-07-24T05:19:52.4598914Z adding 'torch/include/torch/csrc/jit/frontend/script_type_parser.h' 2025-07-24T05:19:52.4606102Z adding 'torch/include/torch/csrc/jit/frontend/source_range.h' 2025-07-24T05:19:52.4609850Z adding 'torch/include/torch/csrc/jit/frontend/source_ref.h' 2025-07-24T05:19:52.4612812Z adding 'torch/include/torch/csrc/jit/frontend/strtod.h' 2025-07-24T05:19:52.4622480Z adding 'torch/include/torch/csrc/jit/frontend/sugared_value.h' 2025-07-24T05:19:52.4628744Z adding 'torch/include/torch/csrc/jit/frontend/tracer.h' 2025-07-24T05:19:52.4633727Z adding 'torch/include/torch/csrc/jit/frontend/tree.h' 2025-07-24T05:19:52.4645497Z adding 'torch/include/torch/csrc/jit/frontend/tree_views.h' 2025-07-24T05:19:52.4649533Z adding 'torch/include/torch/csrc/jit/frontend/versioned_symbols.h' 2025-07-24T05:19:52.4657405Z adding 'torch/include/torch/csrc/jit/ir/alias_analysis.h' 2025-07-24T05:19:52.4661692Z adding 'torch/include/torch/csrc/jit/ir/attributes.h' 2025-07-24T05:19:52.4665256Z adding 'torch/include/torch/csrc/jit/ir/constants.h' 2025-07-24T05:19:52.4669722Z adding 'torch/include/torch/csrc/jit/ir/graph_node_list.h' 2025-07-24T05:19:52.4672931Z adding 'torch/include/torch/csrc/jit/ir/graph_utils.h' 2025-07-24T05:19:52.4693939Z adding 'torch/include/torch/csrc/jit/ir/ir.h' 2025-07-24T05:19:52.4699366Z adding 'torch/include/torch/csrc/jit/ir/ir_views.h' 2025-07-24T05:19:52.4702562Z adding 'torch/include/torch/csrc/jit/ir/irparser.h' 2025-07-24T05:19:52.4706212Z adding 'torch/include/torch/csrc/jit/ir/named_value.h' 2025-07-24T05:19:52.4709358Z adding 'torch/include/torch/csrc/jit/ir/node_hashing.h' 2025-07-24T05:19:52.4714097Z adding 'torch/include/torch/csrc/jit/ir/scope.h' 2025-07-24T05:19:52.4755655Z adding 'torch/include/torch/csrc/jit/ir/subgraph_matcher.h' 2025-07-24T05:19:52.4755825Z adding 'torch/include/torch/csrc/jit/ir/type_hashing.h' 2025-07-24T05:19:52.4755955Z adding 'torch/include/torch/csrc/jit/mobile/code.h' 2025-07-24T05:19:52.4756100Z adding 'torch/include/torch/csrc/jit/mobile/debug_info.h' 2025-07-24T05:19:52.4756260Z adding 'torch/include/torch/csrc/jit/mobile/file_format.h' 2025-07-24T05:19:52.4756439Z adding 'torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h' 2025-07-24T05:19:52.4756562Z adding 'torch/include/torch/csrc/jit/mobile/frame.h' 2025-07-24T05:19:52.4756711Z adding 'torch/include/torch/csrc/jit/mobile/function.h' 2025-07-24T05:19:52.4756840Z adding 'torch/include/torch/csrc/jit/mobile/import.h' 2025-07-24T05:19:52.4756989Z adding 'torch/include/torch/csrc/jit/mobile/import_data.h' 2025-07-24T05:19:52.4759729Z adding 'torch/include/torch/csrc/jit/mobile/import_export_common.h' 2025-07-24T05:19:52.4763077Z adding 'torch/include/torch/csrc/jit/mobile/interpreter.h' 2025-07-24T05:19:52.4765994Z adding 'torch/include/torch/csrc/jit/mobile/method.h' 2025-07-24T05:19:52.4771197Z adding 'torch/include/torch/csrc/jit/mobile/module.h' 2025-07-24T05:19:52.4775440Z adding 'torch/include/torch/csrc/jit/mobile/observer.h' 2025-07-24T05:19:52.4779814Z adding 'torch/include/torch/csrc/jit/mobile/parse_bytecode.h' 2025-07-24T05:19:52.4781949Z adding 'torch/include/torch/csrc/jit/mobile/parse_operators.h' 2025-07-24T05:19:52.4784928Z adding 'torch/include/torch/csrc/jit/mobile/prim_ops_registery.h' 2025-07-24T05:19:52.4788765Z adding 'torch/include/torch/csrc/jit/mobile/profiler_edge.h' 2025-07-24T05:19:52.4792245Z adding 'torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h' 2025-07-24T05:19:52.4795486Z adding 'torch/include/torch/csrc/jit/mobile/quantization.h' 2025-07-24T05:19:52.4799361Z adding 'torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h' 2025-07-24T05:19:52.4802282Z adding 'torch/include/torch/csrc/jit/mobile/type_parser.h' 2025-07-24T05:19:52.4805392Z adding 'torch/include/torch/csrc/jit/mobile/upgrader_mobile.h' 2025-07-24T05:19:52.4809443Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport.h' 2025-07-24T05:19:52.4812680Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport_manager.h' 2025-07-24T05:19:52.4816198Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/model_compatibility.h' 2025-07-24T05:19:52.4819463Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h' 2025-07-24T05:19:52.4823512Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h' 2025-07-24T05:19:52.4826671Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h' 2025-07-24T05:19:52.4829898Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h' 2025-07-24T05:19:52.4833893Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h' 2025-07-24T05:19:52.4837753Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h' 2025-07-24T05:19:52.4840692Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TensorUtils.h' 2025-07-24T05:19:52.4844436Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TracerRunner.h' 2025-07-24T05:19:52.4848774Z adding 'torch/include/torch/csrc/jit/mobile/nnc/aot_compiler.h' 2025-07-24T05:19:52.4852964Z adding 'torch/include/torch/csrc/jit/mobile/nnc/context.h' 2025-07-24T05:19:52.4856378Z adding 'torch/include/torch/csrc/jit/mobile/nnc/registry.h' 2025-07-24T05:19:52.4860530Z adding 'torch/include/torch/csrc/jit/mobile/train/export_data.h' 2025-07-24T05:19:52.4864014Z adding 'torch/include/torch/csrc/jit/mobile/train/random.h' 2025-07-24T05:19:52.4867255Z adding 'torch/include/torch/csrc/jit/mobile/train/sequential.h' 2025-07-24T05:19:52.4871742Z adding 'torch/include/torch/csrc/jit/mobile/train/optim/sgd.h' 2025-07-24T05:19:52.4875772Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders.h' 2025-07-24T05:19:52.4878903Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders_entry.h' 2025-07-24T05:19:52.4882443Z adding 'torch/include/torch/csrc/jit/operator_upgraders/utils.h' 2025-07-24T05:19:52.4885408Z adding 'torch/include/torch/csrc/jit/operator_upgraders/version_map.h' 2025-07-24T05:19:52.4890778Z adding 'torch/include/torch/csrc/jit/passes/add_if_then_else.h' 2025-07-24T05:19:52.4894102Z adding 'torch/include/torch/csrc/jit/passes/annotate_warns.h' 2025-07-24T05:19:52.4896688Z adding 'torch/include/torch/csrc/jit/passes/autocast.h' 2025-07-24T05:19:52.4899850Z adding 'torch/include/torch/csrc/jit/passes/bailout_graph.h' 2025-07-24T05:19:52.4902671Z adding 'torch/include/torch/csrc/jit/passes/batch_mm.h' 2025-07-24T05:19:52.4905656Z adding 'torch/include/torch/csrc/jit/passes/canonicalize.h' 2025-07-24T05:19:52.4908558Z adding 'torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h' 2025-07-24T05:19:52.4911434Z adding 'torch/include/torch/csrc/jit/passes/check_strict_fusion.h' 2025-07-24T05:19:52.4914271Z adding 'torch/include/torch/csrc/jit/passes/clear_profiling.h' 2025-07-24T05:19:52.4917367Z adding 'torch/include/torch/csrc/jit/passes/clear_undefinedness.h' 2025-07-24T05:19:52.4920501Z adding 'torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h' 2025-07-24T05:19:52.4923331Z adding 'torch/include/torch/csrc/jit/passes/concat_opt.h' 2025-07-24T05:19:52.4926180Z adding 'torch/include/torch/csrc/jit/passes/constant_pooling.h' 2025-07-24T05:19:52.4929351Z adding 'torch/include/torch/csrc/jit/passes/constant_propagation.h' 2025-07-24T05:19:52.4932448Z adding 'torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h' 2025-07-24T05:19:52.4935294Z adding 'torch/include/torch/csrc/jit/passes/create_functional_graphs.h' 2025-07-24T05:19:52.4938457Z adding 'torch/include/torch/csrc/jit/passes/dead_code_elimination.h' 2025-07-24T05:19:52.4941371Z adding 'torch/include/torch/csrc/jit/passes/decompose_ops.h' 2025-07-24T05:19:52.4944203Z adding 'torch/include/torch/csrc/jit/passes/device_type_analysis.h' 2025-07-24T05:19:52.4947091Z adding 'torch/include/torch/csrc/jit/passes/dtype_analysis.h' 2025-07-24T05:19:52.4950074Z adding 'torch/include/torch/csrc/jit/passes/eliminate_no_ops.h' 2025-07-24T05:19:52.4953143Z adding 'torch/include/torch/csrc/jit/passes/erase_number_types.h' 2025-07-24T05:19:52.4956452Z adding 'torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h' 2025-07-24T05:19:52.4959695Z adding 'torch/include/torch/csrc/jit/passes/fold_conv_bn.h' 2025-07-24T05:19:52.4962748Z adding 'torch/include/torch/csrc/jit/passes/fold_linear_bn.h' 2025-07-24T05:19:52.4965901Z adding 'torch/include/torch/csrc/jit/passes/freeze_module.h' 2025-07-24T05:19:52.4968858Z adding 'torch/include/torch/csrc/jit/passes/frozen_concat_linear.h' 2025-07-24T05:19:52.4971767Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h' 2025-07-24T05:19:52.4974699Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_folding.h' 2025-07-24T05:19:52.4977733Z adding 'torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h' 2025-07-24T05:19:52.4980604Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_folding.h' 2025-07-24T05:19:52.4983503Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h' 2025-07-24T05:19:52.4986399Z adding 'torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h' 2025-07-24T05:19:52.4989381Z adding 'torch/include/torch/csrc/jit/passes/fuse_linear.h' 2025-07-24T05:19:52.4992282Z adding 'torch/include/torch/csrc/jit/passes/fuse_relu.h' 2025-07-24T05:19:52.4995729Z adding 'torch/include/torch/csrc/jit/passes/graph_fuser.h' 2025-07-24T05:19:52.4999042Z adding 'torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h' 2025-07-24T05:19:52.5002147Z adding 'torch/include/torch/csrc/jit/passes/guard_elimination.h' 2025-07-24T05:19:52.5005140Z adding 'torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h' 2025-07-24T05:19:52.5008224Z adding 'torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h' 2025-07-24T05:19:52.5011711Z adding 'torch/include/torch/csrc/jit/passes/inline_fork_wait.h' 2025-07-24T05:19:52.5014191Z adding 'torch/include/torch/csrc/jit/passes/inline_forked_closures.h' 2025-07-24T05:19:52.5017408Z adding 'torch/include/torch/csrc/jit/passes/inliner.h' 2025-07-24T05:19:52.5020034Z adding 'torch/include/torch/csrc/jit/passes/inplace_check.h' 2025-07-24T05:19:52.5023173Z adding 'torch/include/torch/csrc/jit/passes/insert_guards.h' 2025-07-24T05:19:52.5025951Z adding 'torch/include/torch/csrc/jit/passes/integer_value_refinement.h' 2025-07-24T05:19:52.5028916Z adding 'torch/include/torch/csrc/jit/passes/lift_closures.h' 2025-07-24T05:19:52.5031823Z adding 'torch/include/torch/csrc/jit/passes/liveness.h' 2025-07-24T05:19:52.5035070Z adding 'torch/include/torch/csrc/jit/passes/loop_unrolling.h' 2025-07-24T05:19:52.5037995Z adding 'torch/include/torch/csrc/jit/passes/lower_grad_of.h' 2025-07-24T05:19:52.5041286Z adding 'torch/include/torch/csrc/jit/passes/lower_graph.h' 2025-07-24T05:19:52.5044312Z adding 'torch/include/torch/csrc/jit/passes/lower_tuples.h' 2025-07-24T05:19:52.5047402Z adding 'torch/include/torch/csrc/jit/passes/metal_rewrite.h' 2025-07-24T05:19:52.5050445Z adding 'torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h' 2025-07-24T05:19:52.5053510Z adding 'torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h' 2025-07-24T05:19:52.5056456Z adding 'torch/include/torch/csrc/jit/passes/normalize_ops.h' 2025-07-24T05:19:52.5059802Z adding 'torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h' 2025-07-24T05:19:52.5062803Z adding 'torch/include/torch/csrc/jit/passes/onnx.h' 2025-07-24T05:19:52.5067125Z adding 'torch/include/torch/csrc/jit/passes/pass_manager.h' 2025-07-24T05:19:52.5070271Z adding 'torch/include/torch/csrc/jit/passes/peephole.h' 2025-07-24T05:19:52.5073548Z adding 'torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h' 2025-07-24T05:19:52.5076553Z adding 'torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h' 2025-07-24T05:19:52.5080115Z adding 'torch/include/torch/csrc/jit/passes/peephole_list_idioms.h' 2025-07-24T05:19:52.5083210Z adding 'torch/include/torch/csrc/jit/passes/peephole_non_tensor.h' 2025-07-24T05:19:52.5086130Z adding 'torch/include/torch/csrc/jit/passes/prepack_folding.h' 2025-07-24T05:19:52.5089141Z adding 'torch/include/torch/csrc/jit/passes/refine_tuple_types.h' 2025-07-24T05:19:52.5092032Z adding 'torch/include/torch/csrc/jit/passes/remove_dropout.h' 2025-07-24T05:19:52.5095243Z adding 'torch/include/torch/csrc/jit/passes/remove_exceptions.h' 2025-07-24T05:19:52.5098129Z adding 'torch/include/torch/csrc/jit/passes/remove_expands.h' 2025-07-24T05:19:52.5101098Z adding 'torch/include/torch/csrc/jit/passes/remove_inplace_ops.h' 2025-07-24T05:19:52.5104548Z adding 'torch/include/torch/csrc/jit/passes/remove_mutation.h' 2025-07-24T05:19:52.5107669Z adding 'torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h' 2025-07-24T05:19:52.5110648Z adding 'torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h' 2025-07-24T05:19:52.5113575Z adding 'torch/include/torch/csrc/jit/passes/requires_grad_analysis.h' 2025-07-24T05:19:52.5116929Z adding 'torch/include/torch/csrc/jit/passes/restore_mutation.h' 2025-07-24T05:19:52.5120355Z adding 'torch/include/torch/csrc/jit/passes/shape_analysis.h' 2025-07-24T05:19:52.5123486Z adding 'torch/include/torch/csrc/jit/passes/specialize_autogradzero.h' 2025-07-24T05:19:52.5127519Z adding 'torch/include/torch/csrc/jit/passes/subgraph_rewrite.h' 2025-07-24T05:19:52.5131088Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h' 2025-07-24T05:19:52.5134569Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h' 2025-07-24T05:19:52.5138591Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h' 2025-07-24T05:19:52.5142256Z adding 'torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h' 2025-07-24T05:19:52.5145734Z adding 'torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h' 2025-07-24T05:19:52.5149078Z adding 'torch/include/torch/csrc/jit/passes/value_refinement_utils.h' 2025-07-24T05:19:52.5152256Z adding 'torch/include/torch/csrc/jit/passes/variadic_ops.h' 2025-07-24T05:19:52.5155264Z adding 'torch/include/torch/csrc/jit/passes/vulkan_rewrite.h' 2025-07-24T05:19:52.5158495Z adding 'torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h' 2025-07-24T05:19:52.5162727Z adding 'torch/include/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h' 2025-07-24T05:19:52.5166564Z adding 'torch/include/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h' 2025-07-24T05:19:52.5169758Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_fold.h' 2025-07-24T05:19:52.5173736Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_map.h' 2025-07-24T05:19:52.5176881Z adding 'torch/include/torch/csrc/jit/passes/onnx/deduplicate_initializers.h' 2025-07-24T05:19:52.5179984Z adding 'torch/include/torch/csrc/jit/passes/onnx/eliminate_unused_items.h' 2025-07-24T05:19:52.5182788Z adding 'torch/include/torch/csrc/jit/passes/onnx/eval_peephole.h' 2025-07-24T05:19:52.5185800Z adding 'torch/include/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h' 2025-07-24T05:19:52.5189285Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_extraction.h' 2025-07-24T05:19:52.5192442Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_substitution.h' 2025-07-24T05:19:52.5196394Z adding 'torch/include/torch/csrc/jit/passes/onnx/helper.h' 2025-07-24T05:19:52.5199071Z adding 'torch/include/torch/csrc/jit/passes/onnx/list_model_parameters.h' 2025-07-24T05:19:52.5202081Z adding 'torch/include/torch/csrc/jit/passes/onnx/naming.h' 2025-07-24T05:19:52.5205145Z adding 'torch/include/torch/csrc/jit/passes/onnx/onnx_log.h' 2025-07-24T05:19:52.5208227Z adding 'torch/include/torch/csrc/jit/passes/onnx/peephole.h' 2025-07-24T05:19:52.5211236Z adding 'torch/include/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h' 2025-07-24T05:19:52.5229787Z adding 'torch/include/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h' 2025-07-24T05:19:52.5230049Z adding 'torch/include/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h' 2025-07-24T05:19:52.5230262Z adding 'torch/include/torch/csrc/jit/passes/onnx/scalar_type_analysis.h' 2025-07-24T05:19:52.5230472Z adding 'torch/include/torch/csrc/jit/passes/onnx/shape_type_inference.h' 2025-07-24T05:19:52.5230709Z adding 'torch/include/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h' 2025-07-24T05:19:52.5232837Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h' 2025-07-24T05:19:52.5235810Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/common.h' 2025-07-24T05:19:52.5239482Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h' 2025-07-24T05:19:52.5242993Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h' 2025-07-24T05:19:52.5247060Z adding 'torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h' 2025-07-24T05:19:52.5250593Z adding 'torch/include/torch/csrc/jit/passes/quantization/finalize.h' 2025-07-24T05:19:52.5253717Z adding 'torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h' 2025-07-24T05:19:52.5258203Z adding 'torch/include/torch/csrc/jit/passes/quantization/helper.h' 2025-07-24T05:19:52.5261888Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_observers.h' 2025-07-24T05:19:52.5265405Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h' 2025-07-24T05:19:52.5275966Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h' 2025-07-24T05:19:52.5280391Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_type.h' 2025-07-24T05:19:52.5283629Z adding 'torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h' 2025-07-24T05:19:52.5287545Z adding 'torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h' 2025-07-24T05:19:52.5292023Z adding 'torch/include/torch/csrc/jit/passes/utils/memory_dag.h' 2025-07-24T05:19:52.5295371Z adding 'torch/include/torch/csrc/jit/passes/utils/op_registry.h' 2025-07-24T05:19:52.5298702Z adding 'torch/include/torch/csrc/jit/passes/utils/optimization_utils.h' 2025-07-24T05:19:52.5302198Z adding 'torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h' 2025-07-24T05:19:52.5306107Z adding 'torch/include/torch/csrc/jit/python/init.h' 2025-07-24T05:19:52.5309431Z adding 'torch/include/torch/csrc/jit/python/module_python.h' 2025-07-24T05:19:52.5314030Z adding 'torch/include/torch/csrc/jit/python/pybind.h' 2025-07-24T05:19:52.5330553Z adding 'torch/include/torch/csrc/jit/python/pybind_utils.h' 2025-07-24T05:19:52.5335490Z adding 'torch/include/torch/csrc/jit/python/python_arg_flatten.h' 2025-07-24T05:19:52.5338616Z adding 'torch/include/torch/csrc/jit/python/python_custom_class.h' 2025-07-24T05:19:52.5342384Z adding 'torch/include/torch/csrc/jit/python/python_dict.h' 2025-07-24T05:19:52.5345678Z adding 'torch/include/torch/csrc/jit/python/python_ir.h' 2025-07-24T05:19:52.5349602Z adding 'torch/include/torch/csrc/jit/python/python_ivalue.h' 2025-07-24T05:19:52.5354062Z adding 'torch/include/torch/csrc/jit/python/python_list.h' 2025-07-24T05:19:52.5359338Z adding 'torch/include/torch/csrc/jit/python/python_sugared_value.h' 2025-07-24T05:19:52.5362840Z adding 'torch/include/torch/csrc/jit/python/python_tracer.h' 2025-07-24T05:19:52.5365770Z adding 'torch/include/torch/csrc/jit/python/python_tree_views.h' 2025-07-24T05:19:52.5368888Z adding 'torch/include/torch/csrc/jit/python/script_init.h' 2025-07-24T05:19:52.5371587Z adding 'torch/include/torch/csrc/jit/python/update_graph_executor_opt.h' 2025-07-24T05:19:52.5374569Z adding 'torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h' 2025-07-24T05:19:52.5383140Z adding 'torch/include/torch/csrc/jit/runtime/argument_spec.h' 2025-07-24T05:19:52.5387581Z adding 'torch/include/torch/csrc/jit/runtime/autodiff.h' 2025-07-24T05:19:52.5391515Z adding 'torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h' 2025-07-24T05:19:52.5394943Z adding 'torch/include/torch/csrc/jit/runtime/custom_operator.h' 2025-07-24T05:19:52.5398241Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry.h' 2025-07-24T05:19:52.5401388Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h' 2025-07-24T05:19:52.5404375Z adding 'torch/include/torch/csrc/jit/runtime/exception_message.h' 2025-07-24T05:19:52.5408597Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor.h' 2025-07-24T05:19:52.5412788Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor_impl.h' 2025-07-24T05:19:52.5417162Z adding 'torch/include/torch/csrc/jit/runtime/graph_iterator.h' 2025-07-24T05:19:52.5421521Z adding 'torch/include/torch/csrc/jit/runtime/instruction.h' 2025-07-24T05:19:52.5425945Z adding 'torch/include/torch/csrc/jit/runtime/interpreter.h' 2025-07-24T05:19:52.5429392Z adding 'torch/include/torch/csrc/jit/runtime/jit_exception.h' 2025-07-24T05:19:52.5432301Z adding 'torch/include/torch/csrc/jit/runtime/jit_trace.h' 2025-07-24T05:19:52.5435914Z adding 'torch/include/torch/csrc/jit/runtime/logging.h' 2025-07-24T05:19:52.5441718Z adding 'torch/include/torch/csrc/jit/runtime/operator.h' 2025-07-24T05:19:52.5445087Z adding 'torch/include/torch/csrc/jit/runtime/operator_options.h' 2025-07-24T05:19:52.5448171Z adding 'torch/include/torch/csrc/jit/runtime/print_handler.h' 2025-07-24T05:19:52.5451858Z adding 'torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h' 2025-07-24T05:19:52.5457079Z adding 'torch/include/torch/csrc/jit/runtime/profiling_record.h' 2025-07-24T05:19:52.5467044Z adding 'torch/include/torch/csrc/jit/runtime/register_ops_utils.h' 2025-07-24T05:19:52.5471790Z adding 'torch/include/torch/csrc/jit/runtime/script_profile.h' 2025-07-24T05:19:52.5474931Z adding 'torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h' 2025-07-24T05:19:52.5477880Z adding 'torch/include/torch/csrc/jit/runtime/shape_function_registry.h' 2025-07-24T05:19:52.5481067Z adding 'torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h' 2025-07-24T05:19:52.5484181Z adding 'torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h' 2025-07-24T05:19:52.5487135Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_script.h' 2025-07-24T05:19:52.5490916Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h' 2025-07-24T05:19:52.5494032Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h' 2025-07-24T05:19:52.5497256Z adding 'torch/include/torch/csrc/jit/runtime/vararg_functions.h' 2025-07-24T05:19:52.5500282Z adding 'torch/include/torch/csrc/jit/runtime/variable_tensor_list.h' 2025-07-24T05:19:52.5505344Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/can_emit_inline.h' 2025-07-24T05:19:52.5517223Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/code_impl.h' 2025-07-24T05:19:52.5521576Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/frame.h' 2025-07-24T05:19:52.5524678Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/preprocess_graph.h' 2025-07-24T05:19:52.5529975Z adding 'torch/include/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h' 2025-07-24T05:19:52.5533265Z adding 'torch/include/torch/csrc/jit/runtime/static/fusion.h' 2025-07-24T05:19:52.5546950Z adding 'torch/include/torch/csrc/jit/runtime/static/impl.h' 2025-07-24T05:19:52.5550910Z adding 'torch/include/torch/csrc/jit/runtime/static/init.h' 2025-07-24T05:19:52.5556633Z adding 'torch/include/torch/csrc/jit/runtime/static/memory_planner.h' 2025-07-24T05:19:52.5561398Z adding 'torch/include/torch/csrc/jit/runtime/static/ops.h' 2025-07-24T05:19:52.5565382Z adding 'torch/include/torch/csrc/jit/runtime/static/passes.h' 2025-07-24T05:19:52.5569878Z adding 'torch/include/torch/csrc/jit/runtime/static/processed_node_wrapper.h' 2025-07-24T05:19:52.5573478Z adding 'torch/include/torch/csrc/jit/runtime/static/static_method.h' 2025-07-24T05:19:52.5576602Z adding 'torch/include/torch/csrc/jit/runtime/static/te_wrapper.h' 2025-07-24T05:19:52.5581823Z adding 'torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h' 2025-07-24T05:19:52.5587458Z adding 'torch/include/torch/csrc/jit/serialization/export.h' 2025-07-24T05:19:52.5591145Z adding 'torch/include/torch/csrc/jit/serialization/export_bytecode.h' 2025-07-24T05:19:52.5594956Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h' 2025-07-24T05:19:52.5598221Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h' 2025-07-24T05:19:52.5601840Z adding 'torch/include/torch/csrc/jit/serialization/import.h' 2025-07-24T05:19:52.5605194Z adding 'torch/include/torch/csrc/jit/serialization/import_export_constants.h' 2025-07-24T05:19:52.5608159Z adding 'torch/include/torch/csrc/jit/serialization/import_export_functions.h' 2025-07-24T05:19:52.5611355Z adding 'torch/include/torch/csrc/jit/serialization/import_export_helpers.h' 2025-07-24T05:19:52.5615103Z adding 'torch/include/torch/csrc/jit/serialization/import_read.h' 2025-07-24T05:19:52.5618905Z adding 'torch/include/torch/csrc/jit/serialization/import_source.h' 2025-07-24T05:19:52.5639484Z adding 'torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h' 2025-07-24T05:19:52.5653227Z adding 'torch/include/torch/csrc/jit/serialization/onnx.h' 2025-07-24T05:19:52.5653412Z adding 'torch/include/torch/csrc/jit/serialization/pickle.h' 2025-07-24T05:19:52.5656365Z adding 'torch/include/torch/csrc/jit/serialization/pickler.h' 2025-07-24T05:19:52.5661207Z adding 'torch/include/torch/csrc/jit/serialization/pickler_helper.h' 2025-07-24T05:19:52.5664740Z adding 'torch/include/torch/csrc/jit/serialization/python_print.h' 2025-07-24T05:19:52.5668172Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization.h' 2025-07-24T05:19:52.5671442Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h' 2025-07-24T05:19:52.5674766Z adding 'torch/include/torch/csrc/jit/serialization/storage_context.h' 2025-07-24T05:19:52.5678154Z adding 'torch/include/torch/csrc/jit/serialization/type_name_uniquer.h' 2025-07-24T05:19:52.5683133Z adding 'torch/include/torch/csrc/jit/serialization/unpickler.h' 2025-07-24T05:19:52.5689444Z adding 'torch/include/torch/csrc/jit/tensorexpr/analysis.h' 2025-07-24T05:19:52.5693806Z adding 'torch/include/torch/csrc/jit/tensorexpr/block_codegen.h' 2025-07-24T05:19:52.5697298Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h' 2025-07-24T05:19:52.5701589Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h' 2025-07-24T05:19:52.5706609Z adding 'torch/include/torch/csrc/jit/tensorexpr/codegen.h' 2025-07-24T05:19:52.5710340Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h' 2025-07-24T05:19:52.5713487Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h' 2025-07-24T05:19:52.5718459Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h' 2025-07-24T05:19:52.5722242Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_random.h' 2025-07-24T05:19:52.5727206Z adding 'torch/include/torch/csrc/jit/tensorexpr/eval.h' 2025-07-24T05:19:52.5730891Z adding 'torch/include/torch/csrc/jit/tensorexpr/exceptions.h' 2025-07-24T05:19:52.5737075Z adding 'torch/include/torch/csrc/jit/tensorexpr/expr.h' 2025-07-24T05:19:52.5741134Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions.h' 2025-07-24T05:19:52.5744264Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h' 2025-07-24T05:19:52.5747761Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h' 2025-07-24T05:19:52.5751396Z adding 'torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h' 2025-07-24T05:19:52.5755440Z adding 'torch/include/torch/csrc/jit/tensorexpr/graph_opt.h' 2025-07-24T05:19:52.5759829Z adding 'torch/include/torch/csrc/jit/tensorexpr/half_support.h' 2025-07-24T05:19:52.5764597Z adding 'torch/include/torch/csrc/jit/tensorexpr/hash_provider.h' 2025-07-24T05:19:52.5767876Z adding 'torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h' 2025-07-24T05:19:52.5776094Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir.h' 2025-07-24T05:19:52.5780020Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h' 2025-07-24T05:19:52.5783324Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h' 2025-07-24T05:19:52.5787074Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_printer.h' 2025-07-24T05:19:52.5793458Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h' 2025-07-24T05:19:52.5797010Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h' 2025-07-24T05:19:52.5800456Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h' 2025-07-24T05:19:52.5806787Z adding 'torch/include/torch/csrc/jit/tensorexpr/kernel.h' 2025-07-24T05:19:52.5810886Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h' 2025-07-24T05:19:52.5814364Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h' 2025-07-24T05:19:52.5823484Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest.h' 2025-07-24T05:19:52.5827098Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h' 2025-07-24T05:19:52.5830217Z adding 'torch/include/torch/csrc/jit/tensorexpr/lowerings.h' 2025-07-24T05:19:52.5836455Z adding 'torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h' 2025-07-24T05:19:52.5841556Z adding 'torch/include/torch/csrc/jit/tensorexpr/reduction.h' 2025-07-24T05:19:52.5848179Z adding 'torch/include/torch/csrc/jit/tensorexpr/registerizer.h' 2025-07-24T05:19:52.5856769Z adding 'torch/include/torch/csrc/jit/tensorexpr/stmt.h' 2025-07-24T05:19:52.5861973Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensor.h' 2025-07-24T05:19:52.5865246Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h' 2025-07-24T05:19:52.5869646Z adding 'torch/include/torch/csrc/jit/tensorexpr/types.h' 2025-07-24T05:19:52.5872738Z adding 'torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h' 2025-07-24T05:19:52.5876019Z adding 'torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h' 2025-07-24T05:19:52.5880309Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h' 2025-07-24T05:19:52.5883373Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h' 2025-07-24T05:19:52.5886709Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/misc.h' 2025-07-24T05:19:52.5889737Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/norm.h' 2025-07-24T05:19:52.5892605Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/operators.h' 2025-07-24T05:19:52.5895762Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h' 2025-07-24T05:19:52.5899158Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h' 2025-07-24T05:19:52.5902323Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h' 2025-07-24T05:19:52.5905241Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h' 2025-07-24T05:19:52.5908979Z adding 'torch/include/torch/csrc/jit/testing/catch_utils.hpp' 2025-07-24T05:19:52.5912308Z adding 'torch/include/torch/csrc/jit/testing/file_check.h' 2025-07-24T05:19:52.5915410Z adding 'torch/include/torch/csrc/jit/testing/hooks_for_testing.h' 2025-07-24T05:19:52.5920441Z adding 'torch/include/torch/csrc/lazy/backend/backend_data.h' 2025-07-24T05:19:52.5923954Z adding 'torch/include/torch/csrc/lazy/backend/backend_device.h' 2025-07-24T05:19:52.5928256Z adding 'torch/include/torch/csrc/lazy/backend/backend_interface.h' 2025-07-24T05:19:52.5932140Z adding 'torch/include/torch/csrc/lazy/backend/lowering_context.h' 2025-07-24T05:19:52.5937547Z adding 'torch/include/torch/csrc/lazy/core/cache.h' 2025-07-24T05:19:52.5940477Z adding 'torch/include/torch/csrc/lazy/core/config.h' 2025-07-24T05:19:52.5943718Z adding 'torch/include/torch/csrc/lazy/core/debug_util.h' 2025-07-24T05:19:52.5947028Z adding 'torch/include/torch/csrc/lazy/core/dynamic_ir.h' 2025-07-24T05:19:52.5951567Z adding 'torch/include/torch/csrc/lazy/core/hash.h' 2025-07-24T05:19:52.5955326Z adding 'torch/include/torch/csrc/lazy/core/helpers.h' 2025-07-24T05:19:52.5960686Z adding 'torch/include/torch/csrc/lazy/core/ir.h' 2025-07-24T05:19:52.5964560Z adding 'torch/include/torch/csrc/lazy/core/ir_builder.h' 2025-07-24T05:19:52.5967890Z adding 'torch/include/torch/csrc/lazy/core/ir_dump_util.h' 2025-07-24T05:19:52.5971130Z adding 'torch/include/torch/csrc/lazy/core/ir_metadata.h' 2025-07-24T05:19:52.5974469Z adding 'torch/include/torch/csrc/lazy/core/ir_util.h' 2025-07-24T05:19:52.5981291Z adding 'torch/include/torch/csrc/lazy/core/lazy_graph_executor.h' 2025-07-24T05:19:52.5986663Z adding 'torch/include/torch/csrc/lazy/core/metrics.h' 2025-07-24T05:19:52.5990446Z adding 'torch/include/torch/csrc/lazy/core/multi_wait.h' 2025-07-24T05:19:52.5993704Z adding 'torch/include/torch/csrc/lazy/core/permutation_util.h' 2025-07-24T05:19:52.5997217Z adding 'torch/include/torch/csrc/lazy/core/shape.h' 2025-07-24T05:19:52.6005620Z adding 'torch/include/torch/csrc/lazy/core/shape_inference.h' 2025-07-24T05:19:52.6035463Z adding 'torch/include/torch/csrc/lazy/core/tensor.h' 2025-07-24T05:19:52.6035639Z adding 'torch/include/torch/csrc/lazy/core/tensor_impl.h' 2025-07-24T05:19:52.6035785Z adding 'torch/include/torch/csrc/lazy/core/tensor_util.h' 2025-07-24T05:19:52.6035942Z adding 'torch/include/torch/csrc/lazy/core/thread_pool.h' 2025-07-24T05:19:52.6036060Z adding 'torch/include/torch/csrc/lazy/core/trie.h' 2025-07-24T05:19:52.6036185Z adding 'torch/include/torch/csrc/lazy/core/unique.h' 2025-07-24T05:19:52.6036309Z adding 'torch/include/torch/csrc/lazy/core/util.h' 2025-07-24T05:19:52.6036592Z adding 'torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h' 2025-07-24T05:19:52.6041486Z adding 'torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h' 2025-07-24T05:19:52.6043466Z adding 'torch/include/torch/csrc/lazy/core/ops/utils.h' 2025-07-24T05:19:52.6078861Z adding 'torch/include/torch/csrc/lazy/generated/LazyIr.h' 2025-07-24T05:19:52.6091833Z adding 'torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h' 2025-07-24T05:19:52.6095982Z adding 'torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h' 2025-07-24T05:19:52.6099732Z adding 'torch/include/torch/csrc/lazy/python/init.h' 2025-07-24T05:19:52.6102681Z adding 'torch/include/torch/csrc/lazy/python/python_util.h' 2025-07-24T05:19:52.6106433Z adding 'torch/include/torch/csrc/lazy/ts_backend/config.h' 2025-07-24T05:19:52.6109796Z adding 'torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h' 2025-07-24T05:19:52.6113207Z adding 'torch/include/torch/csrc/lazy/ts_backend/ir_builder.h' 2025-07-24T05:19:52.6116316Z adding 'torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h' 2025-07-24T05:19:52.6119594Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h' 2025-07-24T05:19:52.6122722Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h' 2025-07-24T05:19:52.6125803Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h' 2025-07-24T05:19:52.6129802Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h' 2025-07-24T05:19:52.6133598Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node.h' 2025-07-24T05:19:52.6136955Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h' 2025-07-24T05:19:52.6140918Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/device_data.h' 2025-07-24T05:19:52.6144117Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/generic.h' 2025-07-24T05:19:52.6147889Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/to_copy.h' 2025-07-24T05:19:52.6153440Z adding 'torch/include/torch/csrc/monitor/counters.h' 2025-07-24T05:19:52.6157944Z adding 'torch/include/torch/csrc/monitor/events.h' 2025-07-24T05:19:52.6160565Z adding 'torch/include/torch/csrc/monitor/python_init.h' 2025-07-24T05:19:52.6164250Z adding 'torch/include/torch/csrc/mps/Module.h' 2025-07-24T05:19:52.6167889Z adding 'torch/include/torch/csrc/mtia/Module.h' 2025-07-24T05:19:52.6171587Z adding 'torch/include/torch/csrc/mtia/profiler/MTIAMemoryProfiler.h' 2025-07-24T05:19:52.6175259Z adding 'torch/include/torch/csrc/multiprocessing/init.h' 2025-07-24T05:19:52.6179395Z adding 'torch/include/torch/csrc/onnx/back_compat.h' 2025-07-24T05:19:52.6182013Z adding 'torch/include/torch/csrc/onnx/init.h' 2025-07-24T05:19:52.6185104Z adding 'torch/include/torch/csrc/onnx/onnx.h' 2025-07-24T05:19:52.6188990Z adding 'torch/include/torch/csrc/profiler/api.h' 2025-07-24T05:19:52.6197249Z adding 'torch/include/torch/csrc/profiler/collection.h' 2025-07-24T05:19:52.6201974Z adding 'torch/include/torch/csrc/profiler/combined_traceback.h' 2025-07-24T05:19:52.6206069Z adding 'torch/include/torch/csrc/profiler/containers.h' 2025-07-24T05:19:52.6210615Z adding 'torch/include/torch/csrc/profiler/data_flow.h' 2025-07-24T05:19:52.6214031Z adding 'torch/include/torch/csrc/profiler/events.h' 2025-07-24T05:19:52.6217038Z adding 'torch/include/torch/csrc/profiler/kineto_client_interface.h' 2025-07-24T05:19:52.6222364Z adding 'torch/include/torch/csrc/profiler/kineto_shim.h' 2025-07-24T05:19:52.6224423Z adding 'torch/include/torch/csrc/profiler/perf-inl.h' 2025-07-24T05:19:52.6265550Z adding 'torch/include/torch/csrc/profiler/perf.h' 2025-07-24T05:19:52.6265688Z adding 'torch/include/torch/csrc/profiler/util.h' 2025-07-24T05:19:52.6265911Z adding 'torch/include/torch/csrc/profiler/orchestration/observer.h' 2025-07-24T05:19:52.6266135Z adding 'torch/include/torch/csrc/profiler/orchestration/python_tracer.h' 2025-07-24T05:19:52.6266325Z adding 'torch/include/torch/csrc/profiler/orchestration/vulkan.h' 2025-07-24T05:19:52.6266538Z adding 'torch/include/torch/csrc/profiler/python/combined_traceback.h' 2025-07-24T05:19:52.6266787Z adding 'torch/include/torch/csrc/profiler/python/init.h' 2025-07-24T05:19:52.6266942Z adding 'torch/include/torch/csrc/profiler/python/pybind.h' 2025-07-24T05:19:52.6267203Z adding 'torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h' 2025-07-24T05:19:52.6267475Z adding 'torch/include/torch/csrc/profiler/standalone/itt_observer.h' 2025-07-24T05:19:52.6269302Z adding 'torch/include/torch/csrc/profiler/standalone/nvtx_observer.h' 2025-07-24T05:19:52.6272944Z adding 'torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h' 2025-07-24T05:19:52.6277654Z adding 'torch/include/torch/csrc/profiler/stubs/base.h' 2025-07-24T05:19:52.6281201Z adding 'torch/include/torch/csrc/profiler/unwind/action.h' 2025-07-24T05:19:52.6284866Z adding 'torch/include/torch/csrc/profiler/unwind/communicate.h' 2025-07-24T05:19:52.6289920Z adding 'torch/include/torch/csrc/profiler/unwind/debug_info.h' 2025-07-24T05:19:52.6293383Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_enums.h' 2025-07-24T05:19:52.6297252Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h' 2025-07-24T05:19:52.6301041Z adding 'torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h' 2025-07-24T05:19:52.6304829Z adding 'torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h' 2025-07-24T05:19:52.6310378Z adding 'torch/include/torch/csrc/profiler/unwind/fde.h' 2025-07-24T05:19:52.6314524Z adding 'torch/include/torch/csrc/profiler/unwind/lexer.h' 2025-07-24T05:19:52.6320141Z adding 'torch/include/torch/csrc/profiler/unwind/line_number_program.h' 2025-07-24T05:19:52.6324508Z adding 'torch/include/torch/csrc/profiler/unwind/mem_file.h' 2025-07-24T05:19:52.6328068Z adding 'torch/include/torch/csrc/profiler/unwind/range_table.h' 2025-07-24T05:19:52.6331881Z adding 'torch/include/torch/csrc/profiler/unwind/sections.h' 2025-07-24T05:19:52.6335197Z adding 'torch/include/torch/csrc/profiler/unwind/unwind.h' 2025-07-24T05:19:52.6338346Z adding 'torch/include/torch/csrc/profiler/unwind/unwind_error.h' 2025-07-24T05:19:52.6341803Z adding 'torch/include/torch/csrc/profiler/unwind/unwinder.h' 2025-07-24T05:19:52.6348675Z adding 'torch/include/torch/csrc/stable/library.h' 2025-07-24T05:19:52.6352368Z adding 'torch/include/torch/csrc/stable/ops.h' 2025-07-24T05:19:52.6356223Z adding 'torch/include/torch/csrc/stable/tensor.h' 2025-07-24T05:19:52.6360512Z adding 'torch/include/torch/csrc/tensor/python_tensor.h' 2025-07-24T05:19:52.6365467Z adding 'torch/include/torch/csrc/utils/byte_order.h' 2025-07-24T05:19:52.6368457Z adding 'torch/include/torch/csrc/utils/cpp_stacktraces.h' 2025-07-24T05:19:52.6371322Z adding 'torch/include/torch/csrc/utils/cuda_enabled.h' 2025-07-24T05:19:52.6374931Z adding 'torch/include/torch/csrc/utils/device_lazy_init.h' 2025-07-24T05:19:52.6378330Z adding 'torch/include/torch/csrc/utils/disable_torch_function.h' 2025-07-24T05:19:52.6400815Z adding 'torch/include/torch/csrc/utils/generated_serialization_types.h' 2025-07-24T05:19:52.6406438Z adding 'torch/include/torch/csrc/utils/init.h' 2025-07-24T05:19:52.6409449Z adding 'torch/include/torch/csrc/utils/invalid_arguments.h' 2025-07-24T05:19:52.6412378Z adding 'torch/include/torch/csrc/utils/nested.h' 2025-07-24T05:19:52.6415294Z adding 'torch/include/torch/csrc/utils/numpy_stub.h' 2025-07-24T05:19:52.6418955Z adding 'torch/include/torch/csrc/utils/object_ptr.h' 2025-07-24T05:19:52.6421718Z adding 'torch/include/torch/csrc/utils/out_types.h' 2025-07-24T05:19:52.6427171Z adding 'torch/include/torch/csrc/utils/pybind.h' 2025-07-24T05:19:52.6430561Z adding 'torch/include/torch/csrc/utils/pycfunction_helpers.h' 2025-07-24T05:19:52.6433361Z adding 'torch/include/torch/csrc/utils/pyobject_preservation.h' 2025-07-24T05:19:52.6447148Z adding 'torch/include/torch/csrc/utils/python_arg_parser.h' 2025-07-24T05:19:52.6451451Z adding 'torch/include/torch/csrc/utils/python_compat.h' 2025-07-24T05:19:52.6454461Z adding 'torch/include/torch/csrc/utils/python_dispatch.h' 2025-07-24T05:19:52.6458356Z adding 'torch/include/torch/csrc/utils/python_numbers.h' 2025-07-24T05:19:52.6461946Z adding 'torch/include/torch/csrc/utils/python_raii.h' 2025-07-24T05:19:52.6465909Z adding 'torch/include/torch/csrc/utils/python_scalars.h' 2025-07-24T05:19:52.6469955Z adding 'torch/include/torch/csrc/utils/python_strings.h' 2025-07-24T05:19:52.6472849Z adding 'torch/include/torch/csrc/utils/python_stub.h' 2025-07-24T05:19:52.6477001Z adding 'torch/include/torch/csrc/utils/python_symnode.h' 2025-07-24T05:19:52.6480551Z adding 'torch/include/torch/csrc/utils/python_torch_function_mode.h' 2025-07-24T05:19:52.6483567Z adding 'torch/include/torch/csrc/utils/python_tuples.h' 2025-07-24T05:19:52.6496504Z adding 'torch/include/torch/csrc/utils/pythoncapi_compat.h' 2025-07-24T05:19:52.6501263Z adding 'torch/include/torch/csrc/utils/schema_info.h' 2025-07-24T05:19:52.6504723Z adding 'torch/include/torch/csrc/utils/six.h' 2025-07-24T05:19:52.6507629Z adding 'torch/include/torch/csrc/utils/structseq.h' 2025-07-24T05:19:52.6510675Z adding 'torch/include/torch/csrc/utils/tensor_apply.h' 2025-07-24T05:19:52.6513600Z adding 'torch/include/torch/csrc/utils/tensor_dtypes.h' 2025-07-24T05:19:52.6517262Z adding 'torch/include/torch/csrc/utils/tensor_flatten.h' 2025-07-24T05:19:52.6520271Z adding 'torch/include/torch/csrc/utils/tensor_layouts.h' 2025-07-24T05:19:52.6523303Z adding 'torch/include/torch/csrc/utils/tensor_list.h' 2025-07-24T05:19:52.6526232Z adding 'torch/include/torch/csrc/utils/tensor_memoryformats.h' 2025-07-24T05:19:52.6529815Z adding 'torch/include/torch/csrc/utils/tensor_new.h' 2025-07-24T05:19:52.6533349Z adding 'torch/include/torch/csrc/utils/tensor_numpy.h' 2025-07-24T05:19:52.6536077Z adding 'torch/include/torch/csrc/utils/tensor_qschemes.h' 2025-07-24T05:19:52.6539306Z adding 'torch/include/torch/csrc/utils/tensor_types.h' 2025-07-24T05:19:52.6543615Z adding 'torch/include/torch/csrc/utils/throughput_benchmark-inl.h' 2025-07-24T05:19:52.6548672Z adding 'torch/include/torch/csrc/utils/throughput_benchmark.h' 2025-07-24T05:19:52.6552411Z adding 'torch/include/torch/csrc/utils/torch_dispatch_mode.h' 2025-07-24T05:19:52.6556451Z adding 'torch/include/torch/csrc/utils/variadic.h' 2025-07-24T05:19:52.6559399Z adding 'torch/include/torch/csrc/utils/verbose.h' 2025-07-24T05:19:52.6563201Z adding 'torch/include/torch/csrc/xpu/Event.h' 2025-07-24T05:19:52.6566130Z adding 'torch/include/torch/csrc/xpu/Module.h' 2025-07-24T05:19:52.6569217Z adding 'torch/include/torch/csrc/xpu/Stream.h' 2025-07-24T05:19:52.6575097Z adding 'torch/include/torch/headeronly/macros/Export.h' 2025-07-24T05:19:52.6583111Z adding 'torch/include/torch/headeronly/macros/Macros.h' 2025-07-24T05:19:52.6586770Z adding 'torch/include/torch/headeronly/macros/cmake_macros.h' 2025-07-24T05:19:52.6591380Z adding 'torch/include/torch/headeronly/util/Exception.h' 2025-07-24T05:19:52.6598026Z adding 'torch/jit/__init__.py' 2025-07-24T05:19:52.6602211Z adding 'torch/jit/_async.py' 2025-07-24T05:19:52.6605370Z adding 'torch/jit/_await.py' 2025-07-24T05:19:52.6609890Z adding 'torch/jit/_builtins.py' 2025-07-24T05:19:52.6615151Z adding 'torch/jit/_check.py' 2025-07-24T05:19:52.6620057Z adding 'torch/jit/_dataclass_impls.py' 2025-07-24T05:19:52.6623273Z adding 'torch/jit/_decomposition_utils.py' 2025-07-24T05:19:52.6627341Z adding 'torch/jit/_decompositions.py' 2025-07-24T05:19:52.6633029Z adding 'torch/jit/_freeze.py' 2025-07-24T05:19:52.6637716Z adding 'torch/jit/_fuser.py' 2025-07-24T05:19:52.6641065Z adding 'torch/jit/_ir_utils.py' 2025-07-24T05:19:52.6644125Z adding 'torch/jit/_logging.py' 2025-07-24T05:19:52.6649686Z adding 'torch/jit/_monkeytype_config.py' 2025-07-24T05:19:52.6653306Z adding 'torch/jit/_pickle.py' 2025-07-24T05:19:52.6669455Z adding 'torch/jit/_recursive.py' 2025-07-24T05:19:52.6695744Z adding 'torch/jit/_script.py' 2025-07-24T05:19:52.6702069Z adding 'torch/jit/_script.pyi' 2025-07-24T05:19:52.6707565Z adding 'torch/jit/_serialization.py' 2025-07-24T05:19:52.6733730Z adding 'torch/jit/_shape_functions.py' 2025-07-24T05:19:52.6733898Z adding 'torch/jit/_state.py' 2025-07-24T05:19:52.6748962Z adding 'torch/jit/_trace.py' 2025-07-24T05:19:52.6758892Z adding 'torch/jit/annotations.py' 2025-07-24T05:19:52.6775271Z adding 'torch/jit/frontend.py' 2025-07-24T05:19:52.6779462Z adding 'torch/jit/generate_bytecode.py' 2025-07-24T05:19:52.6782709Z adding 'torch/jit/quantized.py' 2025-07-24T05:19:52.6788230Z adding 'torch/jit/supported_ops.py' 2025-07-24T05:19:52.6791929Z adding 'torch/jit/unsupported_tensor_ops.py' 2025-07-24T05:19:52.6795508Z adding 'torch/jit/_passes/__init__.py' 2025-07-24T05:19:52.6798949Z adding 'torch/jit/_passes/_property_propagation.py' 2025-07-24T05:19:52.6803969Z adding 'torch/jit/mobile/__init__.py' 2025-07-24T05:19:53.2178540Z adding 'torch/lib/XNNPACK.lib' 2025-07-24T05:19:53.2497367Z adding 'torch/lib/_C.lib' 2025-07-24T05:19:53.2616331Z adding 'torch/lib/aoti_custom_ops.dll' 2025-07-24T05:19:53.2630425Z adding 'torch/lib/aoti_custom_ops.lib' 2025-07-24T05:19:53.2856728Z adding 'torch/lib/asmjit.dll' 2025-07-24T05:19:53.2895625Z adding 'torch/lib/asmjit.lib' 2025-07-24T05:19:53.3006140Z adding 'torch/lib/backend_with_compiler.dll' 2025-07-24T05:19:53.3020520Z adding 'torch/lib/backend_with_compiler.lib' 2025-07-24T05:19:53.3493074Z adding 'torch/lib/c10.dll' 2025-07-24T05:19:53.3674817Z adding 'torch/lib/c10.lib' 2025-07-24T05:19:53.3913059Z adding 'torch/lib/cpuinfo.lib' 2025-07-24T05:21:09.7097471Z adding 'torch/lib/dnnl.lib' 2025-07-24T05:21:15.2544567Z adding 'torch/lib/fbgemm.dll' 2025-07-24T05:21:15.2858625Z adding 'torch/lib/fbgemm.lib' 2025-07-24T05:21:15.4229438Z adding 'torch/lib/fmt.lib' 2025-07-24T05:21:15.4392767Z adding 'torch/lib/jitbackend_test.dll' 2025-07-24T05:21:15.4405559Z adding 'torch/lib/jitbackend_test.lib' 2025-07-24T05:21:17.3963958Z adding 'torch/lib/kineto.lib' 2025-07-24T05:21:17.5479193Z adding 'torch/lib/libittnotify.lib' 2025-07-24T05:21:18.2495894Z adding 'torch/lib/libprotobuf-lite.lib' 2025-07-24T05:21:22.1325769Z adding 'torch/lib/libprotobuf.lib' 2025-07-24T05:21:27.7076787Z adding 'torch/lib/libprotoc.lib' 2025-07-24T05:21:28.6398572Z adding 'torch/lib/microkernels-prod.lib' 2025-07-24T05:21:28.7185099Z adding 'torch/lib/pthreadpool.lib' 2025-07-24T05:21:28.7213625Z adding 'torch/lib/shm.dll' 2025-07-24T05:21:28.7217934Z adding 'torch/lib/shm.lib' 2025-07-24T05:21:29.8878562Z adding 'torch/lib/sleef.lib' 2025-07-24T05:21:29.9505462Z adding 'torch/lib/torch.dll' 2025-07-24T05:21:29.9509248Z adding 'torch/lib/torch.lib' 2025-07-24T05:21:40.7497129Z adding 'torch/lib/torch_cpu.dll' 2025-07-24T05:21:41.8072451Z adding 'torch/lib/torch_cpu.lib' 2025-07-24T05:21:41.8735120Z adding 'torch/lib/torch_global_deps.dll' 2025-07-24T05:21:42.5891388Z adding 'torch/lib/torch_python.dll' 2025-07-24T05:21:42.6318032Z adding 'torch/lib/torch_python.lib' 2025-07-24T05:21:42.6543183Z adding 'torch/lib/torchbind_test.dll' 2025-07-24T05:21:42.6568781Z adding 'torch/lib/torchbind_test.lib' 2025-07-24T05:21:42.6574131Z adding 'torch/lib/libshm/alloc_info.h' 2025-07-24T05:21:42.6577600Z adding 'torch/lib/libshm/err.h' 2025-07-24T05:21:42.6580899Z adding 'torch/lib/libshm/libshm.h' 2025-07-24T05:21:42.6585301Z adding 'torch/lib/libshm/socket.h' 2025-07-24T05:21:42.6589239Z adding 'torch/lib/libshm_windows/libshm.h' 2025-07-24T05:21:42.6626036Z adding 'torch/linalg/__init__.py' 2025-07-24T05:21:42.6632764Z adding 'torch/masked/__init__.py' 2025-07-24T05:21:42.6640395Z adding 'torch/masked/_docs.py' 2025-07-24T05:21:42.6662490Z adding 'torch/masked/_ops.py' 2025-07-24T05:21:42.6668055Z adding 'torch/masked/maskedtensor/__init__.py' 2025-07-24T05:21:42.6674945Z adding 'torch/masked/maskedtensor/_ops_refs.py' 2025-07-24T05:21:42.6679237Z adding 'torch/masked/maskedtensor/binary.py' 2025-07-24T05:21:42.6686017Z adding 'torch/masked/maskedtensor/core.py' 2025-07-24T05:21:42.6689605Z adding 'torch/masked/maskedtensor/creation.py' 2025-07-24T05:21:42.6693402Z adding 'torch/masked/maskedtensor/passthrough.py' 2025-07-24T05:21:42.6697308Z adding 'torch/masked/maskedtensor/reductions.py' 2025-07-24T05:21:42.6701310Z adding 'torch/masked/maskedtensor/unary.py' 2025-07-24T05:21:42.6705818Z adding 'torch/monitor/__init__.py' 2025-07-24T05:21:42.6710959Z adding 'torch/mps/__init__.py' 2025-07-24T05:21:42.6714487Z adding 'torch/mps/event.py' 2025-07-24T05:21:42.6718299Z adding 'torch/mps/profiler.py' 2025-07-24T05:21:42.6725258Z adding 'torch/mtia/__init__.py' 2025-07-24T05:21:42.6729009Z adding 'torch/mtia/_utils.py' 2025-07-24T05:21:42.6732235Z adding 'torch/mtia/memory.py' 2025-07-24T05:21:42.6736921Z adding 'torch/multiprocessing/__init__.py' 2025-07-24T05:21:42.6740140Z adding 'torch/multiprocessing/_atfork.py' 2025-07-24T05:21:42.6743420Z adding 'torch/multiprocessing/pool.py' 2025-07-24T05:21:42.6746603Z adding 'torch/multiprocessing/queue.py' 2025-07-24T05:21:42.6755610Z adding 'torch/multiprocessing/reductions.py' 2025-07-24T05:21:42.6762556Z adding 'torch/multiprocessing/spawn.py' 2025-07-24T05:21:42.6772190Z adding 'torch/nested/__init__.py' 2025-07-24T05:21:42.6776417Z adding 'torch/nested/_internal/__init__.py' 2025-07-24T05:21:42.6779968Z adding 'torch/nested/_internal/nested_int.py' 2025-07-24T05:21:42.6789363Z adding 'torch/nested/_internal/nested_tensor.py' 2025-07-24T05:21:42.6818873Z adding 'torch/nested/_internal/ops.py' 2025-07-24T05:21:42.6832793Z adding 'torch/nested/_internal/sdpa.py' 2025-07-24T05:21:42.6838504Z adding 'torch/nn/__init__.py' 2025-07-24T05:21:42.6841526Z adding 'torch/nn/_reduction.py' 2025-07-24T05:21:42.6844860Z adding 'torch/nn/common_types.py' 2025-07-24T05:21:42.6848598Z adding 'torch/nn/cpp.py' 2025-07-24T05:21:42.6918171Z adding 'torch/nn/functional.py' 2025-07-24T05:21:42.6931636Z adding 'torch/nn/functional.pyi' 2025-07-24T05:21:42.6935732Z adding 'torch/nn/grad.py' 2025-07-24T05:21:42.6945131Z adding 'torch/nn/init.py' 2025-07-24T05:21:42.6951009Z adding 'torch/nn/parameter.py' 2025-07-24T05:21:42.6954446Z adding 'torch/nn/parameter.pyi' 2025-07-24T05:21:42.6960098Z adding 'torch/nn/attention/__init__.py' 2025-07-24T05:21:42.6963565Z adding 'torch/nn/attention/_utils.py' 2025-07-24T05:21:42.6969611Z adding 'torch/nn/attention/bias.py' 2025-07-24T05:21:42.6993584Z adding 'torch/nn/attention/flex_attention.py' 2025-07-24T05:21:42.6998897Z adding 'torch/nn/attention/experimental/__init__.py' 2025-07-24T05:21:42.7004543Z adding 'torch/nn/attention/experimental/_paged_attention.py' 2025-07-24T05:21:42.7008622Z adding 'torch/nn/backends/__init__.py' 2025-07-24T05:21:42.7011453Z adding 'torch/nn/backends/thnn.py' 2025-07-24T05:21:42.7015348Z adding 'torch/nn/intrinsic/__init__.py' 2025-07-24T05:21:42.7019394Z adding 'torch/nn/intrinsic/modules/__init__.py' 2025-07-24T05:21:42.7022580Z adding 'torch/nn/intrinsic/modules/fused.py' 2025-07-24T05:21:42.7026217Z adding 'torch/nn/intrinsic/qat/__init__.py' 2025-07-24T05:21:42.7030122Z adding 'torch/nn/intrinsic/qat/modules/__init__.py' 2025-07-24T05:21:42.7033459Z adding 'torch/nn/intrinsic/qat/modules/conv_fused.py' 2025-07-24T05:21:42.7036455Z adding 'torch/nn/intrinsic/qat/modules/linear_fused.py' 2025-07-24T05:21:42.7039606Z adding 'torch/nn/intrinsic/qat/modules/linear_relu.py' 2025-07-24T05:21:42.7049914Z adding 'torch/nn/intrinsic/quantized/__init__.py' 2025-07-24T05:21:42.7050365Z adding 'torch/nn/intrinsic/quantized/dynamic/__init__.py' 2025-07-24T05:21:42.7056932Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-07-24T05:21:42.7058889Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-07-24T05:21:42.7062713Z adding 'torch/nn/intrinsic/quantized/modules/__init__.py' 2025-07-24T05:21:42.7065547Z adding 'torch/nn/intrinsic/quantized/modules/bn_relu.py' 2025-07-24T05:21:42.7068566Z adding 'torch/nn/intrinsic/quantized/modules/conv_relu.py' 2025-07-24T05:21:42.7071377Z adding 'torch/nn/intrinsic/quantized/modules/linear_relu.py' 2025-07-24T05:21:42.7076838Z adding 'torch/nn/modules/__init__.py' 2025-07-24T05:21:42.7082721Z adding 'torch/nn/modules/_functions.py' 2025-07-24T05:21:42.7100101Z adding 'torch/nn/modules/activation.py' 2025-07-24T05:21:42.7107714Z adding 'torch/nn/modules/adaptive.py' 2025-07-24T05:21:42.7117988Z adding 'torch/nn/modules/batchnorm.py' 2025-07-24T05:21:42.7122316Z adding 'torch/nn/modules/channelshuffle.py' 2025-07-24T05:21:42.7134363Z adding 'torch/nn/modules/container.py' 2025-07-24T05:21:42.7151467Z adding 'torch/nn/modules/conv.py' 2025-07-24T05:21:42.7157055Z adding 'torch/nn/modules/distance.py' 2025-07-24T05:21:42.7161894Z adding 'torch/nn/modules/dropout.py' 2025-07-24T05:21:42.7166543Z adding 'torch/nn/modules/flatten.py' 2025-07-24T05:21:42.7172298Z adding 'torch/nn/modules/fold.py' 2025-07-24T05:21:42.7178497Z adding 'torch/nn/modules/instancenorm.py' 2025-07-24T05:21:42.7184830Z adding 'torch/nn/modules/lazy.py' 2025-07-24T05:21:42.7193456Z adding 'torch/nn/modules/linear.py' 2025-07-24T05:21:42.7217566Z adding 'torch/nn/modules/loss.py' 2025-07-24T05:21:42.7258767Z adding 'torch/nn/modules/module.py' 2025-07-24T05:21:42.7267456Z adding 'torch/nn/modules/normalization.py' 2025-07-24T05:21:42.7274080Z adding 'torch/nn/modules/padding.py' 2025-07-24T05:21:42.7286485Z adding 'torch/nn/modules/pixelshuffle.py' 2025-07-24T05:21:42.7330503Z adding 'torch/nn/modules/pooling.py' 2025-07-24T05:21:42.7330801Z adding 'torch/nn/modules/rnn.py' 2025-07-24T05:21:42.7331091Z adding 'torch/nn/modules/sparse.py' 2025-07-24T05:21:42.7339819Z adding 'torch/nn/modules/transformer.py' 2025-07-24T05:21:42.7345935Z adding 'torch/nn/modules/upsampling.py' 2025-07-24T05:21:42.7349994Z adding 'torch/nn/modules/utils.py' 2025-07-24T05:21:42.7354079Z adding 'torch/nn/parallel/__init__.py' 2025-07-24T05:21:42.7358042Z adding 'torch/nn/parallel/_functions.py' 2025-07-24T05:21:42.7363695Z adding 'torch/nn/parallel/comm.py' 2025-07-24T05:21:42.7369688Z adding 'torch/nn/parallel/data_parallel.py' 2025-07-24T05:21:42.7411551Z adding 'torch/nn/parallel/distributed.py' 2025-07-24T05:21:42.7417887Z adding 'torch/nn/parallel/parallel_apply.py' 2025-07-24T05:21:42.7422572Z adding 'torch/nn/parallel/replicate.py' 2025-07-24T05:21:42.7426853Z adding 'torch/nn/parallel/scatter_gather.py' 2025-07-24T05:21:42.7430652Z adding 'torch/nn/qat/__init__.py' 2025-07-24T05:21:42.7434402Z adding 'torch/nn/qat/dynamic/__init__.py' 2025-07-24T05:21:42.7437710Z adding 'torch/nn/qat/dynamic/modules/__init__.py' 2025-07-24T05:21:42.7440538Z adding 'torch/nn/qat/dynamic/modules/linear.py' 2025-07-24T05:21:42.7444296Z adding 'torch/nn/qat/modules/__init__.py' 2025-07-24T05:21:42.7447307Z adding 'torch/nn/qat/modules/conv.py' 2025-07-24T05:21:42.7450266Z adding 'torch/nn/qat/modules/embedding_ops.py' 2025-07-24T05:21:42.7453124Z adding 'torch/nn/qat/modules/linear.py' 2025-07-24T05:21:42.7456549Z adding 'torch/nn/quantizable/__init__.py' 2025-07-24T05:21:42.7460018Z adding 'torch/nn/quantizable/modules/__init__.py' 2025-07-24T05:21:42.7462926Z adding 'torch/nn/quantizable/modules/activation.py' 2025-07-24T05:21:42.7465984Z adding 'torch/nn/quantizable/modules/rnn.py' 2025-07-24T05:21:42.7469762Z adding 'torch/nn/quantized/__init__.py' 2025-07-24T05:21:42.7472572Z adding 'torch/nn/quantized/functional.py' 2025-07-24T05:21:42.7476034Z adding 'torch/nn/quantized/_reference/__init__.py' 2025-07-24T05:21:42.7479954Z adding 'torch/nn/quantized/_reference/modules/__init__.py' 2025-07-24T05:21:42.7483087Z adding 'torch/nn/quantized/_reference/modules/conv.py' 2025-07-24T05:21:42.7485934Z adding 'torch/nn/quantized/_reference/modules/linear.py' 2025-07-24T05:21:42.7489225Z adding 'torch/nn/quantized/_reference/modules/rnn.py' 2025-07-24T05:21:42.7492244Z adding 'torch/nn/quantized/_reference/modules/sparse.py' 2025-07-24T05:21:42.7495247Z adding 'torch/nn/quantized/_reference/modules/utils.py' 2025-07-24T05:21:42.7498705Z adding 'torch/nn/quantized/dynamic/__init__.py' 2025-07-24T05:21:42.7502568Z adding 'torch/nn/quantized/dynamic/modules/__init__.py' 2025-07-24T05:21:42.7505676Z adding 'torch/nn/quantized/dynamic/modules/conv.py' 2025-07-24T05:21:42.7508641Z adding 'torch/nn/quantized/dynamic/modules/linear.py' 2025-07-24T05:21:42.7511617Z adding 'torch/nn/quantized/dynamic/modules/rnn.py' 2025-07-24T05:21:42.7515765Z adding 'torch/nn/quantized/modules/__init__.py' 2025-07-24T05:21:42.7518770Z adding 'torch/nn/quantized/modules/activation.py' 2025-07-24T05:21:42.7521688Z adding 'torch/nn/quantized/modules/batchnorm.py' 2025-07-24T05:21:42.7524576Z adding 'torch/nn/quantized/modules/conv.py' 2025-07-24T05:21:42.7527557Z adding 'torch/nn/quantized/modules/dropout.py' 2025-07-24T05:21:42.7530545Z adding 'torch/nn/quantized/modules/embedding_ops.py' 2025-07-24T05:21:42.7533518Z adding 'torch/nn/quantized/modules/functional_modules.py' 2025-07-24T05:21:42.7536450Z adding 'torch/nn/quantized/modules/linear.py' 2025-07-24T05:21:42.7539449Z adding 'torch/nn/quantized/modules/normalization.py' 2025-07-24T05:21:42.7542298Z adding 'torch/nn/quantized/modules/rnn.py' 2025-07-24T05:21:42.7545246Z adding 'torch/nn/quantized/modules/utils.py' 2025-07-24T05:21:42.7549209Z adding 'torch/nn/utils/__init__.py' 2025-07-24T05:21:42.7552516Z adding 'torch/nn/utils/_deprecation_utils.py' 2025-07-24T05:21:42.7557925Z adding 'torch/nn/utils/_named_member_accessor.py' 2025-07-24T05:21:42.7562462Z adding 'torch/nn/utils/_per_sample_grad.py' 2025-07-24T05:21:42.7568030Z adding 'torch/nn/utils/clip_grad.py' 2025-07-24T05:21:42.7572523Z adding 'torch/nn/utils/convert_parameters.py' 2025-07-24T05:21:42.7576570Z adding 'torch/nn/utils/fusion.py' 2025-07-24T05:21:42.7580246Z adding 'torch/nn/utils/init.py' 2025-07-24T05:21:42.7584672Z adding 'torch/nn/utils/memory_format.py' 2025-07-24T05:21:42.7595610Z adding 'torch/nn/utils/parametrizations.py' 2025-07-24T05:21:42.7609359Z adding 'torch/nn/utils/parametrize.py' 2025-07-24T05:21:42.7627582Z adding 'torch/nn/utils/prune.py' 2025-07-24T05:21:42.7637744Z adding 'torch/nn/utils/rnn.py' 2025-07-24T05:21:42.7645394Z adding 'torch/nn/utils/spectral_norm.py' 2025-07-24T05:21:42.7651703Z adding 'torch/nn/utils/stateless.py' 2025-07-24T05:21:42.7656462Z adding 'torch/nn/utils/weight_norm.py' 2025-07-24T05:21:42.7660543Z adding 'torch/nn/utils/_expanded_weights/__init__.py' 2025-07-24T05:21:42.7664550Z adding 'torch/nn/utils/_expanded_weights/conv_expanded_weights.py' 2025-07-24T05:21:42.7670014Z adding 'torch/nn/utils/_expanded_weights/conv_utils.py' 2025-07-24T05:21:42.7673807Z adding 'torch/nn/utils/_expanded_weights/embedding_expanded_weights.py' 2025-07-24T05:21:42.7678148Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_impl.py' 2025-07-24T05:21:42.7683014Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_utils.py' 2025-07-24T05:21:42.7691123Z adding 'torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py' 2025-07-24T05:21:42.7691661Z adding 'torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py' 2025-07-24T05:21:42.7695339Z adding 'torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py' 2025-07-24T05:21:42.7717964Z adding 'torch/nn/utils/_expanded_weights/linear_expanded_weights.py' 2025-07-24T05:21:42.7718363Z adding 'torch/onnx/__init__.py' 2025-07-24T05:21:42.7718626Z adding 'torch/onnx/_constants.py' 2025-07-24T05:21:42.7718886Z adding 'torch/onnx/_experimental.py' 2025-07-24T05:21:42.7719690Z adding 'torch/onnx/_flags.py' 2025-07-24T05:21:42.7723850Z adding 'torch/onnx/_globals.py' 2025-07-24T05:21:42.7727032Z adding 'torch/onnx/_onnx_supported_ops.py' 2025-07-24T05:21:42.7732790Z adding 'torch/onnx/_type_utils.py' 2025-07-24T05:21:42.7736962Z adding 'torch/onnx/errors.py' 2025-07-24T05:21:42.7744823Z adding 'torch/onnx/operators.py' 2025-07-24T05:21:42.7779918Z adding 'torch/onnx/symbolic_helper.py' 2025-07-24T05:21:42.7792155Z adding 'torch/onnx/symbolic_opset10.py' 2025-07-24T05:21:42.7809614Z adding 'torch/onnx/symbolic_opset11.py' 2025-07-24T05:21:42.7816939Z adding 'torch/onnx/symbolic_opset12.py' 2025-07-24T05:21:42.7829512Z adding 'torch/onnx/symbolic_opset13.py' 2025-07-24T05:21:42.7835516Z adding 'torch/onnx/symbolic_opset14.py' 2025-07-24T05:21:42.7839321Z adding 'torch/onnx/symbolic_opset15.py' 2025-07-24T05:21:42.7843743Z adding 'torch/onnx/symbolic_opset16.py' 2025-07-24T05:21:42.7849042Z adding 'torch/onnx/symbolic_opset17.py' 2025-07-24T05:21:42.7853759Z adding 'torch/onnx/symbolic_opset18.py' 2025-07-24T05:21:42.7857114Z adding 'torch/onnx/symbolic_opset19.py' 2025-07-24T05:21:42.7860533Z adding 'torch/onnx/symbolic_opset20.py' 2025-07-24T05:21:42.7863800Z adding 'torch/onnx/symbolic_opset7.py' 2025-07-24T05:21:42.7869839Z adding 'torch/onnx/symbolic_opset8.py' 2025-07-24T05:21:42.7937797Z adding 'torch/onnx/symbolic_opset9.py' 2025-07-24T05:21:42.7971523Z adding 'torch/onnx/utils.py' 2025-07-24T05:21:42.7998041Z adding 'torch/onnx/verification.py' 2025-07-24T05:21:42.8003451Z adding 'torch/onnx/_internal/__init__.py' 2025-07-24T05:21:42.8008190Z adding 'torch/onnx/_internal/_exporter_legacy.py' 2025-07-24T05:21:42.8011319Z adding 'torch/onnx/_internal/_lazy_import.py' 2025-07-24T05:21:42.8017498Z adding 'torch/onnx/_internal/jit_utils.py' 2025-07-24T05:21:42.8022944Z adding 'torch/onnx/_internal/onnx_proto_utils.py' 2025-07-24T05:21:42.8028823Z adding 'torch/onnx/_internal/registration.py' 2025-07-24T05:21:42.8033183Z adding 'torch/onnx/_internal/exporter/__init__.py' 2025-07-24T05:21:42.8038382Z adding 'torch/onnx/_internal/exporter/_analysis.py' 2025-07-24T05:21:42.8049857Z adding 'torch/onnx/_internal/exporter/_building.py' 2025-07-24T05:21:42.8055451Z adding 'torch/onnx/_internal/exporter/_capture_strategies.py' 2025-07-24T05:21:42.8060346Z adding 'torch/onnx/_internal/exporter/_compat.py' 2025-07-24T05:21:42.8063536Z adding 'torch/onnx/_internal/exporter/_constants.py' 2025-07-24T05:21:42.8088171Z adding 'torch/onnx/_internal/exporter/_core.py' 2025-07-24T05:21:42.8093069Z adding 'torch/onnx/_internal/exporter/_decomp.py' 2025-07-24T05:21:42.8099670Z adding 'torch/onnx/_internal/exporter/_dispatching.py' 2025-07-24T05:21:42.8106340Z adding 'torch/onnx/_internal/exporter/_dynamic_shapes.py' 2025-07-24T05:21:42.8109592Z adding 'torch/onnx/_internal/exporter/_errors.py' 2025-07-24T05:21:42.8112748Z adding 'torch/onnx/_internal/exporter/_flags.py' 2025-07-24T05:21:42.8116079Z adding 'torch/onnx/_internal/exporter/_fx_passes.py' 2025-07-24T05:21:42.8120592Z adding 'torch/onnx/_internal/exporter/_ir_passes.py' 2025-07-24T05:21:42.8124105Z adding 'torch/onnx/_internal/exporter/_isolated.py' 2025-07-24T05:21:42.8131528Z adding 'torch/onnx/_internal/exporter/_onnx_program.py' 2025-07-24T05:21:42.8137839Z adding 'torch/onnx/_internal/exporter/_registration.py' 2025-07-24T05:21:42.8142717Z adding 'torch/onnx/_internal/exporter/_reporting.py' 2025-07-24T05:21:42.8151480Z adding 'torch/onnx/_internal/exporter/_schemas.py' 2025-07-24T05:21:42.8155009Z adding 'torch/onnx/_internal/exporter/_tensors.py' 2025-07-24T05:21:42.8158860Z adding 'torch/onnx/_internal/exporter/_testing.py' 2025-07-24T05:21:42.8162498Z adding 'torch/onnx/_internal/exporter/_type_casting.py' 2025-07-24T05:21:42.8168637Z adding 'torch/onnx/_internal/exporter/_verification.py' 2025-07-24T05:21:42.8172437Z adding 'torch/onnx/_internal/exporter/_torchlib/__init__.py' 2025-07-24T05:21:42.8175955Z adding 'torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py' 2025-07-24T05:21:42.8179729Z adding 'torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py' 2025-07-24T05:21:42.8183513Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/__init__.py' 2025-07-24T05:21:42.8186756Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/core.py' 2025-07-24T05:21:42.8193420Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/hop.py' 2025-07-24T05:21:42.8196690Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/nn.py' 2025-07-24T05:21:42.8205670Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py' 2025-07-24T05:21:42.8206124Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symops.py' 2025-07-24T05:21:42.8209255Z adding 'torch/onnx/_internal/fx/__init__.py' 2025-07-24T05:21:42.8214500Z adding 'torch/onnx/_internal/fx/_pass.py' 2025-07-24T05:21:42.8219130Z adding 'torch/onnx/_internal/fx/patcher.py' 2025-07-24T05:21:42.8225346Z adding 'torch/onnx/_internal/fx/serialization.py' 2025-07-24T05:21:42.8229945Z adding 'torch/onnx/_internal/fx/type_utils.py' 2025-07-24T05:21:42.8233673Z adding 'torch/onnx/_internal/fx/passes/__init__.py' 2025-07-24T05:21:42.8237595Z adding 'torch/onnx/_internal/fx/passes/_utils.py' 2025-07-24T05:21:42.8253699Z adding 'torch/onnx/_internal/fx/passes/type_promotion.py' 2025-07-24T05:21:42.8263729Z adding 'torch/onnx/ops/__init__.py' 2025-07-24T05:21:42.8267398Z adding 'torch/onnx/ops/_dtype_mappings.py' 2025-07-24T05:21:42.8273456Z adding 'torch/onnx/ops/_impl.py' 2025-07-24T05:21:42.8278680Z adding 'torch/onnx/ops/_symbolic_impl.py' 2025-07-24T05:21:42.8283126Z adding 'torch/optim/__init__.py' 2025-07-24T05:21:42.8292773Z adding 'torch/optim/_adafactor.py' 2025-07-24T05:21:42.8297003Z adding 'torch/optim/_functional.py' 2025-07-24T05:21:42.8303496Z adding 'torch/optim/adadelta.py' 2025-07-24T05:21:42.8311496Z adding 'torch/optim/adagrad.py' 2025-07-24T05:21:42.8324162Z adding 'torch/optim/adam.py' 2025-07-24T05:21:42.8331874Z adding 'torch/optim/adamax.py' 2025-07-24T05:21:42.8336704Z adding 'torch/optim/adamw.py' 2025-07-24T05:21:42.8343639Z adding 'torch/optim/asgd.py' 2025-07-24T05:21:42.8351436Z adding 'torch/optim/lbfgs.py' 2025-07-24T05:21:42.8375201Z adding 'torch/optim/lr_scheduler.py' 2025-07-24T05:21:42.8385605Z adding 'torch/optim/nadam.py' 2025-07-24T05:21:42.8403485Z adding 'torch/optim/optimizer.py' 2025-07-24T05:21:42.8412930Z adding 'torch/optim/radam.py' 2025-07-24T05:21:42.8420780Z adding 'torch/optim/rmsprop.py' 2025-07-24T05:21:42.8428020Z adding 'torch/optim/rprop.py' 2025-07-24T05:21:42.8435740Z adding 'torch/optim/sgd.py' 2025-07-24T05:21:42.8441153Z adding 'torch/optim/sparse_adam.py' 2025-07-24T05:21:42.8449075Z adding 'torch/optim/swa_utils.py' 2025-07-24T05:21:42.8453496Z adding 'torch/optim/_multi_tensor/__init__.py' 2025-07-24T05:21:42.8456790Z adding 'torch/optim/_multi_tensor/__init__.pyi' 2025-07-24T05:21:42.8460255Z adding 'torch/package/__init__.py' 2025-07-24T05:21:42.8464441Z adding 'torch/package/_digraph.py' 2025-07-24T05:21:42.8468304Z adding 'torch/package/_directory_reader.py' 2025-07-24T05:21:42.8471709Z adding 'torch/package/_importlib.py' 2025-07-24T05:21:42.8475226Z adding 'torch/package/_mangling.py' 2025-07-24T05:21:42.8479212Z adding 'torch/package/_mock.py' 2025-07-24T05:21:42.8482961Z adding 'torch/package/_package_pickler.py' 2025-07-24T05:21:42.8486322Z adding 'torch/package/_package_unpickler.py' 2025-07-24T05:21:42.8490669Z adding 'torch/package/_stdlib.py' 2025-07-24T05:21:42.8494623Z adding 'torch/package/file_structure_representation.py' 2025-07-24T05:21:42.8498536Z adding 'torch/package/find_file_dependencies.py' 2025-07-24T05:21:42.8502702Z adding 'torch/package/glob_group.py' 2025-07-24T05:21:42.8508243Z adding 'torch/package/importer.py' 2025-07-24T05:21:42.8525722Z adding 'torch/package/package_exporter.py' 2025-07-24T05:21:42.8539767Z adding 'torch/package/package_importer.py' 2025-07-24T05:21:42.8544254Z adding 'torch/package/analyze/__init__.py' 2025-07-24T05:21:42.8548183Z adding 'torch/package/analyze/find_first_use_of_broken_modules.py' 2025-07-24T05:21:42.8550561Z adding 'torch/package/analyze/is_from_package.py' 2025-07-24T05:21:42.8554559Z adding 'torch/package/analyze/trace_dependencies.py' 2025-07-24T05:21:42.8558117Z adding 'torch/profiler/__init__.py' 2025-07-24T05:21:42.8576590Z adding 'torch/profiler/_memory_profiler.py' 2025-07-24T05:21:42.8585806Z adding 'torch/profiler/_pattern_matcher.py' 2025-07-24T05:21:42.8592816Z adding 'torch/profiler/_utils.py' 2025-07-24T05:21:42.8596660Z adding 'torch/profiler/itt.py' 2025-07-24T05:21:42.8612133Z adding 'torch/profiler/profiler.py' 2025-07-24T05:21:42.8616849Z adding 'torch/profiler/python_tracer.py' 2025-07-24T05:21:42.8620851Z adding 'torch/quantization/__init__.py' 2025-07-24T05:21:42.8624084Z adding 'torch/quantization/_numeric_suite.py' 2025-07-24T05:21:42.8627061Z adding 'torch/quantization/_numeric_suite_fx.py' 2025-07-24T05:21:42.8631271Z adding 'torch/quantization/_quantized_conversions.py' 2025-07-24T05:21:42.8634509Z adding 'torch/quantization/fake_quantize.py' 2025-07-24T05:21:42.8637563Z adding 'torch/quantization/fuse_modules.py' 2025-07-24T05:21:42.8640769Z adding 'torch/quantization/fuser_method_mappings.py' 2025-07-24T05:21:42.8643802Z adding 'torch/quantization/observer.py' 2025-07-24T05:21:42.8647060Z adding 'torch/quantization/qconfig.py' 2025-07-24T05:21:42.8649929Z adding 'torch/quantization/quant_type.py' 2025-07-24T05:21:42.8653133Z adding 'torch/quantization/quantization_mappings.py' 2025-07-24T05:21:42.8656041Z adding 'torch/quantization/quantize.py' 2025-07-24T05:21:42.8659157Z adding 'torch/quantization/quantize_fx.py' 2025-07-24T05:21:42.8662615Z adding 'torch/quantization/quantize_jit.py' 2025-07-24T05:21:42.8665076Z adding 'torch/quantization/stubs.py' 2025-07-24T05:21:42.8668301Z adding 'torch/quantization/utils.py' 2025-07-24T05:21:42.8671942Z adding 'torch/quantization/fx/__init__.py' 2025-07-24T05:21:42.8675050Z adding 'torch/quantization/fx/_equalize.py' 2025-07-24T05:21:42.8678013Z adding 'torch/quantization/fx/convert.py' 2025-07-24T05:21:42.8681015Z adding 'torch/quantization/fx/fuse.py' 2025-07-24T05:21:42.8683891Z adding 'torch/quantization/fx/fusion_patterns.py' 2025-07-24T05:21:42.8686927Z adding 'torch/quantization/fx/graph_module.py' 2025-07-24T05:21:42.8689856Z adding 'torch/quantization/fx/match_utils.py' 2025-07-24T05:21:42.8693044Z adding 'torch/quantization/fx/pattern_utils.py' 2025-07-24T05:21:42.8695856Z adding 'torch/quantization/fx/prepare.py' 2025-07-24T05:21:42.8703047Z adding 'torch/quantization/fx/quantization_patterns.py' 2025-07-24T05:21:42.8703436Z adding 'torch/quantization/fx/quantization_types.py' 2025-07-24T05:21:42.8705626Z adding 'torch/quantization/fx/utils.py' 2025-07-24T05:21:42.8710586Z adding 'torch/share/cmake/ATen/ATenConfig.cmake' 2025-07-24T05:21:42.8715506Z adding 'torch/share/cmake/Caffe2/Caffe2Config.cmake' 2025-07-24T05:21:42.8718837Z adding 'torch/share/cmake/Caffe2/Caffe2Targets-release.cmake' 2025-07-24T05:21:42.8723283Z adding 'torch/share/cmake/Caffe2/Caffe2Targets.cmake' 2025-07-24T05:21:42.8736475Z adding 'torch/share/cmake/Caffe2/FindCUDAToolkit.cmake' 2025-07-24T05:21:42.8741113Z adding 'torch/share/cmake/Caffe2/FindCUDSS.cmake' 2025-07-24T05:21:42.8744692Z adding 'torch/share/cmake/Caffe2/FindCUSPARSELT.cmake' 2025-07-24T05:21:42.8748684Z adding 'torch/share/cmake/Caffe2/FindSYCLToolkit.cmake' 2025-07-24T05:21:42.8752574Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake' 2025-07-24T05:21:42.8756294Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake' 2025-07-24T05:21:42.8760570Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake' 2025-07-24T05:21:42.8791872Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake' 2025-07-24T05:21:42.8800595Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageHandleStandardArgs.cmake' 2025-07-24T05:21:42.8804358Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake' 2025-07-24T05:21:42.8809339Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake' 2025-07-24T05:21:42.8813375Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake' 2025-07-24T05:21:42.8819054Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake' 2025-07-24T05:21:42.8824952Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake' 2025-07-24T05:21:42.8831187Z adding 'torch/share/cmake/Caffe2/public/LoadHIP.cmake' 2025-07-24T05:21:42.8837551Z adding 'torch/share/cmake/Caffe2/public/cuda.cmake' 2025-07-24T05:21:42.8841579Z adding 'torch/share/cmake/Caffe2/public/gflags.cmake' 2025-07-24T05:21:42.8845060Z adding 'torch/share/cmake/Caffe2/public/glog.cmake' 2025-07-24T05:21:42.8848426Z adding 'torch/share/cmake/Caffe2/public/mkl.cmake' 2025-07-24T05:21:42.8851518Z adding 'torch/share/cmake/Caffe2/public/mkldnn.cmake' 2025-07-24T05:21:42.8855043Z adding 'torch/share/cmake/Caffe2/public/protobuf.cmake' 2025-07-24T05:21:42.8863300Z adding 'torch/share/cmake/Caffe2/public/utils.cmake' 2025-07-24T05:21:42.8867022Z adding 'torch/share/cmake/Caffe2/public/xpu.cmake' 2025-07-24T05:21:42.8871744Z adding 'torch/share/cmake/Torch/TorchConfig.cmake' 2025-07-24T05:21:42.8874798Z adding 'torch/share/cmake/Torch/TorchConfigVersion.cmake' 2025-07-24T05:21:42.8878139Z adding 'torch/signal/__init__.py' 2025-07-24T05:21:42.8881614Z adding 'torch/signal/windows/__init__.py' 2025-07-24T05:21:42.8888415Z adding 'torch/signal/windows/windows.py' 2025-07-24T05:21:42.8899011Z adding 'torch/sparse/__init__.py' 2025-07-24T05:21:42.8905912Z adding 'torch/sparse/_semi_structured_conversions.py' 2025-07-24T05:21:42.8910413Z adding 'torch/sparse/_semi_structured_ops.py' 2025-07-24T05:21:42.8935226Z adding 'torch/sparse/_triton_ops.py' 2025-07-24T05:21:42.9054064Z adding 'torch/sparse/_triton_ops_meta.py' 2025-07-24T05:21:42.9074133Z adding 'torch/sparse/semi_structured.py' 2025-07-24T05:21:42.9084049Z adding 'torch/special/__init__.py' 2025-07-24T05:21:42.9257568Z adding 'torch/test/CppSignature_test.exe' 2025-07-24T05:21:42.9518753Z adding 'torch/test/Dict_test.exe' 2025-07-24T05:21:42.9699865Z adding 'torch/test/Dimname_test.exe' 2025-07-24T05:21:42.9946109Z adding 'torch/test/IListRef_test.exe' 2025-07-24T05:21:43.0196758Z adding 'torch/test/KernelFunction_test.exe' 2025-07-24T05:21:43.0554156Z adding 'torch/test/List_test.exe' 2025-07-24T05:21:43.0829150Z adding 'torch/test/MaybeOwned_test.exe' 2025-07-24T05:21:43.1061571Z adding 'torch/test/NamedTensor_test.exe' 2025-07-24T05:21:43.1284098Z adding 'torch/test/StorageUtils_test.exe' 2025-07-24T05:21:43.1506735Z adding 'torch/test/apply_utils_test.exe' 2025-07-24T05:21:43.1745522Z adding 'torch/test/atest.exe' 2025-07-24T05:21:43.1954690Z adding 'torch/test/backend_fallback_test.exe' 2025-07-24T05:21:43.2208212Z adding 'torch/test/basic.exe' 2025-07-24T05:21:43.2427654Z adding 'torch/test/broadcast_test.exe' 2025-07-24T05:21:43.2599058Z adding 'torch/test/c10_ArrayRef_test.exe' 2025-07-24T05:21:43.2795852Z adding 'torch/test/c10_Bitset_test.exe' 2025-07-24T05:21:43.2959757Z adding 'torch/test/c10_CompileTimeFunctionPointer_test.exe' 2025-07-24T05:21:43.3114944Z adding 'torch/test/c10_ConstexprCrc_test.exe' 2025-07-24T05:21:43.3276725Z adding 'torch/test/c10_DeadlockDetection_test.exe' 2025-07-24T05:21:43.3448941Z adding 'torch/test/c10_DeviceGuard_test.exe' 2025-07-24T05:21:43.3625304Z adding 'torch/test/c10_Device_test.exe' 2025-07-24T05:21:43.3827528Z adding 'torch/test/c10_DispatchKeySet_test.exe' 2025-07-24T05:21:43.4016019Z adding 'torch/test/c10_Enumerate_test.exe' 2025-07-24T05:21:43.4186552Z adding 'torch/test/c10_Half_test.exe' 2025-07-24T05:21:43.4369746Z adding 'torch/test/c10_InlineDeviceGuard_test.exe' 2025-07-24T05:21:43.4558752Z adding 'torch/test/c10_InlineStreamGuard_test.exe' 2025-07-24T05:21:43.4736787Z adding 'torch/test/c10_IntrusiveList_test.exe' 2025-07-24T05:21:43.4926222Z adding 'torch/test/c10_LeftRight_test.exe' 2025-07-24T05:21:43.5106080Z adding 'torch/test/c10_Metaprogramming_test.exe' 2025-07-24T05:21:43.5294740Z adding 'torch/test/c10_NetworkFlow_test.exe' 2025-07-24T05:21:43.5470961Z adding 'torch/test/c10_Scalar_test.exe' 2025-07-24T05:21:43.5632534Z adding 'torch/test/c10_Semaphore_test.exe' 2025-07-24T05:21:43.5815179Z adding 'torch/test/c10_SizesAndStrides_test.exe' 2025-07-24T05:21:43.5974526Z adding 'torch/test/c10_StreamGuard_test.exe' 2025-07-24T05:21:43.6141447Z adding 'torch/test/c10_SymInt_test.exe' 2025-07-24T05:21:43.6312341Z adding 'torch/test/c10_Synchronized_test.exe' 2025-07-24T05:21:43.6496064Z adding 'torch/test/c10_ThreadLocal_test.exe' 2025-07-24T05:21:43.6668779Z adding 'torch/test/c10_TypeIndex_test.exe' 2025-07-24T05:21:43.6829763Z adding 'torch/test/c10_TypeList_test.exe' 2025-07-24T05:21:43.6984389Z adding 'torch/test/c10_TypeTraits_test.exe' 2025-07-24T05:21:43.7158900Z adding 'torch/test/c10_accumulate_test.exe' 2025-07-24T05:21:43.7350829Z adding 'torch/test/c10_bfloat16_test.exe' 2025-07-24T05:21:43.7513372Z adding 'torch/test/c10_bit_cast_test.exe' 2025-07-24T05:21:43.7715198Z adding 'torch/test/c10_complex_math_test.exe' 2025-07-24T05:21:43.7906207Z adding 'torch/test/c10_complex_test.exe' 2025-07-24T05:21:43.8100139Z adding 'torch/test/c10_cow_test.exe' 2025-07-24T05:21:43.8283461Z adding 'torch/test/c10_error_test.exe' 2025-07-24T05:21:43.8450984Z adding 'torch/test/c10_exception_test.exe' 2025-07-24T05:21:43.8612434Z adding 'torch/test/c10_flags_test.exe' 2025-07-24T05:21:43.9011061Z adding 'torch/test/c10_generic_math_test.exe' 2025-07-24T05:21:43.9158278Z adding 'torch/test/c10_intrusive_ptr_benchmark.exe' 2025-07-24T05:21:43.9597958Z adding 'torch/test/c10_intrusive_ptr_test.exe' 2025-07-24T05:21:43.9788015Z adding 'torch/test/c10_irange_test.exe' 2025-07-24T05:21:43.9971631Z adding 'torch/test/c10_lazy_test.exe' 2025-07-24T05:21:44.0160382Z adding 'torch/test/c10_logging_test.exe' 2025-07-24T05:21:44.0405336Z adding 'torch/test/c10_optional_test.exe' 2025-07-24T05:21:44.0611195Z adding 'torch/test/c10_ordered_preserving_dict_test.exe' 2025-07-24T05:21:44.0789775Z adding 'torch/test/c10_registry_test.exe' 2025-07-24T05:21:44.1145225Z adding 'torch/test/c10_small_vector_test.exe' 2025-07-24T05:21:44.1332341Z adding 'torch/test/c10_ssize_test.exe' 2025-07-24T05:21:44.1518195Z adding 'torch/test/c10_string_util_test.exe' 2025-07-24T05:21:44.1675651Z adding 'torch/test/c10_string_view_test.exe' 2025-07-24T05:21:44.1837678Z adding 'torch/test/c10_tempfile_test.exe' 2025-07-24T05:21:44.2020592Z adding 'torch/test/c10_typeid_test.exe' 2025-07-24T05:21:44.2227928Z adding 'torch/test/cpu_allocator_test.exe' 2025-07-24T05:21:44.2450927Z adding 'torch/test/cpu_generator_test.exe' 2025-07-24T05:21:44.2655894Z adding 'torch/test/cpu_profiling_allocator_test.exe' 2025-07-24T05:21:44.2996983Z adding 'torch/test/cpu_rng_test.exe' 2025-07-24T05:21:44.3205712Z adding 'torch/test/dlconvertor_test.exe' 2025-07-24T05:21:44.3427349Z adding 'torch/test/extension_backend_test.exe' 2025-07-24T05:21:44.3644032Z adding 'torch/test/half_test.exe' 2025-07-24T05:21:44.3893075Z adding 'torch/test/inline_container_test.exe' 2025-07-24T05:21:44.4264876Z adding 'torch/test/ivalue_test.exe' 2025-07-24T05:21:44.4690546Z adding 'torch/test/kernel_function_legacy_test.exe' 2025-07-24T05:21:44.5030730Z adding 'torch/test/kernel_function_test.exe' 2025-07-24T05:21:44.5458126Z adding 'torch/test/kernel_lambda_legacy_test.exe' 2025-07-24T05:21:44.5820690Z adding 'torch/test/kernel_lambda_test.exe' 2025-07-24T05:21:44.6069225Z adding 'torch/test/kernel_stackbased_test.exe' 2025-07-24T05:21:44.6267180Z adding 'torch/test/lazy_tensor_test.exe' 2025-07-24T05:21:44.6552736Z adding 'torch/test/legacy_vmap_test.exe' 2025-07-24T05:21:44.6898641Z adding 'torch/test/make_boxed_from_unboxed_functor_test.exe' 2025-07-24T05:21:44.7115831Z adding 'torch/test/math_kernel_test.exe' 2025-07-24T05:21:44.7324268Z adding 'torch/test/memory_format_test.exe' 2025-07-24T05:21:44.7525165Z adding 'torch/test/memory_overlapping_test.exe' 2025-07-24T05:21:44.7728858Z adding 'torch/test/mobile_memory_cleanup.exe' 2025-07-24T05:21:44.7956255Z adding 'torch/test/native_test.exe' 2025-07-24T05:21:44.8115076Z adding 'torch/test/op_allowlist_test.exe' 2025-07-24T05:21:44.8928713Z adding 'torch/test/op_registration_test.exe' 2025-07-24T05:21:44.9148655Z adding 'torch/test/operator_name_test.exe' 2025-07-24T05:21:44.9347147Z adding 'torch/test/operators_test.exe' 2025-07-24T05:21:44.9552532Z adding 'torch/test/packedtensoraccessor_test.exe' 2025-07-24T05:21:44.9819471Z adding 'torch/test/pow_test.exe' 2025-07-24T05:21:45.0048446Z adding 'torch/test/quantized_test.exe' 2025-07-24T05:21:45.0252472Z adding 'torch/test/reduce_ops_test.exe' 2025-07-24T05:21:45.0460614Z adding 'torch/test/reportMemoryUsage_test.exe' 2025-07-24T05:21:45.0690528Z adding 'torch/test/scalar_tensor_test.exe' 2025-07-24T05:21:45.0927353Z adding 'torch/test/scalar_test.exe' 2025-07-24T05:21:45.1131008Z adding 'torch/test/stride_properties_test.exe' 2025-07-24T05:21:45.1407600Z adding 'torch/test/tensor_iterator_test.exe' 2025-07-24T05:21:45.1630080Z adding 'torch/test/test_parallel.exe' 2025-07-24T05:21:45.1688813Z adding 'torch/test/thread_init_test.exe' 2025-07-24T05:21:45.1868817Z adding 'torch/test/type_ptr_test.exe' 2025-07-24T05:21:45.2093551Z adding 'torch/test/type_test.exe' 2025-07-24T05:21:45.2306174Z adding 'torch/test/undefined_tensor_test.exe' 2025-07-24T05:21:45.2500539Z adding 'torch/test/verify_api_visibility.exe' 2025-07-24T05:21:45.2707141Z adding 'torch/test/weakref_test.exe' 2025-07-24T05:21:45.2917699Z adding 'torch/test/wrapdim_test.exe' 2025-07-24T05:21:45.3116289Z adding 'torch/test/xla_tensor_test.exe' 2025-07-24T05:21:45.3128468Z adding 'torch/testing/__init__.py' 2025-07-24T05:21:45.3149267Z adding 'torch/testing/_comparison.py' 2025-07-24T05:21:45.3156778Z adding 'torch/testing/_creation.py' 2025-07-24T05:21:45.3160543Z adding 'torch/testing/_utils.py' 2025-07-24T05:21:45.3166155Z adding 'torch/testing/_internal/__init__.py' 2025-07-24T05:21:45.3173624Z adding 'torch/testing/_internal/autocast_test_lists.py' 2025-07-24T05:21:45.3180335Z adding 'torch/testing/_internal/autograd_function_db.py' 2025-07-24T05:21:45.3185566Z adding 'torch/testing/_internal/check_kernel_launches.py' 2025-07-24T05:21:45.3191953Z adding 'torch/testing/_internal/common_cuda.py' 2025-07-24T05:21:45.3219361Z adding 'torch/testing/_internal/common_device_type.py' 2025-07-24T05:21:45.3224878Z adding 'torch/testing/_internal/common_dist_composable.py' 2025-07-24T05:21:45.3249037Z adding 'torch/testing/_internal/common_distributed.py' 2025-07-24T05:21:45.3254617Z adding 'torch/testing/_internal/common_dtype.py' 2025-07-24T05:21:45.3273607Z adding 'torch/testing/_internal/common_fsdp.py' 2025-07-24T05:21:45.3281569Z adding 'torch/testing/_internal/common_jit.py' 2025-07-24T05:21:45.3521126Z adding 'torch/testing/_internal/common_methods_invocations.py' 2025-07-24T05:21:45.3552261Z adding 'torch/testing/_internal/common_mkldnn.py' 2025-07-24T05:21:45.3584918Z adding 'torch/testing/_internal/common_modules.py' 2025-07-24T05:21:45.3598767Z adding 'torch/testing/_internal/common_mps.py' 2025-07-24T05:21:45.3633918Z adding 'torch/testing/_internal/common_nn.py' 2025-07-24T05:21:45.3654212Z adding 'torch/testing/_internal/common_optimizers.py' 2025-07-24T05:21:45.3660928Z adding 'torch/testing/_internal/common_pruning.py' 2025-07-24T05:21:45.3692039Z adding 'torch/testing/_internal/common_quantization.py' 2025-07-24T05:21:45.3702309Z adding 'torch/testing/_internal/common_quantized.py' 2025-07-24T05:21:45.3708254Z adding 'torch/testing/_internal/common_subclass.py' 2025-07-24T05:21:45.3797075Z adding 'torch/testing/_internal/common_utils.py' 2025-07-24T05:21:45.3811954Z adding 'torch/testing/_internal/composite_compliance.py' 2025-07-24T05:21:45.3819527Z adding 'torch/testing/_internal/custom_op_db.py' 2025-07-24T05:21:45.3824175Z adding 'torch/testing/_internal/custom_tensor.py' 2025-07-24T05:21:45.3829022Z adding 'torch/testing/_internal/dist_utils.py' 2025-07-24T05:21:45.3833543Z adding 'torch/testing/_internal/dynamo_test_failures.py' 2025-07-24T05:21:45.3837221Z adding 'torch/testing/_internal/fake_config_module.py' 2025-07-24T05:21:45.3840296Z adding 'torch/testing/_internal/fake_config_module2.py' 2025-07-24T05:21:45.3922785Z adding 'torch/testing/_internal/fake_config_module3.py' 2025-07-24T05:21:45.3927840Z adding 'torch/testing/_internal/hop_db.py' 2025-07-24T05:21:45.3934751Z adding 'torch/testing/_internal/hypothesis_utils.py' 2025-07-24T05:21:45.3940834Z adding 'torch/testing/_internal/inductor_utils.py' 2025-07-24T05:21:45.3951906Z adding 'torch/testing/_internal/jit_metaprogramming_utils.py' 2025-07-24T05:21:45.3964663Z adding 'torch/testing/_internal/jit_utils.py' 2025-07-24T05:21:45.3970188Z adding 'torch/testing/_internal/logging_tensor.py' 2025-07-24T05:21:45.3975150Z adding 'torch/testing/_internal/logging_utils.py' 2025-07-24T05:21:45.3978591Z adding 'torch/testing/_internal/quantization_torch_package_models.py' 2025-07-24T05:21:45.3981636Z adding 'torch/testing/_internal/static_module.py' 2025-07-24T05:21:45.3985059Z adding 'torch/testing/_internal/subclasses.py' 2025-07-24T05:21:45.3989318Z adding 'torch/testing/_internal/torchbind_impls.py' 2025-07-24T05:21:45.3997195Z adding 'torch/testing/_internal/triton_utils.py' 2025-07-24T05:21:45.4001611Z adding 'torch/testing/_internal/two_tensor.py' 2025-07-24T05:21:45.4005315Z adding 'torch/testing/_internal/codegen/__init__.py' 2025-07-24T05:21:45.4008910Z adding 'torch/testing/_internal/data/__init__.py' 2025-07-24T05:21:45.4011754Z adding 'torch/testing/_internal/data/network1.py' 2025-07-24T05:21:45.4014550Z adding 'torch/testing/_internal/data/network2.py' 2025-07-24T05:21:45.4018466Z adding 'torch/testing/_internal/distributed/__init__.py' 2025-07-24T05:21:45.4022724Z adding 'torch/testing/_internal/distributed/checkpoint_utils.py' 2025-07-24T05:21:45.4027327Z adding 'torch/testing/_internal/distributed/common_state_dict.py' 2025-07-24T05:21:45.4036311Z adding 'torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py' 2025-07-24T05:21:45.4136034Z adding 'torch/testing/_internal/distributed/distributed_test.py' 2025-07-24T05:21:45.4148942Z adding 'torch/testing/_internal/distributed/distributed_utils.py' 2025-07-24T05:21:45.4152205Z adding 'torch/testing/_internal/distributed/fake_pg.py' 2025-07-24T05:21:45.4159677Z adding 'torch/testing/_internal/distributed/multi_threaded_pg.py' 2025-07-24T05:21:45.4164705Z adding 'torch/testing/_internal/distributed/rpc_utils.py' 2025-07-24T05:21:45.4168762Z adding 'torch/testing/_internal/distributed/_shard/__init__.py' 2025-07-24T05:21:45.4171858Z adding 'torch/testing/_internal/distributed/_shard/test_common.py' 2025-07-24T05:21:45.4176410Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py' 2025-07-24T05:21:45.4180338Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py' 2025-07-24T05:21:45.4183835Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py' 2025-07-24T05:21:45.4187306Z adding 'torch/testing/_internal/distributed/_tensor/__init__.py' 2025-07-24T05:21:45.4196278Z adding 'torch/testing/_internal/distributed/_tensor/common_dtensor.py' 2025-07-24T05:21:45.4200399Z adding 'torch/testing/_internal/distributed/nn/__init__.py' 2025-07-24T05:21:45.4203964Z adding 'torch/testing/_internal/distributed/nn/api/__init__.py' 2025-07-24T05:21:45.4211613Z adding 'torch/testing/_internal/distributed/nn/api/remote_module_test.py' 2025-07-24T05:21:45.4216058Z adding 'torch/testing/_internal/distributed/rpc/__init__.py' 2025-07-24T05:21:45.4243916Z adding 'torch/testing/_internal/distributed/rpc/dist_autograd_test.py' 2025-07-24T05:21:45.4251154Z adding 'torch/testing/_internal/distributed/rpc/dist_optimizer_test.py' 2025-07-24T05:21:45.4256757Z adding 'torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py' 2025-07-24T05:21:45.4260671Z adding 'torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py' 2025-07-24T05:21:45.4264236Z adding 'torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py' 2025-07-24T05:21:45.4322273Z adding 'torch/testing/_internal/distributed/rpc/rpc_test.py' 2025-07-24T05:21:45.4331128Z adding 'torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py' 2025-07-24T05:21:45.4334686Z adding 'torch/testing/_internal/distributed/rpc/examples/__init__.py' 2025-07-24T05:21:45.4338807Z adding 'torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py' 2025-07-24T05:21:45.4344385Z adding 'torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py' 2025-07-24T05:21:45.4348571Z adding 'torch/testing/_internal/distributed/rpc/jit/__init__.py' 2025-07-24T05:21:45.4352063Z adding 'torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py' 2025-07-24T05:21:45.4403257Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test.py' 2025-07-24T05:21:45.4403856Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py' 2025-07-24T05:21:45.4404324Z adding 'torch/testing/_internal/generated/__init__.py' 2025-07-24T05:21:45.4431118Z adding 'torch/testing/_internal/generated/annotated_fn_args.py' 2025-07-24T05:21:45.4446896Z adding 'torch/testing/_internal/opinfo/__init__.py' 2025-07-24T05:21:45.4488982Z adding 'torch/testing/_internal/opinfo/core.py' 2025-07-24T05:21:45.4496121Z adding 'torch/testing/_internal/opinfo/refs.py' 2025-07-24T05:21:45.4501592Z adding 'torch/testing/_internal/opinfo/utils.py' 2025-07-24T05:21:45.4508799Z adding 'torch/testing/_internal/opinfo/definitions/__init__.py' 2025-07-24T05:21:45.4518515Z adding 'torch/testing/_internal/opinfo/definitions/_masked.py' 2025-07-24T05:21:45.4526000Z adding 'torch/testing/_internal/opinfo/definitions/fft.py' 2025-07-24T05:21:45.4546959Z adding 'torch/testing/_internal/opinfo/definitions/linalg.py' 2025-07-24T05:21:45.4565559Z adding 'torch/testing/_internal/opinfo/definitions/nested.py' 2025-07-24T05:21:45.4572242Z adding 'torch/testing/_internal/opinfo/definitions/signal.py' 2025-07-24T05:21:45.4581862Z adding 'torch/testing/_internal/opinfo/definitions/sparse.py' 2025-07-24T05:21:45.4588923Z adding 'torch/testing/_internal/opinfo/definitions/special.py' 2025-07-24T05:21:45.4593602Z adding 'torch/testing/_internal/optests/__init__.py' 2025-07-24T05:21:45.4597844Z adding 'torch/testing/_internal/optests/aot_autograd.py' 2025-07-24T05:21:45.4602434Z adding 'torch/testing/_internal/optests/autograd_registration.py' 2025-07-24T05:21:45.4605534Z adding 'torch/testing/_internal/optests/fake_tensor.py' 2025-07-24T05:21:45.4617799Z adding 'torch/testing/_internal/optests/generate_tests.py' 2025-07-24T05:21:45.4622059Z adding 'torch/testing/_internal/optests/make_fx.py' 2025-07-24T05:21:45.4625743Z adding 'torch/testing/_internal/test_module/__init__.py' 2025-07-24T05:21:45.4628652Z adding 'torch/testing/_internal/test_module/future_div.py' 2025-07-24T05:21:45.4631449Z adding 'torch/testing/_internal/test_module/no_future_div.py' 2025-07-24T05:21:45.4636681Z adding 'torch/utils/__init__.py' 2025-07-24T05:21:45.4640585Z adding 'torch/utils/_appending_byte_serializer.py' 2025-07-24T05:21:45.4644722Z adding 'torch/utils/_backport_slots.py' 2025-07-24T05:21:45.4656104Z adding 'torch/utils/_config_module.py' 2025-07-24T05:21:45.4660093Z adding 'torch/utils/_config_typing.pyi' 2025-07-24T05:21:45.4665560Z adding 'torch/utils/_content_store.py' 2025-07-24T05:21:45.4670261Z adding 'torch/utils/_contextlib.py' 2025-07-24T05:21:45.4673835Z adding 'torch/utils/_cpp_embed_headers.py' 2025-07-24T05:21:45.4677288Z adding 'torch/utils/_cpp_extension_versioner.py' 2025-07-24T05:21:45.4688813Z adding 'torch/utils/_cxx_pytree.py' 2025-07-24T05:21:45.4693919Z adding 'torch/utils/_device.py' 2025-07-24T05:21:45.4696775Z adding 'torch/utils/_dtype_abbrs.py' 2025-07-24T05:21:45.4700489Z adding 'torch/utils/_exposed_in.py' 2025-07-24T05:21:45.4703306Z adding 'torch/utils/_filelock.py' 2025-07-24T05:21:45.4707032Z adding 'torch/utils/_foreach_utils.py' 2025-07-24T05:21:45.4712719Z adding 'torch/utils/_freeze.py' 2025-07-24T05:21:45.4716403Z adding 'torch/utils/_functools.py' 2025-07-24T05:21:45.4720981Z adding 'torch/utils/_get_clean_triton.py' 2025-07-24T05:21:45.4724296Z adding 'torch/utils/_helion.py' 2025-07-24T05:21:45.4727684Z adding 'torch/utils/_import_utils.py' 2025-07-24T05:21:45.4730791Z adding 'torch/utils/_mode_utils.py' 2025-07-24T05:21:45.4734967Z adding 'torch/utils/_ordered_set.py' 2025-07-24T05:21:45.4746776Z adding 'torch/utils/_python_dispatch.py' 2025-07-24T05:21:45.4771428Z adding 'torch/utils/_pytree.py' 2025-07-24T05:21:45.4776290Z adding 'torch/utils/_stats.py' 2025-07-24T05:21:45.4779852Z adding 'torch/utils/_thunk.py' 2025-07-24T05:21:45.4785599Z adding 'torch/utils/_traceback.py' 2025-07-24T05:21:45.4789376Z adding 'torch/utils/_triton.py' 2025-07-24T05:21:45.4792584Z adding 'torch/utils/_typing_utils.py' 2025-07-24T05:21:45.4796084Z adding 'torch/utils/_zip.py' 2025-07-24T05:21:45.4804104Z adding 'torch/utils/backend_registration.py' 2025-07-24T05:21:45.4813143Z adding 'torch/utils/bundled_inputs.py' 2025-07-24T05:21:45.4841503Z adding 'torch/utils/checkpoint.py' 2025-07-24T05:21:45.4854670Z adding 'torch/utils/collect_env.py' 2025-07-24T05:21:45.4858090Z adding 'torch/utils/cpp_backtrace.py' 2025-07-24T05:21:45.4906548Z adding 'torch/utils/cpp_extension.py' 2025-07-24T05:21:45.4912306Z adding 'torch/utils/deterministic.py' 2025-07-24T05:21:45.4917565Z adding 'torch/utils/dlpack.py' 2025-07-24T05:21:45.4920779Z adding 'torch/utils/file_baton.py' 2025-07-24T05:21:45.4933610Z adding 'torch/utils/flop_counter.py' 2025-07-24T05:21:45.4938629Z adding 'torch/utils/hooks.py' 2025-07-24T05:21:45.4942978Z adding 'torch/utils/mkldnn.py' 2025-07-24T05:21:45.4947372Z adding 'torch/utils/mobile_optimizer.py' 2025-07-24T05:21:45.4950427Z adding 'torch/utils/model_zoo.py' 2025-07-24T05:21:45.4954411Z adding 'torch/utils/module_tracker.py' 2025-07-24T05:21:45.4958686Z adding 'torch/utils/show_pickle.py' 2025-07-24T05:21:45.4964293Z adding 'torch/utils/throughput_benchmark.py' 2025-07-24T05:21:45.4969596Z adding 'torch/utils/weak.py' 2025-07-24T05:21:45.4973507Z adding 'torch/utils/_strobelight/__init__.py' 2025-07-24T05:21:45.4987875Z adding 'torch/utils/_strobelight/cli_function_profiler.py' 2025-07-24T05:21:45.4992372Z adding 'torch/utils/_sympy/__init__.py' 2025-07-24T05:21:45.5010590Z adding 'torch/utils/_sympy/functions.py' 2025-07-24T05:21:45.5016910Z adding 'torch/utils/_sympy/interp.py' 2025-07-24T05:21:45.5021469Z adding 'torch/utils/_sympy/numbers.py' 2025-07-24T05:21:45.5028334Z adding 'torch/utils/_sympy/printers.py' 2025-07-24T05:21:45.5034108Z adding 'torch/utils/_sympy/reference.py' 2025-07-24T05:21:45.5037938Z adding 'torch/utils/_sympy/singleton_int.py' 2025-07-24T05:21:45.5042330Z adding 'torch/utils/_sympy/solve.py' 2025-07-24T05:21:45.5046313Z adding 'torch/utils/_sympy/symbol.py' 2025-07-24T05:21:45.5059145Z adding 'torch/utils/_sympy/value_ranges.py' 2025-07-24T05:21:45.5064400Z adding 'torch/utils/backcompat/__init__.py' 2025-07-24T05:21:45.5068054Z adding 'torch/utils/benchmark/__init__.py' 2025-07-24T05:21:45.5071633Z adding 'torch/utils/benchmark/examples/__init__.py' 2025-07-24T05:21:45.5075093Z adding 'torch/utils/benchmark/examples/compare.py' 2025-07-24T05:21:45.5078726Z adding 'torch/utils/benchmark/examples/fuzzer.py' 2025-07-24T05:21:45.5082774Z adding 'torch/utils/benchmark/examples/op_benchmark.py' 2025-07-24T05:21:45.5085878Z adding 'torch/utils/benchmark/examples/simple_timeit.py' 2025-07-24T05:21:45.5090084Z adding 'torch/utils/benchmark/examples/spectral_ops_fuzz_test.py' 2025-07-24T05:21:45.5093770Z adding 'torch/utils/benchmark/op_fuzzers/__init__.py' 2025-07-24T05:21:45.5097274Z adding 'torch/utils/benchmark/op_fuzzers/binary.py' 2025-07-24T05:21:45.5101028Z adding 'torch/utils/benchmark/op_fuzzers/sparse_binary.py' 2025-07-24T05:21:45.5104595Z adding 'torch/utils/benchmark/op_fuzzers/sparse_unary.py' 2025-07-24T05:21:45.5108318Z adding 'torch/utils/benchmark/op_fuzzers/spectral.py' 2025-07-24T05:21:45.5111934Z adding 'torch/utils/benchmark/op_fuzzers/unary.py' 2025-07-24T05:21:45.5115551Z adding 'torch/utils/benchmark/utils/__init__.py' 2025-07-24T05:21:45.5118609Z adding 'torch/utils/benchmark/utils/_stubs.py' 2025-07-24T05:21:45.5125665Z adding 'torch/utils/benchmark/utils/common.py' 2025-07-24T05:21:45.5131947Z adding 'torch/utils/benchmark/utils/compare.py' 2025-07-24T05:21:45.5137155Z adding 'torch/utils/benchmark/utils/compile.py' 2025-07-24T05:21:45.5141767Z adding 'torch/utils/benchmark/utils/cpp_jit.py' 2025-07-24T05:21:45.5150004Z adding 'torch/utils/benchmark/utils/fuzzer.py' 2025-07-24T05:21:45.5154787Z adding 'torch/utils/benchmark/utils/sparse_fuzzer.py' 2025-07-24T05:21:45.5158061Z adding 'torch/utils/benchmark/utils/timeit_template.cpp' 2025-07-24T05:21:45.5166901Z adding 'torch/utils/benchmark/utils/timer.py' 2025-07-24T05:21:45.5171577Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/__init__.py' 2025-07-24T05:21:45.5175700Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h' 2025-07-24T05:21:45.5179182Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp' 2025-07-24T05:21:45.5183117Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp' 2025-07-24T05:21:45.5196320Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py' 2025-07-24T05:21:45.5250262Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h' 2025-07-24T05:21:45.5263523Z adding 'torch/utils/bottleneck/__init__.py' 2025-07-24T05:21:45.5267782Z adding 'torch/utils/bottleneck/__main__.py' 2025-07-24T05:21:45.5272294Z adding 'torch/utils/data/__init__.py' 2025-07-24T05:21:45.5275395Z adding 'torch/utils/data/backward_compatibility.py' 2025-07-24T05:21:45.5306216Z adding 'torch/utils/data/dataloader.py' 2025-07-24T05:21:45.5316119Z adding 'torch/utils/data/dataset.py' 2025-07-24T05:21:45.5320954Z adding 'torch/utils/data/distributed.py' 2025-07-24T05:21:45.5325909Z adding 'torch/utils/data/graph.py' 2025-07-24T05:21:45.5330007Z adding 'torch/utils/data/graph_settings.py' 2025-07-24T05:21:45.5336237Z adding 'torch/utils/data/sampler.py' 2025-07-24T05:21:45.5340894Z adding 'torch/utils/data/_utils/__init__.py' 2025-07-24T05:21:45.5347365Z adding 'torch/utils/data/_utils/collate.py' 2025-07-24T05:21:45.5351235Z adding 'torch/utils/data/_utils/fetch.py' 2025-07-24T05:21:45.5355214Z adding 'torch/utils/data/_utils/pin_memory.py' 2025-07-24T05:21:45.5359069Z adding 'torch/utils/data/_utils/signal_handling.py' 2025-07-24T05:21:45.5365963Z adding 'torch/utils/data/_utils/worker.py' 2025-07-24T05:21:45.5370190Z adding 'torch/utils/data/datapipes/__init__.py' 2025-07-24T05:21:45.5375035Z adding 'torch/utils/data/datapipes/_decorator.py' 2025-07-24T05:21:45.5400075Z adding 'torch/utils/data/datapipes/_hook_iterator.py' 2025-07-24T05:21:45.5400487Z adding 'torch/utils/data/datapipes/_typing.py' 2025-07-24T05:21:45.5400934Z adding 'torch/utils/data/datapipes/datapipe.py' 2025-07-24T05:21:45.5408531Z adding 'torch/utils/data/datapipes/datapipe.pyi' 2025-07-24T05:21:45.5415167Z adding 'torch/utils/data/datapipes/gen_pyi.py' 2025-07-24T05:21:45.5419504Z adding 'torch/utils/data/datapipes/dataframe/__init__.py' 2025-07-24T05:21:45.5424269Z adding 'torch/utils/data/datapipes/dataframe/dataframe_wrapper.py' 2025-07-24T05:21:45.5428857Z adding 'torch/utils/data/datapipes/dataframe/dataframes.py' 2025-07-24T05:21:45.5432910Z adding 'torch/utils/data/datapipes/dataframe/datapipes.py' 2025-07-24T05:21:45.5436311Z adding 'torch/utils/data/datapipes/dataframe/structures.py' 2025-07-24T05:21:45.5440382Z adding 'torch/utils/data/datapipes/iter/__init__.py' 2025-07-24T05:21:45.5445719Z adding 'torch/utils/data/datapipes/iter/callable.py' 2025-07-24T05:21:45.5451284Z adding 'torch/utils/data/datapipes/iter/combinatorics.py' 2025-07-24T05:21:45.5459552Z adding 'torch/utils/data/datapipes/iter/combining.py' 2025-07-24T05:21:45.5463767Z adding 'torch/utils/data/datapipes/iter/filelister.py' 2025-07-24T05:21:45.5467899Z adding 'torch/utils/data/datapipes/iter/fileopener.py' 2025-07-24T05:21:45.5473160Z adding 'torch/utils/data/datapipes/iter/grouping.py' 2025-07-24T05:21:45.5477088Z adding 'torch/utils/data/datapipes/iter/routeddecoder.py' 2025-07-24T05:21:45.5481128Z adding 'torch/utils/data/datapipes/iter/selecting.py' 2025-07-24T05:21:45.5485605Z adding 'torch/utils/data/datapipes/iter/sharding.py' 2025-07-24T05:21:45.5489440Z adding 'torch/utils/data/datapipes/iter/streamreader.py' 2025-07-24T05:21:45.5492903Z adding 'torch/utils/data/datapipes/iter/utils.py' 2025-07-24T05:21:45.5496733Z adding 'torch/utils/data/datapipes/map/__init__.py' 2025-07-24T05:21:45.5500113Z adding 'torch/utils/data/datapipes/map/callable.py' 2025-07-24T05:21:45.5503953Z adding 'torch/utils/data/datapipes/map/combinatorics.py' 2025-07-24T05:21:45.5507673Z adding 'torch/utils/data/datapipes/map/combining.py' 2025-07-24T05:21:45.5511370Z adding 'torch/utils/data/datapipes/map/grouping.py' 2025-07-24T05:21:45.5514738Z adding 'torch/utils/data/datapipes/map/utils.py' 2025-07-24T05:21:45.5518379Z adding 'torch/utils/data/datapipes/utils/__init__.py' 2025-07-24T05:21:45.5524493Z adding 'torch/utils/data/datapipes/utils/common.py' 2025-07-24T05:21:45.5530685Z adding 'torch/utils/data/datapipes/utils/decoder.py' 2025-07-24T05:21:45.5534958Z adding 'torch/utils/data/datapipes/utils/snapshot.py' 2025-07-24T05:21:45.5538431Z adding 'torch/utils/hipify/__init__.py' 2025-07-24T05:21:45.5541646Z adding 'torch/utils/hipify/constants.py' 2025-07-24T05:21:45.5604853Z adding 'torch/utils/hipify/cuda_to_hip_mappings.py' 2025-07-24T05:21:45.5630444Z adding 'torch/utils/hipify/hipify_python.py' 2025-07-24T05:21:45.5634314Z adding 'torch/utils/hipify/version.py' 2025-07-24T05:21:45.5637743Z adding 'torch/utils/jit/__init__.py' 2025-07-24T05:21:45.5641516Z adding 'torch/utils/jit/log_extract.py' 2025-07-24T05:21:45.5649794Z adding 'torch/utils/model_dump/__init__.py' 2025-07-24T05:21:45.5653068Z adding 'torch/utils/model_dump/__main__.py' 2025-07-24T05:21:45.5660280Z adding 'torch/utils/model_dump/code.js' 2025-07-24T05:21:45.5664004Z adding 'torch/utils/model_dump/htm.mjs' 2025-07-24T05:21:45.5669923Z adding 'torch/utils/model_dump/preact.mjs' 2025-07-24T05:21:45.5673184Z adding 'torch/utils/model_dump/skeleton.html' 2025-07-24T05:21:45.5676678Z adding 'torch/utils/serialization/__init__.py' 2025-07-24T05:21:45.5679625Z adding 'torch/utils/serialization/config.py' 2025-07-24T05:21:45.5683767Z adding 'torch/utils/tensorboard/__init__.py' 2025-07-24T05:21:45.5686595Z adding 'torch/utils/tensorboard/_convert_np.py' 2025-07-24T05:21:45.5690293Z adding 'torch/utils/tensorboard/_embedding.py' 2025-07-24T05:21:45.5693694Z adding 'torch/utils/tensorboard/_onnx_graph.py' 2025-07-24T05:21:45.5697028Z adding 'torch/utils/tensorboard/_proto_graph.py' 2025-07-24T05:21:45.5703684Z adding 'torch/utils/tensorboard/_pytorch_graph.py' 2025-07-24T05:21:45.5708091Z adding 'torch/utils/tensorboard/_utils.py' 2025-07-24T05:21:45.5720529Z adding 'torch/utils/tensorboard/summary.py' 2025-07-24T05:21:45.5735360Z adding 'torch/utils/tensorboard/writer.py' 2025-07-24T05:21:45.5739924Z adding 'torch/utils/viz/__init__.py' 2025-07-24T05:21:45.5747200Z adding 'torch/utils/viz/_cycles.py' 2025-07-24T05:21:45.5755669Z adding 'torch/xpu/__init__.py' 2025-07-24T05:21:45.5759362Z adding 'torch/xpu/_gpu_trace.py' 2025-07-24T05:21:45.5762634Z adding 'torch/xpu/_utils.py' 2025-07-24T05:21:45.5766946Z adding 'torch/xpu/memory.py' 2025-07-24T05:21:45.5771026Z adding 'torch/xpu/random.py' 2025-07-24T05:21:45.5775342Z adding 'torch/xpu/streams.py' 2025-07-24T05:21:45.5935578Z adding 'torch-2.9.0a0+git27c8ef1.dist-info/licenses/LICENSE' 2025-07-24T05:21:45.5936061Z adding 'torch-2.9.0a0+git27c8ef1.dist-info/licenses/NOTICE' 2025-07-24T05:21:45.5936422Z adding 'torchgen/__init__.py' 2025-07-24T05:21:45.5936693Z adding 'torchgen/code_template.py' 2025-07-24T05:21:45.5936965Z adding 'torchgen/context.py' 2025-07-24T05:21:45.5971409Z adding 'torchgen/gen.py' 2025-07-24T05:21:45.5983375Z adding 'torchgen/gen_aoti_c_shim.py' 2025-07-24T05:21:45.5992335Z adding 'torchgen/gen_backend_stubs.py' 2025-07-24T05:21:45.6006137Z adding 'torchgen/gen_functionalization_type.py' 2025-07-24T05:21:45.6015809Z adding 'torchgen/gen_lazy_tensor.py' 2025-07-24T05:21:45.6020153Z adding 'torchgen/gen_schema_utils.py' 2025-07-24T05:21:45.6024958Z adding 'torchgen/gen_vmap_plumbing.py' 2025-07-24T05:21:45.6028509Z adding 'torchgen/local.py' 2025-07-24T05:21:45.6070379Z adding 'torchgen/model.py' 2025-07-24T05:21:45.6084830Z adding 'torchgen/native_function_generation.py' 2025-07-24T05:21:45.6093512Z adding 'torchgen/utils.py' 2025-07-24T05:21:45.6097157Z adding 'torchgen/yaml_utils.py' 2025-07-24T05:21:45.6100658Z adding 'torchgen/aoti/__init__.py' 2025-07-24T05:21:45.6104589Z adding 'torchgen/aoti/fallback_ops.py' 2025-07-24T05:21:45.6108449Z adding 'torchgen/api/__init__.py' 2025-07-24T05:21:45.6122582Z adding 'torchgen/api/autograd.py' 2025-07-24T05:21:45.6130401Z adding 'torchgen/api/cpp.py' 2025-07-24T05:21:45.6134508Z adding 'torchgen/api/dispatcher.py' 2025-07-24T05:21:45.6139195Z adding 'torchgen/api/functionalization.py' 2025-07-24T05:21:45.6146619Z adding 'torchgen/api/lazy.py' 2025-07-24T05:21:45.6150012Z adding 'torchgen/api/meta.py' 2025-07-24T05:21:45.6153990Z adding 'torchgen/api/native.py' 2025-07-24T05:21:45.6177549Z adding 'torchgen/api/python.py' 2025-07-24T05:21:45.6183853Z adding 'torchgen/api/structured.py' 2025-07-24T05:21:45.6191780Z adding 'torchgen/api/translate.py' 2025-07-24T05:21:45.6196802Z adding 'torchgen/api/ufunc.py' 2025-07-24T05:21:45.6202182Z adding 'torchgen/api/unboxing.py' 2025-07-24T05:21:45.6206262Z adding 'torchgen/api/types/__init__.py' 2025-07-24T05:21:45.6212787Z adding 'torchgen/api/types/signatures.py' 2025-07-24T05:21:45.6217682Z adding 'torchgen/api/types/types.py' 2025-07-24T05:21:45.6222566Z adding 'torchgen/api/types/types_base.py' 2025-07-24T05:21:45.6226713Z adding 'torchgen/dest/__init__.py' 2025-07-24T05:21:45.6237677Z adding 'torchgen/dest/lazy_ir.py' 2025-07-24T05:21:45.6241387Z adding 'torchgen/dest/lazy_ts_lowering.py' 2025-07-24T05:21:45.6245161Z adding 'torchgen/dest/native_functions.py' 2025-07-24T05:21:45.6259587Z adding 'torchgen/dest/register_dispatch_key.py' 2025-07-24T05:21:45.6267879Z adding 'torchgen/dest/ufunc.py' 2025-07-24T05:21:45.6272395Z adding 'torchgen/operator_versions/__init__.py' 2025-07-24T05:21:45.6277739Z adding 'torchgen/operator_versions/gen_mobile_upgraders.py' 2025-07-24T05:21:45.6281006Z adding 'torchgen/operator_versions/gen_mobile_upgraders_constant.py' 2025-07-24T05:21:45.6402908Z adding 'torchgen/packaged/ATen/native/native_functions.yaml' 2025-07-24T05:21:45.6422021Z adding 'torchgen/packaged/ATen/native/tags.yaml' 2025-07-24T05:21:45.6427110Z adding 'torchgen/packaged/ATen/templates/ATenOpList.cpp' 2025-07-24T05:21:45.6430766Z adding 'torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp' 2025-07-24T05:21:45.6440445Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunction.h' 2025-07-24T05:21:45.6441006Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions.h' 2025-07-24T05:21:45.6441520Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h' 2025-07-24T05:21:45.6443301Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp' 2025-07-24T05:21:45.6446096Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h' 2025-07-24T05:21:45.6449267Z adding 'torchgen/packaged/ATen/templates/Function.h' 2025-07-24T05:21:45.6452422Z adding 'torchgen/packaged/ATen/templates/FunctionalInverses.h' 2025-07-24T05:21:45.6456015Z adding 'torchgen/packaged/ATen/templates/Functions.cpp' 2025-07-24T05:21:45.6459993Z adding 'torchgen/packaged/ATen/templates/Functions.h' 2025-07-24T05:21:45.6463178Z adding 'torchgen/packaged/ATen/templates/LazyIr.h' 2025-07-24T05:21:45.6466047Z adding 'torchgen/packaged/ATen/templates/LazyNonNativeIr.h' 2025-07-24T05:21:45.6469037Z adding 'torchgen/packaged/ATen/templates/MethodOperators.h' 2025-07-24T05:21:45.6472009Z adding 'torchgen/packaged/ATen/templates/NativeFunction.h' 2025-07-24T05:21:45.6475014Z adding 'torchgen/packaged/ATen/templates/NativeFunctions.h' 2025-07-24T05:21:45.6478728Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunction.h' 2025-07-24T05:21:45.6480985Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunctions.h' 2025-07-24T05:21:45.6483839Z adding 'torchgen/packaged/ATen/templates/Operator.h' 2025-07-24T05:21:45.6486748Z adding 'torchgen/packaged/ATen/templates/Operators.cpp' 2025-07-24T05:21:45.6490453Z adding 'torchgen/packaged/ATen/templates/Operators.h' 2025-07-24T05:21:45.6493474Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.cpp' 2025-07-24T05:21:45.6496505Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.h' 2025-07-24T05:21:45.6499592Z adding 'torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp' 2025-07-24T05:21:45.6502845Z adding 'torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp' 2025-07-24T05:21:45.6505796Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini' 2025-07-24T05:21:45.6508928Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp' 2025-07-24T05:21:45.6512618Z adding 'torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp' 2025-07-24T05:21:45.6515607Z adding 'torchgen/packaged/ATen/templates/RegisterSchema.cpp' 2025-07-24T05:21:45.6518420Z adding 'torchgen/packaged/ATen/templates/RegistrationDeclarations.h' 2025-07-24T05:21:45.6530511Z adding 'torchgen/packaged/ATen/templates/TensorBody.h' 2025-07-24T05:21:45.6534866Z adding 'torchgen/packaged/ATen/templates/TensorMethods.cpp' 2025-07-24T05:21:45.6537952Z adding 'torchgen/packaged/ATen/templates/UfuncCPU.cpp' 2025-07-24T05:21:45.6540883Z adding 'torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp' 2025-07-24T05:21:45.6543820Z adding 'torchgen/packaged/ATen/templates/UfuncCUDA.cu' 2025-07-24T05:21:45.6546827Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.cpp' 2025-07-24T05:21:45.6549888Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.h' 2025-07-24T05:21:45.6552937Z adding 'torchgen/packaged/ATen/templates/aten_interned_strings.h' 2025-07-24T05:21:45.6555704Z adding 'torchgen/packaged/ATen/templates/enum_tag.h' 2025-07-24T05:21:45.6559422Z adding 'torchgen/packaged/autograd/BUILD.bazel' 2025-07-24T05:21:45.6562142Z adding 'torchgen/packaged/autograd/README.md' 2025-07-24T05:21:45.6564827Z adding 'torchgen/packaged/autograd/__init__.py' 2025-07-24T05:21:45.6567729Z adding 'torchgen/packaged/autograd/build.bzl' 2025-07-24T05:21:45.6570708Z adding 'torchgen/packaged/autograd/context.py' 2025-07-24T05:21:45.6574191Z adding 'torchgen/packaged/autograd/deprecated.yaml' 2025-07-24T05:21:45.6622212Z adding 'torchgen/packaged/autograd/derivatives.yaml' 2025-07-24T05:21:45.6630338Z adding 'torchgen/packaged/autograd/gen_annotated_fn_args.py' 2025-07-24T05:21:45.6634852Z adding 'torchgen/packaged/autograd/gen_autograd.py' 2025-07-24T05:21:45.6646287Z adding 'torchgen/packaged/autograd/gen_autograd_functions.py' 2025-07-24T05:21:45.6656210Z adding 'torchgen/packaged/autograd/gen_inplace_or_view_type.py' 2025-07-24T05:21:45.6673227Z adding 'torchgen/packaged/autograd/gen_python_functions.py' 2025-07-24T05:21:45.6682257Z adding 'torchgen/packaged/autograd/gen_trace_type.py' 2025-07-24T05:21:45.6686881Z adding 'torchgen/packaged/autograd/gen_variable_factories.py' 2025-07-24T05:21:45.6713836Z adding 'torchgen/packaged/autograd/gen_variable_type.py' 2025-07-24T05:21:45.6721746Z adding 'torchgen/packaged/autograd/gen_view_funcs.py' 2025-07-24T05:21:45.6736502Z adding 'torchgen/packaged/autograd/load_derivatives.py' 2025-07-24T05:21:45.6742201Z adding 'torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp' 2025-07-24T05:21:45.6745696Z adding 'torchgen/packaged/autograd/templates/Functions.cpp' 2025-07-24T05:21:45.6749303Z adding 'torchgen/packaged/autograd/templates/Functions.h' 2025-07-24T05:21:45.6752241Z adding 'torchgen/packaged/autograd/templates/TraceType.cpp' 2025-07-24T05:21:45.6755895Z adding 'torchgen/packaged/autograd/templates/VariableType.cpp' 2025-07-24T05:21:45.6759129Z adding 'torchgen/packaged/autograd/templates/VariableType.h' 2025-07-24T05:21:45.6762181Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.cpp' 2025-07-24T05:21:45.6765128Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.h' 2025-07-24T05:21:45.6768287Z adding 'torchgen/packaged/autograd/templates/annotated_fn_args.py.in' 2025-07-24T05:21:45.6771277Z adding 'torchgen/packaged/autograd/templates/python_enum_tag.cpp' 2025-07-24T05:21:45.6774770Z adding 'torchgen/packaged/autograd/templates/python_fft_functions.cpp' 2025-07-24T05:21:45.6778373Z adding 'torchgen/packaged/autograd/templates/python_functions.cpp' 2025-07-24T05:21:45.6789409Z adding 'torchgen/packaged/autograd/templates/python_functions.h' 2025-07-24T05:21:45.6792545Z adding 'torchgen/packaged/autograd/templates/python_linalg_functions.cpp' 2025-07-24T05:21:45.6796045Z adding 'torchgen/packaged/autograd/templates/python_nested_functions.cpp' 2025-07-24T05:21:45.6799742Z adding 'torchgen/packaged/autograd/templates/python_nn_functions.cpp' 2025-07-24T05:21:45.6803177Z adding 'torchgen/packaged/autograd/templates/python_return_types.cpp' 2025-07-24T05:21:45.6806562Z adding 'torchgen/packaged/autograd/templates/python_return_types.h' 2025-07-24T05:21:45.6809499Z adding 'torchgen/packaged/autograd/templates/python_sparse_functions.cpp' 2025-07-24T05:21:45.6812979Z adding 'torchgen/packaged/autograd/templates/python_special_functions.cpp' 2025-07-24T05:21:45.6816580Z adding 'torchgen/packaged/autograd/templates/python_torch_functions.cpp' 2025-07-24T05:21:45.6830075Z adding 'torchgen/packaged/autograd/templates/python_variable_methods.cpp' 2025-07-24T05:21:45.6834440Z adding 'torchgen/packaged/autograd/templates/variable_factories.h' 2025-07-24T05:21:45.6838224Z adding 'torchgen/selective_build/__init__.py' 2025-07-24T05:21:45.6842640Z adding 'torchgen/selective_build/operator.py' 2025-07-24T05:21:45.6848718Z adding 'torchgen/selective_build/selector.py' 2025-07-24T05:21:45.6852924Z adding 'torchgen/static_runtime/__init__.py' 2025-07-24T05:21:45.6857393Z adding 'torchgen/static_runtime/config.py' 2025-07-24T05:21:45.6862463Z adding 'torchgen/static_runtime/gen_static_runtime_ops.py' 2025-07-24T05:21:45.6871482Z adding 'torchgen/static_runtime/generator.py' 2025-07-24T05:21:45.6898119Z adding 'torch-2.9.0a0+git27c8ef1.dist-info/METADATA' 2025-07-24T05:21:45.6898493Z adding 'torch-2.9.0a0+git27c8ef1.dist-info/WHEEL' 2025-07-24T05:21:45.6898895Z adding 'torch-2.9.0a0+git27c8ef1.dist-info/entry_points.txt' 2025-07-24T05:21:45.6899309Z adding 'torch-2.9.0a0+git27c8ef1.dist-info/top_level.txt' 2025-07-24T05:21:45.7589851Z adding 'torch-2.9.0a0+git27c8ef1.dist-info/RECORD' 2025-07-24T05:21:45.7958302Z removing build\bdist.win-amd64\wheel 2025-07-24T05:21:47.4775808Z 2025-07-24T05:21:47.4776495Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-07-24T05:21:47.4777048Z 2025-07-24T05:21:47.4777349Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-07-24T05:21:47.4778184Z 2025-07-24T05:21:47.4778406Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --show-stats 2025-07-24T05:21:48.0787603Z Compile requests 7017 2025-07-24T05:21:48.0787968Z Compile requests executed 5275 2025-07-24T05:21:48.0788234Z Cache hits 5204 2025-07-24T05:21:48.0788495Z Cache hits (C/C++) 5204 2025-07-24T05:21:48.0788744Z Cache misses 51 2025-07-24T05:21:48.0789003Z Cache misses (C/C++) 51 2025-07-24T05:21:48.0789281Z Cache timeouts 0 2025-07-24T05:21:48.0789530Z Cache read errors 0 2025-07-24T05:21:48.0789790Z Forced recaches 0 2025-07-24T05:21:48.0790049Z Cache write errors 0 2025-07-24T05:21:48.0790318Z Compilation failures 3 2025-07-24T05:21:48.0790709Z Cache errors 17 2025-07-24T05:21:48.0790973Z Cache errors (C/C++) 17 2025-07-24T05:21:48.0791238Z Non-cacheable compilations 2 2025-07-24T05:21:48.0791508Z Non-cacheable calls 1742 2025-07-24T05:21:48.0791771Z Non-compilation calls 0 2025-07-24T05:21:48.0792058Z Unsupported compiler calls 0 2025-07-24T05:21:48.0792345Z Average cache write 0.031 s 2025-07-24T05:21:48.0792620Z Average compiler 0.099 s 2025-07-24T05:21:48.0792889Z Average cache read hit 0.065 s 2025-07-24T05:21:48.0793165Z Failed distributed compilations 0 2025-07-24T05:21:48.0794054Z 2025-07-24T05:21:48.0794136Z Non-cacheable reasons: 2025-07-24T05:21:48.0796037Z multiple input files 1742 2025-07-24T05:21:48.0796240Z 2025-07-24T05:21:48.0796437Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-07-24T05:21:48.0796926Z Version (client) 0.7.4 2025-07-24T05:21:48.0818800Z 2025-07-24T05:21:48.0819632Z (base) C:\actions-runner\_work\pytorch\pytorch>python -c "import os, glob; os.system('python -mpip install --no-index --no-deps ' + glob.glob('dist/*.whl')[0])" 2025-07-24T05:21:49.0948076Z Processing c:\actions-runner\_work\pytorch\pytorch\dist\torch-2.9.0a0+git27c8ef1-cp39-cp39-win_amd64.whl 2025-07-24T05:21:51.0339321Z Installing collected packages: torch 2025-07-24T05:22:25.7403365Z Successfully installed torch-2.9.0a0+git27c8ef1 2025-07-24T05:22:25.8062035Z 2025-07-24T05:22:25.8063260Z (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-07-24T05:22:25.8064541Z copy /Y "dist\*.whl" "C:/16487210679/build-results/" 2025-07-24T05:22:25.8064898Z python tools/stats/export_test_times.py 2025-07-24T05:22:25.8065355Z robocopy /E ".additional_ci_files" "C:/16487210679/build-results/\.additional_ci_files" 2025-07-24T05:22:25.8065871Z copy /Y "build\.ninja_log" "C:/16487210679/build-results/\" 2025-07-24T05:22:25.8066188Z ) ) 2025-07-24T05:22:25.8077093Z dist\torch-2.9.0a0+git27c8ef1-cp39-cp39-win_amd64.whl 2025-07-24T05:22:26.1529128Z 1 file(s) copied. 2025-07-24T05:22:27.5961547Z Exporting test times from test-infra 2025-07-24T05:22:27.5962542Z Downloading https://raw.githubusercontent.com/pytorch/test-infra/generated-stats/stats/test-times.json to C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\test-times.json 2025-07-24T05:22:27.5964310Z Downloading https://raw.githubusercontent.com/pytorch/test-infra/generated-stats/stats/test-class-times.json to C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\test-class-times.json 2025-07-24T05:22:27.6223873Z 2025-07-24T05:22:27.6224370Z ------------------------------------------------------------------------------- 2025-07-24T05:22:27.6224991Z ROBOCOPY :: Robust File Copy for Windows 2025-07-24T05:22:27.6225446Z ------------------------------------------------------------------------------- 2025-07-24T05:22:27.6225705Z 2025-07-24T05:22:27.6225823Z Started : Thursday, July 24, 2025 5:22:27 AM 2025-07-24T05:22:27.6226247Z Source : C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-07-24T05:22:27.6226711Z Dest : C:\16487210679\build-results\.additional_ci_files\ 2025-07-24T05:22:27.6226962Z 2025-07-24T05:22:27.6227405Z Files : *.* 2025-07-24T05:22:27.6227741Z 2025-07-24T05:22:27.6246519Z Options : *.* /S /E /DCOPY:DA /COPY:DAT /R:1000000 /W:30 2025-07-24T05:22:27.6246833Z 2025-07-24T05:22:27.6246997Z ------------------------------------------------------------------------------ 2025-07-24T05:22:27.6247272Z 2025-07-24T05:22:27.6247510Z New Dir 2 C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-07-24T05:22:27.6248866Z New File 7.9 m test-class-times.json 2025-07-24T05:22:27.6252467Z 6.2% 2025-07-24T05:22:27.6254836Z 12.5% 2025-07-24T05:22:27.6257998Z 18.7% 2025-07-24T05:22:27.6261042Z 25.0% 2025-07-24T05:22:27.6263890Z 31.2% 2025-07-24T05:22:27.6267273Z 37.5% 2025-07-24T05:22:27.6270123Z 43.7% 2025-07-24T05:22:27.6273388Z 50.0% 2025-07-24T05:22:27.6276175Z 56.2% 2025-07-24T05:22:27.6279335Z 62.5% 2025-07-24T05:22:27.6282083Z 68.7% 2025-07-24T05:22:27.6285167Z 75.0% 2025-07-24T05:22:27.6287904Z 81.3% 2025-07-24T05:22:27.6291992Z 87.5% 2025-07-24T05:22:27.6294287Z 93.8% 2025-07-24T05:22:27.6296686Z 100% 2025-07-24T05:22:27.6302334Z New File 2.2 m test-times.json 2025-07-24T05:22:27.6305346Z 22% 2025-07-24T05:22:27.6309087Z 45% 2025-07-24T05:22:27.6311775Z 67% 2025-07-24T05:22:27.6314072Z 90% 2025-07-24T05:22:27.6317273Z 100% 2025-07-24T05:22:27.6317699Z 2025-07-24T05:22:27.6317871Z ------------------------------------------------------------------------------ 2025-07-24T05:22:27.6318166Z 2025-07-24T05:22:27.6319296Z Total Copied Skipped Mismatch FAILED Extras 2025-07-24T05:22:27.6320635Z Dirs : 1 1 0 0 0 0 2025-07-24T05:22:27.6320990Z Files : 2 2 0 0 0 0 2025-07-24T05:22:27.6321944Z Bytes : 10.20 m 10.20 m 0 0 0 0 2025-07-24T05:22:27.6322836Z Times : 0:00:00 0:00:00 0:00:00 0:00:00 2025-07-24T05:22:27.6323071Z 2025-07-24T05:22:27.6323641Z 2025-07-24T05:22:27.6324638Z Speed : 1337433000 Bytes/sec. 2025-07-24T05:22:27.6325609Z Speed : 76528.530 MegaBytes/min. 2025-07-24T05:22:27.6326310Z Ended : Thursday, July 24, 2025 5:22:27 AM 2025-07-24T05:22:27.6326520Z 2025-07-24T05:22:28.6871334Z 1 file(s) copied. 2025-07-24T05:22:28.6873524Z 2025-07-24T05:22:28.6874239Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --show-stats --stats-format json | jq .stats 1>sccache-stats-win-vs2022-cpu-py3-46614187335.json 2025-07-24T05:22:28.7255806Z 2025-07-24T05:22:28.7256327Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --stop-server 2025-07-24T05:22:28.7341143Z Stopping sccache server... 2025-07-24T05:22:28.7359490Z Compile requests 7017 2025-07-24T05:22:28.7359840Z Compile requests executed 5275 2025-07-24T05:22:28.7360106Z Cache hits 5204 2025-07-24T05:22:28.7360360Z Cache hits (C/C++) 5204 2025-07-24T05:22:28.7360636Z Cache misses 51 2025-07-24T05:22:28.7360896Z Cache misses (C/C++) 51 2025-07-24T05:22:28.7361145Z Cache timeouts 0 2025-07-24T05:22:28.7361547Z Cache read errors 0 2025-07-24T05:22:28.7361811Z Forced recaches 0 2025-07-24T05:22:28.7362076Z Cache write errors 0 2025-07-24T05:22:28.7362359Z Compilation failures 3 2025-07-24T05:22:28.7362629Z Cache errors 17 2025-07-24T05:22:28.7362885Z Cache errors (C/C++) 17 2025-07-24T05:22:28.7363146Z Non-cacheable compilations 2 2025-07-24T05:22:28.7363422Z Non-cacheable calls 1742 2025-07-24T05:22:28.7363682Z Non-compilation calls 0 2025-07-24T05:22:28.7363964Z Unsupported compiler calls 0 2025-07-24T05:22:28.7364237Z Average cache write 0.031 s 2025-07-24T05:22:28.7364525Z Average compiler 0.099 s 2025-07-24T05:22:28.7364800Z Average cache read hit 0.065 s 2025-07-24T05:22:28.7365085Z Failed distributed compilations 0 2025-07-24T05:22:28.7365278Z 2025-07-24T05:22:28.7365363Z Non-cacheable reasons: 2025-07-24T05:22:28.7365585Z multiple input files 1742 2025-07-24T05:22:28.7365762Z 2025-07-24T05:22:28.7366033Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-07-24T05:22:28.7366421Z Version (client) 0.7.4 2025-07-24T05:22:28.7378540Z 2025-07-24T05:22:28.7378984Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-07-24T05:22:28.8106047Z + assert_git_not_dirty 2025-07-24T05:22:28.9204523Z + [[ win-vs2022-cpu-py3 != *rocm* ]] 2025-07-24T05:22:28.9204840Z + [[ win-vs2022-cpu-py3 != *xla* ]] 2025-07-24T05:22:29.1599739Z ++ git status --porcelain 2025-07-24T05:22:29.1658039Z ++ grep -v '?? third_party' 2025-07-24T05:24:35.4826519Z ++ true 2025-07-24T05:24:35.4830347Z + git_status= 2025-07-24T05:24:35.4830802Z + [[ -n '' ]] 2025-07-24T05:24:35.4831494Z + echo 'BUILD PASSED' 2025-07-24T05:24:35.4831830Z BUILD PASSED 2025-07-24T05:24:35.6793729Z ##[group]Run seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a 2025-07-24T05:24:35.6794453Z with: 2025-07-24T05:24:35.6794716Z retention-days: 14 2025-07-24T05:24:35.6794967Z if-no-files-found: error 2025-07-24T05:24:35.6795256Z name: win-vs2022-cpu-py3 2025-07-24T05:24:35.6795560Z path: C:\16487210679\build-results 2025-07-24T05:24:35.6795891Z s3-bucket: gha-artifacts 2025-07-24T05:24:35.6796184Z region: us-east-1 2025-07-24T05:24:35.6796437Z env: 2025-07-24T05:24:35.6796651Z GIT_DEFAULT_BRANCH: main 2025-07-24T05:24:35.6797068Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T05:24:35.6797619Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T05:24:35.6798112Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T05:24:35.6798557Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T05:24:35.6798868Z ##[endgroup] 2025-07-24T05:24:37.9540666Z With the provided path, there will be 4 files uploaded 2025-07-24T05:24:37.9541148Z Uploading to s3 prefix: pytorch/pytorch/16487210679/win-vs2022-cpu-py3 2025-07-24T05:24:38.0169433Z Starting upload of .additional_ci_files\test-class-times.json 2025-07-24T05:24:38.3328880Z Finished upload of .additional_ci_files\test-class-times.json 2025-07-24T05:24:38.3331837Z Starting upload of .additional_ci_files\test-times.json 2025-07-24T05:24:38.4472918Z Finished upload of .additional_ci_files\test-times.json 2025-07-24T05:24:38.4474757Z Starting upload of .ninja_log 2025-07-24T05:24:38.5958429Z Finished upload of .ninja_log 2025-07-24T05:24:38.5960052Z Starting upload of torch-2.9.0a0+git27c8ef1-cp39-cp39-win_amd64.whl 2025-07-24T05:24:41.9118682Z Finished upload of torch-2.9.0a0+git27c8ef1-cp39-cp39-win_amd64.whl 2025-07-24T05:24:41.9689951Z Prepare all required actions 2025-07-24T05:24:41.9695919Z Getting action download info 2025-07-24T05:24:42.1085842Z Download action repository 'seemethere/upload-artifact-s3@v5' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-07-24T05:24:42.3778157Z ##[group]Run ./.github/actions/upload-sccache-stats 2025-07-24T05:24:42.3778502Z with: 2025-07-24T05:24:42.3784354Z github-token: *** 2025-07-24T05:24:42.3784580Z env: 2025-07-24T05:24:42.3784774Z GIT_DEFAULT_BRANCH: main 2025-07-24T05:24:42.3785138Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T05:24:42.3785668Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T05:24:42.3786128Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T05:24:42.3786525Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T05:24:42.3786825Z ##[endgroup] 2025-07-24T05:24:42.3950609Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-07-24T05:24:42.3950977Z with: 2025-07-24T05:24:42.3951213Z s3-prefix: pytorch/pytorch/16487210679/1/artifact 2025-07-24T05:24:42.3951541Z retention-days: 14 2025-07-24T05:24:42.3951764Z if-no-files-found: warn 2025-07-24T05:24:42.3952019Z path: sccache-stats-*.json 2025-07-24T05:24:42.3952275Z name: artifact 2025-07-24T05:24:42.3952473Z s3-bucket: gha-artifacts 2025-07-24T05:24:42.3952717Z region: us-east-1 2025-07-24T05:24:42.3952910Z env: 2025-07-24T05:24:42.3953094Z GIT_DEFAULT_BRANCH: main 2025-07-24T05:24:42.3953457Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T05:24:42.3953977Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T05:24:42.3954443Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T05:24:42.3954843Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T05:24:42.3955135Z ##[endgroup] 2025-07-24T05:24:42.7854858Z NOTE: s3-prefix specified, ignoring name parameter 2025-07-24T05:24:42.7855290Z With the provided path, there will be 1 file uploaded 2025-07-24T05:24:42.7855848Z Uploading to s3 prefix: pytorch/pytorch/16487210679/1/artifact 2025-07-24T05:24:42.7869231Z Starting upload of sccache-stats-win-vs2022-cpu-py3-46614187335.json 2025-07-24T05:24:42.9343082Z Finished upload of sccache-stats-win-vs2022-cpu-py3-46614187335.json 2025-07-24T05:24:42.9686151Z Prepare all required actions 2025-07-24T05:24:42.9686572Z Getting action download info 2025-07-24T05:24:43.1183056Z ##[group]Run ./.github/actions/teardown-win 2025-07-24T05:24:43.1183332Z with: 2025-07-24T05:24:43.1183550Z extra-delete-dir: /c/16487210679/build-results/ 2025-07-24T05:24:43.1183841Z env: 2025-07-24T05:24:43.1184006Z GIT_DEFAULT_BRANCH: main 2025-07-24T05:24:43.1184368Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T05:24:43.1184862Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T05:24:43.1185322Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T05:24:43.1185760Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T05:24:43.1186036Z ##[endgroup] 2025-07-24T05:24:43.1279651Z ##[group]Run .github\scripts\wait_for_ssh_to_drain.ps1 2025-07-24T05:24:43.1280106Z .github\scripts\wait_for_ssh_to_drain.ps1 2025-07-24T05:24:43.1296074Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-24T05:24:43.1296580Z env: 2025-07-24T05:24:43.1296818Z GIT_DEFAULT_BRANCH: main 2025-07-24T05:24:43.1297208Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T05:24:43.1297764Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T05:24:43.1298277Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T05:24:43.1298683Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T05:24:43.1299016Z ##[endgroup] 2025-07-24T05:24:43.5420571Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-24T05:24:43.5492066Z Finished 2025-07-24T05:24:43.7243166Z Holding runner until all ssh sessions have logged out 2025-07-24T05:24:43.7524264Z ##[group]Run .github\scripts\kill_active_ssh_sessions.ps1 2025-07-24T05:24:43.7524687Z .github\scripts\kill_active_ssh_sessions.ps1 2025-07-24T05:24:43.7540359Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-24T05:24:43.7540804Z env: 2025-07-24T05:24:43.7541001Z GIT_DEFAULT_BRANCH: main 2025-07-24T05:24:43.7541357Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T05:24:43.7541862Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T05:24:43.7542313Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T05:24:43.7542698Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T05:24:43.7542981Z ##[endgroup] 2025-07-24T05:24:44.0935997Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-24T05:24:44.0985760Z Finished 2025-07-24T05:24:44.1340214Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-07-24T05:24:44.1340591Z env: 2025-07-24T05:24:44.1340765Z GIT_DEFAULT_BRANCH: main 2025-07-24T05:24:44.1341163Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T05:24:44.1341660Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T05:24:44.1342120Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T05:24:44.1342501Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T05:24:44.1342779Z ##[endgroup] 2025-07-24T05:24:44.1411447Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-07-24T05:24:44.1412160Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-07-24T05:24:44.1412796Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-07-24T05:24:44.1413330Z # handle tool 2025-07-24T05:24:44.1413655Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-07-24T05:24:44.1414120Z Foreach ($process In $processes) { 2025-07-24T05:24:44.1415812Z  Try { 2025-07-24T05:24:44.1416343Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-07-24T05:24:44.1417027Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-07-24T05:24:44.1417407Z  } 2025-07-24T05:24:44.1417595Z  Catch { 2025-07-24T05:24:44.1417882Z  Write-Output "No leftover $process process, continuing" 2025-07-24T05:24:44.1418245Z  Write-Output $_ 2025-07-24T05:24:44.1418475Z  } 2025-07-24T05:24:44.1418647Z } 2025-07-24T05:24:44.1418818Z  2025-07-24T05:24:44.1419262Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-07-24T05:24:44.1419810Z # for hung processes 2025-07-24T05:24:44.1420068Z Foreach ($process In $processes) { 2025-07-24T05:24:44.1420340Z  Try { 2025-07-24T05:24:44.1420773Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-07-24T05:24:44.1421271Z  } 2025-07-24T05:24:44.1421449Z  Catch { 2025-07-24T05:24:44.1421661Z  Write-Output $_ 2025-07-24T05:24:44.1421889Z  } 2025-07-24T05:24:44.1422053Z } 2025-07-24T05:24:44.1422217Z  2025-07-24T05:24:44.1422378Z Try { 2025-07-24T05:24:44.1422605Z  # Print all the processes for debugging 2025-07-24T05:24:44.1423045Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-07-24T05:24:44.1423449Z } 2025-07-24T05:24:44.1423618Z Catch { 2025-07-24T05:24:44.1423996Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-07-24T05:24:44.1424450Z  Write-Output $_ 2025-07-24T05:24:44.1424665Z } 2025-07-24T05:24:44.1440229Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-24T05:24:44.1440662Z env: 2025-07-24T05:24:44.1440860Z GIT_DEFAULT_BRANCH: main 2025-07-24T05:24:44.1441220Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T05:24:44.1441730Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T05:24:44.1442190Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T05:24:44.1442569Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T05:24:44.1442858Z ##[endgroup] 2025-07-24T05:24:44.4891847Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-24T05:24:44.4961600Z Finished 2025-07-24T05:24:44.5150863Z No leftover python process, continuing 2025-07-24T05:24:44.5692913Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-07-24T05:24:44.5693643Z At C:\actions-runner\_work\_temp\b0e29367-c3df-4db0-ba49-94bb75dc345e.ps1:9 char:5 2025-07-24T05:24:44.5694210Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T05:24:44.5694610Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:24:44.5695125Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-07-24T05:24:44.5695913Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T05:24:44.5696580Z 2025-07-24T05:24:44.5710792Z No leftover ninja process, continuing 2025-07-24T05:24:44.5722192Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-07-24T05:24:44.5722986Z At C:\actions-runner\_work\_temp\b0e29367-c3df-4db0-ba49-94bb75dc345e.ps1:9 char:5 2025-07-24T05:24:44.5723532Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T05:24:44.5723994Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:24:44.5725185Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-07-24T05:24:44.5726004Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T05:24:44.5726585Z 2025-07-24T05:24:44.5738329Z No leftover cl process, continuing 2025-07-24T05:24:44.5747841Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-07-24T05:24:44.5748487Z At C:\actions-runner\_work\_temp\b0e29367-c3df-4db0-ba49-94bb75dc345e.ps1:9 char:5 2025-07-24T05:24:44.5749026Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T05:24:44.5749419Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:24:44.5749877Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-07-24T05:24:44.5750711Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T05:24:44.5751291Z 2025-07-24T05:24:44.5759277Z No leftover nvcc process, continuing 2025-07-24T05:24:44.5770117Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-07-24T05:24:44.5770766Z At C:\actions-runner\_work\_temp\b0e29367-c3df-4db0-ba49-94bb75dc345e.ps1:9 char:5 2025-07-24T05:24:44.5771291Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T05:24:44.5771693Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:24:44.5772148Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-07-24T05:24:44.5772995Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T05:24:44.5773579Z 2025-07-24T05:24:44.5781392Z No leftover cmd process, continuing 2025-07-24T05:24:44.5790901Z Get-Process : Cannot find a process with the name "cmd". Verify the process name and call the cmdlet again. 2025-07-24T05:24:44.5791531Z At C:\actions-runner\_work\_temp\b0e29367-c3df-4db0-ba49-94bb75dc345e.ps1:9 char:5 2025-07-24T05:24:44.5792077Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T05:24:44.5792474Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:24:44.5792924Z + CategoryInfo : ObjectNotFound: (cmd:String) [Get-Process], ProcessCommandException 2025-07-24T05:24:44.5793748Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T05:24:44.5794332Z 2025-07-24T05:24:44.5802060Z No leftover sccache process, continuing 2025-07-24T05:24:44.5811681Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-07-24T05:24:44.5812339Z At C:\actions-runner\_work\_temp\b0e29367-c3df-4db0-ba49-94bb75dc345e.ps1:9 char:5 2025-07-24T05:24:44.5812885Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T05:24:44.5813269Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:24:44.5813753Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-07-24T05:24:44.5814590Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T05:24:44.5815179Z 2025-07-24T05:24:44.5824037Z No leftover git process, continuing 2025-07-24T05:24:44.5833371Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-07-24T05:24:44.5834021Z At C:\actions-runner\_work\_temp\b0e29367-c3df-4db0-ba49-94bb75dc345e.ps1:9 char:5 2025-07-24T05:24:44.5834657Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T05:24:44.5835061Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:24:44.5835686Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-07-24T05:24:44.5836465Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T05:24:44.5837052Z 2025-07-24T05:24:44.6277989Z You cannot call a method on a null-valued expression. 2025-07-24T05:24:44.6278507Z At C:\actions-runner\_work\_temp\b0e29367-c3df-4db0-ba49-94bb75dc345e.ps1:21 char:5 2025-07-24T05:24:44.6279058Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T05:24:44.6279476Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:24:44.6279888Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-07-24T05:24:44.6280295Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-07-24T05:24:44.6280588Z 2025-07-24T05:24:44.6429497Z You cannot call a method on a null-valued expression. 2025-07-24T05:24:44.6430014Z At C:\actions-runner\_work\_temp\b0e29367-c3df-4db0-ba49-94bb75dc345e.ps1:21 char:5 2025-07-24T05:24:44.6430601Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T05:24:44.6431068Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:24:44.6431513Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-07-24T05:24:44.6431903Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-07-24T05:24:44.6432188Z 2025-07-24T05:24:44.6590753Z You cannot call a method on a null-valued expression. 2025-07-24T05:24:44.6591339Z At C:\actions-runner\_work\_temp\b0e29367-c3df-4db0-ba49-94bb75dc345e.ps1:21 char:5 2025-07-24T05:24:44.6591940Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T05:24:44.6592718Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:24:44.6593173Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-07-24T05:24:44.6593588Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-07-24T05:24:44.6593891Z 2025-07-24T05:24:44.6730424Z You cannot call a method on a null-valued expression. 2025-07-24T05:24:44.6730958Z At C:\actions-runner\_work\_temp\b0e29367-c3df-4db0-ba49-94bb75dc345e.ps1:21 char:5 2025-07-24T05:24:44.6731510Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T05:24:44.6731935Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:24:44.6732330Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-07-24T05:24:44.6732724Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-07-24T05:24:44.6733009Z 2025-07-24T05:24:44.6867833Z You cannot call a method on a null-valued expression. 2025-07-24T05:24:44.6868370Z At C:\actions-runner\_work\_temp\b0e29367-c3df-4db0-ba49-94bb75dc345e.ps1:21 char:5 2025-07-24T05:24:44.6868966Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T05:24:44.6869458Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:24:44.6869859Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-07-24T05:24:44.6870245Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-07-24T05:24:44.6870526Z 2025-07-24T05:24:44.7013042Z You cannot call a method on a null-valued expression. 2025-07-24T05:24:44.7013570Z At C:\actions-runner\_work\_temp\b0e29367-c3df-4db0-ba49-94bb75dc345e.ps1:21 char:5 2025-07-24T05:24:44.7014117Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T05:24:44.7014543Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:24:44.7014936Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-07-24T05:24:44.7015527Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-07-24T05:24:44.7015881Z 2025-07-24T05:24:44.7155649Z You cannot call a method on a null-valued expression. 2025-07-24T05:24:44.7156457Z At C:\actions-runner\_work\_temp\b0e29367-c3df-4db0-ba49-94bb75dc345e.ps1:21 char:5 2025-07-24T05:24:44.7157023Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T05:24:44.7157442Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:24:44.7157844Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-07-24T05:24:44.7158233Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-07-24T05:24:44.7158521Z 2025-07-24T05:24:44.8260155Z Caption CommandLine ProcessId 2025-07-24T05:24:44.8260770Z 2025-07-24T05:24:44.8261112Z System Idle Process 0 2025-07-24T05:24:44.8261514Z 2025-07-24T05:24:44.8262570Z System 4 2025-07-24T05:24:44.8262990Z 2025-07-24T05:24:44.8263287Z Registry 168 2025-07-24T05:24:44.8263658Z 2025-07-24T05:24:44.8264459Z smss.exe 408 2025-07-24T05:24:44.8265703Z 2025-07-24T05:24:44.8267374Z csrss.exe 520 2025-07-24T05:24:44.8267740Z 2025-07-24T05:24:44.8269270Z csrss.exe 596 2025-07-24T05:24:44.8269773Z 2025-07-24T05:24:44.8270051Z wininit.exe 648 2025-07-24T05:24:44.8270484Z 2025-07-24T05:24:44.8272088Z winlogon.exe winlogon.exe 668 2025-07-24T05:24:44.8272521Z 2025-07-24T05:24:44.8273254Z services.exe 740 2025-07-24T05:24:44.8273639Z 2025-07-24T05:24:44.8274497Z lsass.exe C:\Windows\system32\lsass.exe 760 2025-07-24T05:24:44.8274969Z 2025-07-24T05:24:44.8275747Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 888 2025-07-24T05:24:44.8276366Z 2025-07-24T05:24:44.8277951Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 912 2025-07-24T05:24:44.8278492Z 2025-07-24T05:24:44.8279111Z fontdrvhost.exe "fontdrvhost.exe" 936 2025-07-24T05:24:44.8279641Z 2025-07-24T05:24:44.8280614Z fontdrvhost.exe "fontdrvhost.exe" 944 2025-07-24T05:24:44.8281125Z 2025-07-24T05:24:44.8281661Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 128 2025-07-24T05:24:44.8282214Z 2025-07-24T05:24:44.8284077Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 476 2025-07-24T05:24:44.8284632Z 2025-07-24T05:24:44.8285007Z dwm.exe "dwm.exe" 832 2025-07-24T05:24:44.8285384Z 2025-07-24T05:24:44.8286365Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 1032 2025-07-24T05:24:44.8286941Z 2025-07-24T05:24:44.8287502Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1128 2025-07-24T05:24:44.8288217Z 2025-07-24T05:24:44.8289895Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1212 2025-07-24T05:24:44.8290567Z 2025-07-24T05:24:44.8291006Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1332 2025-07-24T05:24:44.8291604Z 2025-07-24T05:24:44.8292222Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1340 2025-07-24T05:24:44.8292814Z 2025-07-24T05:24:44.8293351Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1380 2025-07-24T05:24:44.8294039Z 2025-07-24T05:24:44.8295497Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1432 2025-07-24T05:24:44.8296079Z 2025-07-24T05:24:44.8296576Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1464 2025-07-24T05:24:44.8297124Z 2025-07-24T05:24:44.8298938Z 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 1516 2025-07-24T05:24:44.8300897Z 2025-07-24T05:24:44.8301386Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1544 2025-07-24T05:24:44.8301958Z 2025-07-24T05:24:44.8302551Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1596 2025-07-24T05:24:44.8303230Z 2025-07-24T05:24:44.8303684Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1716 2025-07-24T05:24:44.8304971Z 2025-07-24T05:24:44.8305523Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1724 2025-07-24T05:24:44.8306181Z 2025-07-24T05:24:44.8306745Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1732 2025-07-24T05:24:44.8307396Z 2025-07-24T05:24:44.8307829Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1832 2025-07-24T05:24:44.8308360Z 2025-07-24T05:24:44.8308856Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 1872 2025-07-24T05:24:44.8309441Z 2025-07-24T05:24:44.8309962Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 1880 2025-07-24T05:24:44.8310578Z 2025-07-24T05:24:44.8311195Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 1952 2025-07-24T05:24:44.8311963Z 2025-07-24T05:24:44.8312500Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 2004 2025-07-24T05:24:44.8313092Z 2025-07-24T05:24:44.8314427Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 1376 2025-07-24T05:24:44.8315116Z 2025-07-24T05:24:44.8315646Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 2052 2025-07-24T05:24:44.8316270Z 2025-07-24T05:24:44.8316845Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 2112 2025-07-24T05:24:44.8317570Z 2025-07-24T05:24:44.8318082Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2152 2025-07-24T05:24:44.8318653Z 2025-07-24T05:24:44.8319140Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2304 2025-07-24T05:24:44.8319703Z 2025-07-24T05:24:44.8320348Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2352 2025-07-24T05:24:44.8320987Z 2025-07-24T05:24:44.8321452Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2436 2025-07-24T05:24:44.8322007Z 2025-07-24T05:24:44.8322394Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2572 2025-07-24T05:24:44.8322912Z 2025-07-24T05:24:44.8323581Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2656 2025-07-24T05:24:44.8324756Z 2025-07-24T05:24:44.8325871Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2672 2025-07-24T05:24:44.8326525Z 2025-07-24T05:24:44.8326989Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2680 2025-07-24T05:24:44.8327529Z 2025-07-24T05:24:44.8328026Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2688 2025-07-24T05:24:44.8328607Z 2025-07-24T05:24:44.8329133Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2704 2025-07-24T05:24:44.8329803Z 2025-07-24T05:24:44.8331285Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2712 2025-07-24T05:24:44.8331846Z 2025-07-24T05:24:44.8332347Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2720 2025-07-24T05:24:44.8332924Z 2025-07-24T05:24:44.8333490Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2728 2025-07-24T05:24:44.8334197Z 2025-07-24T05:24:44.8334761Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 2972 2025-07-24T05:24:44.8335455Z 2025-07-24T05:24:44.8336617Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 3020 2025-07-24T05:24:44.8337332Z 2025-07-24T05:24:44.8337723Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 2896 2025-07-24T05:24:44.8338215Z 2025-07-24T05:24:44.8338839Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe 3096 2025-07-24T05:24:44.8339581Z 2025-07-24T05:24:44.8340045Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3112 2025-07-24T05:24:44.8340619Z 2025-07-24T05:24:44.8341296Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3588 2025-07-24T05:24:44.8341998Z 2025-07-24T05:24:44.8343051Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 3796 2025-07-24T05:24:44.8343724Z 2025-07-24T05:24:44.8344209Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a71055 /state1:0x41c64e6d 4324 2025-07-24T05:24:44.8344956Z 2025-07-24T05:24:44.8346616Z 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 4864 2025-07-24T05:24:44.8348407Z 2025-07-24T05:24:44.8349096Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe -spawnprovider 5024 2025-07-24T05:24:44.8349888Z 2025-07-24T05:24:44.8350232Z vds.exe C:\Windows\System32\vds.exe 4492 2025-07-24T05:24:44.8350678Z 2025-07-24T05:24:44.8351183Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 1472 2025-07-24T05:24:44.8351779Z 2025-07-24T05:24:44.8352374Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 2020 2025-07-24T05:24:44.8353136Z 2025-07-24T05:24:44.8353518Z msdtc.exe C:\Windows\System32\msdtc.exe 2128 2025-07-24T05:24:44.8353981Z 2025-07-24T05:24:44.8354540Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 3768 2025-07-24T05:24:44.8355182Z 2025-07-24T05:24:44.8355812Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 4692 2025-07-24T05:24:44.8356518Z 2025-07-24T05:24:44.8356981Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 2880 2025-07-24T05:24:44.8357526Z 2025-07-24T05:24:44.8358027Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 1140 2025-07-24T05:24:44.8358639Z 2025-07-24T05:24:44.8359189Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 3716 2025-07-24T05:24:44.8359810Z 2025-07-24T05:24:44.8360506Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 2016 2025-07-24T05:24:44.8361307Z 2025-07-24T05:24:44.8362833Z 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 1164 2025-07-24T05:24:44.8364504Z 2025-07-24T05:24:44.8364946Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4748 2025-07-24T05:24:44.8365453Z 2025-07-24T05:24:44.8365979Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p 3860 2025-07-24T05:24:44.8366647Z 2025-07-24T05:24:44.8367108Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3444 2025-07-24T05:24:44.8367641Z 2025-07-24T05:24:44.8368105Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 780 2025-07-24T05:24:44.8368684Z 2025-07-24T05:24:44.8369162Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 3168 2025-07-24T05:24:44.8369816Z 2025-07-24T05:24:44.8370341Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 4716 2025-07-24T05:24:44.8370960Z 2025-07-24T05:24:44.8371372Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1680 2025-07-24T05:24:44.8371863Z 2025-07-24T05:24:44.8372380Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2160 2224 4232 2025-07-24T05:24:44.8372978Z 2025-07-24T05:24:44.8373382Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 732 2025-07-24T05:24:44.8373867Z 2025-07-24T05:24:44.8374421Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 3568 2025-07-24T05:24:44.8375108Z 2025-07-24T05:24:44.8375840Z vctip.exe "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\Hostx64\x64\VCTIP.EXE" 1504 2025-07-24T05:24:44.8376634Z 2025-07-24T05:24:44.8377697Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 4856 2025-07-24T05:24:44.8378211Z 2025-07-24T05:24:44.8379017Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\b0e29367-c3df-4db0-ba49-94bb75dc345e.ps1'" 5644 2025-07-24T05:24:44.8379876Z 2025-07-24T05:24:44.8380441Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 5652 2025-07-24T05:24:44.8381120Z 2025-07-24T05:24:44.8381130Z 2025-07-24T05:24:44.8381135Z 2025-07-24T05:24:44.8684651Z ##[group]Run nick-fields/retry@v3.0.0 2025-07-24T05:24:44.8684917Z with: 2025-07-24T05:24:44.8685087Z shell: bash 2025-07-24T05:24:44.8685260Z timeout_minutes: 5 2025-07-24T05:24:44.8685463Z max_attempts: 3 2025-07-24T05:24:44.8685655Z retry_wait_seconds: 90 2025-07-24T05:24:44.8686608Z command: set +e set -x if [ -n "${EXTRA_DELETE_DIR}" ]; then # It's ok to fail to clean up the extra directory on Windows as it only contains # the build artifacts and doesn't take up much space, i.e. /c/5053411580/build-results rm -rf "${EXTRA_DELETE_DIR}" || true fi rm -rf ./* 2025-07-24T05:24:44.8687615Z polling_interval_seconds: 1 2025-07-24T05:24:44.8687848Z warning_on_retry: true 2025-07-24T05:24:44.8688140Z continue_on_error: false 2025-07-24T05:24:44.8688362Z env: 2025-07-24T05:24:44.8688543Z GIT_DEFAULT_BRANCH: main 2025-07-24T05:24:44.8688898Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T05:24:44.8689400Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T05:24:44.8689943Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T05:24:44.8690324Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T05:24:44.8690651Z EXTRA_DELETE_DIR: /c/16487210679/build-results/ 2025-07-24T05:24:44.8690937Z ##[endgroup] 2025-07-24T05:24:45.1529315Z + '[' -n /c/16487210679/build-results/ ']' 2025-07-24T05:24:45.1529756Z + rm -rf /c/16487210679/build-results/ 2025-07-24T05:24:45.2376458Z + rm -rf ./AGENTS.md ./BUCK.oss ./BUILD.bazel ./CITATION.cff ./CMakeLists.txt ./CODEOWNERS ./CODE_OF_CONDUCT.md ./CONTRIBUTING.md ./Dockerfile ./GLOSSARY.md ./LICENSE ./MANIFEST.in ./Makefile ./NOTICE ./README.md ./RELEASE.md ./SECURITY.md ./WORKSPACE ./android ./aten ./aten.bzl ./benchmarks ./binaries ./buckbuild.bzl ./build ./build.bzl ./build_variables.bzl ./c10 ./caffe2 ./cmake ./compile_commands.json ./defs.bzl ./dist ./docker.Makefile ./docs ./functorch ./mypy-strict.ini ./mypy.ini ./mypy_plugins ./pt_ops.bzl ./pt_template_srcs.bzl ./pyproject.toml ./pyrefly.toml ./pytest.ini ./requirements-build.txt ./requirements.txt ./sccache-stats-win-vs2022-cpu-py3-46614187335.json ./scripts ./setup.py ./test ./third_party ./tools ./torch ./torch.egg-info ./torchgen ./ubsan.supp ./ufunc_defs.bzl ./version.txt 2025-07-24T05:25:15.2802418Z Command completed after 1 attempt(s). 2025-07-24T05:25:15.2957520Z ##[group]Run handle C:\actions-runner\_work\ 2025-07-24T05:25:15.2957905Z handle C:\actions-runner\_work\ 2025-07-24T05:25:15.2973469Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-24T05:25:15.2973982Z env: 2025-07-24T05:25:15.2974191Z GIT_DEFAULT_BRANCH: main 2025-07-24T05:25:15.2974611Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T05:25:15.2975143Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T05:25:15.2975676Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T05:25:15.2976106Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T05:25:15.2976414Z ##[endgroup] 2025-07-24T05:25:15.6410605Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-24T05:25:15.6481017Z Finished 2025-07-24T05:25:16.0313956Z 2025-07-24T05:25:16.0314438Z Nthandle v5.0 - Handle viewer 2025-07-24T05:25:16.0314852Z Copyright (C) 1997-2022 Mark Russinovich 2025-07-24T05:25:16.0315180Z Sysinternals - www.sysinternals.com 2025-07-24T05:25:16.0315407Z 2025-07-24T05:25:16.0614960Z powershell.exe pid: 3204 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-07-24T05:25:16.0617006Z handle.exe pid: 4240 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-07-24T05:25:16.0617585Z handle.exe pid: 5424 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-07-24T05:25:16.0618193Z handle64.exe pid: 3412 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-07-24T05:25:16.1647960Z Post job cleanup. 2025-07-24T05:25:16.1755468Z Post job cleanup. 2025-07-24T05:25:16.5458702Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-07-24T05:25:16.5669428Z git version 2.49.0.windows.1 2025-07-24T05:25:16.5728730Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\69917217-384e-4753-a086-d1c2a5453c6a\.gitconfig' 2025-07-24T05:25:16.5742855Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\69917217-384e-4753-a086-d1c2a5453c6a' before making global git config changes 2025-07-24T05:25:16.5743685Z Adding repository directory to the temporary git global config as a safe directory 2025-07-24T05:25:16.5753561Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-07-24T05:25:16.6015900Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-07-24T05:25:16.6267583Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2025-07-24T05:25:17.0959521Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-07-24T05:25:17.1169683Z http.https://github.com/.extraheader 2025-07-24T05:25:17.1214061Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all http.https://github.com/.extraheader 2025-07-24T05:25:17.1490204Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2025-07-24T05:25:17.5613139Z A job completed hook has been configured by the self-hosted runner administrator 2025-07-24T05:25:17.5675230Z ##[group]Run 'C:\actions-runner\jobcompleted.ps1' 2025-07-24T05:25:17.5690180Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-24T05:25:17.5690637Z ##[endgroup] 2025-07-24T05:25:17.9119131Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-24T05:25:17.9170342Z Finished 2025-07-24T05:25:19.4426395Z Evaluate and set job outputs 2025-07-24T05:25:19.4432040Z Set output 'test-matrix' 2025-07-24T05:25:19.4443024Z Cleaning up orphan processes 2025-07-24T05:25:19.5901476Z Terminate orphan process: pid (1504) (vctip)